From 4cc3bc473bc1d3459df0c7e549fcb099173e7acc Mon Sep 17 00:00:00 2001 From: SDKAuto Date: Thu, 12 Nov 2020 08:14:29 +0000 Subject: [PATCH] CodeGen from PR 11646 in Azure/azure-rest-api-specs Merge 39f7e17acb8d5a96b90a5e5caa4211bdd8c8f088 into 80db0e5cef00f0e666c2e1e39d23729eb0c0b0d8 --- .../src/Generated/Models/PatchVault.cs | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) 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();