Account Constructors

Definition

Overloads

Account()

Initializes a new instance of the Account class.

Account(Identity, String, String, SystemData, String, String, IDictionary<String,String>, Nullable<DateTime>, String, String, String)

Initializes a new instance of the Account class.

Account()

Initializes a new instance of the Account class.

public Account ();
Public Sub New ()

Applies to

Account(Identity, String, String, SystemData, String, String, IDictionary<String,String>, Nullable<DateTime>, String, String, String)

Initializes a new instance of the Account class.

public Account (Microsoft.Azure.Management.DataShare.Models.Identity identity, string id = default, string name = default, Microsoft.Azure.Management.DataShare.Models.SystemData systemData = default, string type = default, string location = default, System.Collections.Generic.IDictionary<string,string> tags = default, DateTime? createdAt = default, string provisioningState = default, string userEmail = default, string userName = default);
new Microsoft.Azure.Management.DataShare.Models.Account : Microsoft.Azure.Management.DataShare.Models.Identity * string * string * Microsoft.Azure.Management.DataShare.Models.SystemData * string * string * System.Collections.Generic.IDictionary<string, string> * Nullable<DateTime> * string * string * string -> Microsoft.Azure.Management.DataShare.Models.Account
Public Sub New (identity As Identity, Optional id As String = Nothing, Optional name As String = Nothing, Optional systemData As SystemData = Nothing, Optional type As String = Nothing, Optional location As String = Nothing, Optional tags As IDictionary(Of String, String) = Nothing, Optional createdAt As Nullable(Of DateTime) = Nothing, Optional provisioningState As String = Nothing, Optional userEmail As String = Nothing, Optional userName As String = Nothing)

Parameters

identity
Identity

Identity Info on the Account

id
String

The resource id of the azure resource

name
String

Name of the azure resource

systemData
SystemData

System Data of the Azure resource.

type
String

Type of the azure resource

location
String

Location of the azure resource.

tags
IDictionary<String,String>

Tags on the azure resource.

createdAt
Nullable<DateTime>

Time at which the account was created.

provisioningState
String

Provisioning state of the Account. Possible values include: 'Succeeded', 'Creating', 'Deleting', 'Moving', 'Failed'

userEmail
String

Email of the user who created the resource

userName
String

Name of the user who created the resource

Applies to