Skip to main content

workspace_api_version_set

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

Overview

Nameworkspace_api_version_set
TypeResource
Idazure.api_management.workspace_api_version_set

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
namestringThe name of the resource.
descriptionstringDescription of API Version Set.
displayNamestringName of API Version Set. Required.
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".
versionHeaderNamestringName of HTTP header parameter that indicates the API Version if versioningScheme is set to header.
versionQueryNamestringName of query parameter that indicates the API Version if versioningScheme is set to query.
versioningSchemestringAn value that determines where the API Version identifier will be located in a HTTP request. Required. Known values are: "Segment", "Query", and "Header". (Segment, Query, Header)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresource_group_name, service_name, workspace_id, version_set_id, subscription_idGets the details of the Api Version Set specified by its identifier.
list_by_serviceselectresource_group_name, service_name, workspace_id, subscription_id$filter, $top, $skipLists a collection of API Version Sets in the specified workspace with a service instance.
create_or_updateinsertresource_group_name, service_name, workspace_id, version_set_id, subscription_idCreates or Updates a Api Version Set.
updateupdateresource_group_name, service_name, workspace_id, version_set_id, subscription_idUpdates the details of the Api VersionSet specified by its identifier.
create_or_updatereplaceresource_group_name, service_name, workspace_id, version_set_id, subscription_idCreates or Updates a Api Version Set.
deletedeleteresource_group_name, service_name, workspace_id, version_set_id, subscription_idDeletes specific Api Version Set.
get_entity_tagexecresource_group_name, service_name, workspace_id, version_set_id, subscription_idGets the entity state (Etag) version of the Api Version Set specified by its identifier.

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
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
service_namestringThe name of the API Management service. Required.
subscription_idstring
version_set_idstringApi Version Set identifier. Must be unique in the current API Management service instance. Required.
workspace_idstringWorkspace identifier. Must be unique in the current API Management service instance. Required.
$filterstring| Field | Usage | Supported operators | Supported functions ||-------------|-------------|-------------|-------------|. Default value is None.
$skipintegerNumber of records to skip. Default value is None.
$topintegerNumber of records to return. Default value is None.

SELECT examples

Gets the details of the Api Version Set specified by its identifier.

SELECT
id,
name,
description,
displayName,
systemData,
type,
versionHeaderName,
versionQueryName,
versioningScheme
FROM azure.api_management.workspace_api_version_set
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND service_name = '{{ service_name }}' -- required
AND workspace_id = '{{ workspace_id }}' -- required
AND version_set_id = '{{ version_set_id }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;

INSERT examples

Creates or Updates a Api Version Set.

INSERT INTO azure.api_management.workspace_api_version_set (
properties,
resource_group_name,
service_name,
workspace_id,
version_set_id,
subscription_id
)
SELECT
'{{ properties }}',
'{{ resource_group_name }}',
'{{ service_name }}',
'{{ workspace_id }}',
'{{ version_set_id }}',
'{{ subscription_id }}'
RETURNING
id,
name,
properties,
systemData,
type
;

UPDATE examples

Updates the details of the Api VersionSet specified by its identifier.

UPDATE azure.api_management.workspace_api_version_set
SET
properties = '{{ properties }}'
WHERE
resource_group_name = '{{ resource_group_name }}' --required
AND service_name = '{{ service_name }}' --required
AND workspace_id = '{{ workspace_id }}' --required
AND version_set_id = '{{ version_set_id }}' --required
AND subscription_id = '{{ subscription_id }}' --required
RETURNING
id,
name,
properties,
systemData,
type;

REPLACE examples

Creates or Updates a Api Version Set.

REPLACE azure.api_management.workspace_api_version_set
SET
properties = '{{ properties }}'
WHERE
resource_group_name = '{{ resource_group_name }}' --required
AND service_name = '{{ service_name }}' --required
AND workspace_id = '{{ workspace_id }}' --required
AND version_set_id = '{{ version_set_id }}' --required
AND subscription_id = '{{ subscription_id }}' --required
RETURNING
id,
name,
properties,
systemData,
type;

DELETE examples

Deletes specific Api Version Set.

DELETE FROM azure.api_management.workspace_api_version_set
WHERE resource_group_name = '{{ resource_group_name }}' --required
AND service_name = '{{ service_name }}' --required
AND workspace_id = '{{ workspace_id }}' --required
AND version_set_id = '{{ version_set_id }}' --required
AND subscription_id = '{{ subscription_id }}' --required
;

Lifecycle Methods

Gets the entity state (Etag) version of the Api Version Set specified by its identifier.

EXEC azure.api_management.workspace_api_version_set.get_entity_tag 
@resource_group_name='{{ resource_group_name }}' --required,
@service_name='{{ service_name }}' --required,
@workspace_id='{{ workspace_id }}' --required,
@version_set_id='{{ version_set_id }}' --required,
@subscription_id='{{ subscription_id }}' --required
;