Show / Hide Table of Contents

    Class PrivateLinkResourceProperties

    Properties of a private link resource.

    Inheritance
    Object
    PrivateLinkResourceProperties
    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

    RequiredMembers

    Gets the private link resource required member names.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="requiredMembers")]
    public System.Collections.Generic.IList<string> RequiredMembers { get; }
    Property Value
    IList<String>

    Back to top Azure SDK for Net