1. Packages
  2. Azure Classic
  3. API Docs
  4. appplatform
  5. SpringCloudGateway

We recommend using Azure Native.

Azure Classic v5.49.0 published on Tuesday, Aug 29, 2023 by Pulumi

azure.appplatform.SpringCloudGateway

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure Classic v5.49.0 published on Tuesday, Aug 29, 2023 by Pulumi

    NOTE: This resource is applicable only for Spring Cloud Service with enterprise tier.

    Manages a Spring Cloud Gateway.

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Azure = Pulumi.Azure;
    
    return await Deployment.RunAsync(() => 
    {
        var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new()
        {
            Location = "West Europe",
        });
    
        var exampleSpringCloudService = new Azure.AppPlatform.SpringCloudService("exampleSpringCloudService", new()
        {
            Location = exampleResourceGroup.Location,
            ResourceGroupName = exampleResourceGroup.Name,
            SkuName = "E0",
        });
    
        var exampleSpringCloudGateway = new Azure.AppPlatform.SpringCloudGateway("exampleSpringCloudGateway", new()
        {
            SpringCloudServiceId = exampleSpringCloudService.Id,
            HttpsOnly = false,
            PublicNetworkAccessEnabled = true,
            InstanceCount = 2,
            ApiMetadata = new Azure.AppPlatform.Inputs.SpringCloudGatewayApiMetadataArgs
            {
                Description = "example description",
                DocumentationUrl = "https://www.example.com/docs",
                ServerUrl = "https://wwww.example.com",
                Title = "example title",
                Version = "1.0",
            },
            Cors = new Azure.AppPlatform.Inputs.SpringCloudGatewayCorsArgs
            {
                CredentialsAllowed = false,
                AllowedHeaders = new[]
                {
                    "*",
                },
                AllowedMethods = new[]
                {
                    "PUT",
                },
                AllowedOrigins = new[]
                {
                    "example.com",
                },
                ExposedHeaders = new[]
                {
                    "x-example-header",
                },
                MaxAgeSeconds = 86400,
            },
            Quota = new Azure.AppPlatform.Inputs.SpringCloudGatewayQuotaArgs
            {
                Cpu = "1",
                Memory = "2Gi",
            },
            Sso = new Azure.AppPlatform.Inputs.SpringCloudGatewaySsoArgs
            {
                ClientId = "example id",
                ClientSecret = "example secret",
                IssuerUri = "https://www.test.com/issueToken",
                Scopes = new[]
                {
                    "read",
                },
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/appplatform"
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
    			Location: pulumi.String("West Europe"),
    		})
    		if err != nil {
    			return err
    		}
    		exampleSpringCloudService, err := appplatform.NewSpringCloudService(ctx, "exampleSpringCloudService", &appplatform.SpringCloudServiceArgs{
    			Location:          exampleResourceGroup.Location,
    			ResourceGroupName: exampleResourceGroup.Name,
    			SkuName:           pulumi.String("E0"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = appplatform.NewSpringCloudGateway(ctx, "exampleSpringCloudGateway", &appplatform.SpringCloudGatewayArgs{
    			SpringCloudServiceId:       exampleSpringCloudService.ID(),
    			HttpsOnly:                  pulumi.Bool(false),
    			PublicNetworkAccessEnabled: pulumi.Bool(true),
    			InstanceCount:              pulumi.Int(2),
    			ApiMetadata: &appplatform.SpringCloudGatewayApiMetadataArgs{
    				Description:      pulumi.String("example description"),
    				DocumentationUrl: pulumi.String("https://www.example.com/docs"),
    				ServerUrl:        pulumi.String("https://wwww.example.com"),
    				Title:            pulumi.String("example title"),
    				Version:          pulumi.String("1.0"),
    			},
    			Cors: &appplatform.SpringCloudGatewayCorsArgs{
    				CredentialsAllowed: pulumi.Bool(false),
    				AllowedHeaders: pulumi.StringArray{
    					pulumi.String("*"),
    				},
    				AllowedMethods: pulumi.StringArray{
    					pulumi.String("PUT"),
    				},
    				AllowedOrigins: pulumi.StringArray{
    					pulumi.String("example.com"),
    				},
    				ExposedHeaders: pulumi.StringArray{
    					pulumi.String("x-example-header"),
    				},
    				MaxAgeSeconds: pulumi.Int(86400),
    			},
    			Quota: &appplatform.SpringCloudGatewayQuotaArgs{
    				Cpu:    pulumi.String("1"),
    				Memory: pulumi.String("2Gi"),
    			},
    			Sso: &appplatform.SpringCloudGatewaySsoArgs{
    				ClientId:     pulumi.String("example id"),
    				ClientSecret: pulumi.String("example secret"),
    				IssuerUri:    pulumi.String("https://www.test.com/issueToken"),
    				Scopes: pulumi.StringArray{
    					pulumi.String("read"),
    				},
    			},
    		})
    		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.azure.core.ResourceGroup;
    import com.pulumi.azure.core.ResourceGroupArgs;
    import com.pulumi.azure.appplatform.SpringCloudService;
    import com.pulumi.azure.appplatform.SpringCloudServiceArgs;
    import com.pulumi.azure.appplatform.SpringCloudGateway;
    import com.pulumi.azure.appplatform.SpringCloudGatewayArgs;
    import com.pulumi.azure.appplatform.inputs.SpringCloudGatewayApiMetadataArgs;
    import com.pulumi.azure.appplatform.inputs.SpringCloudGatewayCorsArgs;
    import com.pulumi.azure.appplatform.inputs.SpringCloudGatewayQuotaArgs;
    import com.pulumi.azure.appplatform.inputs.SpringCloudGatewaySsoArgs;
    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 exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()        
                .location("West Europe")
                .build());
    
            var exampleSpringCloudService = new SpringCloudService("exampleSpringCloudService", SpringCloudServiceArgs.builder()        
                .location(exampleResourceGroup.location())
                .resourceGroupName(exampleResourceGroup.name())
                .skuName("E0")
                .build());
    
            var exampleSpringCloudGateway = new SpringCloudGateway("exampleSpringCloudGateway", SpringCloudGatewayArgs.builder()        
                .springCloudServiceId(exampleSpringCloudService.id())
                .httpsOnly(false)
                .publicNetworkAccessEnabled(true)
                .instanceCount(2)
                .apiMetadata(SpringCloudGatewayApiMetadataArgs.builder()
                    .description("example description")
                    .documentationUrl("https://www.example.com/docs")
                    .serverUrl("https://wwww.example.com")
                    .title("example title")
                    .version("1.0")
                    .build())
                .cors(SpringCloudGatewayCorsArgs.builder()
                    .credentialsAllowed(false)
                    .allowedHeaders("*")
                    .allowedMethods("PUT")
                    .allowedOrigins("example.com")
                    .exposedHeaders("x-example-header")
                    .maxAgeSeconds(86400)
                    .build())
                .quota(SpringCloudGatewayQuotaArgs.builder()
                    .cpu("1")
                    .memory("2Gi")
                    .build())
                .sso(SpringCloudGatewaySsoArgs.builder()
                    .clientId("example id")
                    .clientSecret("example secret")
                    .issuerUri("https://www.test.com/issueToken")
                    .scopes("read")
                    .build())
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure as azure
    
    example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
    example_spring_cloud_service = azure.appplatform.SpringCloudService("exampleSpringCloudService",
        location=example_resource_group.location,
        resource_group_name=example_resource_group.name,
        sku_name="E0")
    example_spring_cloud_gateway = azure.appplatform.SpringCloudGateway("exampleSpringCloudGateway",
        spring_cloud_service_id=example_spring_cloud_service.id,
        https_only=False,
        public_network_access_enabled=True,
        instance_count=2,
        api_metadata=azure.appplatform.SpringCloudGatewayApiMetadataArgs(
            description="example description",
            documentation_url="https://www.example.com/docs",
            server_url="https://wwww.example.com",
            title="example title",
            version="1.0",
        ),
        cors=azure.appplatform.SpringCloudGatewayCorsArgs(
            credentials_allowed=False,
            allowed_headers=["*"],
            allowed_methods=["PUT"],
            allowed_origins=["example.com"],
            exposed_headers=["x-example-header"],
            max_age_seconds=86400,
        ),
        quota=azure.appplatform.SpringCloudGatewayQuotaArgs(
            cpu="1",
            memory="2Gi",
        ),
        sso=azure.appplatform.SpringCloudGatewaySsoArgs(
            client_id="example id",
            client_secret="example secret",
            issuer_uri="https://www.test.com/issueToken",
            scopes=["read"],
        ))
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
    const exampleSpringCloudService = new azure.appplatform.SpringCloudService("exampleSpringCloudService", {
        location: exampleResourceGroup.location,
        resourceGroupName: exampleResourceGroup.name,
        skuName: "E0",
    });
    const exampleSpringCloudGateway = new azure.appplatform.SpringCloudGateway("exampleSpringCloudGateway", {
        springCloudServiceId: exampleSpringCloudService.id,
        httpsOnly: false,
        publicNetworkAccessEnabled: true,
        instanceCount: 2,
        apiMetadata: {
            description: "example description",
            documentationUrl: "https://www.example.com/docs",
            serverUrl: "https://wwww.example.com",
            title: "example title",
            version: "1.0",
        },
        cors: {
            credentialsAllowed: false,
            allowedHeaders: ["*"],
            allowedMethods: ["PUT"],
            allowedOrigins: ["example.com"],
            exposedHeaders: ["x-example-header"],
            maxAgeSeconds: 86400,
        },
        quota: {
            cpu: "1",
            memory: "2Gi",
        },
        sso: {
            clientId: "example id",
            clientSecret: "example secret",
            issuerUri: "https://www.test.com/issueToken",
            scopes: ["read"],
        },
    });
    
    resources:
      exampleResourceGroup:
        type: azure:core:ResourceGroup
        properties:
          location: West Europe
      exampleSpringCloudService:
        type: azure:appplatform:SpringCloudService
        properties:
          location: ${exampleResourceGroup.location}
          resourceGroupName: ${exampleResourceGroup.name}
          skuName: E0
      exampleSpringCloudGateway:
        type: azure:appplatform:SpringCloudGateway
        properties:
          springCloudServiceId: ${exampleSpringCloudService.id}
          httpsOnly: false
          publicNetworkAccessEnabled: true
          instanceCount: 2
          apiMetadata:
            description: example description
            documentationUrl: https://www.example.com/docs
            serverUrl: https://wwww.example.com
            title: example title
            version: '1.0'
          cors:
            credentialsAllowed: false
            allowedHeaders:
              - '*'
            allowedMethods:
              - PUT
            allowedOrigins:
              - example.com
            exposedHeaders:
              - x-example-header
            maxAgeSeconds: 86400
          quota:
            cpu: '1'
            memory: 2Gi
          sso:
            clientId: example id
            clientSecret: example secret
            issuerUri: https://www.test.com/issueToken
            scopes:
              - read
    

    Create SpringCloudGateway Resource

    new SpringCloudGateway(name: string, args: SpringCloudGatewayArgs, opts?: CustomResourceOptions);
    @overload
    def SpringCloudGateway(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           api_metadata: Optional[SpringCloudGatewayApiMetadataArgs] = None,
                           application_performance_monitoring_types: Optional[Sequence[str]] = None,
                           client_authorization: Optional[SpringCloudGatewayClientAuthorizationArgs] = None,
                           cors: Optional[SpringCloudGatewayCorsArgs] = None,
                           environment_variables: Optional[Mapping[str, str]] = None,
                           https_only: Optional[bool] = None,
                           instance_count: Optional[int] = None,
                           name: Optional[str] = None,
                           public_network_access_enabled: Optional[bool] = None,
                           quota: Optional[SpringCloudGatewayQuotaArgs] = None,
                           sensitive_environment_variables: Optional[Mapping[str, str]] = None,
                           spring_cloud_service_id: Optional[str] = None,
                           sso: Optional[SpringCloudGatewaySsoArgs] = None)
    @overload
    def SpringCloudGateway(resource_name: str,
                           args: SpringCloudGatewayArgs,
                           opts: Optional[ResourceOptions] = None)
    func NewSpringCloudGateway(ctx *Context, name string, args SpringCloudGatewayArgs, opts ...ResourceOption) (*SpringCloudGateway, error)
    public SpringCloudGateway(string name, SpringCloudGatewayArgs args, CustomResourceOptions? opts = null)
    public SpringCloudGateway(String name, SpringCloudGatewayArgs args)
    public SpringCloudGateway(String name, SpringCloudGatewayArgs args, CustomResourceOptions options)
    
    type: azure:appplatform:SpringCloudGateway
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args SpringCloudGatewayArgs
    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 SpringCloudGatewayArgs
    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 SpringCloudGatewayArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SpringCloudGatewayArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SpringCloudGatewayArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

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

    SpringCloudServiceId string

    The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Gateway to be created.

    ApiMetadata SpringCloudGatewayApiMetadata

    A api_metadata block as defined below.

    ApplicationPerformanceMonitoringTypes List<string>

    Specifies a list of application performance monitoring types used in the Spring Cloud Gateway. The allowed values are AppDynamics, ApplicationInsights, Dynatrace, ElasticAPM and NewRelic.

    ClientAuthorization SpringCloudGatewayClientAuthorization

    A client_authorization block as defined below.

    Cors SpringCloudGatewayCors

    A cors block as defined below.

    EnvironmentVariables Dictionary<string, string>

    Specifies the environment variables of the Spring Cloud Gateway as a map of key-value pairs. Changing this forces a new resource to be created.

    HttpsOnly bool

    is only https is allowed?

    InstanceCount int

    Specifies the required instance count of the Spring Cloud Gateway. Possible Values are between 1 and 500. Defaults to 1 if not specified.

    Name string

    The name which should be used for this Spring Cloud Gateway. Changing this forces a new Spring Cloud Gateway to be created. The only possible value is default.

    PublicNetworkAccessEnabled bool

    Indicates whether the Spring Cloud Gateway exposes endpoint.

    Quota SpringCloudGatewayQuota

    A quota block as defined below.

    SensitiveEnvironmentVariables Dictionary<string, string>

    Specifies the sensitive environment variables of the Spring Cloud Gateway as a map of key-value pairs. Changing this forces a new resource to be created.

    Sso SpringCloudGatewaySso

    A sso block as defined below.

    SpringCloudServiceId string

    The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Gateway to be created.

    ApiMetadata SpringCloudGatewayApiMetadataArgs

    A api_metadata block as defined below.

    ApplicationPerformanceMonitoringTypes []string

    Specifies a list of application performance monitoring types used in the Spring Cloud Gateway. The allowed values are AppDynamics, ApplicationInsights, Dynatrace, ElasticAPM and NewRelic.

    ClientAuthorization SpringCloudGatewayClientAuthorizationArgs

    A client_authorization block as defined below.

    Cors SpringCloudGatewayCorsArgs

    A cors block as defined below.

    EnvironmentVariables map[string]string

    Specifies the environment variables of the Spring Cloud Gateway as a map of key-value pairs. Changing this forces a new resource to be created.

    HttpsOnly bool

    is only https is allowed?

    InstanceCount int

    Specifies the required instance count of the Spring Cloud Gateway. Possible Values are between 1 and 500. Defaults to 1 if not specified.

    Name string

    The name which should be used for this Spring Cloud Gateway. Changing this forces a new Spring Cloud Gateway to be created. The only possible value is default.

    PublicNetworkAccessEnabled bool

    Indicates whether the Spring Cloud Gateway exposes endpoint.

    Quota SpringCloudGatewayQuotaArgs

    A quota block as defined below.

    SensitiveEnvironmentVariables map[string]string

    Specifies the sensitive environment variables of the Spring Cloud Gateway as a map of key-value pairs. Changing this forces a new resource to be created.

    Sso SpringCloudGatewaySsoArgs

    A sso block as defined below.

    springCloudServiceId String

    The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Gateway to be created.

    apiMetadata SpringCloudGatewayApiMetadata

    A api_metadata block as defined below.

    applicationPerformanceMonitoringTypes List<String>

    Specifies a list of application performance monitoring types used in the Spring Cloud Gateway. The allowed values are AppDynamics, ApplicationInsights, Dynatrace, ElasticAPM and NewRelic.

    clientAuthorization SpringCloudGatewayClientAuthorization

    A client_authorization block as defined below.

    cors SpringCloudGatewayCors

    A cors block as defined below.

    environmentVariables Map<String,String>

    Specifies the environment variables of the Spring Cloud Gateway as a map of key-value pairs. Changing this forces a new resource to be created.

    httpsOnly Boolean

    is only https is allowed?

    instanceCount Integer

    Specifies the required instance count of the Spring Cloud Gateway. Possible Values are between 1 and 500. Defaults to 1 if not specified.

    name String

    The name which should be used for this Spring Cloud Gateway. Changing this forces a new Spring Cloud Gateway to be created. The only possible value is default.

    publicNetworkAccessEnabled Boolean

    Indicates whether the Spring Cloud Gateway exposes endpoint.

    quota SpringCloudGatewayQuota

    A quota block as defined below.

    sensitiveEnvironmentVariables Map<String,String>

    Specifies the sensitive environment variables of the Spring Cloud Gateway as a map of key-value pairs. Changing this forces a new resource to be created.

    sso SpringCloudGatewaySso

    A sso block as defined below.

    springCloudServiceId string

    The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Gateway to be created.

    apiMetadata SpringCloudGatewayApiMetadata

    A api_metadata block as defined below.

    applicationPerformanceMonitoringTypes string[]

    Specifies a list of application performance monitoring types used in the Spring Cloud Gateway. The allowed values are AppDynamics, ApplicationInsights, Dynatrace, ElasticAPM and NewRelic.

    clientAuthorization SpringCloudGatewayClientAuthorization

    A client_authorization block as defined below.

    cors SpringCloudGatewayCors

    A cors block as defined below.

    environmentVariables {[key: string]: string}

    Specifies the environment variables of the Spring Cloud Gateway as a map of key-value pairs. Changing this forces a new resource to be created.

    httpsOnly boolean

    is only https is allowed?

    instanceCount number

    Specifies the required instance count of the Spring Cloud Gateway. Possible Values are between 1 and 500. Defaults to 1 if not specified.

    name string

    The name which should be used for this Spring Cloud Gateway. Changing this forces a new Spring Cloud Gateway to be created. The only possible value is default.

    publicNetworkAccessEnabled boolean

    Indicates whether the Spring Cloud Gateway exposes endpoint.

    quota SpringCloudGatewayQuota

    A quota block as defined below.

    sensitiveEnvironmentVariables {[key: string]: string}

    Specifies the sensitive environment variables of the Spring Cloud Gateway as a map of key-value pairs. Changing this forces a new resource to be created.

    sso SpringCloudGatewaySso

    A sso block as defined below.

    spring_cloud_service_id str

    The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Gateway to be created.

    api_metadata SpringCloudGatewayApiMetadataArgs

    A api_metadata block as defined below.

    application_performance_monitoring_types Sequence[str]

    Specifies a list of application performance monitoring types used in the Spring Cloud Gateway. The allowed values are AppDynamics, ApplicationInsights, Dynatrace, ElasticAPM and NewRelic.

    client_authorization SpringCloudGatewayClientAuthorizationArgs

    A client_authorization block as defined below.

    cors SpringCloudGatewayCorsArgs

    A cors block as defined below.

    environment_variables Mapping[str, str]

    Specifies the environment variables of the Spring Cloud Gateway as a map of key-value pairs. Changing this forces a new resource to be created.

    https_only bool

    is only https is allowed?

    instance_count int

    Specifies the required instance count of the Spring Cloud Gateway. Possible Values are between 1 and 500. Defaults to 1 if not specified.

    name str

    The name which should be used for this Spring Cloud Gateway. Changing this forces a new Spring Cloud Gateway to be created. The only possible value is default.

    public_network_access_enabled bool

    Indicates whether the Spring Cloud Gateway exposes endpoint.

    quota SpringCloudGatewayQuotaArgs

    A quota block as defined below.

    sensitive_environment_variables Mapping[str, str]

    Specifies the sensitive environment variables of the Spring Cloud Gateway as a map of key-value pairs. Changing this forces a new resource to be created.

    sso SpringCloudGatewaySsoArgs

    A sso block as defined below.

    springCloudServiceId String

    The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Gateway to be created.

    apiMetadata Property Map

    A api_metadata block as defined below.

    applicationPerformanceMonitoringTypes List<String>

    Specifies a list of application performance monitoring types used in the Spring Cloud Gateway. The allowed values are AppDynamics, ApplicationInsights, Dynatrace, ElasticAPM and NewRelic.

    clientAuthorization Property Map

    A client_authorization block as defined below.

    cors Property Map

    A cors block as defined below.

    environmentVariables Map<String>

    Specifies the environment variables of the Spring Cloud Gateway as a map of key-value pairs. Changing this forces a new resource to be created.

    httpsOnly Boolean

    is only https is allowed?

    instanceCount Number

    Specifies the required instance count of the Spring Cloud Gateway. Possible Values are between 1 and 500. Defaults to 1 if not specified.

    name String

    The name which should be used for this Spring Cloud Gateway. Changing this forces a new Spring Cloud Gateway to be created. The only possible value is default.

    publicNetworkAccessEnabled Boolean

    Indicates whether the Spring Cloud Gateway exposes endpoint.

    quota Property Map

    A quota block as defined below.

    sensitiveEnvironmentVariables Map<String>

    Specifies the sensitive environment variables of the Spring Cloud Gateway as a map of key-value pairs. Changing this forces a new resource to be created.

    sso Property Map

    A sso block as defined below.

    Outputs

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

    Id string

    The provider-assigned unique ID for this managed resource.

    Url string

    URL of the Spring Cloud Gateway, exposed when 'public_network_access_enabled' is true.

    Id string

    The provider-assigned unique ID for this managed resource.

    Url string

    URL of the Spring Cloud Gateway, exposed when 'public_network_access_enabled' is true.

    id String

    The provider-assigned unique ID for this managed resource.

    url String

    URL of the Spring Cloud Gateway, exposed when 'public_network_access_enabled' is true.

    id string

    The provider-assigned unique ID for this managed resource.

    url string

    URL of the Spring Cloud Gateway, exposed when 'public_network_access_enabled' is true.

    id str

    The provider-assigned unique ID for this managed resource.

    url str

    URL of the Spring Cloud Gateway, exposed when 'public_network_access_enabled' is true.

    id String

    The provider-assigned unique ID for this managed resource.

    url String

    URL of the Spring Cloud Gateway, exposed when 'public_network_access_enabled' is true.

    Look up Existing SpringCloudGateway Resource

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

    public static get(name: string, id: Input<ID>, state?: SpringCloudGatewayState, opts?: CustomResourceOptions): SpringCloudGateway
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            api_metadata: Optional[SpringCloudGatewayApiMetadataArgs] = None,
            application_performance_monitoring_types: Optional[Sequence[str]] = None,
            client_authorization: Optional[SpringCloudGatewayClientAuthorizationArgs] = None,
            cors: Optional[SpringCloudGatewayCorsArgs] = None,
            environment_variables: Optional[Mapping[str, str]] = None,
            https_only: Optional[bool] = None,
            instance_count: Optional[int] = None,
            name: Optional[str] = None,
            public_network_access_enabled: Optional[bool] = None,
            quota: Optional[SpringCloudGatewayQuotaArgs] = None,
            sensitive_environment_variables: Optional[Mapping[str, str]] = None,
            spring_cloud_service_id: Optional[str] = None,
            sso: Optional[SpringCloudGatewaySsoArgs] = None,
            url: Optional[str] = None) -> SpringCloudGateway
    func GetSpringCloudGateway(ctx *Context, name string, id IDInput, state *SpringCloudGatewayState, opts ...ResourceOption) (*SpringCloudGateway, error)
    public static SpringCloudGateway Get(string name, Input<string> id, SpringCloudGatewayState? state, CustomResourceOptions? opts = null)
    public static SpringCloudGateway get(String name, Output<String> id, SpringCloudGatewayState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    ApiMetadata SpringCloudGatewayApiMetadata

    A api_metadata block as defined below.

    ApplicationPerformanceMonitoringTypes List<string>

    Specifies a list of application performance monitoring types used in the Spring Cloud Gateway. The allowed values are AppDynamics, ApplicationInsights, Dynatrace, ElasticAPM and NewRelic.

    ClientAuthorization SpringCloudGatewayClientAuthorization

    A client_authorization block as defined below.

    Cors SpringCloudGatewayCors

    A cors block as defined below.

    EnvironmentVariables Dictionary<string, string>

    Specifies the environment variables of the Spring Cloud Gateway as a map of key-value pairs. Changing this forces a new resource to be created.

    HttpsOnly bool

    is only https is allowed?

    InstanceCount int

    Specifies the required instance count of the Spring Cloud Gateway. Possible Values are between 1 and 500. Defaults to 1 if not specified.

    Name string

    The name which should be used for this Spring Cloud Gateway. Changing this forces a new Spring Cloud Gateway to be created. The only possible value is default.

    PublicNetworkAccessEnabled bool

    Indicates whether the Spring Cloud Gateway exposes endpoint.

    Quota SpringCloudGatewayQuota

    A quota block as defined below.

    SensitiveEnvironmentVariables Dictionary<string, string>

    Specifies the sensitive environment variables of the Spring Cloud Gateway as a map of key-value pairs. Changing this forces a new resource to be created.

    SpringCloudServiceId string

    The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Gateway to be created.

    Sso SpringCloudGatewaySso

    A sso block as defined below.

    Url string

    URL of the Spring Cloud Gateway, exposed when 'public_network_access_enabled' is true.

    ApiMetadata SpringCloudGatewayApiMetadataArgs

    A api_metadata block as defined below.

    ApplicationPerformanceMonitoringTypes []string

    Specifies a list of application performance monitoring types used in the Spring Cloud Gateway. The allowed values are AppDynamics, ApplicationInsights, Dynatrace, ElasticAPM and NewRelic.

    ClientAuthorization SpringCloudGatewayClientAuthorizationArgs

    A client_authorization block as defined below.

    Cors SpringCloudGatewayCorsArgs

    A cors block as defined below.

    EnvironmentVariables map[string]string

    Specifies the environment variables of the Spring Cloud Gateway as a map of key-value pairs. Changing this forces a new resource to be created.

    HttpsOnly bool

    is only https is allowed?

    InstanceCount int

    Specifies the required instance count of the Spring Cloud Gateway. Possible Values are between 1 and 500. Defaults to 1 if not specified.

    Name string

    The name which should be used for this Spring Cloud Gateway. Changing this forces a new Spring Cloud Gateway to be created. The only possible value is default.

    PublicNetworkAccessEnabled bool

    Indicates whether the Spring Cloud Gateway exposes endpoint.

    Quota SpringCloudGatewayQuotaArgs

    A quota block as defined below.

    SensitiveEnvironmentVariables map[string]string

    Specifies the sensitive environment variables of the Spring Cloud Gateway as a map of key-value pairs. Changing this forces a new resource to be created.

    SpringCloudServiceId string

    The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Gateway to be created.

    Sso SpringCloudGatewaySsoArgs

    A sso block as defined below.

    Url string

    URL of the Spring Cloud Gateway, exposed when 'public_network_access_enabled' is true.

    apiMetadata SpringCloudGatewayApiMetadata

    A api_metadata block as defined below.

    applicationPerformanceMonitoringTypes List<String>

    Specifies a list of application performance monitoring types used in the Spring Cloud Gateway. The allowed values are AppDynamics, ApplicationInsights, Dynatrace, ElasticAPM and NewRelic.

    clientAuthorization SpringCloudGatewayClientAuthorization

    A client_authorization block as defined below.

    cors SpringCloudGatewayCors

    A cors block as defined below.

    environmentVariables Map<String,String>

    Specifies the environment variables of the Spring Cloud Gateway as a map of key-value pairs. Changing this forces a new resource to be created.

    httpsOnly Boolean

    is only https is allowed?

    instanceCount Integer

    Specifies the required instance count of the Spring Cloud Gateway. Possible Values are between 1 and 500. Defaults to 1 if not specified.

    name String

    The name which should be used for this Spring Cloud Gateway. Changing this forces a new Spring Cloud Gateway to be created. The only possible value is default.

    publicNetworkAccessEnabled Boolean

    Indicates whether the Spring Cloud Gateway exposes endpoint.

    quota SpringCloudGatewayQuota

    A quota block as defined below.

    sensitiveEnvironmentVariables Map<String,String>

    Specifies the sensitive environment variables of the Spring Cloud Gateway as a map of key-value pairs. Changing this forces a new resource to be created.

    springCloudServiceId String

    The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Gateway to be created.

    sso SpringCloudGatewaySso

    A sso block as defined below.

    url String

    URL of the Spring Cloud Gateway, exposed when 'public_network_access_enabled' is true.

    apiMetadata SpringCloudGatewayApiMetadata

    A api_metadata block as defined below.

    applicationPerformanceMonitoringTypes string[]

    Specifies a list of application performance monitoring types used in the Spring Cloud Gateway. The allowed values are AppDynamics, ApplicationInsights, Dynatrace, ElasticAPM and NewRelic.

    clientAuthorization SpringCloudGatewayClientAuthorization

    A client_authorization block as defined below.

    cors SpringCloudGatewayCors

    A cors block as defined below.

    environmentVariables {[key: string]: string}

    Specifies the environment variables of the Spring Cloud Gateway as a map of key-value pairs. Changing this forces a new resource to be created.

    httpsOnly boolean

    is only https is allowed?

    instanceCount number

    Specifies the required instance count of the Spring Cloud Gateway. Possible Values are between 1 and 500. Defaults to 1 if not specified.

    name string

    The name which should be used for this Spring Cloud Gateway. Changing this forces a new Spring Cloud Gateway to be created. The only possible value is default.

    publicNetworkAccessEnabled boolean

    Indicates whether the Spring Cloud Gateway exposes endpoint.

    quota SpringCloudGatewayQuota

    A quota block as defined below.

    sensitiveEnvironmentVariables {[key: string]: string}

    Specifies the sensitive environment variables of the Spring Cloud Gateway as a map of key-value pairs. Changing this forces a new resource to be created.

    springCloudServiceId string

    The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Gateway to be created.

    sso SpringCloudGatewaySso

    A sso block as defined below.

    url string

    URL of the Spring Cloud Gateway, exposed when 'public_network_access_enabled' is true.

    api_metadata SpringCloudGatewayApiMetadataArgs

    A api_metadata block as defined below.

    application_performance_monitoring_types Sequence[str]

    Specifies a list of application performance monitoring types used in the Spring Cloud Gateway. The allowed values are AppDynamics, ApplicationInsights, Dynatrace, ElasticAPM and NewRelic.

    client_authorization SpringCloudGatewayClientAuthorizationArgs

    A client_authorization block as defined below.

    cors SpringCloudGatewayCorsArgs

    A cors block as defined below.

    environment_variables Mapping[str, str]

    Specifies the environment variables of the Spring Cloud Gateway as a map of key-value pairs. Changing this forces a new resource to be created.

    https_only bool

    is only https is allowed?

    instance_count int

    Specifies the required instance count of the Spring Cloud Gateway. Possible Values are between 1 and 500. Defaults to 1 if not specified.

    name str

    The name which should be used for this Spring Cloud Gateway. Changing this forces a new Spring Cloud Gateway to be created. The only possible value is default.

    public_network_access_enabled bool

    Indicates whether the Spring Cloud Gateway exposes endpoint.

    quota SpringCloudGatewayQuotaArgs

    A quota block as defined below.

    sensitive_environment_variables Mapping[str, str]

    Specifies the sensitive environment variables of the Spring Cloud Gateway as a map of key-value pairs. Changing this forces a new resource to be created.

    spring_cloud_service_id str

    The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Gateway to be created.

    sso SpringCloudGatewaySsoArgs

    A sso block as defined below.

    url str

    URL of the Spring Cloud Gateway, exposed when 'public_network_access_enabled' is true.

    apiMetadata Property Map

    A api_metadata block as defined below.

    applicationPerformanceMonitoringTypes List<String>

    Specifies a list of application performance monitoring types used in the Spring Cloud Gateway. The allowed values are AppDynamics, ApplicationInsights, Dynatrace, ElasticAPM and NewRelic.

    clientAuthorization Property Map

    A client_authorization block as defined below.

    cors Property Map

    A cors block as defined below.

    environmentVariables Map<String>

    Specifies the environment variables of the Spring Cloud Gateway as a map of key-value pairs. Changing this forces a new resource to be created.

    httpsOnly Boolean

    is only https is allowed?

    instanceCount Number

    Specifies the required instance count of the Spring Cloud Gateway. Possible Values are between 1 and 500. Defaults to 1 if not specified.

    name String

    The name which should be used for this Spring Cloud Gateway. Changing this forces a new Spring Cloud Gateway to be created. The only possible value is default.

    publicNetworkAccessEnabled Boolean

    Indicates whether the Spring Cloud Gateway exposes endpoint.

    quota Property Map

    A quota block as defined below.

    sensitiveEnvironmentVariables Map<String>

    Specifies the sensitive environment variables of the Spring Cloud Gateway as a map of key-value pairs. Changing this forces a new resource to be created.

    springCloudServiceId String

    The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Gateway to be created.

    sso Property Map

    A sso block as defined below.

    url String

    URL of the Spring Cloud Gateway, exposed when 'public_network_access_enabled' is true.

    Supporting Types

    SpringCloudGatewayApiMetadata, SpringCloudGatewayApiMetadataArgs

    Description string

    Detailed description of the APIs available on the Gateway instance.

    DocumentationUrl string

    Location of additional documentation for the APIs available on the Gateway instance.

    ServerUrl string

    Base URL that API consumers will use to access APIs on the Gateway instance.

    Title string

    Specifies the title describing the context of the APIs available on the Gateway instance.

    Version string

    Specifies the version of APIs available on this Gateway instance.

    Description string

    Detailed description of the APIs available on the Gateway instance.

    DocumentationUrl string

    Location of additional documentation for the APIs available on the Gateway instance.

    ServerUrl string

    Base URL that API consumers will use to access APIs on the Gateway instance.

    Title string

    Specifies the title describing the context of the APIs available on the Gateway instance.

    Version string

    Specifies the version of APIs available on this Gateway instance.

    description String

    Detailed description of the APIs available on the Gateway instance.

    documentationUrl String

    Location of additional documentation for the APIs available on the Gateway instance.

    serverUrl String

    Base URL that API consumers will use to access APIs on the Gateway instance.

    title String

    Specifies the title describing the context of the APIs available on the Gateway instance.

    version String

    Specifies the version of APIs available on this Gateway instance.

    description string

    Detailed description of the APIs available on the Gateway instance.

    documentationUrl string

    Location of additional documentation for the APIs available on the Gateway instance.

    serverUrl string

    Base URL that API consumers will use to access APIs on the Gateway instance.

    title string

    Specifies the title describing the context of the APIs available on the Gateway instance.

    version string

    Specifies the version of APIs available on this Gateway instance.

    description str

    Detailed description of the APIs available on the Gateway instance.

    documentation_url str

    Location of additional documentation for the APIs available on the Gateway instance.

    server_url str

    Base URL that API consumers will use to access APIs on the Gateway instance.

    title str

    Specifies the title describing the context of the APIs available on the Gateway instance.

    version str

    Specifies the version of APIs available on this Gateway instance.

    description String

    Detailed description of the APIs available on the Gateway instance.

    documentationUrl String

    Location of additional documentation for the APIs available on the Gateway instance.

    serverUrl String

    Base URL that API consumers will use to access APIs on the Gateway instance.

    title String

    Specifies the title describing the context of the APIs available on the Gateway instance.

    version String

    Specifies the version of APIs available on this Gateway instance.

    SpringCloudGatewayClientAuthorization, SpringCloudGatewayClientAuthorizationArgs

    CertificateIds List<string>

    Specifies the Spring Cloud Certificate IDs of the Spring Cloud Gateway.

    VerificationEnabled bool

    Specifies whether the client certificate verification is enabled.

    CertificateIds []string

    Specifies the Spring Cloud Certificate IDs of the Spring Cloud Gateway.

    VerificationEnabled bool

    Specifies whether the client certificate verification is enabled.

    certificateIds List<String>

    Specifies the Spring Cloud Certificate IDs of the Spring Cloud Gateway.

    verificationEnabled Boolean

    Specifies whether the client certificate verification is enabled.

    certificateIds string[]

    Specifies the Spring Cloud Certificate IDs of the Spring Cloud Gateway.

    verificationEnabled boolean

    Specifies whether the client certificate verification is enabled.

    certificate_ids Sequence[str]

    Specifies the Spring Cloud Certificate IDs of the Spring Cloud Gateway.

    verification_enabled bool

    Specifies whether the client certificate verification is enabled.

    certificateIds List<String>

    Specifies the Spring Cloud Certificate IDs of the Spring Cloud Gateway.

    verificationEnabled Boolean

    Specifies whether the client certificate verification is enabled.

    SpringCloudGatewayCors, SpringCloudGatewayCorsArgs

    AllowedHeaders List<string>

    Allowed headers in cross-site requests. The special value * allows actual requests to send any header.

    AllowedMethods List<string>

    Allowed HTTP methods on cross-site requests. The special value * allows all methods. If not set, GET and HEAD are allowed by default. Possible values are DELETE, GET, HEAD, MERGE, POST, OPTIONS and PUT.

    AllowedOriginPatterns List<string>

    Allowed origin patterns to make cross-site requests.

    AllowedOrigins List<string>

    Allowed origins to make cross-site requests. The special value * allows all domains.

    CredentialsAllowed bool

    is user credentials are supported on cross-site requests?

    ExposedHeaders List<string>

    HTTP response headers to expose for cross-site requests.

    MaxAgeSeconds int

    How long, in seconds, the response from a pre-flight request can be cached by clients.

    AllowedHeaders []string

    Allowed headers in cross-site requests. The special value * allows actual requests to send any header.

    AllowedMethods []string

    Allowed HTTP methods on cross-site requests. The special value * allows all methods. If not set, GET and HEAD are allowed by default. Possible values are DELETE, GET, HEAD, MERGE, POST, OPTIONS and PUT.

    AllowedOriginPatterns []string

    Allowed origin patterns to make cross-site requests.

    AllowedOrigins []string

    Allowed origins to make cross-site requests. The special value * allows all domains.

    CredentialsAllowed bool

    is user credentials are supported on cross-site requests?

    ExposedHeaders []string

    HTTP response headers to expose for cross-site requests.

    MaxAgeSeconds int

    How long, in seconds, the response from a pre-flight request can be cached by clients.

    allowedHeaders List<String>

    Allowed headers in cross-site requests. The special value * allows actual requests to send any header.

    allowedMethods List<String>

    Allowed HTTP methods on cross-site requests. The special value * allows all methods. If not set, GET and HEAD are allowed by default. Possible values are DELETE, GET, HEAD, MERGE, POST, OPTIONS and PUT.

    allowedOriginPatterns List<String>

    Allowed origin patterns to make cross-site requests.

    allowedOrigins List<String>

    Allowed origins to make cross-site requests. The special value * allows all domains.

    credentialsAllowed Boolean

    is user credentials are supported on cross-site requests?

    exposedHeaders List<String>

    HTTP response headers to expose for cross-site requests.

    maxAgeSeconds Integer

    How long, in seconds, the response from a pre-flight request can be cached by clients.

    allowedHeaders string[]

    Allowed headers in cross-site requests. The special value * allows actual requests to send any header.

    allowedMethods string[]

    Allowed HTTP methods on cross-site requests. The special value * allows all methods. If not set, GET and HEAD are allowed by default. Possible values are DELETE, GET, HEAD, MERGE, POST, OPTIONS and PUT.

    allowedOriginPatterns string[]

    Allowed origin patterns to make cross-site requests.

    allowedOrigins string[]

    Allowed origins to make cross-site requests. The special value * allows all domains.

    credentialsAllowed boolean

    is user credentials are supported on cross-site requests?

    exposedHeaders string[]

    HTTP response headers to expose for cross-site requests.

    maxAgeSeconds number

    How long, in seconds, the response from a pre-flight request can be cached by clients.

    allowed_headers Sequence[str]

    Allowed headers in cross-site requests. The special value * allows actual requests to send any header.

    allowed_methods Sequence[str]

    Allowed HTTP methods on cross-site requests. The special value * allows all methods. If not set, GET and HEAD are allowed by default. Possible values are DELETE, GET, HEAD, MERGE, POST, OPTIONS and PUT.

    allowed_origin_patterns Sequence[str]

    Allowed origin patterns to make cross-site requests.

    allowed_origins Sequence[str]

    Allowed origins to make cross-site requests. The special value * allows all domains.

    credentials_allowed bool

    is user credentials are supported on cross-site requests?

    exposed_headers Sequence[str]

    HTTP response headers to expose for cross-site requests.

    max_age_seconds int

    How long, in seconds, the response from a pre-flight request can be cached by clients.

    allowedHeaders List<String>

    Allowed headers in cross-site requests. The special value * allows actual requests to send any header.

    allowedMethods List<String>

    Allowed HTTP methods on cross-site requests. The special value * allows all methods. If not set, GET and HEAD are allowed by default. Possible values are DELETE, GET, HEAD, MERGE, POST, OPTIONS and PUT.

    allowedOriginPatterns List<String>

    Allowed origin patterns to make cross-site requests.

    allowedOrigins List<String>

    Allowed origins to make cross-site requests. The special value * allows all domains.

    credentialsAllowed Boolean

    is user credentials are supported on cross-site requests?

    exposedHeaders List<String>

    HTTP response headers to expose for cross-site requests.

    maxAgeSeconds Number

    How long, in seconds, the response from a pre-flight request can be cached by clients.

    SpringCloudGatewayQuota, SpringCloudGatewayQuotaArgs

    Cpu string

    Specifies the required cpu of the Spring Cloud Deployment. Possible Values are 500m, 1, 2, 3 and 4. Defaults to 1 if not specified.

    Note: cpu supports 500m and 1 for Basic tier, 500m, 1, 2, 3 and 4 for Standard tier.

    Memory string

    Specifies the required memory size of the Spring Cloud Deployment. Possible Values are 512Mi, 1Gi, 2Gi, 3Gi, 4Gi, 5Gi, 6Gi, 7Gi, and 8Gi. Defaults to 1Gi if not specified.

    Note: memory supports 512Mi, 1Gi and 2Gi for Basic tier, 512Mi, 1Gi, 2Gi, 3Gi, 4Gi, 5Gi, 6Gi, 7Gi, and 8Gi for Standard tier.

    Cpu string

    Specifies the required cpu of the Spring Cloud Deployment. Possible Values are 500m, 1, 2, 3 and 4. Defaults to 1 if not specified.

    Note: cpu supports 500m and 1 for Basic tier, 500m, 1, 2, 3 and 4 for Standard tier.

    Memory string

    Specifies the required memory size of the Spring Cloud Deployment. Possible Values are 512Mi, 1Gi, 2Gi, 3Gi, 4Gi, 5Gi, 6Gi, 7Gi, and 8Gi. Defaults to 1Gi if not specified.

    Note: memory supports 512Mi, 1Gi and 2Gi for Basic tier, 512Mi, 1Gi, 2Gi, 3Gi, 4Gi, 5Gi, 6Gi, 7Gi, and 8Gi for Standard tier.

    cpu String

    Specifies the required cpu of the Spring Cloud Deployment. Possible Values are 500m, 1, 2, 3 and 4. Defaults to 1 if not specified.

    Note: cpu supports 500m and 1 for Basic tier, 500m, 1, 2, 3 and 4 for Standard tier.

    memory String

    Specifies the required memory size of the Spring Cloud Deployment. Possible Values are 512Mi, 1Gi, 2Gi, 3Gi, 4Gi, 5Gi, 6Gi, 7Gi, and 8Gi. Defaults to 1Gi if not specified.

    Note: memory supports 512Mi, 1Gi and 2Gi for Basic tier, 512Mi, 1Gi, 2Gi, 3Gi, 4Gi, 5Gi, 6Gi, 7Gi, and 8Gi for Standard tier.

    cpu string

    Specifies the required cpu of the Spring Cloud Deployment. Possible Values are 500m, 1, 2, 3 and 4. Defaults to 1 if not specified.

    Note: cpu supports 500m and 1 for Basic tier, 500m, 1, 2, 3 and 4 for Standard tier.

    memory string

    Specifies the required memory size of the Spring Cloud Deployment. Possible Values are 512Mi, 1Gi, 2Gi, 3Gi, 4Gi, 5Gi, 6Gi, 7Gi, and 8Gi. Defaults to 1Gi if not specified.

    Note: memory supports 512Mi, 1Gi and 2Gi for Basic tier, 512Mi, 1Gi, 2Gi, 3Gi, 4Gi, 5Gi, 6Gi, 7Gi, and 8Gi for Standard tier.

    cpu str

    Specifies the required cpu of the Spring Cloud Deployment. Possible Values are 500m, 1, 2, 3 and 4. Defaults to 1 if not specified.

    Note: cpu supports 500m and 1 for Basic tier, 500m, 1, 2, 3 and 4 for Standard tier.

    memory str

    Specifies the required memory size of the Spring Cloud Deployment. Possible Values are 512Mi, 1Gi, 2Gi, 3Gi, 4Gi, 5Gi, 6Gi, 7Gi, and 8Gi. Defaults to 1Gi if not specified.

    Note: memory supports 512Mi, 1Gi and 2Gi for Basic tier, 512Mi, 1Gi, 2Gi, 3Gi, 4Gi, 5Gi, 6Gi, 7Gi, and 8Gi for Standard tier.

    cpu String

    Specifies the required cpu of the Spring Cloud Deployment. Possible Values are 500m, 1, 2, 3 and 4. Defaults to 1 if not specified.

    Note: cpu supports 500m and 1 for Basic tier, 500m, 1, 2, 3 and 4 for Standard tier.

    memory String

    Specifies the required memory size of the Spring Cloud Deployment. Possible Values are 512Mi, 1Gi, 2Gi, 3Gi, 4Gi, 5Gi, 6Gi, 7Gi, and 8Gi. Defaults to 1Gi if not specified.

    Note: memory supports 512Mi, 1Gi and 2Gi for Basic tier, 512Mi, 1Gi, 2Gi, 3Gi, 4Gi, 5Gi, 6Gi, 7Gi, and 8Gi for Standard tier.

    SpringCloudGatewaySso, SpringCloudGatewaySsoArgs

    ClientId string

    The public identifier for the application.

    ClientSecret string

    The secret known only to the application and the authorization server.

    IssuerUri string

    The URI of Issuer Identifier.

    Scopes List<string>

    It defines the specific actions applications can be allowed to do on a user's behalf.

    ClientId string

    The public identifier for the application.

    ClientSecret string

    The secret known only to the application and the authorization server.

    IssuerUri string

    The URI of Issuer Identifier.

    Scopes []string

    It defines the specific actions applications can be allowed to do on a user's behalf.

    clientId String

    The public identifier for the application.

    clientSecret String

    The secret known only to the application and the authorization server.

    issuerUri String

    The URI of Issuer Identifier.

    scopes List<String>

    It defines the specific actions applications can be allowed to do on a user's behalf.

    clientId string

    The public identifier for the application.

    clientSecret string

    The secret known only to the application and the authorization server.

    issuerUri string

    The URI of Issuer Identifier.

    scopes string[]

    It defines the specific actions applications can be allowed to do on a user's behalf.

    client_id str

    The public identifier for the application.

    client_secret str

    The secret known only to the application and the authorization server.

    issuer_uri str

    The URI of Issuer Identifier.

    scopes Sequence[str]

    It defines the specific actions applications can be allowed to do on a user's behalf.

    clientId String

    The public identifier for the application.

    clientSecret String

    The secret known only to the application and the authorization server.

    issuerUri String

    The URI of Issuer Identifier.

    scopes List<String>

    It defines the specific actions applications can be allowed to do on a user's behalf.

    Import

    Spring Cloud Gateways can be imported using the resource id, e.g.

     $ pulumi import azure:appplatform/springCloudGateway:SpringCloudGateway example /subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/resourceGroup1/providers/Microsoft.AppPlatform/spring/service1/gateways/gateway1
    

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes

    This Pulumi package is based on the azurerm Terraform Provider.

    azure logo

    We recommend using Azure Native.

    Azure Classic v5.49.0 published on Tuesday, Aug 29, 2023 by Pulumi