azure-native.apimanagement.GatewayApiEntityTag
Explore with Pulumi AI
API details. Azure REST API version: 2022-08-01. Prior API version in Azure Native 1.x: 2020-12-01.
Other available API versions: 2022-09-01-preview, 2023-03-01-preview, 2023-05-01-preview, 2023-09-01-preview.
Example Usage
ApiManagementCreateGatewayApi
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var gatewayApiEntityTag = new AzureNative.ApiManagement.GatewayApiEntityTag("gatewayApiEntityTag", new()
{
ApiId = "echo-api",
GatewayId = "gw1",
ProvisioningState = AzureNative.ApiManagement.ProvisioningState.Created,
ResourceGroupName = "rg1",
ServiceName = "apimService1",
});
});
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.NewGatewayApiEntityTag(ctx, "gatewayApiEntityTag", &apimanagement.GatewayApiEntityTagArgs{
ApiId: pulumi.String("echo-api"),
GatewayId: pulumi.String("gw1"),
ProvisioningState: apimanagement.ProvisioningStateCreated,
ResourceGroupName: pulumi.String("rg1"),
ServiceName: pulumi.String("apimService1"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.apimanagement.GatewayApiEntityTag;
import com.pulumi.azurenative.apimanagement.GatewayApiEntityTagArgs;
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 gatewayApiEntityTag = new GatewayApiEntityTag("gatewayApiEntityTag", GatewayApiEntityTagArgs.builder()
.apiId("echo-api")
.gatewayId("gw1")
.provisioningState("created")
.resourceGroupName("rg1")
.serviceName("apimService1")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
gateway_api_entity_tag = azure_native.apimanagement.GatewayApiEntityTag("gatewayApiEntityTag",
api_id="echo-api",
gateway_id="gw1",
provisioning_state=azure_native.apimanagement.ProvisioningState.CREATED,
resource_group_name="rg1",
service_name="apimService1")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const gatewayApiEntityTag = new azure_native.apimanagement.GatewayApiEntityTag("gatewayApiEntityTag", {
apiId: "echo-api",
gatewayId: "gw1",
provisioningState: azure_native.apimanagement.ProvisioningState.Created,
resourceGroupName: "rg1",
serviceName: "apimService1",
});
resources:
gatewayApiEntityTag:
type: azure-native:apimanagement:GatewayApiEntityTag
properties:
apiId: echo-api
gatewayId: gw1
provisioningState: created
resourceGroupName: rg1
serviceName: apimService1
Create GatewayApiEntityTag Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new GatewayApiEntityTag(name: string, args: GatewayApiEntityTagArgs, opts?: CustomResourceOptions);
@overload
def GatewayApiEntityTag(resource_name: str,
args: GatewayApiEntityTagArgs,
opts: Optional[ResourceOptions] = None)
@overload
def GatewayApiEntityTag(resource_name: str,
opts: Optional[ResourceOptions] = None,
gateway_id: Optional[str] = None,
resource_group_name: Optional[str] = None,
service_name: Optional[str] = None,
api_id: Optional[str] = None,
provisioning_state: Optional[ProvisioningState] = None)
func NewGatewayApiEntityTag(ctx *Context, name string, args GatewayApiEntityTagArgs, opts ...ResourceOption) (*GatewayApiEntityTag, error)
public GatewayApiEntityTag(string name, GatewayApiEntityTagArgs args, CustomResourceOptions? opts = null)
public GatewayApiEntityTag(String name, GatewayApiEntityTagArgs args)
public GatewayApiEntityTag(String name, GatewayApiEntityTagArgs args, CustomResourceOptions options)
type: azure-native:apimanagement:GatewayApiEntityTag
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args GatewayApiEntityTagArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args GatewayApiEntityTagArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args GatewayApiEntityTagArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GatewayApiEntityTagArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GatewayApiEntityTagArgs
- 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 gatewayApiEntityTagResource = new AzureNative.ApiManagement.GatewayApiEntityTag("gatewayApiEntityTagResource", new()
{
GatewayId = "string",
ResourceGroupName = "string",
ServiceName = "string",
ApiId = "string",
ProvisioningState = AzureNative.ApiManagement.ProvisioningState.Created,
});
example, err := apimanagement.NewGatewayApiEntityTag(ctx, "gatewayApiEntityTagResource", &apimanagement.GatewayApiEntityTagArgs{
GatewayId: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
ServiceName: pulumi.String("string"),
ApiId: pulumi.String("string"),
ProvisioningState: apimanagement.ProvisioningStateCreated,
})
var gatewayApiEntityTagResource = new GatewayApiEntityTag("gatewayApiEntityTagResource", GatewayApiEntityTagArgs.builder()
.gatewayId("string")
.resourceGroupName("string")
.serviceName("string")
.apiId("string")
.provisioningState("created")
.build());
gateway_api_entity_tag_resource = azure_native.apimanagement.GatewayApiEntityTag("gatewayApiEntityTagResource",
gateway_id="string",
resource_group_name="string",
service_name="string",
api_id="string",
provisioning_state=azure_native.apimanagement.ProvisioningState.CREATED)
const gatewayApiEntityTagResource = new azure_native.apimanagement.GatewayApiEntityTag("gatewayApiEntityTagResource", {
gatewayId: "string",
resourceGroupName: "string",
serviceName: "string",
apiId: "string",
provisioningState: azure_native.apimanagement.ProvisioningState.Created,
});
type: azure-native:apimanagement:GatewayApiEntityTag
properties:
apiId: string
gatewayId: string
provisioningState: created
resourceGroupName: string
serviceName: string
GatewayApiEntityTag Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The GatewayApiEntityTag resource accepts the following input properties:
- Gateway
Id string - Gateway entity identifier. Must be unique in the current API Management service instance. Must not have value 'managed'
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Service
Name string - The name of the API Management service.
- Api
Id string - API identifier. Must be unique in the current API Management service instance.
- Provisioning
State Pulumi.Azure Native. Api Management. Provisioning State - Provisioning state.
- Gateway
Id string - Gateway entity identifier. Must be unique in the current API Management service instance. Must not have value 'managed'
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Service
Name string - The name of the API Management service.
- Api
Id string - API identifier. Must be unique in the current API Management service instance.
- Provisioning
State ProvisioningState - Provisioning state.
- gateway
Id String - Gateway entity identifier. Must be unique in the current API Management service instance. Must not have value 'managed'
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- service
Name String - The name of the API Management service.
- api
Id String - API identifier. Must be unique in the current API Management service instance.
- provisioning
State ProvisioningState - Provisioning state.
- gateway
Id string - Gateway entity identifier. Must be unique in the current API Management service instance. Must not have value 'managed'
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- service
Name string - The name of the API Management service.
- api
Id string - API identifier. Must be unique in the current API Management service instance.
- provisioning
State ProvisioningState - Provisioning state.
- gateway_
id str - Gateway entity identifier. Must be unique in the current API Management service instance. Must not have value 'managed'
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- service_
name str - The name of the API Management service.
- api_
id str - API identifier. Must be unique in the current API Management service instance.
- provisioning_
state ProvisioningState - Provisioning state.
- gateway
Id String - Gateway entity identifier. Must be unique in the current API Management service instance. Must not have value 'managed'
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- service
Name String - The name of the API Management service.
- api
Id String - API identifier. Must be unique in the current API Management service instance.
- provisioning
State "created" - Provisioning state.
Outputs
All input properties are implicitly available as output properties. Additionally, the GatewayApiEntityTag resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Online 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"
- Api
Revision string - Describes the revision of the API. If no value is provided, default revision 1 is created
- Api
Revision stringDescription - Description of the API Revision.
- Api
Type string - Type of API.
- Api
Version string - Indicates the version identifier of the API if the API is versioned
- Api
Version stringDescription - Description of the API Version.
- Api
Version Pulumi.Set Azure Native. Api Management. Outputs. Api Version Set Contract Details Response - Version set details
- Api
Version stringSet Id - A resource identifier for the related ApiVersionSet.
- Authentication
Settings Pulumi.Azure Native. Api Management. Outputs. Authentication Settings Contract Response - Collection of authentication settings included into this API.
- Contact
Pulumi.
Azure Native. Api Management. Outputs. Api Contact Information Response - Contact information for the API.
- Description string
- Description of the API. May include HTML formatting tags.
- Display
Name string - API name. Must be 1 to 300 characters long.
- Is
Current bool - Indicates if API revision is current api revision.
- License
Pulumi.
Azure Native. Api Management. Outputs. Api License Information Response - License information for the API.
- Protocols List<string>
- Describes on which protocols the operations in this API can be invoked.
- Service
Url string - Absolute URL of the backend service implementing this API. Cannot be more than 2000 characters long.
- Source
Api stringId - API identifier of the source API.
- Subscription
Key Pulumi.Parameter Names Azure Native. Api Management. Outputs. Subscription Key Parameter Names Contract Response - 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 stringService Url - 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.
- Is
Online 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"
- Api
Revision string - Describes the revision of the API. If no value is provided, default revision 1 is created
- Api
Revision stringDescription - Description of the API Revision.
- Api
Type string - Type of API.
- Api
Version string - Indicates the version identifier of the API if the API is versioned
- Api
Version stringDescription - Description of the API Version.
- Api
Version ApiSet Version Set Contract Details Response - Version set details
- Api
Version stringSet Id - A resource identifier for the related ApiVersionSet.
- Authentication
Settings AuthenticationSettings Contract Response - Collection of authentication settings included into this API.
- Contact
Api
Contact Information Response - Contact information for the API.
- Description string
- Description of the API. May include HTML formatting tags.
- Display
Name string - API name. Must be 1 to 300 characters long.
- Is
Current bool - Indicates if API revision is current api revision.
- License
Api
License Information Response - License information for the API.
- Protocols []string
- Describes on which protocols the operations in this API can be invoked.
- Service
Url string - Absolute URL of the backend service implementing this API. Cannot be more than 2000 characters long.
- Source
Api stringId - API identifier of the source API.
- Subscription
Key SubscriptionParameter Names Key Parameter Names Contract Response - 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 stringService Url - 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.
- is
Online 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"
- api
Revision String - Describes the revision of the API. If no value is provided, default revision 1 is created
- api
Revision StringDescription - Description of the API Revision.
- api
Type String - Type of API.
- api
Version String - Indicates the version identifier of the API if the API is versioned
- api
Version StringDescription - Description of the API Version.
- api
Version ApiSet Version Set Contract Details Response - Version set details
- api
Version StringSet Id - A resource identifier for the related ApiVersionSet.
- authentication
Settings AuthenticationSettings Contract Response - Collection of authentication settings included into this API.
- contact
Api
Contact Information Response - Contact information for the API.
- description String
- Description of the API. May include HTML formatting tags.
- display
Name String - API name. Must be 1 to 300 characters long.
- is
Current Boolean - Indicates if API revision is current api revision.
- license
Api
License Information Response - License information for the API.
- protocols List<String>
- Describes on which protocols the operations in this API can be invoked.
- service
Url String - Absolute URL of the backend service implementing this API. Cannot be more than 2000 characters long.
- source
Api StringId - API identifier of the source API.
- subscription
Key SubscriptionParameter Names Key Parameter Names Contract Response - Protocols over which API is made available.
- subscription
Required Boolean - Specifies whether an API or Product subscription is required for accessing the API.
- terms
Of StringService Url - 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.
- is
Online 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"
- api
Revision string - Describes the revision of the API. If no value is provided, default revision 1 is created
- api
Revision stringDescription - Description of the API Revision.
- api
Type string - Type of API.
- api
Version string - Indicates the version identifier of the API if the API is versioned
- api
Version stringDescription - Description of the API Version.
- api
Version ApiSet Version Set Contract Details Response - Version set details
- api
Version stringSet Id - A resource identifier for the related ApiVersionSet.
- authentication
Settings AuthenticationSettings Contract Response - Collection of authentication settings included into this API.
- contact
Api
Contact Information Response - Contact information for the API.
- description string
- Description of the API. May include HTML formatting tags.
- display
Name string - API name. Must be 1 to 300 characters long.
- is
Current boolean - Indicates if API revision is current api revision.
- license
Api
License Information Response - License information for the API.
- protocols string[]
- Describes on which protocols the operations in this API can be invoked.
- service
Url string - Absolute URL of the backend service implementing this API. Cannot be more than 2000 characters long.
- source
Api stringId - API identifier of the source API.
- subscription
Key SubscriptionParameter Names Key Parameter Names Contract Response - Protocols over which API is made available.
- subscription
Required boolean - Specifies whether an API or Product subscription is required for accessing the API.
- terms
Of stringService Url - 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_ strdescription - 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_ strdescription - Description of the API Version.
- api_
version_ Apiset Version Set Contract Details Response - Version set details
- api_
version_ strset_ id - A resource identifier for the related ApiVersionSet.
- authentication_
settings AuthenticationSettings Contract Response - Collection of authentication settings included into this API.
- contact
Api
Contact Information Response - 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
Api
License Information Response - 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_ strid - API identifier of the source API.
- subscription_
key_ Subscriptionparameter_ names Key Parameter Names Contract Response - 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_ strservice_ url - 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.
- is
Online 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"
- api
Revision String - Describes the revision of the API. If no value is provided, default revision 1 is created
- api
Revision StringDescription - Description of the API Revision.
- api
Type String - Type of API.
- api
Version String - Indicates the version identifier of the API if the API is versioned
- api
Version StringDescription - Description of the API Version.
- api
Version Property MapSet - Version set details
- api
Version StringSet Id - A resource identifier for the related ApiVersionSet.
- authentication
Settings 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.
- display
Name String - API name. Must be 1 to 300 characters long.
- is
Current 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.
- service
Url String - Absolute URL of the backend service implementing this API. Cannot be more than 2000 characters long.
- source
Api StringId - API identifier of the source API.
- subscription
Key Property MapParameter Names - Protocols over which API is made available.
- subscription
Required Boolean - Specifies whether an API or Product subscription is required for accessing the API.
- terms
Of StringService Url - A URL to the Terms of Service for the API. MUST be in the format of a URL.
Supporting Types
ApiContactInformationResponse, ApiContactInformationResponseArgs
ApiLicenseInformationResponse, ApiLicenseInformationResponseArgs
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.
- Version
Header stringName - Name of HTTP header parameter that indicates the API Version if versioningScheme is set to
header
. - Version
Query stringName - Name of query parameter that indicates the API Version if versioningScheme is set to
query
. - Versioning
Scheme 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.
- Version
Header stringName - Name of HTTP header parameter that indicates the API Version if versioningScheme is set to
header
. - Version
Query stringName - Name of query parameter that indicates the API Version if versioningScheme is set to
query
. - Versioning
Scheme 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.
- version
Header StringName - Name of HTTP header parameter that indicates the API Version if versioningScheme is set to
header
. - version
Query StringName - Name of query parameter that indicates the API Version if versioningScheme is set to
query
. - versioning
Scheme 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.
- version
Header stringName - Name of HTTP header parameter that indicates the API Version if versioningScheme is set to
header
. - version
Query stringName - Name of query parameter that indicates the API Version if versioningScheme is set to
query
. - versioning
Scheme 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_ strname - Name of HTTP header parameter that indicates the API Version if versioningScheme is set to
header
. - version_
query_ strname - 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.
- version
Header StringName - Name of HTTP header parameter that indicates the API Version if versioningScheme is set to
header
. - version
Query StringName - Name of query parameter that indicates the API Version if versioningScheme is set to
query
. - versioning
Scheme String - An value that determines where the API Version identifier will be located in a HTTP request.
AuthenticationSettingsContractResponse, AuthenticationSettingsContractResponseArgs
- OAuth2
Pulumi.
Azure Native. Api Management. Inputs. OAuth2Authentication Settings Contract Response - OAuth2 Authentication settings
- OAuth2Authentication
Settings List<Pulumi.Azure Native. Api Management. Inputs. OAuth2Authentication Settings Contract Response> - Collection of OAuth2 authentication settings included into this API.
- Openid
Pulumi.
Azure Native. Api Management. Inputs. Open Id Authentication Settings Contract Response - OpenID Connect Authentication Settings
- Openid
Authentication List<Pulumi.Settings Azure Native. Api Management. Inputs. Open Id Authentication Settings Contract Response> - Collection of Open ID Connect authentication settings included into this API.
- OAuth2
OAuth2Authentication
Settings Contract Response - OAuth2 Authentication settings
- OAuth2Authentication
Settings []OAuth2AuthenticationSettings Contract Response - Collection of OAuth2 authentication settings included into this API.
- Openid
Open
Id Authentication Settings Contract Response - OpenID Connect Authentication Settings
- Openid
Authentication []OpenSettings Id Authentication Settings Contract Response - Collection of Open ID Connect authentication settings included into this API.
- o
Auth2 OAuth2AuthenticationSettings Contract Response - OAuth2 Authentication settings
- o
Auth2Authentication List<OAuth2AuthenticationSettings Settings Contract Response> - Collection of OAuth2 authentication settings included into this API.
- openid
Open
Id Authentication Settings Contract Response - OpenID Connect Authentication Settings
- openid
Authentication List<OpenSettings Id Authentication Settings Contract Response> - Collection of Open ID Connect authentication settings included into this API.
- o
Auth2 OAuth2AuthenticationSettings Contract Response - OAuth2 Authentication settings
- o
Auth2Authentication OAuth2AuthenticationSettings Settings Contract Response[] - Collection of OAuth2 authentication settings included into this API.
- openid
Open
Id Authentication Settings Contract Response - OpenID Connect Authentication Settings
- openid
Authentication OpenSettings Id Authentication Settings Contract Response[] - Collection of Open ID Connect authentication settings included into this API.
- o_
auth2 OAuth2AuthenticationSettings Contract Response - OAuth2 Authentication settings
- o_
auth2_ Sequence[OAuth2Authenticationauthentication_ settings Settings Contract Response] - Collection of OAuth2 authentication settings included into this API.
- openid
Open
Id Authentication Settings Contract Response - OpenID Connect Authentication Settings
- openid_
authentication_ Sequence[Opensettings Id Authentication Settings Contract Response] - Collection of Open ID Connect authentication settings included into this API.
- o
Auth2 Property Map - OAuth2 Authentication settings
- o
Auth2Authentication List<Property Map>Settings - Collection of OAuth2 authentication settings included into this API.
- openid Property Map
- OpenID Connect Authentication Settings
- openid
Authentication List<Property Map>Settings - Collection of Open ID Connect authentication settings included into this API.
OAuth2AuthenticationSettingsContractResponse, OAuth2AuthenticationSettingsContractResponseArgs
- string
- OAuth authorization server identifier.
- Scope string
- operations scope.
- string
- OAuth authorization server identifier.
- Scope string
- operations scope.
- String
- OAuth authorization server identifier.
- scope String
- operations scope.
- string
- OAuth authorization server identifier.
- scope string
- operations scope.
- str
- OAuth authorization server identifier.
- scope str
- operations scope.
- String
- OAuth authorization server identifier.
- scope String
- operations scope.
OpenIdAuthenticationSettingsContractResponse, OpenIdAuthenticationSettingsContractResponseArgs
- Bearer
Token List<string>Sending Methods - How to send token to the server.
- Openid
Provider stringId - OAuth authorization server identifier.
- Bearer
Token []stringSending Methods - How to send token to the server.
- Openid
Provider stringId - OAuth authorization server identifier.
- bearer
Token List<String>Sending Methods - How to send token to the server.
- openid
Provider StringId - OAuth authorization server identifier.
- bearer
Token string[]Sending Methods - How to send token to the server.
- openid
Provider stringId - OAuth authorization server identifier.
- bearer_
token_ Sequence[str]sending_ methods - How to send token to the server.
- openid_
provider_ strid - OAuth authorization server identifier.
- bearer
Token List<String>Sending Methods - How to send token to the server.
- openid
Provider StringId - OAuth authorization server identifier.
ProvisioningState, ProvisioningStateArgs
- Created
- created
- Provisioning
State Created - created
- Created
- created
- Created
- created
- CREATED
- created
- "created"
- created
SubscriptionKeyParameterNamesContractResponse, SubscriptionKeyParameterNamesContractResponseArgs
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:apimanagement:GatewayApiEntityTag echo-api /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/gateways/{gatewayId}/apis/{apiId}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0