azure-native.appplatform.GatewayRouteConfig
Explore with Pulumi AI
Spring Cloud Gateway route config resource API Version: 2022-01-01-preview.
Example Usage
GatewayRouteConfigs_CreateOrUpdate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var gatewayRouteConfig = new AzureNative.AppPlatform.GatewayRouteConfig("gatewayRouteConfig", new()
{
GatewayName = "default",
Properties = new AzureNative.AppPlatform.Inputs.GatewayRouteConfigPropertiesArgs
{
AppResourceId = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.AppPlatform/Spring/myservice/apps/myApp",
Routes = new[]
{
new AzureNative.AppPlatform.Inputs.GatewayApiRouteArgs
{
Filters = new[]
{
"StripPrefix=2",
"RateLimit=1,1s",
},
Predicates = new[]
{
"Path=/api5/customer/**",
},
SsoEnabled = true,
Title = "myApp route config",
},
},
},
ResourceGroupName = "myResourceGroup",
RouteConfigName = "myRouteConfig",
ServiceName = "myservice",
});
});
package main
import (
appplatform "github.com/pulumi/pulumi-azure-native-sdk/appplatform"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := appplatform.NewGatewayRouteConfig(ctx, "gatewayRouteConfig", &appplatform.GatewayRouteConfigArgs{
GatewayName: pulumi.String("default"),
Properties: appplatform.GatewayRouteConfigPropertiesResponse{
AppResourceId: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.AppPlatform/Spring/myservice/apps/myApp"),
Routes: appplatform.GatewayApiRouteArray{
&appplatform.GatewayApiRouteArgs{
Filters: pulumi.StringArray{
pulumi.String("StripPrefix=2"),
pulumi.String("RateLimit=1,1s"),
},
Predicates: pulumi.StringArray{
pulumi.String("Path=/api5/customer/**"),
},
SsoEnabled: pulumi.Bool(true),
Title: pulumi.String("myApp route config"),
},
},
},
ResourceGroupName: pulumi.String("myResourceGroup"),
RouteConfigName: pulumi.String("myRouteConfig"),
ServiceName: pulumi.String("myservice"),
})
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.appplatform.GatewayRouteConfig;
import com.pulumi.azurenative.appplatform.GatewayRouteConfigArgs;
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 gatewayRouteConfig = new GatewayRouteConfig("gatewayRouteConfig", GatewayRouteConfigArgs.builder()
.gatewayName("default")
.properties(Map.ofEntries(
Map.entry("appResourceId", "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.AppPlatform/Spring/myservice/apps/myApp"),
Map.entry("routes", Map.ofEntries(
Map.entry("filters",
"StripPrefix=2",
"RateLimit=1,1s"),
Map.entry("predicates", "Path=/api5/customer/**"),
Map.entry("ssoEnabled", true),
Map.entry("title", "myApp route config")
))
))
.resourceGroupName("myResourceGroup")
.routeConfigName("myRouteConfig")
.serviceName("myservice")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
gateway_route_config = azure_native.appplatform.GatewayRouteConfig("gatewayRouteConfig",
gateway_name="default",
properties=azure_native.appplatform.GatewayRouteConfigPropertiesResponseArgs(
app_resource_id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.AppPlatform/Spring/myservice/apps/myApp",
routes=[azure_native.appplatform.GatewayApiRouteArgs(
filters=[
"StripPrefix=2",
"RateLimit=1,1s",
],
predicates=["Path=/api5/customer/**"],
sso_enabled=True,
title="myApp route config",
)],
),
resource_group_name="myResourceGroup",
route_config_name="myRouteConfig",
service_name="myservice")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const gatewayRouteConfig = new azure_native.appplatform.GatewayRouteConfig("gatewayRouteConfig", {
gatewayName: "default",
properties: {
appResourceId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.AppPlatform/Spring/myservice/apps/myApp",
routes: [{
filters: [
"StripPrefix=2",
"RateLimit=1,1s",
],
predicates: ["Path=/api5/customer/**"],
ssoEnabled: true,
title: "myApp route config",
}],
},
resourceGroupName: "myResourceGroup",
routeConfigName: "myRouteConfig",
serviceName: "myservice",
});
resources:
gatewayRouteConfig:
type: azure-native:appplatform:GatewayRouteConfig
properties:
gatewayName: default
properties:
appResourceId: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.AppPlatform/Spring/myservice/apps/myApp
routes:
- filters:
- StripPrefix=2
- RateLimit=1,1s
predicates:
- Path=/api5/customer/**
ssoEnabled: true
title: myApp route config
resourceGroupName: myResourceGroup
routeConfigName: myRouteConfig
serviceName: myservice
Create GatewayRouteConfig Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new GatewayRouteConfig(name: string, args: GatewayRouteConfigArgs, opts?: CustomResourceOptions);
@overload
def GatewayRouteConfig(resource_name: str,
args: GatewayRouteConfigArgs,
opts: Optional[ResourceOptions] = None)
@overload
def GatewayRouteConfig(resource_name: str,
opts: Optional[ResourceOptions] = None,
gateway_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
service_name: Optional[str] = None,
properties: Optional[GatewayRouteConfigPropertiesArgs] = None,
route_config_name: Optional[str] = None)
func NewGatewayRouteConfig(ctx *Context, name string, args GatewayRouteConfigArgs, opts ...ResourceOption) (*GatewayRouteConfig, error)
public GatewayRouteConfig(string name, GatewayRouteConfigArgs args, CustomResourceOptions? opts = null)
public GatewayRouteConfig(String name, GatewayRouteConfigArgs args)
public GatewayRouteConfig(String name, GatewayRouteConfigArgs args, CustomResourceOptions options)
type: azure-native:appplatform:GatewayRouteConfig
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 GatewayRouteConfigArgs
- 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 GatewayRouteConfigArgs
- 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 GatewayRouteConfigArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GatewayRouteConfigArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GatewayRouteConfigArgs
- 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 gatewayRouteConfigResource = new AzureNative.Appplatform.GatewayRouteConfig("gatewayRouteConfigResource", new()
{
GatewayName = "string",
ResourceGroupName = "string",
ServiceName = "string",
Properties =
{
{ "appResourceId", "string" },
{ "routes", new[]
{
{
{ "description", "string" },
{ "filters", new[]
{
"string",
} },
{ "order", 0 },
{ "predicates", new[]
{
"string",
} },
{ "ssoEnabled", false },
{ "tags", new[]
{
"string",
} },
{ "title", "string" },
{ "tokenRelay", false },
{ "uri", "string" },
},
} },
},
RouteConfigName = "string",
});
example, err := appplatform.NewGatewayRouteConfig(ctx, "gatewayRouteConfigResource", &appplatform.GatewayRouteConfigArgs{
GatewayName: "string",
ResourceGroupName: "string",
ServiceName: "string",
Properties: map[string]interface{}{
"appResourceId": "string",
"routes": []map[string]interface{}{
map[string]interface{}{
"description": "string",
"filters": []string{
"string",
},
"order": 0,
"predicates": []string{
"string",
},
"ssoEnabled": false,
"tags": []string{
"string",
},
"title": "string",
"tokenRelay": false,
"uri": "string",
},
},
},
RouteConfigName: "string",
})
var gatewayRouteConfigResource = new GatewayRouteConfig("gatewayRouteConfigResource", GatewayRouteConfigArgs.builder()
.gatewayName("string")
.resourceGroupName("string")
.serviceName("string")
.properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.routeConfigName("string")
.build());
gateway_route_config_resource = azure_native.appplatform.GatewayRouteConfig("gatewayRouteConfigResource",
gateway_name=string,
resource_group_name=string,
service_name=string,
properties={
appResourceId: string,
routes: [{
description: string,
filters: [string],
order: 0,
predicates: [string],
ssoEnabled: False,
tags: [string],
title: string,
tokenRelay: False,
uri: string,
}],
},
route_config_name=string)
const gatewayRouteConfigResource = new azure_native.appplatform.GatewayRouteConfig("gatewayRouteConfigResource", {
gatewayName: "string",
resourceGroupName: "string",
serviceName: "string",
properties: {
appResourceId: "string",
routes: [{
description: "string",
filters: ["string"],
order: 0,
predicates: ["string"],
ssoEnabled: false,
tags: ["string"],
title: "string",
tokenRelay: false,
uri: "string",
}],
},
routeConfigName: "string",
});
type: azure-native:appplatform:GatewayRouteConfig
properties:
gatewayName: string
properties:
appResourceId: string
routes:
- description: string
filters:
- string
order: 0
predicates:
- string
ssoEnabled: false
tags:
- string
title: string
tokenRelay: false
uri: string
resourceGroupName: string
routeConfigName: string
serviceName: string
GatewayRouteConfig 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 GatewayRouteConfig resource accepts the following input properties:
- Gateway
Name string - The name of Spring Cloud Gateway.
- Resource
Group stringName - The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- Service
Name string - The name of the Service resource.
- Properties
Pulumi.
Azure Native. App Platform. Inputs. Gateway Route Config Properties - API route config of the Spring Cloud Gateway
- Route
Config stringName - The name of the Spring Cloud Gateway route config.
- Gateway
Name string - The name of Spring Cloud Gateway.
- Resource
Group stringName - The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- Service
Name string - The name of the Service resource.
- Properties
Gateway
Route Config Properties Args - API route config of the Spring Cloud Gateway
- Route
Config stringName - The name of the Spring Cloud Gateway route config.
- gateway
Name String - The name of Spring Cloud Gateway.
- resource
Group StringName - The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- service
Name String - The name of the Service resource.
- properties
Gateway
Route Config Properties - API route config of the Spring Cloud Gateway
- route
Config StringName - The name of the Spring Cloud Gateway route config.
- gateway
Name string - The name of Spring Cloud Gateway.
- resource
Group stringName - The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- service
Name string - The name of the Service resource.
- properties
Gateway
Route Config Properties - API route config of the Spring Cloud Gateway
- route
Config stringName - The name of the Spring Cloud Gateway route config.
- gateway_
name str - The name of Spring Cloud Gateway.
- resource_
group_ strname - The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- service_
name str - The name of the Service resource.
- properties
Gateway
Route Config Properties Args - API route config of the Spring Cloud Gateway
- route_
config_ strname - The name of the Spring Cloud Gateway route config.
- gateway
Name String - The name of Spring Cloud Gateway.
- resource
Group StringName - The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- service
Name String - The name of the Service resource.
- properties Property Map
- API route config of the Spring Cloud Gateway
- route
Config StringName - The name of the Spring Cloud Gateway route config.
Outputs
All input properties are implicitly available as output properties. Additionally, the GatewayRouteConfig resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource.
- System
Data Pulumi.Azure Native. App Platform. Outputs. System Data Response - Metadata pertaining to creation and last modification of the resource.
- Type string
- The type of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource.
- System
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- Type string
- The type of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource.
- system
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- type String
- The type of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource.
- system
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- type string
- The type of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource.
- system_
data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- type str
- The type of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource.
- system
Data Property Map - Metadata pertaining to creation and last modification of the resource.
- type String
- The type of the resource.
Supporting Types
GatewayApiRoute, GatewayApiRouteArgs
- Description string
- A description, will be applied to methods in the generated OpenAPI documentation.
- Filters List<string>
- To modify the request before sending it to the target endpoint, or the received response.
- Order int
- Route processing order.
- Predicates List<string>
- A number of conditions to evaluate a route for each request. Each predicate may be evaluated against request headers and parameter values. All of the predicates associated with a route must evaluate to true for the route to be matched to the request.
- Sso
Enabled bool - Enable sso validation.
- List<string>
- Classification tags, will be applied to methods in the generated OpenAPI documentation.
- Title string
- A title, will be applied to methods in the generated OpenAPI documentation.
- Token
Relay bool - Pass currently-authenticated user's identity token to application service, default is 'false'
- Uri string
- Full uri, will override
appName
.
- Description string
- A description, will be applied to methods in the generated OpenAPI documentation.
- Filters []string
- To modify the request before sending it to the target endpoint, or the received response.
- Order int
- Route processing order.
- Predicates []string
- A number of conditions to evaluate a route for each request. Each predicate may be evaluated against request headers and parameter values. All of the predicates associated with a route must evaluate to true for the route to be matched to the request.
- Sso
Enabled bool - Enable sso validation.
- []string
- Classification tags, will be applied to methods in the generated OpenAPI documentation.
- Title string
- A title, will be applied to methods in the generated OpenAPI documentation.
- Token
Relay bool - Pass currently-authenticated user's identity token to application service, default is 'false'
- Uri string
- Full uri, will override
appName
.
- description String
- A description, will be applied to methods in the generated OpenAPI documentation.
- filters List<String>
- To modify the request before sending it to the target endpoint, or the received response.
- order Integer
- Route processing order.
- predicates List<String>
- A number of conditions to evaluate a route for each request. Each predicate may be evaluated against request headers and parameter values. All of the predicates associated with a route must evaluate to true for the route to be matched to the request.
- sso
Enabled Boolean - Enable sso validation.
- List<String>
- Classification tags, will be applied to methods in the generated OpenAPI documentation.
- title String
- A title, will be applied to methods in the generated OpenAPI documentation.
- token
Relay Boolean - Pass currently-authenticated user's identity token to application service, default is 'false'
- uri String
- Full uri, will override
appName
.
- description string
- A description, will be applied to methods in the generated OpenAPI documentation.
- filters string[]
- To modify the request before sending it to the target endpoint, or the received response.
- order number
- Route processing order.
- predicates string[]
- A number of conditions to evaluate a route for each request. Each predicate may be evaluated against request headers and parameter values. All of the predicates associated with a route must evaluate to true for the route to be matched to the request.
- sso
Enabled boolean - Enable sso validation.
- string[]
- Classification tags, will be applied to methods in the generated OpenAPI documentation.
- title string
- A title, will be applied to methods in the generated OpenAPI documentation.
- token
Relay boolean - Pass currently-authenticated user's identity token to application service, default is 'false'
- uri string
- Full uri, will override
appName
.
- description str
- A description, will be applied to methods in the generated OpenAPI documentation.
- filters Sequence[str]
- To modify the request before sending it to the target endpoint, or the received response.
- order int
- Route processing order.
- predicates Sequence[str]
- A number of conditions to evaluate a route for each request. Each predicate may be evaluated against request headers and parameter values. All of the predicates associated with a route must evaluate to true for the route to be matched to the request.
- sso_
enabled bool - Enable sso validation.
- Sequence[str]
- Classification tags, will be applied to methods in the generated OpenAPI documentation.
- title str
- A title, will be applied to methods in the generated OpenAPI documentation.
- token_
relay bool - Pass currently-authenticated user's identity token to application service, default is 'false'
- uri str
- Full uri, will override
appName
.
- description String
- A description, will be applied to methods in the generated OpenAPI documentation.
- filters List<String>
- To modify the request before sending it to the target endpoint, or the received response.
- order Number
- Route processing order.
- predicates List<String>
- A number of conditions to evaluate a route for each request. Each predicate may be evaluated against request headers and parameter values. All of the predicates associated with a route must evaluate to true for the route to be matched to the request.
- sso
Enabled Boolean - Enable sso validation.
- List<String>
- Classification tags, will be applied to methods in the generated OpenAPI documentation.
- title String
- A title, will be applied to methods in the generated OpenAPI documentation.
- token
Relay Boolean - Pass currently-authenticated user's identity token to application service, default is 'false'
- uri String
- Full uri, will override
appName
.
GatewayApiRouteResponse, GatewayApiRouteResponseArgs
- Description string
- A description, will be applied to methods in the generated OpenAPI documentation.
- Filters List<string>
- To modify the request before sending it to the target endpoint, or the received response.
- Order int
- Route processing order.
- Predicates List<string>
- A number of conditions to evaluate a route for each request. Each predicate may be evaluated against request headers and parameter values. All of the predicates associated with a route must evaluate to true for the route to be matched to the request.
- Sso
Enabled bool - Enable sso validation.
- List<string>
- Classification tags, will be applied to methods in the generated OpenAPI documentation.
- Title string
- A title, will be applied to methods in the generated OpenAPI documentation.
- Token
Relay bool - Pass currently-authenticated user's identity token to application service, default is 'false'
- Uri string
- Full uri, will override
appName
.
- Description string
- A description, will be applied to methods in the generated OpenAPI documentation.
- Filters []string
- To modify the request before sending it to the target endpoint, or the received response.
- Order int
- Route processing order.
- Predicates []string
- A number of conditions to evaluate a route for each request. Each predicate may be evaluated against request headers and parameter values. All of the predicates associated with a route must evaluate to true for the route to be matched to the request.
- Sso
Enabled bool - Enable sso validation.
- []string
- Classification tags, will be applied to methods in the generated OpenAPI documentation.
- Title string
- A title, will be applied to methods in the generated OpenAPI documentation.
- Token
Relay bool - Pass currently-authenticated user's identity token to application service, default is 'false'
- Uri string
- Full uri, will override
appName
.
- description String
- A description, will be applied to methods in the generated OpenAPI documentation.
- filters List<String>
- To modify the request before sending it to the target endpoint, or the received response.
- order Integer
- Route processing order.
- predicates List<String>
- A number of conditions to evaluate a route for each request. Each predicate may be evaluated against request headers and parameter values. All of the predicates associated with a route must evaluate to true for the route to be matched to the request.
- sso
Enabled Boolean - Enable sso validation.
- List<String>
- Classification tags, will be applied to methods in the generated OpenAPI documentation.
- title String
- A title, will be applied to methods in the generated OpenAPI documentation.
- token
Relay Boolean - Pass currently-authenticated user's identity token to application service, default is 'false'
- uri String
- Full uri, will override
appName
.
- description string
- A description, will be applied to methods in the generated OpenAPI documentation.
- filters string[]
- To modify the request before sending it to the target endpoint, or the received response.
- order number
- Route processing order.
- predicates string[]
- A number of conditions to evaluate a route for each request. Each predicate may be evaluated against request headers and parameter values. All of the predicates associated with a route must evaluate to true for the route to be matched to the request.
- sso
Enabled boolean - Enable sso validation.
- string[]
- Classification tags, will be applied to methods in the generated OpenAPI documentation.
- title string
- A title, will be applied to methods in the generated OpenAPI documentation.
- token
Relay boolean - Pass currently-authenticated user's identity token to application service, default is 'false'
- uri string
- Full uri, will override
appName
.
- description str
- A description, will be applied to methods in the generated OpenAPI documentation.
- filters Sequence[str]
- To modify the request before sending it to the target endpoint, or the received response.
- order int
- Route processing order.
- predicates Sequence[str]
- A number of conditions to evaluate a route for each request. Each predicate may be evaluated against request headers and parameter values. All of the predicates associated with a route must evaluate to true for the route to be matched to the request.
- sso_
enabled bool - Enable sso validation.
- Sequence[str]
- Classification tags, will be applied to methods in the generated OpenAPI documentation.
- title str
- A title, will be applied to methods in the generated OpenAPI documentation.
- token_
relay bool - Pass currently-authenticated user's identity token to application service, default is 'false'
- uri str
- Full uri, will override
appName
.
- description String
- A description, will be applied to methods in the generated OpenAPI documentation.
- filters List<String>
- To modify the request before sending it to the target endpoint, or the received response.
- order Number
- Route processing order.
- predicates List<String>
- A number of conditions to evaluate a route for each request. Each predicate may be evaluated against request headers and parameter values. All of the predicates associated with a route must evaluate to true for the route to be matched to the request.
- sso
Enabled Boolean - Enable sso validation.
- List<String>
- Classification tags, will be applied to methods in the generated OpenAPI documentation.
- title String
- A title, will be applied to methods in the generated OpenAPI documentation.
- token
Relay Boolean - Pass currently-authenticated user's identity token to application service, default is 'false'
- uri String
- Full uri, will override
appName
.
GatewayRouteConfigProperties, GatewayRouteConfigPropertiesArgs
- App
Resource stringId - The resource Id of the Azure Spring Cloud app, required unless route defines
uri
. - Routes
List<Pulumi.
Azure Native. App Platform. Inputs. Gateway Api Route> - Array of API routes, each route contains properties such as
title
,uri
,ssoEnabled
,predicates
,filters
.
- App
Resource stringId - The resource Id of the Azure Spring Cloud app, required unless route defines
uri
. - Routes
[]Gateway
Api Route - Array of API routes, each route contains properties such as
title
,uri
,ssoEnabled
,predicates
,filters
.
- app
Resource StringId - The resource Id of the Azure Spring Cloud app, required unless route defines
uri
. - routes
List<Gateway
Api Route> - Array of API routes, each route contains properties such as
title
,uri
,ssoEnabled
,predicates
,filters
.
- app
Resource stringId - The resource Id of the Azure Spring Cloud app, required unless route defines
uri
. - routes
Gateway
Api Route[] - Array of API routes, each route contains properties such as
title
,uri
,ssoEnabled
,predicates
,filters
.
- app_
resource_ strid - The resource Id of the Azure Spring Cloud app, required unless route defines
uri
. - routes
Sequence[Gateway
Api Route] - Array of API routes, each route contains properties such as
title
,uri
,ssoEnabled
,predicates
,filters
.
- app
Resource StringId - The resource Id of the Azure Spring Cloud app, required unless route defines
uri
. - routes List<Property Map>
- Array of API routes, each route contains properties such as
title
,uri
,ssoEnabled
,predicates
,filters
.
GatewayRouteConfigPropertiesResponse, GatewayRouteConfigPropertiesResponseArgs
- Provisioning
State string - State of the Spring Cloud Gateway route config.
- App
Resource stringId - The resource Id of the Azure Spring Cloud app, required unless route defines
uri
. - Routes
List<Pulumi.
Azure Native. App Platform. Inputs. Gateway Api Route Response> - Array of API routes, each route contains properties such as
title
,uri
,ssoEnabled
,predicates
,filters
.
- Provisioning
State string - State of the Spring Cloud Gateway route config.
- App
Resource stringId - The resource Id of the Azure Spring Cloud app, required unless route defines
uri
. - Routes
[]Gateway
Api Route Response - Array of API routes, each route contains properties such as
title
,uri
,ssoEnabled
,predicates
,filters
.
- provisioning
State String - State of the Spring Cloud Gateway route config.
- app
Resource StringId - The resource Id of the Azure Spring Cloud app, required unless route defines
uri
. - routes
List<Gateway
Api Route Response> - Array of API routes, each route contains properties such as
title
,uri
,ssoEnabled
,predicates
,filters
.
- provisioning
State string - State of the Spring Cloud Gateway route config.
- app
Resource stringId - The resource Id of the Azure Spring Cloud app, required unless route defines
uri
. - routes
Gateway
Api Route Response[] - Array of API routes, each route contains properties such as
title
,uri
,ssoEnabled
,predicates
,filters
.
- provisioning_
state str - State of the Spring Cloud Gateway route config.
- app_
resource_ strid - The resource Id of the Azure Spring Cloud app, required unless route defines
uri
. - routes
Sequence[Gateway
Api Route Response] - Array of API routes, each route contains properties such as
title
,uri
,ssoEnabled
,predicates
,filters
.
- provisioning
State String - State of the Spring Cloud Gateway route config.
- app
Resource StringId - The resource Id of the Azure Spring Cloud app, required unless route defines
uri
. - routes List<Property Map>
- Array of API routes, each route contains properties such as
title
,uri
,ssoEnabled
,predicates
,filters
.
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:appplatform:GatewayRouteConfig myRouteConfig /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.AppPlatform/Spring/myservice/gateways/default/routeConfigs/myRouteConfig
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