1. Packages
  2. Azure Classic
  3. API Docs
  4. apimanagement
  5. Api

We recommend using Azure Native.

Azure v6.22.0 published on Tuesday, Apr 1, 2025 by Pulumi

azure.apimanagement.Api

Explore with Pulumi AI

Manages an API within an API Management Service.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";

const example = new azure.core.ResourceGroup("example", {
    name: "example-resources",
    location: "West Europe",
});
const exampleService = new azure.apimanagement.Service("example", {
    name: "example-apim",
    location: example.location,
    resourceGroupName: example.name,
    publisherName: "My Company",
    publisherEmail: "company@exmaple.com",
    skuName: "Developer_1",
});
const exampleApi = new azure.apimanagement.Api("example", {
    name: "example-api",
    resourceGroupName: example.name,
    apiManagementName: exampleService.name,
    revision: "1",
    displayName: "Example API",
    path: "example",
    protocols: ["https"],
    "import": {
        contentFormat: "swagger-link-json",
        contentValue: "https://raw.githubusercontent.com/hashicorp/terraform-provider-azurerm/refs/heads/main/internal/services/apimanagement/testdata/api_management_api_schema_swagger.json",
    },
});
Copy
import pulumi
import pulumi_azure as azure

example = azure.core.ResourceGroup("example",
    name="example-resources",
    location="West Europe")
example_service = azure.apimanagement.Service("example",
    name="example-apim",
    location=example.location,
    resource_group_name=example.name,
    publisher_name="My Company",
    publisher_email="company@exmaple.com",
    sku_name="Developer_1")
example_api = azure.apimanagement.Api("example",
    name="example-api",
    resource_group_name=example.name,
    api_management_name=example_service.name,
    revision="1",
    display_name="Example API",
    path="example",
    protocols=["https"],
    import_={
        "content_format": "swagger-link-json",
        "content_value": "https://raw.githubusercontent.com/hashicorp/terraform-provider-azurerm/refs/heads/main/internal/services/apimanagement/testdata/api_management_api_schema_swagger.json",
    })
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
			Name:     pulumi.String("example-resources"),
			Location: pulumi.String("West Europe"),
		})
		if err != nil {
			return err
		}
		exampleService, err := apimanagement.NewService(ctx, "example", &apimanagement.ServiceArgs{
			Name:              pulumi.String("example-apim"),
			Location:          example.Location,
			ResourceGroupName: example.Name,
			PublisherName:     pulumi.String("My Company"),
			PublisherEmail:    pulumi.String("company@exmaple.com"),
			SkuName:           pulumi.String("Developer_1"),
		})
		if err != nil {
			return err
		}
		_, err = apimanagement.NewApi(ctx, "example", &apimanagement.ApiArgs{
			Name:              pulumi.String("example-api"),
			ResourceGroupName: example.Name,
			ApiManagementName: exampleService.Name,
			Revision:          pulumi.String("1"),
			DisplayName:       pulumi.String("Example API"),
			Path:              pulumi.String("example"),
			Protocols: pulumi.StringArray{
				pulumi.String("https"),
			},
			Import: &apimanagement.ApiImportArgs{
				ContentFormat: pulumi.String("swagger-link-json"),
				ContentValue:  pulumi.String("https://raw.githubusercontent.com/hashicorp/terraform-provider-azurerm/refs/heads/main/internal/services/apimanagement/testdata/api_management_api_schema_swagger.json"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;

return await Deployment.RunAsync(() => 
{
    var example = new Azure.Core.ResourceGroup("example", new()
    {
        Name = "example-resources",
        Location = "West Europe",
    });

    var exampleService = new Azure.ApiManagement.Service("example", new()
    {
        Name = "example-apim",
        Location = example.Location,
        ResourceGroupName = example.Name,
        PublisherName = "My Company",
        PublisherEmail = "company@exmaple.com",
        SkuName = "Developer_1",
    });

    var exampleApi = new Azure.ApiManagement.Api("example", new()
    {
        Name = "example-api",
        ResourceGroupName = example.Name,
        ApiManagementName = exampleService.Name,
        Revision = "1",
        DisplayName = "Example API",
        Path = "example",
        Protocols = new[]
        {
            "https",
        },
        Import = new Azure.ApiManagement.Inputs.ApiImportArgs
        {
            ContentFormat = "swagger-link-json",
            ContentValue = "https://raw.githubusercontent.com/hashicorp/terraform-provider-azurerm/refs/heads/main/internal/services/apimanagement/testdata/api_management_api_schema_swagger.json",
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.apimanagement.Service;
import com.pulumi.azure.apimanagement.ServiceArgs;
import com.pulumi.azure.apimanagement.Api;
import com.pulumi.azure.apimanagement.ApiArgs;
import com.pulumi.azure.apimanagement.inputs.ApiImportArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var example = new ResourceGroup("example", ResourceGroupArgs.builder()
            .name("example-resources")
            .location("West Europe")
            .build());

        var exampleService = new Service("exampleService", ServiceArgs.builder()
            .name("example-apim")
            .location(example.location())
            .resourceGroupName(example.name())
            .publisherName("My Company")
            .publisherEmail("company@exmaple.com")
            .skuName("Developer_1")
            .build());

        var exampleApi = new Api("exampleApi", ApiArgs.builder()
            .name("example-api")
            .resourceGroupName(example.name())
            .apiManagementName(exampleService.name())
            .revision("1")
            .displayName("Example API")
            .path("example")
            .protocols("https")
            .import_(ApiImportArgs.builder()
                .contentFormat("swagger-link-json")
                .contentValue("https://raw.githubusercontent.com/hashicorp/terraform-provider-azurerm/refs/heads/main/internal/services/apimanagement/testdata/api_management_api_schema_swagger.json")
                .build())
            .build());

    }
}
Copy
resources:
  example:
    type: azure:core:ResourceGroup
    properties:
      name: example-resources
      location: West Europe
  exampleService:
    type: azure:apimanagement:Service
    name: example
    properties:
      name: example-apim
      location: ${example.location}
      resourceGroupName: ${example.name}
      publisherName: My Company
      publisherEmail: company@exmaple.com
      skuName: Developer_1
  exampleApi:
    type: azure:apimanagement:Api
    name: example
    properties:
      name: example-api
      resourceGroupName: ${example.name}
      apiManagementName: ${exampleService.name}
      revision: '1'
      displayName: Example API
      path: example
      protocols:
        - https
      import:
        contentFormat: swagger-link-json
        contentValue: https://raw.githubusercontent.com/hashicorp/terraform-provider-azurerm/refs/heads/main/internal/services/apimanagement/testdata/api_management_api_schema_swagger.json
Copy

Create Api Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new Api(name: string, args: ApiArgs, opts?: CustomResourceOptions);
@overload
def Api(resource_name: str,
        args: ApiArgs,
        opts: Optional[ResourceOptions] = None)

@overload
def Api(resource_name: str,
        opts: Optional[ResourceOptions] = None,
        api_management_name: Optional[str] = None,
        revision: Optional[str] = None,
        resource_group_name: Optional[str] = None,
        path: Optional[str] = None,
        contact: Optional[ApiContactArgs] = None,
        import_: Optional[ApiImportArgs] = None,
        license: Optional[ApiLicenseArgs] = None,
        name: Optional[str] = None,
        oauth2_authorization: Optional[ApiOauth2AuthorizationArgs] = None,
        openid_authentication: Optional[ApiOpenidAuthenticationArgs] = None,
        description: Optional[str] = None,
        protocols: Optional[Sequence[str]] = None,
        display_name: Optional[str] = None,
        api_type: Optional[str] = None,
        revision_description: Optional[str] = None,
        service_url: Optional[str] = None,
        source_api_id: Optional[str] = None,
        subscription_key_parameter_names: Optional[ApiSubscriptionKeyParameterNamesArgs] = None,
        subscription_required: Optional[bool] = None,
        terms_of_service_url: Optional[str] = None,
        version: Optional[str] = None,
        version_description: Optional[str] = None,
        version_set_id: Optional[str] = None)
func NewApi(ctx *Context, name string, args ApiArgs, opts ...ResourceOption) (*Api, error)
public Api(string name, ApiArgs args, CustomResourceOptions? opts = null)
public Api(String name, ApiArgs args)
public Api(String name, ApiArgs args, CustomResourceOptions options)
type: azure:apimanagement:Api
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ApiArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. ApiArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. ApiArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ApiArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ApiArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var apiResource = new Azure.ApiManagement.Api("apiResource", new()
{
    ApiManagementName = "string",
    Revision = "string",
    ResourceGroupName = "string",
    Path = "string",
    Contact = new Azure.ApiManagement.Inputs.ApiContactArgs
    {
        Email = "string",
        Name = "string",
        Url = "string",
    },
    Import = new Azure.ApiManagement.Inputs.ApiImportArgs
    {
        ContentFormat = "string",
        ContentValue = "string",
        WsdlSelector = new Azure.ApiManagement.Inputs.ApiImportWsdlSelectorArgs
        {
            EndpointName = "string",
            ServiceName = "string",
        },
    },
    License = new Azure.ApiManagement.Inputs.ApiLicenseArgs
    {
        Name = "string",
        Url = "string",
    },
    Name = "string",
    Oauth2Authorization = new Azure.ApiManagement.Inputs.ApiOauth2AuthorizationArgs
    {
        AuthorizationServerName = "string",
        Scope = "string",
    },
    OpenidAuthentication = new Azure.ApiManagement.Inputs.ApiOpenidAuthenticationArgs
    {
        OpenidProviderName = "string",
        BearerTokenSendingMethods = new[]
        {
            "string",
        },
    },
    Description = "string",
    Protocols = new[]
    {
        "string",
    },
    DisplayName = "string",
    ApiType = "string",
    RevisionDescription = "string",
    ServiceUrl = "string",
    SourceApiId = "string",
    SubscriptionKeyParameterNames = new Azure.ApiManagement.Inputs.ApiSubscriptionKeyParameterNamesArgs
    {
        Header = "string",
        Query = "string",
    },
    SubscriptionRequired = false,
    TermsOfServiceUrl = "string",
    Version = "string",
    VersionDescription = "string",
    VersionSetId = "string",
});
Copy
example, err := apimanagement.NewApi(ctx, "apiResource", &apimanagement.ApiArgs{
	ApiManagementName: pulumi.String("string"),
	Revision:          pulumi.String("string"),
	ResourceGroupName: pulumi.String("string"),
	Path:              pulumi.String("string"),
	Contact: &apimanagement.ApiContactArgs{
		Email: pulumi.String("string"),
		Name:  pulumi.String("string"),
		Url:   pulumi.String("string"),
	},
	Import: &apimanagement.ApiImportArgs{
		ContentFormat: pulumi.String("string"),
		ContentValue:  pulumi.String("string"),
		WsdlSelector: &apimanagement.ApiImportWsdlSelectorArgs{
			EndpointName: pulumi.String("string"),
			ServiceName:  pulumi.String("string"),
		},
	},
	License: &apimanagement.ApiLicenseArgs{
		Name: pulumi.String("string"),
		Url:  pulumi.String("string"),
	},
	Name: pulumi.String("string"),
	Oauth2Authorization: &apimanagement.ApiOauth2AuthorizationArgs{
		AuthorizationServerName: pulumi.String("string"),
		Scope:                   pulumi.String("string"),
	},
	OpenidAuthentication: &apimanagement.ApiOpenidAuthenticationArgs{
		OpenidProviderName: pulumi.String("string"),
		BearerTokenSendingMethods: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
	Description: pulumi.String("string"),
	Protocols: pulumi.StringArray{
		pulumi.String("string"),
	},
	DisplayName:         pulumi.String("string"),
	ApiType:             pulumi.String("string"),
	RevisionDescription: pulumi.String("string"),
	ServiceUrl:          pulumi.String("string"),
	SourceApiId:         pulumi.String("string"),
	SubscriptionKeyParameterNames: &apimanagement.ApiSubscriptionKeyParameterNamesArgs{
		Header: pulumi.String("string"),
		Query:  pulumi.String("string"),
	},
	SubscriptionRequired: pulumi.Bool(false),
	TermsOfServiceUrl:    pulumi.String("string"),
	Version:              pulumi.String("string"),
	VersionDescription:   pulumi.String("string"),
	VersionSetId:         pulumi.String("string"),
})
Copy
var apiResource = new Api("apiResource", ApiArgs.builder()
    .apiManagementName("string")
    .revision("string")
    .resourceGroupName("string")
    .path("string")
    .contact(ApiContactArgs.builder()
        .email("string")
        .name("string")
        .url("string")
        .build())
    .import_(ApiImportArgs.builder()
        .contentFormat("string")
        .contentValue("string")
        .wsdlSelector(ApiImportWsdlSelectorArgs.builder()
            .endpointName("string")
            .serviceName("string")
            .build())
        .build())
    .license(ApiLicenseArgs.builder()
        .name("string")
        .url("string")
        .build())
    .name("string")
    .oauth2Authorization(ApiOauth2AuthorizationArgs.builder()
        .authorizationServerName("string")
        .scope("string")
        .build())
    .openidAuthentication(ApiOpenidAuthenticationArgs.builder()
        .openidProviderName("string")
        .bearerTokenSendingMethods("string")
        .build())
    .description("string")
    .protocols("string")
    .displayName("string")
    .apiType("string")
    .revisionDescription("string")
    .serviceUrl("string")
    .sourceApiId("string")
    .subscriptionKeyParameterNames(ApiSubscriptionKeyParameterNamesArgs.builder()
        .header("string")
        .query("string")
        .build())
    .subscriptionRequired(false)
    .termsOfServiceUrl("string")
    .version("string")
    .versionDescription("string")
    .versionSetId("string")
    .build());
Copy
api_resource = azure.apimanagement.Api("apiResource",
    api_management_name="string",
    revision="string",
    resource_group_name="string",
    path="string",
    contact={
        "email": "string",
        "name": "string",
        "url": "string",
    },
    import_={
        "content_format": "string",
        "content_value": "string",
        "wsdl_selector": {
            "endpoint_name": "string",
            "service_name": "string",
        },
    },
    license={
        "name": "string",
        "url": "string",
    },
    name="string",
    oauth2_authorization={
        "authorization_server_name": "string",
        "scope": "string",
    },
    openid_authentication={
        "openid_provider_name": "string",
        "bearer_token_sending_methods": ["string"],
    },
    description="string",
    protocols=["string"],
    display_name="string",
    api_type="string",
    revision_description="string",
    service_url="string",
    source_api_id="string",
    subscription_key_parameter_names={
        "header": "string",
        "query": "string",
    },
    subscription_required=False,
    terms_of_service_url="string",
    version="string",
    version_description="string",
    version_set_id="string")
Copy
const apiResource = new azure.apimanagement.Api("apiResource", {
    apiManagementName: "string",
    revision: "string",
    resourceGroupName: "string",
    path: "string",
    contact: {
        email: "string",
        name: "string",
        url: "string",
    },
    "import": {
        contentFormat: "string",
        contentValue: "string",
        wsdlSelector: {
            endpointName: "string",
            serviceName: "string",
        },
    },
    license: {
        name: "string",
        url: "string",
    },
    name: "string",
    oauth2Authorization: {
        authorizationServerName: "string",
        scope: "string",
    },
    openidAuthentication: {
        openidProviderName: "string",
        bearerTokenSendingMethods: ["string"],
    },
    description: "string",
    protocols: ["string"],
    displayName: "string",
    apiType: "string",
    revisionDescription: "string",
    serviceUrl: "string",
    sourceApiId: "string",
    subscriptionKeyParameterNames: {
        header: "string",
        query: "string",
    },
    subscriptionRequired: false,
    termsOfServiceUrl: "string",
    version: "string",
    versionDescription: "string",
    versionSetId: "string",
});
Copy
type: azure:apimanagement:Api
properties:
    apiManagementName: string
    apiType: string
    contact:
        email: string
        name: string
        url: string
    description: string
    displayName: string
    import:
        contentFormat: string
        contentValue: string
        wsdlSelector:
            endpointName: string
            serviceName: string
    license:
        name: string
        url: string
    name: string
    oauth2Authorization:
        authorizationServerName: string
        scope: string
    openidAuthentication:
        bearerTokenSendingMethods:
            - string
        openidProviderName: string
    path: string
    protocols:
        - string
    resourceGroupName: string
    revision: string
    revisionDescription: string
    serviceUrl: string
    sourceApiId: string
    subscriptionKeyParameterNames:
        header: string
        query: string
    subscriptionRequired: false
    termsOfServiceUrl: string
    version: string
    versionDescription: string
    versionSetId: string
Copy

Api Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The Api resource accepts the following input properties:

ApiManagementName
This property is required.
Changes to this property will trigger replacement.
string
The Name of the API Management Service where this API should be created. Changing this forces a new resource to be created.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The Name of the Resource Group where the API Management API exists. Changing this forces a new resource to be created.
Revision
This property is required.
Changes to this property will trigger replacement.
string
The Revision which used for this API. Changing this forces a new resource to be created.
ApiType string
Type of API. Possible values are graphql, http, soap, and websocket. Defaults to http.
Contact ApiContact
A contact block as documented below.
Description string
A description of the API Management API, which may include HTML formatting tags.
DisplayName string
The display name of the API.
Import ApiImport

A import block as documented below.

NOTE: The display_name, description, contact, and license fields can be imported by the import block, which might cause a drift if these fields are set along with the import block.

License ApiLicense
A license block as documented below.
Name Changes to this property will trigger replacement. string
The name of the API Management API. Changing this forces a new resource to be created.
Oauth2Authorization ApiOauth2Authorization
An oauth2_authorization block as documented below.
OpenidAuthentication ApiOpenidAuthentication
An openid_authentication block as documented below.
Path string
The Path for this API Management API, which is a relative URL which uniquely identifies this API and all of its resource paths within the API Management Service.
Protocols List<string>

A list of protocols the operations in this API can be invoked. Possible values are http, https, ws, and wss.

NOTE: display_name, path and protocols are required when source_api_id is not set.

RevisionDescription string
The description of the API Revision of the API Management API.
ServiceUrl string
Absolute URL of the backend service implementing this API.
SourceApiId string
The API id of the source API, which could be in format azurerm_api_management_api.example.id or in format azurerm_api_management_api.example.id;rev=1
SubscriptionKeyParameterNames ApiSubscriptionKeyParameterNames
A subscription_key_parameter_names block as documented below.
SubscriptionRequired bool
Should this API require a subscription key? Defaults to true.
TermsOfServiceUrl string
Absolute URL of the Terms of Service for the API.
Version string
The Version number of this API, if this API is versioned.
VersionDescription string
The description of the API Version of the API Management API.
VersionSetId string

The ID of the Version Set which this API is associated with.

NOTE: When version is set, version_set_id must also be specified

ApiManagementName
This property is required.
Changes to this property will trigger replacement.
string
The Name of the API Management Service where this API should be created. Changing this forces a new resource to be created.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The Name of the Resource Group where the API Management API exists. Changing this forces a new resource to be created.
Revision
This property is required.
Changes to this property will trigger replacement.
string
The Revision which used for this API. Changing this forces a new resource to be created.
ApiType string
Type of API. Possible values are graphql, http, soap, and websocket. Defaults to http.
Contact ApiContactArgs
A contact block as documented below.
Description string
A description of the API Management API, which may include HTML formatting tags.
DisplayName string
The display name of the API.
Import ApiImportArgs

A import block as documented below.

NOTE: The display_name, description, contact, and license fields can be imported by the import block, which might cause a drift if these fields are set along with the import block.

License ApiLicenseArgs
A license block as documented below.
Name Changes to this property will trigger replacement. string
The name of the API Management API. Changing this forces a new resource to be created.
Oauth2Authorization ApiOauth2AuthorizationArgs
An oauth2_authorization block as documented below.
OpenidAuthentication ApiOpenidAuthenticationArgs
An openid_authentication block as documented below.
Path string
The Path for this API Management API, which is a relative URL which uniquely identifies this API and all of its resource paths within the API Management Service.
Protocols []string

A list of protocols the operations in this API can be invoked. Possible values are http, https, ws, and wss.

NOTE: display_name, path and protocols are required when source_api_id is not set.

RevisionDescription string
The description of the API Revision of the API Management API.
ServiceUrl string
Absolute URL of the backend service implementing this API.
SourceApiId string
The API id of the source API, which could be in format azurerm_api_management_api.example.id or in format azurerm_api_management_api.example.id;rev=1
SubscriptionKeyParameterNames ApiSubscriptionKeyParameterNamesArgs
A subscription_key_parameter_names block as documented below.
SubscriptionRequired bool
Should this API require a subscription key? Defaults to true.
TermsOfServiceUrl string
Absolute URL of the Terms of Service for the API.
Version string
The Version number of this API, if this API is versioned.
VersionDescription string
The description of the API Version of the API Management API.
VersionSetId string

The ID of the Version Set which this API is associated with.

NOTE: When version is set, version_set_id must also be specified

apiManagementName
This property is required.
Changes to this property will trigger replacement.
String
The Name of the API Management Service where this API should be created. Changing this forces a new resource to be created.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The Name of the Resource Group where the API Management API exists. Changing this forces a new resource to be created.
revision
This property is required.
Changes to this property will trigger replacement.
String
The Revision which used for this API. Changing this forces a new resource to be created.
apiType String
Type of API. Possible values are graphql, http, soap, and websocket. Defaults to http.
contact ApiContact
A contact block as documented below.
description String
A description of the API Management API, which may include HTML formatting tags.
displayName String
The display name of the API.
import_ ApiImport

A import block as documented below.

NOTE: The display_name, description, contact, and license fields can be imported by the import block, which might cause a drift if these fields are set along with the import block.

license ApiLicense
A license block as documented below.
name Changes to this property will trigger replacement. String
The name of the API Management API. Changing this forces a new resource to be created.
oauth2Authorization ApiOauth2Authorization
An oauth2_authorization block as documented below.
openidAuthentication ApiOpenidAuthentication
An openid_authentication block as documented below.
path String
The Path for this API Management API, which is a relative URL which uniquely identifies this API and all of its resource paths within the API Management Service.
protocols List<String>

A list of protocols the operations in this API can be invoked. Possible values are http, https, ws, and wss.

NOTE: display_name, path and protocols are required when source_api_id is not set.

revisionDescription String
The description of the API Revision of the API Management API.
serviceUrl String
Absolute URL of the backend service implementing this API.
sourceApiId String
The API id of the source API, which could be in format azurerm_api_management_api.example.id or in format azurerm_api_management_api.example.id;rev=1
subscriptionKeyParameterNames ApiSubscriptionKeyParameterNames
A subscription_key_parameter_names block as documented below.
subscriptionRequired Boolean
Should this API require a subscription key? Defaults to true.
termsOfServiceUrl String
Absolute URL of the Terms of Service for the API.
version String
The Version number of this API, if this API is versioned.
versionDescription String
The description of the API Version of the API Management API.
versionSetId String

The ID of the Version Set which this API is associated with.

NOTE: When version is set, version_set_id must also be specified

apiManagementName
This property is required.
Changes to this property will trigger replacement.
string
The Name of the API Management Service where this API should be created. Changing this forces a new resource to be created.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The Name of the Resource Group where the API Management API exists. Changing this forces a new resource to be created.
revision
This property is required.
Changes to this property will trigger replacement.
string
The Revision which used for this API. Changing this forces a new resource to be created.
apiType string
Type of API. Possible values are graphql, http, soap, and websocket. Defaults to http.
contact ApiContact
A contact block as documented below.
description string
A description of the API Management API, which may include HTML formatting tags.
displayName string
The display name of the API.
import ApiImport

A import block as documented below.

NOTE: The display_name, description, contact, and license fields can be imported by the import block, which might cause a drift if these fields are set along with the import block.

license ApiLicense
A license block as documented below.
name Changes to this property will trigger replacement. string
The name of the API Management API. Changing this forces a new resource to be created.
oauth2Authorization ApiOauth2Authorization
An oauth2_authorization block as documented below.
openidAuthentication ApiOpenidAuthentication
An openid_authentication block as documented below.
path string
The Path for this API Management API, which is a relative URL which uniquely identifies this API and all of its resource paths within the API Management Service.
protocols string[]

A list of protocols the operations in this API can be invoked. Possible values are http, https, ws, and wss.

NOTE: display_name, path and protocols are required when source_api_id is not set.

revisionDescription string
The description of the API Revision of the API Management API.
serviceUrl string
Absolute URL of the backend service implementing this API.
sourceApiId string
The API id of the source API, which could be in format azurerm_api_management_api.example.id or in format azurerm_api_management_api.example.id;rev=1
subscriptionKeyParameterNames ApiSubscriptionKeyParameterNames
A subscription_key_parameter_names block as documented below.
subscriptionRequired boolean
Should this API require a subscription key? Defaults to true.
termsOfServiceUrl string
Absolute URL of the Terms of Service for the API.
version string
The Version number of this API, if this API is versioned.
versionDescription string
The description of the API Version of the API Management API.
versionSetId string

The ID of the Version Set which this API is associated with.

NOTE: When version is set, version_set_id must also be specified

api_management_name
This property is required.
Changes to this property will trigger replacement.
str
The Name of the API Management Service where this API should be created. Changing this forces a new resource to be created.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The Name of the Resource Group where the API Management API exists. Changing this forces a new resource to be created.
revision
This property is required.
Changes to this property will trigger replacement.
str
The Revision which used for this API. Changing this forces a new resource to be created.
api_type str
Type of API. Possible values are graphql, http, soap, and websocket. Defaults to http.
contact ApiContactArgs
A contact block as documented below.
description str
A description of the API Management API, which may include HTML formatting tags.
display_name str
The display name of the API.
import_ ApiImportArgs

A import block as documented below.

NOTE: The display_name, description, contact, and license fields can be imported by the import block, which might cause a drift if these fields are set along with the import block.

license ApiLicenseArgs
A license block as documented below.
name Changes to this property will trigger replacement. str
The name of the API Management API. Changing this forces a new resource to be created.
oauth2_authorization ApiOauth2AuthorizationArgs
An oauth2_authorization block as documented below.
openid_authentication ApiOpenidAuthenticationArgs
An openid_authentication block as documented below.
path str
The Path for this API Management API, which is a relative URL which uniquely identifies this API and all of its resource paths within the API Management Service.
protocols Sequence[str]

A list of protocols the operations in this API can be invoked. Possible values are http, https, ws, and wss.

NOTE: display_name, path and protocols are required when source_api_id is not set.

revision_description str
The description of the API Revision of the API Management API.
service_url str
Absolute URL of the backend service implementing this API.
source_api_id str
The API id of the source API, which could be in format azurerm_api_management_api.example.id or in format azurerm_api_management_api.example.id;rev=1
subscription_key_parameter_names ApiSubscriptionKeyParameterNamesArgs
A subscription_key_parameter_names block as documented below.
subscription_required bool
Should this API require a subscription key? Defaults to true.
terms_of_service_url str
Absolute URL of the Terms of Service for the API.
version str
The Version number of this API, if this API is versioned.
version_description str
The description of the API Version of the API Management API.
version_set_id str

The ID of the Version Set which this API is associated with.

NOTE: When version is set, version_set_id must also be specified

apiManagementName
This property is required.
Changes to this property will trigger replacement.
String
The Name of the API Management Service where this API should be created. Changing this forces a new resource to be created.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The Name of the Resource Group where the API Management API exists. Changing this forces a new resource to be created.
revision
This property is required.
Changes to this property will trigger replacement.
String
The Revision which used for this API. Changing this forces a new resource to be created.
apiType String
Type of API. Possible values are graphql, http, soap, and websocket. Defaults to http.
contact Property Map
A contact block as documented below.
description String
A description of the API Management API, which may include HTML formatting tags.
displayName String
The display name of the API.
import Property Map

A import block as documented below.

NOTE: The display_name, description, contact, and license fields can be imported by the import block, which might cause a drift if these fields are set along with the import block.

license Property Map
A license block as documented below.
name Changes to this property will trigger replacement. String
The name of the API Management API. Changing this forces a new resource to be created.
oauth2Authorization Property Map
An oauth2_authorization block as documented below.
openidAuthentication Property Map
An openid_authentication block as documented below.
path String
The Path for this API Management API, which is a relative URL which uniquely identifies this API and all of its resource paths within the API Management Service.
protocols List<String>

A list of protocols the operations in this API can be invoked. Possible values are http, https, ws, and wss.

NOTE: display_name, path and protocols are required when source_api_id is not set.

revisionDescription String
The description of the API Revision of the API Management API.
serviceUrl String
Absolute URL of the backend service implementing this API.
sourceApiId String
The API id of the source API, which could be in format azurerm_api_management_api.example.id or in format azurerm_api_management_api.example.id;rev=1
subscriptionKeyParameterNames Property Map
A subscription_key_parameter_names block as documented below.
subscriptionRequired Boolean
Should this API require a subscription key? Defaults to true.
termsOfServiceUrl String
Absolute URL of the Terms of Service for the API.
version String
The Version number of this API, if this API is versioned.
versionDescription String
The description of the API Version of the API Management API.
versionSetId String

The ID of the Version Set which this API is associated with.

NOTE: When version is set, version_set_id must also be specified

Outputs

All input properties are implicitly available as output properties. Additionally, the Api resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
IsCurrent bool
Is this the current API Revision?
IsOnline bool
Is this API Revision online/accessible via the Gateway?
Id string
The provider-assigned unique ID for this managed resource.
IsCurrent bool
Is this the current API Revision?
IsOnline bool
Is this API Revision online/accessible via the Gateway?
id String
The provider-assigned unique ID for this managed resource.
isCurrent Boolean
Is this the current API Revision?
isOnline Boolean
Is this API Revision online/accessible via the Gateway?
id string
The provider-assigned unique ID for this managed resource.
isCurrent boolean
Is this the current API Revision?
isOnline boolean
Is this API Revision online/accessible via the Gateway?
id str
The provider-assigned unique ID for this managed resource.
is_current bool
Is this the current API Revision?
is_online bool
Is this API Revision online/accessible via the Gateway?
id String
The provider-assigned unique ID for this managed resource.
isCurrent Boolean
Is this the current API Revision?
isOnline Boolean
Is this API Revision online/accessible via the Gateway?

Look up Existing Api Resource

Get an existing Api resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: ApiState, opts?: CustomResourceOptions): Api
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        api_management_name: Optional[str] = None,
        api_type: Optional[str] = None,
        contact: Optional[ApiContactArgs] = None,
        description: Optional[str] = None,
        display_name: Optional[str] = None,
        import_: Optional[ApiImportArgs] = None,
        is_current: Optional[bool] = None,
        is_online: Optional[bool] = None,
        license: Optional[ApiLicenseArgs] = None,
        name: Optional[str] = None,
        oauth2_authorization: Optional[ApiOauth2AuthorizationArgs] = None,
        openid_authentication: Optional[ApiOpenidAuthenticationArgs] = None,
        path: Optional[str] = None,
        protocols: Optional[Sequence[str]] = None,
        resource_group_name: Optional[str] = None,
        revision: Optional[str] = None,
        revision_description: Optional[str] = None,
        service_url: Optional[str] = None,
        source_api_id: Optional[str] = None,
        subscription_key_parameter_names: Optional[ApiSubscriptionKeyParameterNamesArgs] = None,
        subscription_required: Optional[bool] = None,
        terms_of_service_url: Optional[str] = None,
        version: Optional[str] = None,
        version_description: Optional[str] = None,
        version_set_id: Optional[str] = None) -> Api
func GetApi(ctx *Context, name string, id IDInput, state *ApiState, opts ...ResourceOption) (*Api, error)
public static Api Get(string name, Input<string> id, ApiState? state, CustomResourceOptions? opts = null)
public static Api get(String name, Output<String> id, ApiState state, CustomResourceOptions options)
resources:  _:    type: azure:apimanagement:Api    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
ApiManagementName Changes to this property will trigger replacement. string
The Name of the API Management Service where this API should be created. Changing this forces a new resource to be created.
ApiType string
Type of API. Possible values are graphql, http, soap, and websocket. Defaults to http.
Contact ApiContact
A contact block as documented below.
Description string
A description of the API Management API, which may include HTML formatting tags.
DisplayName string
The display name of the API.
Import ApiImport

A import block as documented below.

NOTE: The display_name, description, contact, and license fields can be imported by the import block, which might cause a drift if these fields are set along with the import block.

IsCurrent bool
Is this the current API Revision?
IsOnline bool
Is this API Revision online/accessible via the Gateway?
License ApiLicense
A license block as documented below.
Name Changes to this property will trigger replacement. string
The name of the API Management API. Changing this forces a new resource to be created.
Oauth2Authorization ApiOauth2Authorization
An oauth2_authorization block as documented below.
OpenidAuthentication ApiOpenidAuthentication
An openid_authentication block as documented below.
Path string
The Path for this API Management API, which is a relative URL which uniquely identifies this API and all of its resource paths within the API Management Service.
Protocols List<string>

A list of protocols the operations in this API can be invoked. Possible values are http, https, ws, and wss.

NOTE: display_name, path and protocols are required when source_api_id is not set.

ResourceGroupName Changes to this property will trigger replacement. string
The Name of the Resource Group where the API Management API exists. Changing this forces a new resource to be created.
Revision Changes to this property will trigger replacement. string
The Revision which used for this API. Changing this forces a new resource to be created.
RevisionDescription string
The description of the API Revision of the API Management API.
ServiceUrl string
Absolute URL of the backend service implementing this API.
SourceApiId string
The API id of the source API, which could be in format azurerm_api_management_api.example.id or in format azurerm_api_management_api.example.id;rev=1
SubscriptionKeyParameterNames ApiSubscriptionKeyParameterNames
A subscription_key_parameter_names block as documented below.
SubscriptionRequired bool
Should this API require a subscription key? Defaults to true.
TermsOfServiceUrl string
Absolute URL of the Terms of Service for the API.
Version string
The Version number of this API, if this API is versioned.
VersionDescription string
The description of the API Version of the API Management API.
VersionSetId string

The ID of the Version Set which this API is associated with.

NOTE: When version is set, version_set_id must also be specified

ApiManagementName Changes to this property will trigger replacement. string
The Name of the API Management Service where this API should be created. Changing this forces a new resource to be created.
ApiType string
Type of API. Possible values are graphql, http, soap, and websocket. Defaults to http.
Contact ApiContactArgs
A contact block as documented below.
Description string
A description of the API Management API, which may include HTML formatting tags.
DisplayName string
The display name of the API.
Import ApiImportArgs

A import block as documented below.

NOTE: The display_name, description, contact, and license fields can be imported by the import block, which might cause a drift if these fields are set along with the import block.

IsCurrent bool
Is this the current API Revision?
IsOnline bool
Is this API Revision online/accessible via the Gateway?
License ApiLicenseArgs
A license block as documented below.
Name Changes to this property will trigger replacement. string
The name of the API Management API. Changing this forces a new resource to be created.
Oauth2Authorization ApiOauth2AuthorizationArgs
An oauth2_authorization block as documented below.
OpenidAuthentication ApiOpenidAuthenticationArgs
An openid_authentication block as documented below.
Path string
The Path for this API Management API, which is a relative URL which uniquely identifies this API and all of its resource paths within the API Management Service.
Protocols []string

A list of protocols the operations in this API can be invoked. Possible values are http, https, ws, and wss.

NOTE: display_name, path and protocols are required when source_api_id is not set.

ResourceGroupName Changes to this property will trigger replacement. string
The Name of the Resource Group where the API Management API exists. Changing this forces a new resource to be created.
Revision Changes to this property will trigger replacement. string
The Revision which used for this API. Changing this forces a new resource to be created.
RevisionDescription string
The description of the API Revision of the API Management API.
ServiceUrl string
Absolute URL of the backend service implementing this API.
SourceApiId string
The API id of the source API, which could be in format azurerm_api_management_api.example.id or in format azurerm_api_management_api.example.id;rev=1
SubscriptionKeyParameterNames ApiSubscriptionKeyParameterNamesArgs
A subscription_key_parameter_names block as documented below.
SubscriptionRequired bool
Should this API require a subscription key? Defaults to true.
TermsOfServiceUrl string
Absolute URL of the Terms of Service for the API.
Version string
The Version number of this API, if this API is versioned.
VersionDescription string
The description of the API Version of the API Management API.
VersionSetId string

The ID of the Version Set which this API is associated with.

NOTE: When version is set, version_set_id must also be specified

apiManagementName Changes to this property will trigger replacement. String
The Name of the API Management Service where this API should be created. Changing this forces a new resource to be created.
apiType String
Type of API. Possible values are graphql, http, soap, and websocket. Defaults to http.
contact ApiContact
A contact block as documented below.
description String
A description of the API Management API, which may include HTML formatting tags.
displayName String
The display name of the API.
import_ ApiImport

A import block as documented below.

NOTE: The display_name, description, contact, and license fields can be imported by the import block, which might cause a drift if these fields are set along with the import block.

isCurrent Boolean
Is this the current API Revision?
isOnline Boolean
Is this API Revision online/accessible via the Gateway?
license ApiLicense
A license block as documented below.
name Changes to this property will trigger replacement. String
The name of the API Management API. Changing this forces a new resource to be created.
oauth2Authorization ApiOauth2Authorization
An oauth2_authorization block as documented below.
openidAuthentication ApiOpenidAuthentication
An openid_authentication block as documented below.
path String
The Path for this API Management API, which is a relative URL which uniquely identifies this API and all of its resource paths within the API Management Service.
protocols List<String>

A list of protocols the operations in this API can be invoked. Possible values are http, https, ws, and wss.

NOTE: display_name, path and protocols are required when source_api_id is not set.

resourceGroupName Changes to this property will trigger replacement. String
The Name of the Resource Group where the API Management API exists. Changing this forces a new resource to be created.
revision Changes to this property will trigger replacement. String
The Revision which used for this API. Changing this forces a new resource to be created.
revisionDescription String
The description of the API Revision of the API Management API.
serviceUrl String
Absolute URL of the backend service implementing this API.
sourceApiId String
The API id of the source API, which could be in format azurerm_api_management_api.example.id or in format azurerm_api_management_api.example.id;rev=1
subscriptionKeyParameterNames ApiSubscriptionKeyParameterNames
A subscription_key_parameter_names block as documented below.
subscriptionRequired Boolean
Should this API require a subscription key? Defaults to true.
termsOfServiceUrl String
Absolute URL of the Terms of Service for the API.
version String
The Version number of this API, if this API is versioned.
versionDescription String
The description of the API Version of the API Management API.
versionSetId String

The ID of the Version Set which this API is associated with.

NOTE: When version is set, version_set_id must also be specified

apiManagementName Changes to this property will trigger replacement. string
The Name of the API Management Service where this API should be created. Changing this forces a new resource to be created.
apiType string
Type of API. Possible values are graphql, http, soap, and websocket. Defaults to http.
contact ApiContact
A contact block as documented below.
description string
A description of the API Management API, which may include HTML formatting tags.
displayName string
The display name of the API.
import ApiImport

A import block as documented below.

NOTE: The display_name, description, contact, and license fields can be imported by the import block, which might cause a drift if these fields are set along with the import block.

isCurrent boolean
Is this the current API Revision?
isOnline boolean
Is this API Revision online/accessible via the Gateway?
license ApiLicense
A license block as documented below.
name Changes to this property will trigger replacement. string
The name of the API Management API. Changing this forces a new resource to be created.
oauth2Authorization ApiOauth2Authorization
An oauth2_authorization block as documented below.
openidAuthentication ApiOpenidAuthentication
An openid_authentication block as documented below.
path string
The Path for this API Management API, which is a relative URL which uniquely identifies this API and all of its resource paths within the API Management Service.
protocols string[]

A list of protocols the operations in this API can be invoked. Possible values are http, https, ws, and wss.

NOTE: display_name, path and protocols are required when source_api_id is not set.

resourceGroupName Changes to this property will trigger replacement. string
The Name of the Resource Group where the API Management API exists. Changing this forces a new resource to be created.
revision Changes to this property will trigger replacement. string
The Revision which used for this API. Changing this forces a new resource to be created.
revisionDescription string
The description of the API Revision of the API Management API.
serviceUrl string
Absolute URL of the backend service implementing this API.
sourceApiId string
The API id of the source API, which could be in format azurerm_api_management_api.example.id or in format azurerm_api_management_api.example.id;rev=1
subscriptionKeyParameterNames ApiSubscriptionKeyParameterNames
A subscription_key_parameter_names block as documented below.
subscriptionRequired boolean
Should this API require a subscription key? Defaults to true.
termsOfServiceUrl string
Absolute URL of the Terms of Service for the API.
version string
The Version number of this API, if this API is versioned.
versionDescription string
The description of the API Version of the API Management API.
versionSetId string

The ID of the Version Set which this API is associated with.

NOTE: When version is set, version_set_id must also be specified

api_management_name Changes to this property will trigger replacement. str
The Name of the API Management Service where this API should be created. Changing this forces a new resource to be created.
api_type str
Type of API. Possible values are graphql, http, soap, and websocket. Defaults to http.
contact ApiContactArgs
A contact block as documented below.
description str
A description of the API Management API, which may include HTML formatting tags.
display_name str
The display name of the API.
import_ ApiImportArgs

A import block as documented below.

NOTE: The display_name, description, contact, and license fields can be imported by the import block, which might cause a drift if these fields are set along with the import block.

is_current bool
Is this the current API Revision?
is_online bool
Is this API Revision online/accessible via the Gateway?
license ApiLicenseArgs
A license block as documented below.
name Changes to this property will trigger replacement. str
The name of the API Management API. Changing this forces a new resource to be created.
oauth2_authorization ApiOauth2AuthorizationArgs
An oauth2_authorization block as documented below.
openid_authentication ApiOpenidAuthenticationArgs
An openid_authentication block as documented below.
path str
The Path for this API Management API, which is a relative URL which uniquely identifies this API and all of its resource paths within the API Management Service.
protocols Sequence[str]

A list of protocols the operations in this API can be invoked. Possible values are http, https, ws, and wss.

NOTE: display_name, path and protocols are required when source_api_id is not set.

resource_group_name Changes to this property will trigger replacement. str
The Name of the Resource Group where the API Management API exists. Changing this forces a new resource to be created.
revision Changes to this property will trigger replacement. str
The Revision which used for this API. Changing this forces a new resource to be created.
revision_description str
The description of the API Revision of the API Management API.
service_url str
Absolute URL of the backend service implementing this API.
source_api_id str
The API id of the source API, which could be in format azurerm_api_management_api.example.id or in format azurerm_api_management_api.example.id;rev=1
subscription_key_parameter_names ApiSubscriptionKeyParameterNamesArgs
A subscription_key_parameter_names block as documented below.
subscription_required bool
Should this API require a subscription key? Defaults to true.
terms_of_service_url str
Absolute URL of the Terms of Service for the API.
version str
The Version number of this API, if this API is versioned.
version_description str
The description of the API Version of the API Management API.
version_set_id str

The ID of the Version Set which this API is associated with.

NOTE: When version is set, version_set_id must also be specified

apiManagementName Changes to this property will trigger replacement. String
The Name of the API Management Service where this API should be created. Changing this forces a new resource to be created.
apiType String
Type of API. Possible values are graphql, http, soap, and websocket. Defaults to http.
contact Property Map
A contact block as documented below.
description String
A description of the API Management API, which may include HTML formatting tags.
displayName String
The display name of the API.
import Property Map

A import block as documented below.

NOTE: The display_name, description, contact, and license fields can be imported by the import block, which might cause a drift if these fields are set along with the import block.

isCurrent Boolean
Is this the current API Revision?
isOnline Boolean
Is this API Revision online/accessible via the Gateway?
license Property Map
A license block as documented below.
name Changes to this property will trigger replacement. String
The name of the API Management API. Changing this forces a new resource to be created.
oauth2Authorization Property Map
An oauth2_authorization block as documented below.
openidAuthentication Property Map
An openid_authentication block as documented below.
path String
The Path for this API Management API, which is a relative URL which uniquely identifies this API and all of its resource paths within the API Management Service.
protocols List<String>

A list of protocols the operations in this API can be invoked. Possible values are http, https, ws, and wss.

NOTE: display_name, path and protocols are required when source_api_id is not set.

resourceGroupName Changes to this property will trigger replacement. String
The Name of the Resource Group where the API Management API exists. Changing this forces a new resource to be created.
revision Changes to this property will trigger replacement. String
The Revision which used for this API. Changing this forces a new resource to be created.
revisionDescription String
The description of the API Revision of the API Management API.
serviceUrl String
Absolute URL of the backend service implementing this API.
sourceApiId String
The API id of the source API, which could be in format azurerm_api_management_api.example.id or in format azurerm_api_management_api.example.id;rev=1
subscriptionKeyParameterNames Property Map
A subscription_key_parameter_names block as documented below.
subscriptionRequired Boolean
Should this API require a subscription key? Defaults to true.
termsOfServiceUrl String
Absolute URL of the Terms of Service for the API.
version String
The Version number of this API, if this API is versioned.
versionDescription String
The description of the API Version of the API Management API.
versionSetId String

The ID of the Version Set which this API is associated with.

NOTE: When version is set, version_set_id must also be specified

Supporting Types

ApiContact
, ApiContactArgs

Email string
The email address of the contact person/organization.
Name string
The name of the contact person/organization.
Url string
Absolute URL of the contact information.
Email string
The email address of the contact person/organization.
Name string
The name of the contact person/organization.
Url string
Absolute URL of the contact information.
email String
The email address of the contact person/organization.
name String
The name of the contact person/organization.
url String
Absolute URL of the contact information.
email string
The email address of the contact person/organization.
name string
The name of the contact person/organization.
url string
Absolute URL of the contact information.
email str
The email address of the contact person/organization.
name str
The name of the contact person/organization.
url str
Absolute URL of the contact information.
email String
The email address of the contact person/organization.
name String
The name of the contact person/organization.
url String
Absolute URL of the contact information.

ApiImport
, ApiImportArgs

ContentFormat This property is required. string
The format of the content from which the API Definition should be imported. Possible values are: openapi, openapi+json, openapi+json-link, openapi-link, swagger-json, swagger-link-json, wadl-link-json, wadl-xml, wsdl and wsdl-link.
ContentValue This property is required. string
The Content from which the API Definition should be imported. When a content_format of *-link-* is specified this must be a URL, otherwise this must be defined inline. The URL must be accessible and return a valid document; otherwise, deployment may fail.
WsdlSelector ApiImportWsdlSelector
A wsdl_selector block as defined below, which allows you to limit the import of a WSDL to only a subset of the document. This can only be specified when content_format is wsdl or wsdl-link.
ContentFormat This property is required. string
The format of the content from which the API Definition should be imported. Possible values are: openapi, openapi+json, openapi+json-link, openapi-link, swagger-json, swagger-link-json, wadl-link-json, wadl-xml, wsdl and wsdl-link.
ContentValue This property is required. string
The Content from which the API Definition should be imported. When a content_format of *-link-* is specified this must be a URL, otherwise this must be defined inline. The URL must be accessible and return a valid document; otherwise, deployment may fail.
WsdlSelector ApiImportWsdlSelector
A wsdl_selector block as defined below, which allows you to limit the import of a WSDL to only a subset of the document. This can only be specified when content_format is wsdl or wsdl-link.
contentFormat This property is required. String
The format of the content from which the API Definition should be imported. Possible values are: openapi, openapi+json, openapi+json-link, openapi-link, swagger-json, swagger-link-json, wadl-link-json, wadl-xml, wsdl and wsdl-link.
contentValue This property is required. String
The Content from which the API Definition should be imported. When a content_format of *-link-* is specified this must be a URL, otherwise this must be defined inline. The URL must be accessible and return a valid document; otherwise, deployment may fail.
wsdlSelector ApiImportWsdlSelector
A wsdl_selector block as defined below, which allows you to limit the import of a WSDL to only a subset of the document. This can only be specified when content_format is wsdl or wsdl-link.
contentFormat This property is required. string
The format of the content from which the API Definition should be imported. Possible values are: openapi, openapi+json, openapi+json-link, openapi-link, swagger-json, swagger-link-json, wadl-link-json, wadl-xml, wsdl and wsdl-link.
contentValue This property is required. string
The Content from which the API Definition should be imported. When a content_format of *-link-* is specified this must be a URL, otherwise this must be defined inline. The URL must be accessible and return a valid document; otherwise, deployment may fail.
wsdlSelector ApiImportWsdlSelector
A wsdl_selector block as defined below, which allows you to limit the import of a WSDL to only a subset of the document. This can only be specified when content_format is wsdl or wsdl-link.
content_format This property is required. str
The format of the content from which the API Definition should be imported. Possible values are: openapi, openapi+json, openapi+json-link, openapi-link, swagger-json, swagger-link-json, wadl-link-json, wadl-xml, wsdl and wsdl-link.
content_value This property is required. str
The Content from which the API Definition should be imported. When a content_format of *-link-* is specified this must be a URL, otherwise this must be defined inline. The URL must be accessible and return a valid document; otherwise, deployment may fail.
wsdl_selector ApiImportWsdlSelector
A wsdl_selector block as defined below, which allows you to limit the import of a WSDL to only a subset of the document. This can only be specified when content_format is wsdl or wsdl-link.
contentFormat This property is required. String
The format of the content from which the API Definition should be imported. Possible values are: openapi, openapi+json, openapi+json-link, openapi-link, swagger-json, swagger-link-json, wadl-link-json, wadl-xml, wsdl and wsdl-link.
contentValue This property is required. String
The Content from which the API Definition should be imported. When a content_format of *-link-* is specified this must be a URL, otherwise this must be defined inline. The URL must be accessible and return a valid document; otherwise, deployment may fail.
wsdlSelector Property Map
A wsdl_selector block as defined below, which allows you to limit the import of a WSDL to only a subset of the document. This can only be specified when content_format is wsdl or wsdl-link.

ApiImportWsdlSelector
, ApiImportWsdlSelectorArgs

EndpointName This property is required. string
The name of endpoint (port) to import from WSDL.
ServiceName This property is required. string
The name of service to import from WSDL.
EndpointName This property is required. string
The name of endpoint (port) to import from WSDL.
ServiceName This property is required. string
The name of service to import from WSDL.
endpointName This property is required. String
The name of endpoint (port) to import from WSDL.
serviceName This property is required. String
The name of service to import from WSDL.
endpointName This property is required. string
The name of endpoint (port) to import from WSDL.
serviceName This property is required. string
The name of service to import from WSDL.
endpoint_name This property is required. str
The name of endpoint (port) to import from WSDL.
service_name This property is required. str
The name of service to import from WSDL.
endpointName This property is required. String
The name of endpoint (port) to import from WSDL.
serviceName This property is required. String
The name of service to import from WSDL.

ApiLicense
, ApiLicenseArgs

Name string
The name of the license .
Url string
Absolute URL of the license.
Name string
The name of the license .
Url string
Absolute URL of the license.
name String
The name of the license .
url String
Absolute URL of the license.
name string
The name of the license .
url string
Absolute URL of the license.
name str
The name of the license .
url str
Absolute URL of the license.
name String
The name of the license .
url String
Absolute URL of the license.

ApiOauth2Authorization
, ApiOauth2AuthorizationArgs

AuthorizationServerName This property is required. string
OAuth authorization server identifier. The name of an OAuth2 Authorization Server.
Scope string
Operations scope.
AuthorizationServerName This property is required. string
OAuth authorization server identifier. The name of an OAuth2 Authorization Server.
Scope string
Operations scope.
authorizationServerName This property is required. String
OAuth authorization server identifier. The name of an OAuth2 Authorization Server.
scope String
Operations scope.
authorizationServerName This property is required. string
OAuth authorization server identifier. The name of an OAuth2 Authorization Server.
scope string
Operations scope.
authorization_server_name This property is required. str
OAuth authorization server identifier. The name of an OAuth2 Authorization Server.
scope str
Operations scope.
authorizationServerName This property is required. String
OAuth authorization server identifier. The name of an OAuth2 Authorization Server.
scope String
Operations scope.

ApiOpenidAuthentication
, ApiOpenidAuthenticationArgs

OpenidProviderName This property is required. string
OpenID Connect provider identifier. The name of an OpenID Connect Provider.
BearerTokenSendingMethods List<string>
How to send token to the server. A list of zero or more methods. Valid values are authorizationHeader and query.
OpenidProviderName This property is required. string
OpenID Connect provider identifier. The name of an OpenID Connect Provider.
BearerTokenSendingMethods []string
How to send token to the server. A list of zero or more methods. Valid values are authorizationHeader and query.
openidProviderName This property is required. String
OpenID Connect provider identifier. The name of an OpenID Connect Provider.
bearerTokenSendingMethods List<String>
How to send token to the server. A list of zero or more methods. Valid values are authorizationHeader and query.
openidProviderName This property is required. string
OpenID Connect provider identifier. The name of an OpenID Connect Provider.
bearerTokenSendingMethods string[]
How to send token to the server. A list of zero or more methods. Valid values are authorizationHeader and query.
openid_provider_name This property is required. str
OpenID Connect provider identifier. The name of an OpenID Connect Provider.
bearer_token_sending_methods Sequence[str]
How to send token to the server. A list of zero or more methods. Valid values are authorizationHeader and query.
openidProviderName This property is required. String
OpenID Connect provider identifier. The name of an OpenID Connect Provider.
bearerTokenSendingMethods List<String>
How to send token to the server. A list of zero or more methods. Valid values are authorizationHeader and query.

ApiSubscriptionKeyParameterNames
, ApiSubscriptionKeyParameterNamesArgs

Header This property is required. string
The name of the HTTP Header which should be used for the Subscription Key.
Query This property is required. string
The name of the QueryString parameter which should be used for the Subscription Key.
Header This property is required. string
The name of the HTTP Header which should be used for the Subscription Key.
Query This property is required. string
The name of the QueryString parameter which should be used for the Subscription Key.
header This property is required. String
The name of the HTTP Header which should be used for the Subscription Key.
query This property is required. String
The name of the QueryString parameter which should be used for the Subscription Key.
header This property is required. string
The name of the HTTP Header which should be used for the Subscription Key.
query This property is required. string
The name of the QueryString parameter which should be used for the Subscription Key.
header This property is required. str
The name of the HTTP Header which should be used for the Subscription Key.
query This property is required. str
The name of the QueryString parameter which should be used for the Subscription Key.
header This property is required. String
The name of the HTTP Header which should be used for the Subscription Key.
query This property is required. String
The name of the QueryString parameter which should be used for the Subscription Key.

Import

API Management API’s can be imported using the resource id, e.g.

$ pulumi import azure:apimanagement/api:Api example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.ApiManagement/service/instance1/apis/api1;rev=1
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
Azure Classic pulumi/pulumi-azure
License
Apache-2.0
Notes
This Pulumi package is based on the azurerm Terraform Provider.