diff --git a/src/SDKs/PostgreSQL/Management.PostgreSQL/Generated/Models/ServerUpdateParameters.cs b/src/SDKs/PostgreSQL/Management.PostgreSQL/Generated/Models/ServerUpdateParameters.cs
index f53254d856c9..125c70a21b09 100644
--- a/src/SDKs/PostgreSQL/Management.PostgreSQL/Generated/Models/ServerUpdateParameters.cs
+++ b/src/SDKs/PostgreSQL/Management.PostgreSQL/Generated/Models/ServerUpdateParameters.cs
@@ -43,15 +43,18 @@ public ServerUpdateParameters()
/// Enable ssl enforcement or not when
/// connect to server. Possible values include: 'Enabled',
/// 'Disabled'
+ /// The replication role of the
+ /// server.
/// Application-specific metadata in the form of
/// key-value pairs.
- public ServerUpdateParameters(Sku sku = default(Sku), StorageProfile storageProfile = default(StorageProfile), string administratorLoginPassword = default(string), string version = default(string), SslEnforcementEnum? sslEnforcement = default(SslEnforcementEnum?), IDictionary tags = default(IDictionary))
+ public ServerUpdateParameters(Sku sku = default(Sku), StorageProfile storageProfile = default(StorageProfile), string administratorLoginPassword = default(string), string version = default(string), SslEnforcementEnum? sslEnforcement = default(SslEnforcementEnum?), string replicationRole = default(string), IDictionary tags = default(IDictionary))
{
Sku = sku;
StorageProfile = storageProfile;
AdministratorLoginPassword = administratorLoginPassword;
Version = version;
SslEnforcement = sslEnforcement;
+ ReplicationRole = replicationRole;
Tags = tags;
CustomInit();
}
@@ -93,6 +96,12 @@ public ServerUpdateParameters()
[JsonProperty(PropertyName = "properties.sslEnforcement")]
public SslEnforcementEnum? SslEnforcement { get; set; }
+ ///
+ /// Gets or sets the replication role of the server.
+ ///
+ [JsonProperty(PropertyName = "properties.replicationRole")]
+ public string ReplicationRole { get; set; }
+
///
/// Gets or sets application-specific metadata in the form of key-value
/// pairs.