GetApiVersionSet

Uses this data source to access information about an API Version Set within an API Management Service.

Example Usage

using Pulumi;
using Azure = Pulumi.Azure;

class MyStack : Stack
{
    public MyStack()
    {
        var example = Output.Create(Azure.ApiManagement.GetApiVersionSet.InvokeAsync(new Azure.ApiManagement.GetApiVersionSetArgs
        {
            ResourceGroupName = "example-resources",
            ApiManagementName = "example-api",
            Name = "example-api-version-set",
        }));
        this.ApiManagementApiVersionSetId = example.Apply(example => example.Id);
    }

    [Output("apiManagementApiVersionSetId")]
    public Output<string> ApiManagementApiVersionSetId { get; set; }
}
package main

import (
    "github.com/pulumi/pulumi-azure/sdk/v3/go/azure/apimanagement"
    "github.com/pulumi/pulumi/sdk/v2/go/pulumi"
)

func main() {
    pulumi.Run(func(ctx *pulumi.Context) error {
        example, err := apimanagement.LookupApiVersionSet(ctx, &apimanagement.LookupApiVersionSetArgs{
            ResourceGroupName: "example-resources",
            ApiManagementName: "example-api",
            Name:              "example-api-version-set",
        }, nil)
        if err != nil {
            return err
        }
        ctx.Export("apiManagementApiVersionSetId", example.Id)
        return nil
    })
}
import pulumi
import pulumi_azure as azure

example = azure.apimanagement.get_api_version_set(resource_group_name="example-resources",
    api_management_name="example-api",
    name="example-api-version-set")
pulumi.export("apiManagementApiVersionSetId", example.id)
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";

const example = azure.apimanagement.getApiVersionSet({
    resourceGroupName: "example-resources",
    apiManagementName: "example-api",
    name: "example-api-version-set",
});
export const apiManagementApiVersionSetId = example.then(example => example.id);

Using GetApiVersionSet

function getApiVersionSet(args: GetApiVersionSetArgs, opts?: InvokeOptions): Promise<GetApiVersionSetResult>
function  get_api_version_set(api_management_name=None, name=None, resource_group_name=None, opts=None)
func LookupApiVersionSet(ctx *Context, args *LookupApiVersionSetArgs, opts ...InvokeOption) (*LookupApiVersionSetResult, error)

Note: This function is named LookupApiVersionSet in the Go SDK.

public static class GetApiVersionSet {
    public static Task<GetApiVersionSetResult> InvokeAsync(GetApiVersionSetArgs args, InvokeOptions? opts = null)
}

The following arguments are supported:

ApiManagementName string

The name of the API Management Service where the API Version Set exists.

Name string

The name of the API Version Set.

ResourceGroupName string

The name of the Resource Group in which the parent API Management Service exists.

ApiManagementName string

The name of the API Management Service where the API Version Set exists.

Name string

The name of the API Version Set.

ResourceGroupName string

The name of the Resource Group in which the parent API Management Service exists.

apiManagementName string

The name of the API Management Service where the API Version Set exists.

name string

The name of the API Version Set.

resourceGroupName string

The name of the Resource Group in which the parent API Management Service exists.

api_management_name str

The name of the API Management Service where the API Version Set exists.

name str

The name of the API Version Set.

resource_group_name str

The name of the Resource Group in which the parent API Management Service exists.

GetApiVersionSet Result

The following output properties are available:

ApiManagementName string
Description string

The description of API Version Set.

DisplayName string

The display name of this API Version Set.

Id string

The provider-assigned unique ID for this managed resource.

Name string
ResourceGroupName string
VersionHeaderName string

The name of the Header which should be read from Inbound Requests which defines the API Version.

VersionQueryName string

The name of the Query String which should be read from Inbound Requests which defines the API Version.

VersioningScheme string
ApiManagementName string
Description string

The description of API Version Set.

DisplayName string

The display name of this API Version Set.

Id string

The provider-assigned unique ID for this managed resource.

Name string
ResourceGroupName string
VersionHeaderName string

The name of the Header which should be read from Inbound Requests which defines the API Version.

VersionQueryName string

The name of the Query String which should be read from Inbound Requests which defines the API Version.

VersioningScheme string
apiManagementName string
description string

The description of API Version Set.

displayName string

The display name of this API Version Set.

id string

The provider-assigned unique ID for this managed resource.

name string
resourceGroupName string
versionHeaderName string

The name of the Header which should be read from Inbound Requests which defines the API Version.

versionQueryName string

The name of the Query String which should be read from Inbound Requests which defines the API Version.

versioningScheme string
api_management_name str
description str

The description of API Version Set.

display_name str

The display name of this API Version Set.

id str

The provider-assigned unique ID for this managed resource.

name str
resource_group_name str
version_header_name str

The name of the Header which should be read from Inbound Requests which defines the API Version.

version_query_name str

The name of the Query String which should be read from Inbound Requests which defines the API Version.

versioning_scheme str

Package Details

Repository
https://github.com/pulumi/pulumi-azure
License
Apache-2.0
Notes
This Pulumi package is based on the azurerm Terraform Provider.