Private Link Resources - List

Gets the private link resources that need to be created for a Cognitive Services account.

GET https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.CognitiveServices/accounts/{accountName}/privateLinkResources?api-version=2023-05-01

URI Parameters

Name In Required Type Description
accountName
path True

string

The name of Cognitive Services account.

Regex pattern: ^[a-zA-Z0-9][a-zA-Z0-9_.-]*$

resourceGroupName
path True

string

The name of the resource group. The name is case insensitive.

subscriptionId
path True

string

The ID of the target subscription.

api-version
query True

string

The API version to use for this operation.

Responses

Name Type Description
200 OK

PrivateLinkResourceListResult

Successfully retrieved private link resources.

Other Status Codes

ErrorResponse

Error response describing why the operation failed.

Examples

ListPrivateLinkResources

Sample request

GET https://management.azure.com/subscriptions/{subscription-id}/resourceGroups/res6977/providers/Microsoft.CognitiveServices/accounts/sto2527/privateLinkResources?api-version=2023-05-01

Sample response

{
  "value": [
    {
      "id": "/subscriptions/{subscription-id}/resourceGroups/res6977/providers/Microsoft.CognitiveServices/accounts/sto2527/privateLinkResources/account",
      "name": "blob",
      "type": "Microsoft.CognitiveServices/accounts/privateLinkResources",
      "properties": {
        "groupId": "account",
        "requiredMembers": [
          "default"
        ],
        "requiredZoneNames": [
          "privatelink.cognitiveservices.azure.com"
        ]
      }
    }
  ]
}

Definitions

Name Description
ErrorAdditionalInfo

The resource management error additional info.

ErrorDetail

The error detail.

ErrorResponse

Error response

PrivateLinkResource

A private link resource

PrivateLinkResourceListResult

A list of private link resources

PrivateLinkResourceProperties

Properties of a private link resource.

ErrorAdditionalInfo

The resource management error additional info.

Name Type Description
info

object

The additional info.

type

string

The additional info type.

ErrorDetail

The error detail.

Name Type Description
additionalInfo

ErrorAdditionalInfo[]

The error additional info.

code

string

The error code.

details

ErrorDetail[]

The error details.

message

string

The error message.

target

string

The error target.

ErrorResponse

Error response

Name Type Description
error

ErrorDetail

The error object.

PrivateLinkResource

A private link resource

Name Type Description
id

string

Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}

name

string

The name of the resource

properties

PrivateLinkResourceProperties

Resource properties.

type

string

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

PrivateLinkResourceListResult

A list of private link resources

Name Type Description
value

PrivateLinkResource[]

Array of private link resources

PrivateLinkResourceProperties

Properties of a private link resource.

Name Type Description
displayName

string

The private link resource display name.

groupId

string

The private link resource group id.

requiredMembers

string[]

The private link resource required member names.

requiredZoneNames

string[]

The private link resource Private link DNS zone name.