1. Packages
  2. Azure Native v2
  3. API Docs
  4. apimanagement
  5. ProductApi
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.apimanagement.ProductApi

Explore with Pulumi AI

These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

API details. Azure REST API version: 2022-08-01. Prior API version in Azure Native 1.x: 2020-12-01.

Other available API versions: 2017-03-01, 2018-06-01-preview, 2022-09-01-preview, 2023-03-01-preview, 2023-05-01-preview, 2023-09-01-preview, 2024-05-01, 2024-06-01-preview.

Example Usage

ApiManagementCreateProductApi

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var productApi = new AzureNative.ApiManagement.ProductApi("productApi", new()
    {
        ApiId = "echo-api",
        ProductId = "testproduct",
        ResourceGroupName = "rg1",
        ServiceName = "apimService1",
    });

});
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := apimanagement.NewProductApi(ctx, "productApi", &apimanagement.ProductApiArgs{
			ApiId:             pulumi.String("echo-api"),
			ProductId:         pulumi.String("testproduct"),
			ResourceGroupName: pulumi.String("rg1"),
			ServiceName:       pulumi.String("apimService1"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.apimanagement.ProductApi;
import com.pulumi.azurenative.apimanagement.ProductApiArgs;
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 productApi = new ProductApi("productApi", ProductApiArgs.builder()
            .apiId("echo-api")
            .productId("testproduct")
            .resourceGroupName("rg1")
            .serviceName("apimService1")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const productApi = new azure_native.apimanagement.ProductApi("productApi", {
    apiId: "echo-api",
    productId: "testproduct",
    resourceGroupName: "rg1",
    serviceName: "apimService1",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

product_api = azure_native.apimanagement.ProductApi("productApi",
    api_id="echo-api",
    product_id="testproduct",
    resource_group_name="rg1",
    service_name="apimService1")
Copy
resources:
  productApi:
    type: azure-native:apimanagement:ProductApi
    properties:
      apiId: echo-api
      productId: testproduct
      resourceGroupName: rg1
      serviceName: apimService1
Copy

Create ProductApi Resource

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

Constructor syntax

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

@overload
def ProductApi(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               product_id: Optional[str] = None,
               resource_group_name: Optional[str] = None,
               service_name: Optional[str] = None,
               api_id: Optional[str] = None)
func NewProductApi(ctx *Context, name string, args ProductApiArgs, opts ...ResourceOption) (*ProductApi, error)
public ProductApi(string name, ProductApiArgs args, CustomResourceOptions? opts = null)
public ProductApi(String name, ProductApiArgs args)
public ProductApi(String name, ProductApiArgs args, CustomResourceOptions options)
type: azure-native:apimanagement:ProductApi
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. ProductApiArgs
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. ProductApiArgs
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. ProductApiArgs
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. ProductApiArgs
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. ProductApiArgs
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 productApiResource = new AzureNative.Apimanagement.ProductApi("productApiResource", new()
{
    ProductId = "string",
    ResourceGroupName = "string",
    ServiceName = "string",
    ApiId = "string",
});
Copy
example, err := apimanagement.NewProductApi(ctx, "productApiResource", &apimanagement.ProductApiArgs{
	ProductId:         "string",
	ResourceGroupName: "string",
	ServiceName:       "string",
	ApiId:             "string",
})
Copy
var productApiResource = new ProductApi("productApiResource", ProductApiArgs.builder()
    .productId("string")
    .resourceGroupName("string")
    .serviceName("string")
    .apiId("string")
    .build());
Copy
product_api_resource = azure_native.apimanagement.ProductApi("productApiResource",
    product_id=string,
    resource_group_name=string,
    service_name=string,
    api_id=string)
Copy
const productApiResource = new azure_native.apimanagement.ProductApi("productApiResource", {
    productId: "string",
    resourceGroupName: "string",
    serviceName: "string",
    apiId: "string",
});
Copy
type: azure-native:apimanagement:ProductApi
properties:
    apiId: string
    productId: string
    resourceGroupName: string
    serviceName: string
Copy

ProductApi 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 ProductApi resource accepts the following input properties:

ProductId
This property is required.
Changes to this property will trigger replacement.
string
Product identifier. Must be unique in the current API Management service instance.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
ServiceName
This property is required.
Changes to this property will trigger replacement.
string
The name of the API Management service.
ApiId Changes to this property will trigger replacement. string
API revision identifier. Must be unique in the current API Management service instance. Non-current revision has ;rev=n as a suffix where n is the revision number.
ProductId
This property is required.
Changes to this property will trigger replacement.
string
Product identifier. Must be unique in the current API Management service instance.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
ServiceName
This property is required.
Changes to this property will trigger replacement.
string
The name of the API Management service.
ApiId Changes to this property will trigger replacement. string
API revision identifier. Must be unique in the current API Management service instance. Non-current revision has ;rev=n as a suffix where n is the revision number.
productId
This property is required.
Changes to this property will trigger replacement.
String
Product identifier. Must be unique in the current API Management service instance.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
serviceName
This property is required.
Changes to this property will trigger replacement.
String
The name of the API Management service.
apiId Changes to this property will trigger replacement. String
API revision identifier. Must be unique in the current API Management service instance. Non-current revision has ;rev=n as a suffix where n is the revision number.
productId
This property is required.
Changes to this property will trigger replacement.
string
Product identifier. Must be unique in the current API Management service instance.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
serviceName
This property is required.
Changes to this property will trigger replacement.
string
The name of the API Management service.
apiId Changes to this property will trigger replacement. string
API revision identifier. Must be unique in the current API Management service instance. Non-current revision has ;rev=n as a suffix where n is the revision number.
product_id
This property is required.
Changes to this property will trigger replacement.
str
Product identifier. Must be unique in the current API Management service instance.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
service_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the API Management service.
api_id Changes to this property will trigger replacement. str
API revision identifier. Must be unique in the current API Management service instance. Non-current revision has ;rev=n as a suffix where n is the revision number.
productId
This property is required.
Changes to this property will trigger replacement.
String
Product identifier. Must be unique in the current API Management service instance.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
serviceName
This property is required.
Changes to this property will trigger replacement.
String
The name of the API Management service.
apiId Changes to this property will trigger replacement. String
API revision identifier. Must be unique in the current API Management service instance. Non-current revision has ;rev=n as a suffix where n is the revision number.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
IsOnline bool
Indicates if API revision is accessible via the gateway.
Name string
The name of the resource
Path string
Relative URL uniquely identifying this API and all of its resource paths within the API Management service instance. It is appended to the API endpoint base URL specified during the service instance creation to form a public URL for this API.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
ApiRevision string
Describes the revision of the API. If no value is provided, default revision 1 is created
ApiRevisionDescription string
Description of the API Revision.
ApiType string
Type of API.
ApiVersion string
Indicates the version identifier of the API if the API is versioned
ApiVersionDescription string
Description of the API Version.
ApiVersionSet Pulumi.AzureNative.ApiManagement.Outputs.ApiVersionSetContractDetailsResponse
Version set details
ApiVersionSetId string
A resource identifier for the related ApiVersionSet.
AuthenticationSettings Pulumi.AzureNative.ApiManagement.Outputs.AuthenticationSettingsContractResponse
Collection of authentication settings included into this API.
Contact Pulumi.AzureNative.ApiManagement.Outputs.ApiContactInformationResponse
Contact information for the API.
Description string
Description of the API. May include HTML formatting tags.
DisplayName string
API name. Must be 1 to 300 characters long.
IsCurrent bool
Indicates if API revision is current api revision.
License Pulumi.AzureNative.ApiManagement.Outputs.ApiLicenseInformationResponse
License information for the API.
Protocols List<string>
Describes on which protocols the operations in this API can be invoked.
ServiceUrl string
Absolute URL of the backend service implementing this API. Cannot be more than 2000 characters long.
SourceApiId string
API identifier of the source API.
SubscriptionKeyParameterNames Pulumi.AzureNative.ApiManagement.Outputs.SubscriptionKeyParameterNamesContractResponse
Protocols over which API is made available.
SubscriptionRequired bool
Specifies whether an API or Product subscription is required for accessing the API.
TermsOfServiceUrl string
A URL to the Terms of Service for the API. MUST be in the format of a URL.
Id string
The provider-assigned unique ID for this managed resource.
IsOnline bool
Indicates if API revision is accessible via the gateway.
Name string
The name of the resource
Path string
Relative URL uniquely identifying this API and all of its resource paths within the API Management service instance. It is appended to the API endpoint base URL specified during the service instance creation to form a public URL for this API.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
ApiRevision string
Describes the revision of the API. If no value is provided, default revision 1 is created
ApiRevisionDescription string
Description of the API Revision.
ApiType string
Type of API.
ApiVersion string
Indicates the version identifier of the API if the API is versioned
ApiVersionDescription string
Description of the API Version.
ApiVersionSet ApiVersionSetContractDetailsResponse
Version set details
ApiVersionSetId string
A resource identifier for the related ApiVersionSet.
AuthenticationSettings AuthenticationSettingsContractResponse
Collection of authentication settings included into this API.
Contact ApiContactInformationResponse
Contact information for the API.
Description string
Description of the API. May include HTML formatting tags.
DisplayName string
API name. Must be 1 to 300 characters long.
IsCurrent bool
Indicates if API revision is current api revision.
License ApiLicenseInformationResponse
License information for the API.
Protocols []string
Describes on which protocols the operations in this API can be invoked.
ServiceUrl string
Absolute URL of the backend service implementing this API. Cannot be more than 2000 characters long.
SourceApiId string
API identifier of the source API.
SubscriptionKeyParameterNames SubscriptionKeyParameterNamesContractResponse
Protocols over which API is made available.
SubscriptionRequired bool
Specifies whether an API or Product subscription is required for accessing the API.
TermsOfServiceUrl string
A URL to the Terms of Service for the API. MUST be in the format of a URL.
id String
The provider-assigned unique ID for this managed resource.
isOnline Boolean
Indicates if API revision is accessible via the gateway.
name String
The name of the resource
path String
Relative URL uniquely identifying this API and all of its resource paths within the API Management service instance. It is appended to the API endpoint base URL specified during the service instance creation to form a public URL for this API.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
apiRevision String
Describes the revision of the API. If no value is provided, default revision 1 is created
apiRevisionDescription String
Description of the API Revision.
apiType String
Type of API.
apiVersion String
Indicates the version identifier of the API if the API is versioned
apiVersionDescription String
Description of the API Version.
apiVersionSet ApiVersionSetContractDetailsResponse
Version set details
apiVersionSetId String
A resource identifier for the related ApiVersionSet.
authenticationSettings AuthenticationSettingsContractResponse
Collection of authentication settings included into this API.
contact ApiContactInformationResponse
Contact information for the API.
description String
Description of the API. May include HTML formatting tags.
displayName String
API name. Must be 1 to 300 characters long.
isCurrent Boolean
Indicates if API revision is current api revision.
license ApiLicenseInformationResponse
License information for the API.
protocols List<String>
Describes on which protocols the operations in this API can be invoked.
serviceUrl String
Absolute URL of the backend service implementing this API. Cannot be more than 2000 characters long.
sourceApiId String
API identifier of the source API.
subscriptionKeyParameterNames SubscriptionKeyParameterNamesContractResponse
Protocols over which API is made available.
subscriptionRequired Boolean
Specifies whether an API or Product subscription is required for accessing the API.
termsOfServiceUrl String
A URL to the Terms of Service for the API. MUST be in the format of a URL.
id string
The provider-assigned unique ID for this managed resource.
isOnline boolean
Indicates if API revision is accessible via the gateway.
name string
The name of the resource
path string
Relative URL uniquely identifying this API and all of its resource paths within the API Management service instance. It is appended to the API endpoint base URL specified during the service instance creation to form a public URL for this API.
type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
apiRevision string
Describes the revision of the API. If no value is provided, default revision 1 is created
apiRevisionDescription string
Description of the API Revision.
apiType string
Type of API.
apiVersion string
Indicates the version identifier of the API if the API is versioned
apiVersionDescription string
Description of the API Version.
apiVersionSet ApiVersionSetContractDetailsResponse
Version set details
apiVersionSetId string
A resource identifier for the related ApiVersionSet.
authenticationSettings AuthenticationSettingsContractResponse
Collection of authentication settings included into this API.
contact ApiContactInformationResponse
Contact information for the API.
description string
Description of the API. May include HTML formatting tags.
displayName string
API name. Must be 1 to 300 characters long.
isCurrent boolean
Indicates if API revision is current api revision.
license ApiLicenseInformationResponse
License information for the API.
protocols string[]
Describes on which protocols the operations in this API can be invoked.
serviceUrl string
Absolute URL of the backend service implementing this API. Cannot be more than 2000 characters long.
sourceApiId string
API identifier of the source API.
subscriptionKeyParameterNames SubscriptionKeyParameterNamesContractResponse
Protocols over which API is made available.
subscriptionRequired boolean
Specifies whether an API or Product subscription is required for accessing the API.
termsOfServiceUrl string
A URL to the Terms of Service for the API. MUST be in the format of a URL.
id str
The provider-assigned unique ID for this managed resource.
is_online bool
Indicates if API revision is accessible via the gateway.
name str
The name of the resource
path str
Relative URL uniquely identifying this API and all of its resource paths within the API Management service instance. It is appended to the API endpoint base URL specified during the service instance creation to form a public URL for this API.
type str
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
api_revision str
Describes the revision of the API. If no value is provided, default revision 1 is created
api_revision_description str
Description of the API Revision.
api_type str
Type of API.
api_version str
Indicates the version identifier of the API if the API is versioned
api_version_description str
Description of the API Version.
api_version_set ApiVersionSetContractDetailsResponse
Version set details
api_version_set_id str
A resource identifier for the related ApiVersionSet.
authentication_settings AuthenticationSettingsContractResponse
Collection of authentication settings included into this API.
contact ApiContactInformationResponse
Contact information for the API.
description str
Description of the API. May include HTML formatting tags.
display_name str
API name. Must be 1 to 300 characters long.
is_current bool
Indicates if API revision is current api revision.
license ApiLicenseInformationResponse
License information for the API.
protocols Sequence[str]
Describes on which protocols the operations in this API can be invoked.
service_url str
Absolute URL of the backend service implementing this API. Cannot be more than 2000 characters long.
source_api_id str
API identifier of the source API.
subscription_key_parameter_names SubscriptionKeyParameterNamesContractResponse
Protocols over which API is made available.
subscription_required bool
Specifies whether an API or Product subscription is required for accessing the API.
terms_of_service_url str
A URL to the Terms of Service for the API. MUST be in the format of a URL.
id String
The provider-assigned unique ID for this managed resource.
isOnline Boolean
Indicates if API revision is accessible via the gateway.
name String
The name of the resource
path String
Relative URL uniquely identifying this API and all of its resource paths within the API Management service instance. It is appended to the API endpoint base URL specified during the service instance creation to form a public URL for this API.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
apiRevision String
Describes the revision of the API. If no value is provided, default revision 1 is created
apiRevisionDescription String
Description of the API Revision.
apiType String
Type of API.
apiVersion String
Indicates the version identifier of the API if the API is versioned
apiVersionDescription String
Description of the API Version.
apiVersionSet Property Map
Version set details
apiVersionSetId String
A resource identifier for the related ApiVersionSet.
authenticationSettings Property Map
Collection of authentication settings included into this API.
contact Property Map
Contact information for the API.
description String
Description of the API. May include HTML formatting tags.
displayName String
API name. Must be 1 to 300 characters long.
isCurrent Boolean
Indicates if API revision is current api revision.
license Property Map
License information for the API.
protocols List<String>
Describes on which protocols the operations in this API can be invoked.
serviceUrl String
Absolute URL of the backend service implementing this API. Cannot be more than 2000 characters long.
sourceApiId String
API identifier of the source API.
subscriptionKeyParameterNames Property Map
Protocols over which API is made available.
subscriptionRequired Boolean
Specifies whether an API or Product subscription is required for accessing the API.
termsOfServiceUrl String
A URL to the Terms of Service for the API. MUST be in the format of a URL.

Supporting Types

ApiContactInformationResponse
, ApiContactInformationResponseArgs

Email string
The email address of the contact person/organization. MUST be in the format of an email address
Name string
The identifying name of the contact person/organization
Url string
The URL pointing to the contact information. MUST be in the format of a URL
Email string
The email address of the contact person/organization. MUST be in the format of an email address
Name string
The identifying name of the contact person/organization
Url string
The URL pointing to the contact information. MUST be in the format of a URL
email String
The email address of the contact person/organization. MUST be in the format of an email address
name String
The identifying name of the contact person/organization
url String
The URL pointing to the contact information. MUST be in the format of a URL
email string
The email address of the contact person/organization. MUST be in the format of an email address
name string
The identifying name of the contact person/organization
url string
The URL pointing to the contact information. MUST be in the format of a URL
email str
The email address of the contact person/organization. MUST be in the format of an email address
name str
The identifying name of the contact person/organization
url str
The URL pointing to the contact information. MUST be in the format of a URL
email String
The email address of the contact person/organization. MUST be in the format of an email address
name String
The identifying name of the contact person/organization
url String
The URL pointing to the contact information. MUST be in the format of a URL

ApiLicenseInformationResponse
, ApiLicenseInformationResponseArgs

Name string
The license name used for the API
Url string
A URL to the license used for the API. MUST be in the format of a URL
Name string
The license name used for the API
Url string
A URL to the license used for the API. MUST be in the format of a URL
name String
The license name used for the API
url String
A URL to the license used for the API. MUST be in the format of a URL
name string
The license name used for the API
url string
A URL to the license used for the API. MUST be in the format of a URL
name str
The license name used for the API
url str
A URL to the license used for the API. MUST be in the format of a URL
name String
The license name used for the API
url String
A URL to the license used for the API. MUST be in the format of a URL

ApiVersionSetContractDetailsResponse
, ApiVersionSetContractDetailsResponseArgs

Description string
Description of API Version Set.
Id string
Identifier for existing API Version Set. Omit this value to create a new Version Set.
Name string
The display Name of the API Version Set.
VersionHeaderName string
Name of HTTP header parameter that indicates the API Version if versioningScheme is set to header.
VersionQueryName string
Name of query parameter that indicates the API Version if versioningScheme is set to query.
VersioningScheme string
An value that determines where the API Version identifier will be located in a HTTP request.
Description string
Description of API Version Set.
Id string
Identifier for existing API Version Set. Omit this value to create a new Version Set.
Name string
The display Name of the API Version Set.
VersionHeaderName string
Name of HTTP header parameter that indicates the API Version if versioningScheme is set to header.
VersionQueryName string
Name of query parameter that indicates the API Version if versioningScheme is set to query.
VersioningScheme string
An value that determines where the API Version identifier will be located in a HTTP request.
description String
Description of API Version Set.
id String
Identifier for existing API Version Set. Omit this value to create a new Version Set.
name String
The display Name of the API Version Set.
versionHeaderName String
Name of HTTP header parameter that indicates the API Version if versioningScheme is set to header.
versionQueryName String
Name of query parameter that indicates the API Version if versioningScheme is set to query.
versioningScheme String
An value that determines where the API Version identifier will be located in a HTTP request.
description string
Description of API Version Set.
id string
Identifier for existing API Version Set. Omit this value to create a new Version Set.
name string
The display Name of the API Version Set.
versionHeaderName string
Name of HTTP header parameter that indicates the API Version if versioningScheme is set to header.
versionQueryName string
Name of query parameter that indicates the API Version if versioningScheme is set to query.
versioningScheme string
An value that determines where the API Version identifier will be located in a HTTP request.
description str
Description of API Version Set.
id str
Identifier for existing API Version Set. Omit this value to create a new Version Set.
name str
The display Name of the API Version Set.
version_header_name str
Name of HTTP header parameter that indicates the API Version if versioningScheme is set to header.
version_query_name str
Name of query parameter that indicates the API Version if versioningScheme is set to query.
versioning_scheme str
An value that determines where the API Version identifier will be located in a HTTP request.
description String
Description of API Version Set.
id String
Identifier for existing API Version Set. Omit this value to create a new Version Set.
name String
The display Name of the API Version Set.
versionHeaderName String
Name of HTTP header parameter that indicates the API Version if versioningScheme is set to header.
versionQueryName String
Name of query parameter that indicates the API Version if versioningScheme is set to query.
versioningScheme String
An value that determines where the API Version identifier will be located in a HTTP request.

AuthenticationSettingsContractResponse
, AuthenticationSettingsContractResponseArgs

OAuth2 OAuth2AuthenticationSettingsContractResponse
OAuth2 Authentication settings
OAuth2AuthenticationSettings []OAuth2AuthenticationSettingsContractResponse
Collection of OAuth2 authentication settings included into this API.
Openid OpenIdAuthenticationSettingsContractResponse
OpenID Connect Authentication Settings
OpenidAuthenticationSettings []OpenIdAuthenticationSettingsContractResponse
Collection of Open ID Connect authentication settings included into this API.
oAuth2 OAuth2AuthenticationSettingsContractResponse
OAuth2 Authentication settings
oAuth2AuthenticationSettings List<OAuth2AuthenticationSettingsContractResponse>
Collection of OAuth2 authentication settings included into this API.
openid OpenIdAuthenticationSettingsContractResponse
OpenID Connect Authentication Settings
openidAuthenticationSettings List<OpenIdAuthenticationSettingsContractResponse>
Collection of Open ID Connect authentication settings included into this API.
oAuth2 OAuth2AuthenticationSettingsContractResponse
OAuth2 Authentication settings
oAuth2AuthenticationSettings OAuth2AuthenticationSettingsContractResponse[]
Collection of OAuth2 authentication settings included into this API.
openid OpenIdAuthenticationSettingsContractResponse
OpenID Connect Authentication Settings
openidAuthenticationSettings OpenIdAuthenticationSettingsContractResponse[]
Collection of Open ID Connect authentication settings included into this API.
o_auth2 OAuth2AuthenticationSettingsContractResponse
OAuth2 Authentication settings
o_auth2_authentication_settings Sequence[OAuth2AuthenticationSettingsContractResponse]
Collection of OAuth2 authentication settings included into this API.
openid OpenIdAuthenticationSettingsContractResponse
OpenID Connect Authentication Settings
openid_authentication_settings Sequence[OpenIdAuthenticationSettingsContractResponse]
Collection of Open ID Connect authentication settings included into this API.
oAuth2 Property Map
OAuth2 Authentication settings
oAuth2AuthenticationSettings List<Property Map>
Collection of OAuth2 authentication settings included into this API.
openid Property Map
OpenID Connect Authentication Settings
openidAuthenticationSettings List<Property Map>
Collection of Open ID Connect authentication settings included into this API.

OAuth2AuthenticationSettingsContractResponse
, OAuth2AuthenticationSettingsContractResponseArgs

AuthorizationServerId string
OAuth authorization server identifier.
Scope string
operations scope.
AuthorizationServerId string
OAuth authorization server identifier.
Scope string
operations scope.
authorizationServerId String
OAuth authorization server identifier.
scope String
operations scope.
authorizationServerId string
OAuth authorization server identifier.
scope string
operations scope.
authorization_server_id str
OAuth authorization server identifier.
scope str
operations scope.
authorizationServerId String
OAuth authorization server identifier.
scope String
operations scope.

OpenIdAuthenticationSettingsContractResponse
, OpenIdAuthenticationSettingsContractResponseArgs

BearerTokenSendingMethods List<string>
How to send token to the server.
OpenidProviderId string
OAuth authorization server identifier.
BearerTokenSendingMethods []string
How to send token to the server.
OpenidProviderId string
OAuth authorization server identifier.
bearerTokenSendingMethods List<String>
How to send token to the server.
openidProviderId String
OAuth authorization server identifier.
bearerTokenSendingMethods string[]
How to send token to the server.
openidProviderId string
OAuth authorization server identifier.
bearer_token_sending_methods Sequence[str]
How to send token to the server.
openid_provider_id str
OAuth authorization server identifier.
bearerTokenSendingMethods List<String>
How to send token to the server.
openidProviderId String
OAuth authorization server identifier.

SubscriptionKeyParameterNamesContractResponse
, SubscriptionKeyParameterNamesContractResponseArgs

Header string
Subscription key header name.
Query string
Subscription key query string parameter name.
Header string
Subscription key header name.
Query string
Subscription key query string parameter name.
header String
Subscription key header name.
query String
Subscription key query string parameter name.
header string
Subscription key header name.
query string
Subscription key query string parameter name.
header str
Subscription key header name.
query str
Subscription key query string parameter name.
header String
Subscription key header name.
query String
Subscription key query string parameter name.

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:apimanagement:ProductApi 5931a75ae4bbd512a88c680b /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/products/{productId}/apis/{apiId} 
Copy

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

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi