Share via


AccountResource Constructor

 

Namespace:   Microsoft.Azure.Management.Batch.Models
Assembly:  Microsoft.Azure.Management.Batch (in Microsoft.Azure.Management.Batch.dll)

Overload List

Name Description
System_CAPS_pubmethod AccountResource()

Initializes a new instance of the AccountResource class.

System_CAPS_pubmethod AccountResource(Int32, Int32, Int32, String, String, String, String, IDictionary<String, String>, String, Nullable<AccountProvisioningState>, AutoStorageProperties)

Initializes a new instance of the AccountResource class.

See Also

AccountResource Class
Microsoft.Azure.Management.Batch.Models Namespace

Return to top

AccountResource Constructor ()

Initializes a new instance of the AccountResource class.

Syntax

public AccountResource()
public:
AccountResource()
new : unit -> AccountResource
Public Sub New

Return to top

AccountResource Constructor (Int32, Int32, Int32, String, String, String, String, IDictionary<String, String>, String, Nullable<AccountProvisioningState>, AutoStorageProperties)

Initializes a new instance of the AccountResource class.

Syntax

public AccountResource(
    int coreQuota,
    int poolQuota,
    int activeJobAndJobScheduleQuota,
    string id = null,
    string name = null,
    string type = null,
    string location = null,
    IDictionary<string, string> tags = null,
    string accountEndpoint = null,
    Nullable<AccountProvisioningState> provisioningState = null,
    AutoStorageProperties autoStorage = null
)
public:
AccountResource(
    int coreQuota,
    int poolQuota,
    int activeJobAndJobScheduleQuota,
    String^ id = null,
    String^ name = null,
    String^ type = null,
    String^ location = null,
    IDictionary<String^, String^>^ tags = null,
    String^ accountEndpoint = null,
    Nullable<AccountProvisioningState> provisioningState = null,
    AutoStorageProperties^ autoStorage = null
)
new : 
        coreQuota:int *
        poolQuota:int *
        activeJobAndJobScheduleQuota:int *
        id:string = null *
        name:string = null *
        type:string = null *
        location:string = null *
        tags:IDictionary<string, string> = null *
        accountEndpoint:string = null *
        provisioningState:Nullable<AccountProvisioningState> = null *
        autoStorage:AutoStorageProperties = null -> AccountResource
Public Sub New (
    coreQuota As Integer,
    poolQuota As Integer,
    activeJobAndJobScheduleQuota As Integer,
    id As String,
    name As String,
    type As String,
    location As String,
    tags As IDictionary(Of String, String),
    accountEndpoint As String,
    provisioningState As Nullable(Of AccountProvisioningState),
    autoStorage As AutoStorageProperties
)

Parameters

Return to top