Пример #1
0
 /// <summary>
 /// Initializes a new instance of the RegistryUpdateParametersInner
 /// class.
 /// </summary>
 /// <param name="tags">The tags for the container registry.</param>
 /// <param name="sku">The SKU of the container registry.</param>
 /// <param name="adminUserEnabled">The value that indicates whether the
 /// admin user is enabled.</param>
 /// <param name="storageAccount">The parameters of a storage account
 /// for the container registry. Only applicable to Classic SKU. If
 /// specified, the storage account must be in the same physical
 /// location as the container registry.</param>
 public RegistryUpdateParametersInner(IDictionary <string, string> tags = default(IDictionary <string, string>), Sku sku = default(Sku), bool?adminUserEnabled = default(bool?), StorageAccountProperties storageAccount = default(StorageAccountProperties))
 {
     Tags             = tags;
     Sku              = sku;
     AdminUserEnabled = adminUserEnabled;
     StorageAccount   = storageAccount;
     CustomInit();
 }
 /// <summary>
 /// Initializes a new instance of the RegistryInner class.
 /// </summary>
 /// <param name="sku">The SKU of the container registry.</param>
 /// <param name="loginServer">The URL that can be used to log into the
 /// container registry.</param>
 /// <param name="creationDate">The creation date of the container
 /// registry in ISO8601 format.</param>
 /// <param name="provisioningState">The status of the container
 /// registry at the time the operation was called. Possible values
 /// include: 'Creating', 'Succeeded'</param>
 /// <param name="adminUserEnabled">The value that indicates whether the
 /// admin user is enabled. This value is false by default.</param>
 /// <param name="storageAccount">The properties of the storage account
 /// for the container registry.</param>
 public RegistryInner(Sku sku, string location = default(string), string id = default(string), string name = default(string), string type = default(string), IDictionary <string, string> tags = default(IDictionary <string, string>), string loginServer = default(string), System.DateTime?creationDate = default(System.DateTime?), ProvisioningState?provisioningState = default(ProvisioningState?), bool?adminUserEnabled = default(bool?), StorageAccountProperties storageAccount = default(StorageAccountProperties))
     : base(location, id, name, type, tags)
 {
     Sku               = sku;
     LoginServer       = loginServer;
     CreationDate      = creationDate;
     ProvisioningState = provisioningState;
     AdminUserEnabled  = adminUserEnabled;
     StorageAccount    = storageAccount;
     CustomInit();
 }