Class PrivateLinkResourceProperties
Properties of a private link resource.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.Sql.dll
Syntax
public class PrivateLinkResourceProperties
Constructors
PrivateLinkResourceProperties()
Initializes a new instance of the PrivateLinkResourceProperties class.
Declaration
public PrivateLinkResourceProperties ();
PrivateLinkResourceProperties(String, IList<String>)
Initializes a new instance of the PrivateLinkResourceProperties class.
Declaration
public PrivateLinkResourceProperties (string groupId = null, System.Collections.Generic.IList<string> requiredMembers = null);
Parameters
String
groupId
The private link resource group id. |
IList<String>
requiredMembers
The private link resource required member names. |
Properties
GroupId
Gets the private link resource group id.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="groupId")]
public string GroupId { get; }
Property Value
String
|