custom/FlexibleServer.cs
namespace Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Models.Api20210601
{ using static Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Runtime.Extensions; using System.Security; /// <summary>Represents a server.</summary> public partial class ServerAutoGenerated { private SecureString _SecuredPassword; // <summary> The user password in secure string. Convert the secure string into plain text if necessary. </summary> [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Origin(Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.PropertyOrigin.Inlined)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.DoNotFormat] public SecureString SecuredPassword {get => this._SecuredPassword; set => this._SecuredPassword = value;} private string _FirewallRuleName; // <summary> The name of the firewall rule of the server </summary> [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.Origin(Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.PropertyOrigin.Inlined)] [Microsoft.Azure.PowerShell.Cmdlets.PostgreSql.DoNotFormat] public string FirewallRuleName {get => this._FirewallRuleName; set => this._FirewallRuleName = value;} } } |