/// <summary> /// Initializes a new instance of the BatchAccountCreateParameters /// class. /// </summary> /// <param name="location">The region in which to create the /// account.</param> /// <param name="tags">The user-specified tags associated with the /// account.</param> /// <param name="autoStorage">The properties related to the /// auto-storage account.</param> /// <param name="poolAllocationMode">The allocation mode to use for /// creating pools in the Batch account.</param> /// <param name="keyVaultReference">A reference to the Azure key vault /// associated with the Batch account.</param> public BatchAccountCreateParameters(string location, IDictionary <string, string> tags = default(IDictionary <string, string>), AutoStorageBaseProperties autoStorage = default(AutoStorageBaseProperties), PoolAllocationMode?poolAllocationMode = default(PoolAllocationMode?), KeyVaultReference keyVaultReference = default(KeyVaultReference)) { Location = location; Tags = tags; AutoStorage = autoStorage; PoolAllocationMode = poolAllocationMode; KeyVaultReference = keyVaultReference; CustomInit(); }
/// <summary> /// Initializes a new instance of the BatchAccountUpdateParameters /// class. /// </summary> /// <param name="tags">The user-specified tags associated with the /// account.</param> /// <param name="autoStorage">The properties related to the /// auto-storage account.</param> public BatchAccountUpdateParameters(IDictionary <string, string> tags = default(IDictionary <string, string>), AutoStorageBaseProperties autoStorage = default(AutoStorageBaseProperties)) { Tags = tags; AutoStorage = autoStorage; CustomInit(); }