azure-native.apimanagement.AuthorizationServer
Explore with Pulumi AI
External OAuth authorization server settings. API Version: 2020-12-01.
Example Usage
ApiManagementCreateAuthorizationServer
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var authorizationServer = new AzureNative.ApiManagement.AuthorizationServer("authorizationServer", new()
{
AuthorizationEndpoint = "https://www.contoso.com/oauth2/auth",
AuthorizationMethods = new[]
{
AzureNative.ApiManagement.AuthorizationMethod.GET,
},
Authsid = "newauthServer",
BearerTokenSendingMethods = new[]
{
"authorizationHeader",
},
ClientId = "1",
ClientRegistrationEndpoint = "https://www.contoso.com/apps",
ClientSecret = "2",
DefaultScope = "read write",
Description = "test server",
DisplayName = "test2",
GrantTypes = new[]
{
"authorizationCode",
"implicit",
},
ResourceGroupName = "rg1",
ResourceOwnerPassword = "pwd",
ResourceOwnerUsername = "un",
ServiceName = "apimService1",
SupportState = true,
TokenEndpoint = "https://www.contoso.com/oauth2/token",
});
});
package main
import (
apimanagement "github.com/pulumi/pulumi-azure-native-sdk/apimanagement"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := apimanagement.NewAuthorizationServer(ctx, "authorizationServer", &apimanagement.AuthorizationServerArgs{
AuthorizationEndpoint: pulumi.String("https://www.contoso.com/oauth2/auth"),
AuthorizationMethods: []apimanagement.AuthorizationMethod{
apimanagement.AuthorizationMethodGET,
},
Authsid: pulumi.String("newauthServer"),
BearerTokenSendingMethods: pulumi.StringArray{
pulumi.String("authorizationHeader"),
},
ClientId: pulumi.String("1"),
ClientRegistrationEndpoint: pulumi.String("https://www.contoso.com/apps"),
ClientSecret: pulumi.String("2"),
DefaultScope: pulumi.String("read write"),
Description: pulumi.String("test server"),
DisplayName: pulumi.String("test2"),
GrantTypes: pulumi.StringArray{
pulumi.String("authorizationCode"),
pulumi.String("implicit"),
},
ResourceGroupName: pulumi.String("rg1"),
ResourceOwnerPassword: pulumi.String("pwd"),
ResourceOwnerUsername: pulumi.String("un"),
ServiceName: pulumi.String("apimService1"),
SupportState: pulumi.Bool(true),
TokenEndpoint: pulumi.String("https://www.contoso.com/oauth2/token"),
})
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.AuthorizationServer;
import com.pulumi.azurenative.apimanagement.AuthorizationServerArgs;
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 authorizationServer = new AuthorizationServer("authorizationServer", AuthorizationServerArgs.builder()
.authorizationEndpoint("https://www.contoso.com/oauth2/auth")
.authorizationMethods("GET")
.authsid("newauthServer")
.bearerTokenSendingMethods("authorizationHeader")
.clientId("1")
.clientRegistrationEndpoint("https://www.contoso.com/apps")
.clientSecret("2")
.defaultScope("read write")
.description("test server")
.displayName("test2")
.grantTypes(
"authorizationCode",
"implicit")
.resourceGroupName("rg1")
.resourceOwnerPassword("pwd")
.resourceOwnerUsername("un")
.serviceName("apimService1")
.supportState(true)
.tokenEndpoint("https://www.contoso.com/oauth2/token")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
authorization_server = azure_native.apimanagement.AuthorizationServer("authorizationServer",
authorization_endpoint="https://www.contoso.com/oauth2/auth",
authorization_methods=[azure_native.apimanagement.AuthorizationMethod.GET],
authsid="newauthServer",
bearer_token_sending_methods=["authorizationHeader"],
client_id="1",
client_registration_endpoint="https://www.contoso.com/apps",
client_secret="2",
default_scope="read write",
description="test server",
display_name="test2",
grant_types=[
"authorizationCode",
"implicit",
],
resource_group_name="rg1",
resource_owner_password="pwd",
resource_owner_username="un",
service_name="apimService1",
support_state=True,
token_endpoint="https://www.contoso.com/oauth2/token")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const authorizationServer = new azure_native.apimanagement.AuthorizationServer("authorizationServer", {
authorizationEndpoint: "https://www.contoso.com/oauth2/auth",
authorizationMethods: [azure_native.apimanagement.AuthorizationMethod.GET],
authsid: "newauthServer",
bearerTokenSendingMethods: ["authorizationHeader"],
clientId: "1",
clientRegistrationEndpoint: "https://www.contoso.com/apps",
clientSecret: "2",
defaultScope: "read write",
description: "test server",
displayName: "test2",
grantTypes: [
"authorizationCode",
"implicit",
],
resourceGroupName: "rg1",
resourceOwnerPassword: "pwd",
resourceOwnerUsername: "un",
serviceName: "apimService1",
supportState: true,
tokenEndpoint: "https://www.contoso.com/oauth2/token",
});
resources:
authorizationServer:
type: azure-native:apimanagement:AuthorizationServer
properties:
authorizationEndpoint: https://www.contoso.com/oauth2/auth
authorizationMethods:
- GET
authsid: newauthServer
bearerTokenSendingMethods:
- authorizationHeader
clientId: '1'
clientRegistrationEndpoint: https://www.contoso.com/apps
clientSecret: '2'
defaultScope: read write
description: test server
displayName: test2
grantTypes:
- authorizationCode
- implicit
resourceGroupName: rg1
resourceOwnerPassword: pwd
resourceOwnerUsername: un
serviceName: apimService1
supportState: true
tokenEndpoint: https://www.contoso.com/oauth2/token
Create AuthorizationServer Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AuthorizationServer(name: string, args: AuthorizationServerArgs, opts?: CustomResourceOptions);
@overload
def AuthorizationServer(resource_name: str,
args: AuthorizationServerArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AuthorizationServer(resource_name: str,
opts: Optional[ResourceOptions] = None,
display_name: Optional[str] = None,
service_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
grant_types: Optional[Sequence[Union[str, GrantType]]] = None,
authorization_endpoint: Optional[str] = None,
client_id: Optional[str] = None,
client_registration_endpoint: Optional[str] = None,
client_authentication_method: Optional[Sequence[Union[str, ClientAuthenticationMethod]]] = None,
default_scope: Optional[str] = None,
description: Optional[str] = None,
client_secret: Optional[str] = None,
bearer_token_sending_methods: Optional[Sequence[Union[str, BearerTokenSendingMethod]]] = None,
authsid: Optional[str] = None,
resource_owner_password: Optional[str] = None,
resource_owner_username: Optional[str] = None,
authorization_methods: Optional[Sequence[AuthorizationMethod]] = None,
support_state: Optional[bool] = None,
token_body_parameters: Optional[Sequence[TokenBodyParameterContractArgs]] = None,
token_endpoint: Optional[str] = None)
func NewAuthorizationServer(ctx *Context, name string, args AuthorizationServerArgs, opts ...ResourceOption) (*AuthorizationServer, error)
public AuthorizationServer(string name, AuthorizationServerArgs args, CustomResourceOptions? opts = null)
public AuthorizationServer(String name, AuthorizationServerArgs args)
public AuthorizationServer(String name, AuthorizationServerArgs args, CustomResourceOptions options)
type: azure-native:apimanagement:AuthorizationServer
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 AuthorizationServerArgs
- 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 AuthorizationServerArgs
- 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 AuthorizationServerArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AuthorizationServerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AuthorizationServerArgs
- 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 authorizationServerResource = new AzureNative.Apimanagement.AuthorizationServer("authorizationServerResource", new()
{
DisplayName = "string",
ServiceName = "string",
ResourceGroupName = "string",
GrantTypes = new[]
{
"string",
},
AuthorizationEndpoint = "string",
ClientId = "string",
ClientRegistrationEndpoint = "string",
ClientAuthenticationMethod = new[]
{
"string",
},
DefaultScope = "string",
Description = "string",
ClientSecret = "string",
BearerTokenSendingMethods = new[]
{
"string",
},
Authsid = "string",
ResourceOwnerPassword = "string",
ResourceOwnerUsername = "string",
AuthorizationMethods = new[]
{
"HEAD",
},
SupportState = false,
TokenBodyParameters = new[]
{
{
{ "name", "string" },
{ "value", "string" },
},
},
TokenEndpoint = "string",
});
example, err := apimanagement.NewAuthorizationServer(ctx, "authorizationServerResource", &apimanagement.AuthorizationServerArgs{
DisplayName: "string",
ServiceName: "string",
ResourceGroupName: "string",
GrantTypes: []string{
"string",
},
AuthorizationEndpoint: "string",
ClientId: "string",
ClientRegistrationEndpoint: "string",
ClientAuthenticationMethod: []string{
"string",
},
DefaultScope: "string",
Description: "string",
ClientSecret: "string",
BearerTokenSendingMethods: []string{
"string",
},
Authsid: "string",
ResourceOwnerPassword: "string",
ResourceOwnerUsername: "string",
AuthorizationMethods: []string{
"HEAD",
},
SupportState: false,
TokenBodyParameters: []map[string]interface{}{
map[string]interface{}{
"name": "string",
"value": "string",
},
},
TokenEndpoint: "string",
})
var authorizationServerResource = new AuthorizationServer("authorizationServerResource", AuthorizationServerArgs.builder()
.displayName("string")
.serviceName("string")
.resourceGroupName("string")
.grantTypes("string")
.authorizationEndpoint("string")
.clientId("string")
.clientRegistrationEndpoint("string")
.clientAuthenticationMethod("string")
.defaultScope("string")
.description("string")
.clientSecret("string")
.bearerTokenSendingMethods("string")
.authsid("string")
.resourceOwnerPassword("string")
.resourceOwnerUsername("string")
.authorizationMethods("HEAD")
.supportState(false)
.tokenBodyParameters(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.tokenEndpoint("string")
.build());
authorization_server_resource = azure_native.apimanagement.AuthorizationServer("authorizationServerResource",
display_name=string,
service_name=string,
resource_group_name=string,
grant_types=[string],
authorization_endpoint=string,
client_id=string,
client_registration_endpoint=string,
client_authentication_method=[string],
default_scope=string,
description=string,
client_secret=string,
bearer_token_sending_methods=[string],
authsid=string,
resource_owner_password=string,
resource_owner_username=string,
authorization_methods=[HEAD],
support_state=False,
token_body_parameters=[{
name: string,
value: string,
}],
token_endpoint=string)
const authorizationServerResource = new azure_native.apimanagement.AuthorizationServer("authorizationServerResource", {
displayName: "string",
serviceName: "string",
resourceGroupName: "string",
grantTypes: ["string"],
authorizationEndpoint: "string",
clientId: "string",
clientRegistrationEndpoint: "string",
clientAuthenticationMethod: ["string"],
defaultScope: "string",
description: "string",
clientSecret: "string",
bearerTokenSendingMethods: ["string"],
authsid: "string",
resourceOwnerPassword: "string",
resourceOwnerUsername: "string",
authorizationMethods: ["HEAD"],
supportState: false,
tokenBodyParameters: [{
name: "string",
value: "string",
}],
tokenEndpoint: "string",
});
type: azure-native:apimanagement:AuthorizationServer
properties:
authorizationEndpoint: string
authorizationMethods:
- HEAD
authsid: string
bearerTokenSendingMethods:
- string
clientAuthenticationMethod:
- string
clientId: string
clientRegistrationEndpoint: string
clientSecret: string
defaultScope: string
description: string
displayName: string
grantTypes:
- string
resourceGroupName: string
resourceOwnerPassword: string
resourceOwnerUsername: string
serviceName: string
supportState: false
tokenBodyParameters:
- name: string
value: string
tokenEndpoint: string
AuthorizationServer 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 AuthorizationServer resource accepts the following input properties:
- string
- OAuth authorization endpoint. See http://tools.ietf.org/html/rfc6749#section-3.2.
- Client
Id string - Client or app id registered with this authorization server.
- Client
Registration stringEndpoint - Optional reference to a page where client or app registration for this authorization server is performed. Contains absolute URL to entity being referenced.
- Display
Name string - User-friendly authorization server name.
- Grant
Types List<Union<string, Pulumi.Azure Native. Api Management. Grant Type>> - Form of an authorization grant, which the client uses to request the access token.
- Resource
Group stringName - The name of the resource group.
- Service
Name string - The name of the API Management service.
- List<Pulumi.
Azure Native. Api Management. Authorization Method> - HTTP verbs supported by the authorization endpoint. GET must be always present. POST is optional.
- Authsid string
- Identifier of the authorization server.
- Bearer
Token List<Union<string, Pulumi.Sending Methods Azure Native. Api Management. Bearer Token Sending Method>> - Specifies the mechanism by which access token is passed to the API.
- Client
Authentication List<Union<string, Pulumi.Method Azure Native. Api Management. Client Authentication Method>> - Method of authentication supported by the token endpoint of this authorization server. Possible values are Basic and/or Body. When Body is specified, client credentials and other parameters are passed within the request body in the application/x-www-form-urlencoded format.
- Client
Secret string - Client or app secret registered with this authorization server. This property will not be filled on 'GET' operations! Use '/listSecrets' POST request to get the value.
- Default
Scope string - Access token scope that is going to be requested by default. Can be overridden at the API level. Should be provided in the form of a string containing space-delimited values.
- Description string
- Description of the authorization server. Can contain HTML formatting tags.
- Resource
Owner stringPassword - Can be optionally specified when resource owner password grant type is supported by this authorization server. Default resource owner password.
- Resource
Owner stringUsername - Can be optionally specified when resource owner password grant type is supported by this authorization server. Default resource owner username.
- Support
State bool - If true, authorization server will include state parameter from the authorization request to its response. Client may use state parameter to raise protocol security.
- Token
Body List<Pulumi.Parameters Azure Native. Api Management. Inputs. Token Body Parameter Contract> - Additional parameters required by the token endpoint of this authorization server represented as an array of JSON objects with name and value string properties, i.e. {"name" : "name value", "value": "a value"}.
- Token
Endpoint string - OAuth token endpoint. Contains absolute URI to entity being referenced.
- string
- OAuth authorization endpoint. See http://tools.ietf.org/html/rfc6749#section-3.2.
- Client
Id string - Client or app id registered with this authorization server.
- Client
Registration stringEndpoint - Optional reference to a page where client or app registration for this authorization server is performed. Contains absolute URL to entity being referenced.
- Display
Name string - User-friendly authorization server name.
- Grant
Types []string - Form of an authorization grant, which the client uses to request the access token.
- Resource
Group stringName - The name of the resource group.
- Service
Name string - The name of the API Management service.
- []Authorization
Method - HTTP verbs supported by the authorization endpoint. GET must be always present. POST is optional.
- Authsid string
- Identifier of the authorization server.
- Bearer
Token []stringSending Methods - Specifies the mechanism by which access token is passed to the API.
- Client
Authentication []stringMethod - Method of authentication supported by the token endpoint of this authorization server. Possible values are Basic and/or Body. When Body is specified, client credentials and other parameters are passed within the request body in the application/x-www-form-urlencoded format.
- Client
Secret string - Client or app secret registered with this authorization server. This property will not be filled on 'GET' operations! Use '/listSecrets' POST request to get the value.
- Default
Scope string - Access token scope that is going to be requested by default. Can be overridden at the API level. Should be provided in the form of a string containing space-delimited values.
- Description string
- Description of the authorization server. Can contain HTML formatting tags.
- Resource
Owner stringPassword - Can be optionally specified when resource owner password grant type is supported by this authorization server. Default resource owner password.
- Resource
Owner stringUsername - Can be optionally specified when resource owner password grant type is supported by this authorization server. Default resource owner username.
- Support
State bool - If true, authorization server will include state parameter from the authorization request to its response. Client may use state parameter to raise protocol security.
- Token
Body []TokenParameters Body Parameter Contract Args - Additional parameters required by the token endpoint of this authorization server represented as an array of JSON objects with name and value string properties, i.e. {"name" : "name value", "value": "a value"}.
- Token
Endpoint string - OAuth token endpoint. Contains absolute URI to entity being referenced.
- String
- OAuth authorization endpoint. See http://tools.ietf.org/html/rfc6749#section-3.2.
- client
Id String - Client or app id registered with this authorization server.
- client
Registration StringEndpoint - Optional reference to a page where client or app registration for this authorization server is performed. Contains absolute URL to entity being referenced.
- display
Name String - User-friendly authorization server name.
- grant
Types List<Either<String,GrantType>> - Form of an authorization grant, which the client uses to request the access token.
- resource
Group StringName - The name of the resource group.
- service
Name String - The name of the API Management service.
- List<Authorization
Method> - HTTP verbs supported by the authorization endpoint. GET must be always present. POST is optional.
- authsid String
- Identifier of the authorization server.
- bearer
Token List<Either<String,BearerSending Methods Token Sending Method>> - Specifies the mechanism by which access token is passed to the API.
- client
Authentication List<Either<String,ClientMethod Authentication Method>> - Method of authentication supported by the token endpoint of this authorization server. Possible values are Basic and/or Body. When Body is specified, client credentials and other parameters are passed within the request body in the application/x-www-form-urlencoded format.
- client
Secret String - Client or app secret registered with this authorization server. This property will not be filled on 'GET' operations! Use '/listSecrets' POST request to get the value.
- default
Scope String - Access token scope that is going to be requested by default. Can be overridden at the API level. Should be provided in the form of a string containing space-delimited values.
- description String
- Description of the authorization server. Can contain HTML formatting tags.
- resource
Owner StringPassword - Can be optionally specified when resource owner password grant type is supported by this authorization server. Default resource owner password.
- resource
Owner StringUsername - Can be optionally specified when resource owner password grant type is supported by this authorization server. Default resource owner username.
- support
State Boolean - If true, authorization server will include state parameter from the authorization request to its response. Client may use state parameter to raise protocol security.
- token
Body List<TokenParameters Body Parameter Contract> - Additional parameters required by the token endpoint of this authorization server represented as an array of JSON objects with name and value string properties, i.e. {"name" : "name value", "value": "a value"}.
- token
Endpoint String - OAuth token endpoint. Contains absolute URI to entity being referenced.
- string
- OAuth authorization endpoint. See http://tools.ietf.org/html/rfc6749#section-3.2.
- client
Id string - Client or app id registered with this authorization server.
- client
Registration stringEndpoint - Optional reference to a page where client or app registration for this authorization server is performed. Contains absolute URL to entity being referenced.
- display
Name string - User-friendly authorization server name.
- grant
Types (string | GrantType)[] - Form of an authorization grant, which the client uses to request the access token.
- resource
Group stringName - The name of the resource group.
- service
Name string - The name of the API Management service.
- Authorization
Method[] - HTTP verbs supported by the authorization endpoint. GET must be always present. POST is optional.
- authsid string
- Identifier of the authorization server.
- bearer
Token (string | BearerSending Methods Token Sending Method)[] - Specifies the mechanism by which access token is passed to the API.
- client
Authentication (string | ClientMethod Authentication Method)[] - Method of authentication supported by the token endpoint of this authorization server. Possible values are Basic and/or Body. When Body is specified, client credentials and other parameters are passed within the request body in the application/x-www-form-urlencoded format.
- client
Secret string - Client or app secret registered with this authorization server. This property will not be filled on 'GET' operations! Use '/listSecrets' POST request to get the value.
- default
Scope string - Access token scope that is going to be requested by default. Can be overridden at the API level. Should be provided in the form of a string containing space-delimited values.
- description string
- Description of the authorization server. Can contain HTML formatting tags.
- resource
Owner stringPassword - Can be optionally specified when resource owner password grant type is supported by this authorization server. Default resource owner password.
- resource
Owner stringUsername - Can be optionally specified when resource owner password grant type is supported by this authorization server. Default resource owner username.
- support
State boolean - If true, authorization server will include state parameter from the authorization request to its response. Client may use state parameter to raise protocol security.
- token
Body TokenParameters Body Parameter Contract[] - Additional parameters required by the token endpoint of this authorization server represented as an array of JSON objects with name and value string properties, i.e. {"name" : "name value", "value": "a value"}.
- token
Endpoint string - OAuth token endpoint. Contains absolute URI to entity being referenced.
- str
- OAuth authorization endpoint. See http://tools.ietf.org/html/rfc6749#section-3.2.
- client_
id str - Client or app id registered with this authorization server.
- client_
registration_ strendpoint - Optional reference to a page where client or app registration for this authorization server is performed. Contains absolute URL to entity being referenced.
- display_
name str - User-friendly authorization server name.
- grant_
types Sequence[Union[str, GrantType]] - Form of an authorization grant, which the client uses to request the access token.
- resource_
group_ strname - The name of the resource group.
- service_
name str - The name of the API Management service.
- Sequence[Authorization
Method] - HTTP verbs supported by the authorization endpoint. GET must be always present. POST is optional.
- authsid str
- Identifier of the authorization server.
- bearer_
token_ Sequence[Union[str, Bearersending_ methods Token Sending Method]] - Specifies the mechanism by which access token is passed to the API.
- client_
authentication_ Sequence[Union[str, Clientmethod Authentication Method]] - Method of authentication supported by the token endpoint of this authorization server. Possible values are Basic and/or Body. When Body is specified, client credentials and other parameters are passed within the request body in the application/x-www-form-urlencoded format.
- client_
secret str - Client or app secret registered with this authorization server. This property will not be filled on 'GET' operations! Use '/listSecrets' POST request to get the value.
- default_
scope str - Access token scope that is going to be requested by default. Can be overridden at the API level. Should be provided in the form of a string containing space-delimited values.
- description str
- Description of the authorization server. Can contain HTML formatting tags.
- resource_
owner_ strpassword - Can be optionally specified when resource owner password grant type is supported by this authorization server. Default resource owner password.
- resource_
owner_ strusername - Can be optionally specified when resource owner password grant type is supported by this authorization server. Default resource owner username.
- support_
state bool - If true, authorization server will include state parameter from the authorization request to its response. Client may use state parameter to raise protocol security.
- token_
body_ Sequence[Tokenparameters Body Parameter Contract Args] - Additional parameters required by the token endpoint of this authorization server represented as an array of JSON objects with name and value string properties, i.e. {"name" : "name value", "value": "a value"}.
- token_
endpoint str - OAuth token endpoint. Contains absolute URI to entity being referenced.
- String
- OAuth authorization endpoint. See http://tools.ietf.org/html/rfc6749#section-3.2.
- client
Id String - Client or app id registered with this authorization server.
- client
Registration StringEndpoint - Optional reference to a page where client or app registration for this authorization server is performed. Contains absolute URL to entity being referenced.
- display
Name String - User-friendly authorization server name.
- grant
Types List<String | "authorizationCode" | "implicit" | "resource Owner Password" | "client Credentials"> - Form of an authorization grant, which the client uses to request the access token.
- resource
Group StringName - The name of the resource group.
- service
Name String - The name of the API Management service.
- List<"HEAD" | "OPTIONS" | "TRACE" | "GET" | "POST" | "PUT" | "PATCH" | "DELETE">
- HTTP verbs supported by the authorization endpoint. GET must be always present. POST is optional.
- authsid String
- Identifier of the authorization server.
- bearer
Token List<String | "authorizationSending Methods Header" | "query"> - Specifies the mechanism by which access token is passed to the API.
- client
Authentication List<String | "Basic" | "Body">Method - Method of authentication supported by the token endpoint of this authorization server. Possible values are Basic and/or Body. When Body is specified, client credentials and other parameters are passed within the request body in the application/x-www-form-urlencoded format.
- client
Secret String - Client or app secret registered with this authorization server. This property will not be filled on 'GET' operations! Use '/listSecrets' POST request to get the value.
- default
Scope String - Access token scope that is going to be requested by default. Can be overridden at the API level. Should be provided in the form of a string containing space-delimited values.
- description String
- Description of the authorization server. Can contain HTML formatting tags.
- resource
Owner StringPassword - Can be optionally specified when resource owner password grant type is supported by this authorization server. Default resource owner password.
- resource
Owner StringUsername - Can be optionally specified when resource owner password grant type is supported by this authorization server. Default resource owner username.
- support
State Boolean - If true, authorization server will include state parameter from the authorization request to its response. Client may use state parameter to raise protocol security.
- token
Body List<Property Map>Parameters - Additional parameters required by the token endpoint of this authorization server represented as an array of JSON objects with name and value string properties, i.e. {"name" : "name value", "value": "a value"}.
- token
Endpoint String - OAuth token endpoint. Contains absolute URI to entity being referenced.
Outputs
All input properties are implicitly available as output properties. Additionally, the AuthorizationServer resource produces the following output properties:
Supporting Types
AuthorizationMethod, AuthorizationMethodArgs
- HEAD
- HEAD
- OPTIONS
- OPTIONS
- TRACE
- TRACE
- GET
- GET
- POST
- POST
- PUT
- PUT
- PATCH
- PATCH
- DELETE
- DELETE
- Authorization
Method HEAD - HEAD
- Authorization
Method OPTIONS - OPTIONS
- Authorization
Method TRACE - TRACE
- Authorization
Method GET - GET
- Authorization
Method POST - POST
- Authorization
Method PUT - PUT
- Authorization
Method PATCH - PATCH
- Authorization
Method DELETE - DELETE
- HEAD
- HEAD
- OPTIONS
- OPTIONS
- TRACE
- TRACE
- GET
- GET
- POST
- POST
- PUT
- PUT
- PATCH
- PATCH
- DELETE
- DELETE
- HEAD
- HEAD
- OPTIONS
- OPTIONS
- TRACE
- TRACE
- GET
- GET
- POST
- POST
- PUT
- PUT
- PATCH
- PATCH
- DELETE
- DELETE
- HEAD
- HEAD
- OPTIONS
- OPTIONS
- TRACE
- TRACE
- GET
- GET
- POST
- POST
- PUT
- PUT
- PATCH
- PATCH
- DELETE
- DELETE
- "HEAD"
- HEAD
- "OPTIONS"
- OPTIONS
- "TRACE"
- TRACE
- "GET"
- GET
- "POST"
- POST
- "PUT"
- PUT
- "PATCH"
- PATCH
- "DELETE"
- DELETE
BearerTokenSendingMethod, BearerTokenSendingMethodArgs
- Authorization
Header - authorizationHeader
- Query
- query
- Bearer
Token Sending Method Authorization Header - authorizationHeader
- Bearer
Token Sending Method Query - query
- Authorization
Header - authorizationHeader
- Query
- query
- Authorization
Header - authorizationHeader
- Query
- query
- AUTHORIZATION_HEADER
- authorizationHeader
- QUERY
- query
- "authorization
Header" - authorizationHeader
- "query"
- query
ClientAuthenticationMethod, ClientAuthenticationMethodArgs
- Basic
- BasicBasic Client Authentication method.
- Body
- BodyBody based Authentication method.
- Client
Authentication Method Basic - BasicBasic Client Authentication method.
- Client
Authentication Method Body - BodyBody based Authentication method.
- Basic
- BasicBasic Client Authentication method.
- Body
- BodyBody based Authentication method.
- Basic
- BasicBasic Client Authentication method.
- Body
- BodyBody based Authentication method.
- BASIC
- BasicBasic Client Authentication method.
- BODY
- BodyBody based Authentication method.
- "Basic"
- BasicBasic Client Authentication method.
- "Body"
- BodyBody based Authentication method.
GrantType, GrantTypeArgs
- Authorization
Code - authorizationCodeAuthorization Code Grant flow as described https://tools.ietf.org/html/rfc6749#section-4.1.
- @Implicit
- implicitImplicit Code Grant flow as described https://tools.ietf.org/html/rfc6749#section-4.2.
- Resource
Owner Password - resourceOwnerPasswordResource Owner Password Grant flow as described https://tools.ietf.org/html/rfc6749#section-4.3.
- Client
Credentials - clientCredentialsClient Credentials Grant flow as described https://tools.ietf.org/html/rfc6749#section-4.4.
- Grant
Type Authorization Code - authorizationCodeAuthorization Code Grant flow as described https://tools.ietf.org/html/rfc6749#section-4.1.
- Grant
Type Implicit - implicitImplicit Code Grant flow as described https://tools.ietf.org/html/rfc6749#section-4.2.
- Grant
Type Resource Owner Password - resourceOwnerPasswordResource Owner Password Grant flow as described https://tools.ietf.org/html/rfc6749#section-4.3.
- Grant
Type Client Credentials - clientCredentialsClient Credentials Grant flow as described https://tools.ietf.org/html/rfc6749#section-4.4.
- Authorization
Code - authorizationCodeAuthorization Code Grant flow as described https://tools.ietf.org/html/rfc6749#section-4.1.
- Implicit
- implicitImplicit Code Grant flow as described https://tools.ietf.org/html/rfc6749#section-4.2.
- Resource
Owner Password - resourceOwnerPasswordResource Owner Password Grant flow as described https://tools.ietf.org/html/rfc6749#section-4.3.
- Client
Credentials - clientCredentialsClient Credentials Grant flow as described https://tools.ietf.org/html/rfc6749#section-4.4.
- Authorization
Code - authorizationCodeAuthorization Code Grant flow as described https://tools.ietf.org/html/rfc6749#section-4.1.
- Implicit
- implicitImplicit Code Grant flow as described https://tools.ietf.org/html/rfc6749#section-4.2.
- Resource
Owner Password - resourceOwnerPasswordResource Owner Password Grant flow as described https://tools.ietf.org/html/rfc6749#section-4.3.
- Client
Credentials - clientCredentialsClient Credentials Grant flow as described https://tools.ietf.org/html/rfc6749#section-4.4.
- AUTHORIZATION_CODE
- authorizationCodeAuthorization Code Grant flow as described https://tools.ietf.org/html/rfc6749#section-4.1.
- IMPLICIT
- implicitImplicit Code Grant flow as described https://tools.ietf.org/html/rfc6749#section-4.2.
- RESOURCE_OWNER_PASSWORD
- resourceOwnerPasswordResource Owner Password Grant flow as described https://tools.ietf.org/html/rfc6749#section-4.3.
- CLIENT_CREDENTIALS
- clientCredentialsClient Credentials Grant flow as described https://tools.ietf.org/html/rfc6749#section-4.4.
- "authorization
Code" - authorizationCodeAuthorization Code Grant flow as described https://tools.ietf.org/html/rfc6749#section-4.1.
- "implicit"
- implicitImplicit Code Grant flow as described https://tools.ietf.org/html/rfc6749#section-4.2.
- "resource
Owner Password" - resourceOwnerPasswordResource Owner Password Grant flow as described https://tools.ietf.org/html/rfc6749#section-4.3.
- "client
Credentials" - clientCredentialsClient Credentials Grant flow as described https://tools.ietf.org/html/rfc6749#section-4.4.
TokenBodyParameterContract, TokenBodyParameterContractArgs
TokenBodyParameterContractResponse, TokenBodyParameterContractResponseArgs
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:apimanagement:AuthorizationServer newauthServer /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/authorizationServers/newauthServer
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0