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:
- /// <User|Application|ManagedIdentity|Key>. 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:
- /// <User|Application|ManagedIdentity|Key>. 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; }
}
}