diff --git a/sdk/recoveryservices/Microsoft.Azure.Management.RecoveryServices/src/Generated/Models/PatchVault.cs b/sdk/recoveryservices/Microsoft.Azure.Management.RecoveryServices/src/Generated/Models/PatchVault.cs index 15f954a38224..eb7038d489be 100644 --- a/sdk/recoveryservices/Microsoft.Azure.Management.RecoveryServices/src/Generated/Models/PatchVault.cs +++ b/sdk/recoveryservices/Microsoft.Azure.Management.RecoveryServices/src/Generated/Models/PatchVault.cs @@ -40,9 +40,10 @@ public PatchVault() /// Optional ETag. /// Resource location. /// Resource tags. - public PatchVault(string id = default(string), string name = default(string), string type = default(string), string eTag = default(string), string location = default(string), IDictionary tags = default(IDictionary), VaultProperties properties = default(VaultProperties), Sku sku = default(Sku)) + public PatchVault(string id = default(string), string name = default(string), string type = default(string), string eTag = default(string), string location = default(string), IDictionary tags = default(IDictionary), IdentityData identity = default(IdentityData), VaultProperties properties = default(VaultProperties), Sku sku = default(Sku)) : base(id, name, type, eTag, location, tags) { + Identity = identity; Properties = properties; Sku = sku; CustomInit(); @@ -53,6 +54,11 @@ public PatchVault() /// partial void CustomInit(); + /// + /// + [JsonProperty(PropertyName = "identity")] + public IdentityData Identity { get; set; } + /// /// [JsonProperty(PropertyName = "properties")] @@ -71,6 +77,10 @@ public PatchVault() /// public virtual void Validate() { + if (Identity != null) + { + Identity.Validate(); + } if (Sku != null) { Sku.Validate();