Esempio n. 1
0
 /// <summary>
 /// Initializes a new instance of the RegistryUpdateParameters 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>
 /// <param name="networkRuleSet">The network rule set for a container
 /// registry.</param>
 public RegistryUpdateParameters(IDictionary <string, string> tags = default(IDictionary <string, string>), Sku sku = default(Sku), bool?adminUserEnabled = default(bool?), StorageAccountProperties storageAccount = default(StorageAccountProperties), NetworkRuleSet networkRuleSet = default(NetworkRuleSet))
 {
     Tags             = tags;
     Sku              = sku;
     AdminUserEnabled = adminUserEnabled;
     StorageAccount   = storageAccount;
     NetworkRuleSet   = networkRuleSet;
     CustomInit();
 }