From 91c5801627806a0cf3584dedb7b72accee477a01 Mon Sep 17 00:00:00 2001 From: SDKAuto Date: Mon, 29 Mar 2021 02:54:29 +0000 Subject: [PATCH] CodeGen from PR 13689 in Azure/azure-rest-api-specs Merge e4e59cd6a945ac2cd9c1b4ff3536684b99528796 into 1d3ab2e77656a5fadf274668f85f5d1470e3a469 --- .../src/Generated/Models/SystemData.cs | 56 +++++++++---------- 1 file changed, 26 insertions(+), 30 deletions(-) diff --git a/sdk/sqlmanagement/Microsoft.Azure.Management.Sql/src/Generated/Models/SystemData.cs b/sdk/sqlmanagement/Microsoft.Azure.Management.Sql/src/Generated/Models/SystemData.cs index 2c71b27ad8cb..5215a566c46e 100644 --- a/sdk/sqlmanagement/Microsoft.Azure.Management.Sql/src/Generated/Models/SystemData.cs +++ b/sdk/sqlmanagement/Microsoft.Azure.Management.Sql/src/Generated/Models/SystemData.cs @@ -29,22 +29,20 @@ public SystemData() /// /// Initializes a new instance of the SystemData class. /// - /// A string identifier for the identity that - /// created the resource. + /// The identity that created the + /// resource. /// The type of identity that created the - /// resource: <User|Application|ManagedIdentity|Key>. Possible - /// values include: 'User', 'Application', 'ManagedIdentity', - /// 'Key' + /// resource. Possible values include: 'User', 'Application', + /// 'ManagedIdentity', 'Key' /// The timestamp of resource creation /// (UTC). - /// A string identifier for the identity - /// that last modified the resource. + /// The identity that last modified the + /// resource. /// The type of identity that last - /// modified the resource: - /// <User|Application|ManagedIdentity|Key>. Possible values - /// include: 'User', 'Application', 'ManagedIdentity', 'Key' - /// The timestamp of last modification - /// (UTC). + /// modified the resource. Possible values include: 'User', + /// 'Application', 'ManagedIdentity', 'Key' + /// The timestamp of resource last + /// modification (UTC) public SystemData(string createdBy = default(string), string createdByType = default(string), System.DateTime? createdAt = default(System.DateTime?), string lastModifiedBy = default(string), string lastModifiedByType = default(string), System.DateTime? lastModifiedAt = default(System.DateTime?)) { CreatedBy = createdBy; @@ -62,46 +60,44 @@ public SystemData() partial void CustomInit(); /// - /// Gets a string identifier for the identity that created the - /// resource. + /// Gets or sets the identity that created the resource. /// [JsonProperty(PropertyName = "createdBy")] - public string CreatedBy { get; private set; } + public string CreatedBy { get; set; } /// - /// Gets the type of identity that created the resource: - /// &lt;User|Application|ManagedIdentity|Key&gt;. Possible - /// values include: 'User', 'Application', 'ManagedIdentity', 'Key' + /// Gets or sets the type of identity that created the resource. + /// Possible values include: 'User', 'Application', 'ManagedIdentity', + /// 'Key' /// [JsonProperty(PropertyName = "createdByType")] - public string CreatedByType { get; private set; } + public string CreatedByType { get; set; } /// - /// Gets the timestamp of resource creation (UTC). + /// Gets or sets the timestamp of resource creation (UTC). /// [JsonProperty(PropertyName = "createdAt")] - public System.DateTime? CreatedAt { get; private set; } + public System.DateTime? CreatedAt { get; set; } /// - /// Gets a string identifier for the identity that last modified the - /// resource. + /// Gets or sets the identity that last modified the resource. /// [JsonProperty(PropertyName = "lastModifiedBy")] - public string LastModifiedBy { get; private set; } + public string LastModifiedBy { get; set; } /// - /// Gets the type of identity that last modified the resource: - /// &lt;User|Application|ManagedIdentity|Key&gt;. Possible - /// values include: 'User', 'Application', 'ManagedIdentity', 'Key' + /// Gets or sets the type of identity that last modified the resource. + /// Possible values include: 'User', 'Application', 'ManagedIdentity', + /// 'Key' /// [JsonProperty(PropertyName = "lastModifiedByType")] - public string LastModifiedByType { get; private set; } + public string LastModifiedByType { get; set; } /// - /// Gets the timestamp of last modification (UTC). + /// Gets or sets the timestamp of resource last modification (UTC) /// [JsonProperty(PropertyName = "lastModifiedAt")] - public System.DateTime? LastModifiedAt { get; private set; } + public System.DateTime? LastModifiedAt { get; set; } } }