/// <summary>
 /// Initializes a new instance of the RegistryUpdateParametersInner
 /// class.
 /// </summary>
 /// <param name="tags">The tags for the container registry.</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 parameters of a storage account
 /// for the container registry. 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>), bool?adminUserEnabled = default(bool?), StorageAccountParameters storageAccount = default(StorageAccountParameters))
 {
     Tags             = tags;
     AdminUserEnabled = adminUserEnabled;
     StorageAccount   = storageAccount;
     CustomInit();
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the RegistryCreateParametersInner
 /// class.
 /// </summary>
 /// <param name="location">The location of the container registry. This
 /// cannot be changed after the resource is created.</param>
 /// <param name="sku">The SKU of the container registry.</param>
 /// <param name="storageAccount">The parameters of a storage account
 /// for the container registry. If specified, the storage account must
 /// be in the same physical location as the container registry.</param>
 /// <param name="tags">The tags for the container registry.</param>
 /// <param name="adminUserEnabled">The value that indicates whether the
 /// admin user is enabled. This value is false by default.</param>
 public RegistryCreateParametersInner(string location, Sku sku, StorageAccountParameters storageAccount, IDictionary <string, string> tags = default(IDictionary <string, string>), bool?adminUserEnabled = default(bool?))
 {
     Tags             = tags;
     Location         = location;
     Sku              = sku;
     AdminUserEnabled = adminUserEnabled;
     StorageAccount   = storageAccount;
     CustomInit();
 }