Skip to main content

workspace_links

Creates, updates, deletes, gets or lists a workspace_links resource.

Overview

Nameworkspace_links
TypeResource
Idazure.api_management.workspace_links

Fields

The following fields are returned by SELECT queries:

Successfully got the API Management WorkspaceLink resource.

NameDatatypeDescription
etagstringETag of the resource.
propertiesobjectProperties of the API Management WorkspaceLinks.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresourceGroupName, serviceName, workspaceId, subscriptionIdGets an API Management WorkspaceLink resource description.
list_by_serviceselectresourceGroupName, subscriptionId, serviceNameList all API Management workspaceLinks for a service.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
serviceNamestringThe name of the API Management service.
subscriptionIdstringThe ID of the target subscription.
workspaceIdstringWorkspace identifier. Must be unique in the current API Management service instance.

SELECT examples

Gets an API Management WorkspaceLink resource description.

SELECT
etag,
properties
FROM azure.api_management.workspace_links
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND serviceName = '{{ serviceName }}' -- required
AND workspaceId = '{{ workspaceId }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;