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

We recommend using Azure Native.

Azure Classic v5.70.0 published on Wednesday, Mar 27, 2024 by Pulumi

azure.appplatform.SpringCloudService

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure Classic v5.70.0 published on Wednesday, Mar 27, 2024 by Pulumi

    Manages an Azure Spring Cloud Service.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const example = new azure.core.ResourceGroup("example", {
        name: "example-resources",
        location: "West Europe",
    });
    const exampleInsights = new azure.appinsights.Insights("example", {
        name: "tf-test-appinsights",
        location: example.location,
        resourceGroupName: example.name,
        applicationType: "web",
    });
    const exampleSpringCloudService = new azure.appplatform.SpringCloudService("example", {
        name: "example-springcloud",
        resourceGroupName: example.name,
        location: example.location,
        skuName: "S0",
        configServerGitSetting: {
            uri: "https://github.com/Azure-Samples/piggymetrics",
            label: "config",
            searchPaths: [
                "dir1",
                "dir2",
            ],
        },
        trace: {
            connectionString: exampleInsights.connectionString,
            sampleRate: 10,
        },
        tags: {
            Env: "staging",
        },
    });
    
    import pulumi
    import pulumi_azure as azure
    
    example = azure.core.ResourceGroup("example",
        name="example-resources",
        location="West Europe")
    example_insights = azure.appinsights.Insights("example",
        name="tf-test-appinsights",
        location=example.location,
        resource_group_name=example.name,
        application_type="web")
    example_spring_cloud_service = azure.appplatform.SpringCloudService("example",
        name="example-springcloud",
        resource_group_name=example.name,
        location=example.location,
        sku_name="S0",
        config_server_git_setting=azure.appplatform.SpringCloudServiceConfigServerGitSettingArgs(
            uri="https://github.com/Azure-Samples/piggymetrics",
            label="config",
            search_paths=[
                "dir1",
                "dir2",
            ],
        ),
        trace=azure.appplatform.SpringCloudServiceTraceArgs(
            connection_string=example_insights.connection_string,
            sample_rate=10,
        ),
        tags={
            "Env": "staging",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/appinsights"
    	"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 {
    		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
    			Name:     pulumi.String("example-resources"),
    			Location: pulumi.String("West Europe"),
    		})
    		if err != nil {
    			return err
    		}
    		exampleInsights, err := appinsights.NewInsights(ctx, "example", &appinsights.InsightsArgs{
    			Name:              pulumi.String("tf-test-appinsights"),
    			Location:          example.Location,
    			ResourceGroupName: example.Name,
    			ApplicationType:   pulumi.String("web"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = appplatform.NewSpringCloudService(ctx, "example", &appplatform.SpringCloudServiceArgs{
    			Name:              pulumi.String("example-springcloud"),
    			ResourceGroupName: example.Name,
    			Location:          example.Location,
    			SkuName:           pulumi.String("S0"),
    			ConfigServerGitSetting: &appplatform.SpringCloudServiceConfigServerGitSettingArgs{
    				Uri:   pulumi.String("https://github.com/Azure-Samples/piggymetrics"),
    				Label: pulumi.String("config"),
    				SearchPaths: pulumi.StringArray{
    					pulumi.String("dir1"),
    					pulumi.String("dir2"),
    				},
    			},
    			Trace: &appplatform.SpringCloudServiceTraceArgs{
    				ConnectionString: exampleInsights.ConnectionString,
    				SampleRate:       pulumi.Float64(10),
    			},
    			Tags: pulumi.StringMap{
    				"Env": pulumi.String("staging"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Azure = Pulumi.Azure;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Azure.Core.ResourceGroup("example", new()
        {
            Name = "example-resources",
            Location = "West Europe",
        });
    
        var exampleInsights = new Azure.AppInsights.Insights("example", new()
        {
            Name = "tf-test-appinsights",
            Location = example.Location,
            ResourceGroupName = example.Name,
            ApplicationType = "web",
        });
    
        var exampleSpringCloudService = new Azure.AppPlatform.SpringCloudService("example", new()
        {
            Name = "example-springcloud",
            ResourceGroupName = example.Name,
            Location = example.Location,
            SkuName = "S0",
            ConfigServerGitSetting = new Azure.AppPlatform.Inputs.SpringCloudServiceConfigServerGitSettingArgs
            {
                Uri = "https://github.com/Azure-Samples/piggymetrics",
                Label = "config",
                SearchPaths = new[]
                {
                    "dir1",
                    "dir2",
                },
            },
            Trace = new Azure.AppPlatform.Inputs.SpringCloudServiceTraceArgs
            {
                ConnectionString = exampleInsights.ConnectionString,
                SampleRate = 10,
            },
            Tags = 
            {
                { "Env", "staging" },
            },
        });
    
    });
    
    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.appinsights.Insights;
    import com.pulumi.azure.appinsights.InsightsArgs;
    import com.pulumi.azure.appplatform.SpringCloudService;
    import com.pulumi.azure.appplatform.SpringCloudServiceArgs;
    import com.pulumi.azure.appplatform.inputs.SpringCloudServiceConfigServerGitSettingArgs;
    import com.pulumi.azure.appplatform.inputs.SpringCloudServiceTraceArgs;
    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 example = new ResourceGroup("example", ResourceGroupArgs.builder()        
                .name("example-resources")
                .location("West Europe")
                .build());
    
            var exampleInsights = new Insights("exampleInsights", InsightsArgs.builder()        
                .name("tf-test-appinsights")
                .location(example.location())
                .resourceGroupName(example.name())
                .applicationType("web")
                .build());
    
            var exampleSpringCloudService = new SpringCloudService("exampleSpringCloudService", SpringCloudServiceArgs.builder()        
                .name("example-springcloud")
                .resourceGroupName(example.name())
                .location(example.location())
                .skuName("S0")
                .configServerGitSetting(SpringCloudServiceConfigServerGitSettingArgs.builder()
                    .uri("https://github.com/Azure-Samples/piggymetrics")
                    .label("config")
                    .searchPaths(                
                        "dir1",
                        "dir2")
                    .build())
                .trace(SpringCloudServiceTraceArgs.builder()
                    .connectionString(exampleInsights.connectionString())
                    .sampleRate(10)
                    .build())
                .tags(Map.of("Env", "staging"))
                .build());
    
        }
    }
    
    resources:
      example:
        type: azure:core:ResourceGroup
        properties:
          name: example-resources
          location: West Europe
      exampleInsights:
        type: azure:appinsights:Insights
        name: example
        properties:
          name: tf-test-appinsights
          location: ${example.location}
          resourceGroupName: ${example.name}
          applicationType: web
      exampleSpringCloudService:
        type: azure:appplatform:SpringCloudService
        name: example
        properties:
          name: example-springcloud
          resourceGroupName: ${example.name}
          location: ${example.location}
          skuName: S0
          configServerGitSetting:
            uri: https://github.com/Azure-Samples/piggymetrics
            label: config
            searchPaths:
              - dir1
              - dir2
          trace:
            connectionString: ${exampleInsights.connectionString}
            sampleRate: 10
          tags:
            Env: staging
    

    Create SpringCloudService Resource

    new SpringCloudService(name: string, args: SpringCloudServiceArgs, opts?: CustomResourceOptions);
    @overload
    def SpringCloudService(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           build_agent_pool_size: Optional[str] = None,
                           config_server_git_setting: Optional[SpringCloudServiceConfigServerGitSettingArgs] = None,
                           container_registries: Optional[Sequence[SpringCloudServiceContainerRegistryArgs]] = None,
                           default_build_service: Optional[SpringCloudServiceDefaultBuildServiceArgs] = None,
                           location: Optional[str] = None,
                           log_stream_public_endpoint_enabled: Optional[bool] = None,
                           managed_environment_id: Optional[str] = None,
                           marketplace: Optional[SpringCloudServiceMarketplaceArgs] = None,
                           name: Optional[str] = None,
                           network: Optional[SpringCloudServiceNetworkArgs] = None,
                           resource_group_name: Optional[str] = None,
                           service_registry_enabled: Optional[bool] = None,
                           sku_name: Optional[str] = None,
                           sku_tier: Optional[str] = None,
                           tags: Optional[Mapping[str, str]] = None,
                           trace: Optional[SpringCloudServiceTraceArgs] = None,
                           zone_redundant: Optional[bool] = None)
    @overload
    def SpringCloudService(resource_name: str,
                           args: SpringCloudServiceArgs,
                           opts: Optional[ResourceOptions] = None)
    func NewSpringCloudService(ctx *Context, name string, args SpringCloudServiceArgs, opts ...ResourceOption) (*SpringCloudService, error)
    public SpringCloudService(string name, SpringCloudServiceArgs args, CustomResourceOptions? opts = null)
    public SpringCloudService(String name, SpringCloudServiceArgs args)
    public SpringCloudService(String name, SpringCloudServiceArgs args, CustomResourceOptions options)
    
    type: azure:appplatform:SpringCloudService
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args SpringCloudServiceArgs
    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 SpringCloudServiceArgs
    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 SpringCloudServiceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SpringCloudServiceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SpringCloudServiceArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

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

    ResourceGroupName string
    Specifies The name of the resource group in which to create the Spring Cloud Service. Changing this forces a new resource to be created.
    BuildAgentPoolSize string
    Specifies the size for this Spring Cloud Service's default build agent pool. Possible values are S1, S2, S3, S4 and S5. This field is applicable only for Spring Cloud Service with enterprise tier.
    ConfigServerGitSetting SpringCloudServiceConfigServerGitSetting
    A config_server_git_setting block as defined below. This field is applicable only for Spring Cloud Service with basic and standard tier.
    ContainerRegistries List<SpringCloudServiceContainerRegistry>
    One or more container_registry block as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
    DefaultBuildService SpringCloudServiceDefaultBuildService
    A default_build_service block as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
    Location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    LogStreamPublicEndpointEnabled bool
    Should the log stream in vnet injection instance could be accessed from Internet?
    ManagedEnvironmentId string
    The resource Id of the Managed Environment that the Spring Apps instance builds on. Can only be specified when sku_tier is set to StandardGen2.
    Marketplace SpringCloudServiceMarketplace
    A marketplace block as defined below. Can only be specified when sku is set to E0.
    Name string
    Specifies the name of the Spring Cloud Service resource. Changing this forces a new resource to be created.
    Network SpringCloudServiceNetwork
    A network block as defined below. Changing this forces a new resource to be created.
    ServiceRegistryEnabled bool
    Whether enable the default Service Registry. This field is applicable only for Spring Cloud Service with enterprise tier.
    SkuName string
    Specifies the SKU Name for this Spring Cloud Service. Possible values are B0, S0 and E0. Defaults to S0. Changing this forces a new resource to be created.
    SkuTier string
    Specifies the SKU Tier for this Spring Cloud Service. Possible values are Basic, Enterprise, Standard and StandardGen2. The attribute is automatically computed from API response except when managed_environment_id is defined. Changing this forces a new resource to be created.
    Tags Dictionary<string, string>
    A mapping of tags to assign to the resource.
    Trace SpringCloudServiceTrace
    A trace block as defined below.
    ZoneRedundant bool
    Whether zone redundancy is enabled for this Spring Cloud Service. Defaults to false.
    ResourceGroupName string
    Specifies The name of the resource group in which to create the Spring Cloud Service. Changing this forces a new resource to be created.
    BuildAgentPoolSize string
    Specifies the size for this Spring Cloud Service's default build agent pool. Possible values are S1, S2, S3, S4 and S5. This field is applicable only for Spring Cloud Service with enterprise tier.
    ConfigServerGitSetting SpringCloudServiceConfigServerGitSettingArgs
    A config_server_git_setting block as defined below. This field is applicable only for Spring Cloud Service with basic and standard tier.
    ContainerRegistries []SpringCloudServiceContainerRegistryArgs
    One or more container_registry block as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
    DefaultBuildService SpringCloudServiceDefaultBuildServiceArgs
    A default_build_service block as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
    Location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    LogStreamPublicEndpointEnabled bool
    Should the log stream in vnet injection instance could be accessed from Internet?
    ManagedEnvironmentId string
    The resource Id of the Managed Environment that the Spring Apps instance builds on. Can only be specified when sku_tier is set to StandardGen2.
    Marketplace SpringCloudServiceMarketplaceArgs
    A marketplace block as defined below. Can only be specified when sku is set to E0.
    Name string
    Specifies the name of the Spring Cloud Service resource. Changing this forces a new resource to be created.
    Network SpringCloudServiceNetworkArgs
    A network block as defined below. Changing this forces a new resource to be created.
    ServiceRegistryEnabled bool
    Whether enable the default Service Registry. This field is applicable only for Spring Cloud Service with enterprise tier.
    SkuName string
    Specifies the SKU Name for this Spring Cloud Service. Possible values are B0, S0 and E0. Defaults to S0. Changing this forces a new resource to be created.
    SkuTier string
    Specifies the SKU Tier for this Spring Cloud Service. Possible values are Basic, Enterprise, Standard and StandardGen2. The attribute is automatically computed from API response except when managed_environment_id is defined. Changing this forces a new resource to be created.
    Tags map[string]string
    A mapping of tags to assign to the resource.
    Trace SpringCloudServiceTraceArgs
    A trace block as defined below.
    ZoneRedundant bool
    Whether zone redundancy is enabled for this Spring Cloud Service. Defaults to false.
    resourceGroupName String
    Specifies The name of the resource group in which to create the Spring Cloud Service. Changing this forces a new resource to be created.
    buildAgentPoolSize String
    Specifies the size for this Spring Cloud Service's default build agent pool. Possible values are S1, S2, S3, S4 and S5. This field is applicable only for Spring Cloud Service with enterprise tier.
    configServerGitSetting SpringCloudServiceConfigServerGitSetting
    A config_server_git_setting block as defined below. This field is applicable only for Spring Cloud Service with basic and standard tier.
    containerRegistries List<SpringCloudServiceContainerRegistry>
    One or more container_registry block as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
    defaultBuildService SpringCloudServiceDefaultBuildService
    A default_build_service block as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
    location String
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    logStreamPublicEndpointEnabled Boolean
    Should the log stream in vnet injection instance could be accessed from Internet?
    managedEnvironmentId String
    The resource Id of the Managed Environment that the Spring Apps instance builds on. Can only be specified when sku_tier is set to StandardGen2.
    marketplace SpringCloudServiceMarketplace
    A marketplace block as defined below. Can only be specified when sku is set to E0.
    name String
    Specifies the name of the Spring Cloud Service resource. Changing this forces a new resource to be created.
    network SpringCloudServiceNetwork
    A network block as defined below. Changing this forces a new resource to be created.
    serviceRegistryEnabled Boolean
    Whether enable the default Service Registry. This field is applicable only for Spring Cloud Service with enterprise tier.
    skuName String
    Specifies the SKU Name for this Spring Cloud Service. Possible values are B0, S0 and E0. Defaults to S0. Changing this forces a new resource to be created.
    skuTier String
    Specifies the SKU Tier for this Spring Cloud Service. Possible values are Basic, Enterprise, Standard and StandardGen2. The attribute is automatically computed from API response except when managed_environment_id is defined. Changing this forces a new resource to be created.
    tags Map<String,String>
    A mapping of tags to assign to the resource.
    trace SpringCloudServiceTrace
    A trace block as defined below.
    zoneRedundant Boolean
    Whether zone redundancy is enabled for this Spring Cloud Service. Defaults to false.
    resourceGroupName string
    Specifies The name of the resource group in which to create the Spring Cloud Service. Changing this forces a new resource to be created.
    buildAgentPoolSize string
    Specifies the size for this Spring Cloud Service's default build agent pool. Possible values are S1, S2, S3, S4 and S5. This field is applicable only for Spring Cloud Service with enterprise tier.
    configServerGitSetting SpringCloudServiceConfigServerGitSetting
    A config_server_git_setting block as defined below. This field is applicable only for Spring Cloud Service with basic and standard tier.
    containerRegistries SpringCloudServiceContainerRegistry[]
    One or more container_registry block as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
    defaultBuildService SpringCloudServiceDefaultBuildService
    A default_build_service block as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
    location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    logStreamPublicEndpointEnabled boolean
    Should the log stream in vnet injection instance could be accessed from Internet?
    managedEnvironmentId string
    The resource Id of the Managed Environment that the Spring Apps instance builds on. Can only be specified when sku_tier is set to StandardGen2.
    marketplace SpringCloudServiceMarketplace
    A marketplace block as defined below. Can only be specified when sku is set to E0.
    name string
    Specifies the name of the Spring Cloud Service resource. Changing this forces a new resource to be created.
    network SpringCloudServiceNetwork
    A network block as defined below. Changing this forces a new resource to be created.
    serviceRegistryEnabled boolean
    Whether enable the default Service Registry. This field is applicable only for Spring Cloud Service with enterprise tier.
    skuName string
    Specifies the SKU Name for this Spring Cloud Service. Possible values are B0, S0 and E0. Defaults to S0. Changing this forces a new resource to be created.
    skuTier string
    Specifies the SKU Tier for this Spring Cloud Service. Possible values are Basic, Enterprise, Standard and StandardGen2. The attribute is automatically computed from API response except when managed_environment_id is defined. Changing this forces a new resource to be created.
    tags {[key: string]: string}
    A mapping of tags to assign to the resource.
    trace SpringCloudServiceTrace
    A trace block as defined below.
    zoneRedundant boolean
    Whether zone redundancy is enabled for this Spring Cloud Service. Defaults to false.
    resource_group_name str
    Specifies The name of the resource group in which to create the Spring Cloud Service. Changing this forces a new resource to be created.
    build_agent_pool_size str
    Specifies the size for this Spring Cloud Service's default build agent pool. Possible values are S1, S2, S3, S4 and S5. This field is applicable only for Spring Cloud Service with enterprise tier.
    config_server_git_setting SpringCloudServiceConfigServerGitSettingArgs
    A config_server_git_setting block as defined below. This field is applicable only for Spring Cloud Service with basic and standard tier.
    container_registries Sequence[SpringCloudServiceContainerRegistryArgs]
    One or more container_registry block as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
    default_build_service SpringCloudServiceDefaultBuildServiceArgs
    A default_build_service block as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
    location str
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    log_stream_public_endpoint_enabled bool
    Should the log stream in vnet injection instance could be accessed from Internet?
    managed_environment_id str
    The resource Id of the Managed Environment that the Spring Apps instance builds on. Can only be specified when sku_tier is set to StandardGen2.
    marketplace SpringCloudServiceMarketplaceArgs
    A marketplace block as defined below. Can only be specified when sku is set to E0.
    name str
    Specifies the name of the Spring Cloud Service resource. Changing this forces a new resource to be created.
    network SpringCloudServiceNetworkArgs
    A network block as defined below. Changing this forces a new resource to be created.
    service_registry_enabled bool
    Whether enable the default Service Registry. This field is applicable only for Spring Cloud Service with enterprise tier.
    sku_name str
    Specifies the SKU Name for this Spring Cloud Service. Possible values are B0, S0 and E0. Defaults to S0. Changing this forces a new resource to be created.
    sku_tier str
    Specifies the SKU Tier for this Spring Cloud Service. Possible values are Basic, Enterprise, Standard and StandardGen2. The attribute is automatically computed from API response except when managed_environment_id is defined. Changing this forces a new resource to be created.
    tags Mapping[str, str]
    A mapping of tags to assign to the resource.
    trace SpringCloudServiceTraceArgs
    A trace block as defined below.
    zone_redundant bool
    Whether zone redundancy is enabled for this Spring Cloud Service. Defaults to false.
    resourceGroupName String
    Specifies The name of the resource group in which to create the Spring Cloud Service. Changing this forces a new resource to be created.
    buildAgentPoolSize String
    Specifies the size for this Spring Cloud Service's default build agent pool. Possible values are S1, S2, S3, S4 and S5. This field is applicable only for Spring Cloud Service with enterprise tier.
    configServerGitSetting Property Map
    A config_server_git_setting block as defined below. This field is applicable only for Spring Cloud Service with basic and standard tier.
    containerRegistries List<Property Map>
    One or more container_registry block as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
    defaultBuildService Property Map
    A default_build_service block as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
    location String
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    logStreamPublicEndpointEnabled Boolean
    Should the log stream in vnet injection instance could be accessed from Internet?
    managedEnvironmentId String
    The resource Id of the Managed Environment that the Spring Apps instance builds on. Can only be specified when sku_tier is set to StandardGen2.
    marketplace Property Map
    A marketplace block as defined below. Can only be specified when sku is set to E0.
    name String
    Specifies the name of the Spring Cloud Service resource. Changing this forces a new resource to be created.
    network Property Map
    A network block as defined below. Changing this forces a new resource to be created.
    serviceRegistryEnabled Boolean
    Whether enable the default Service Registry. This field is applicable only for Spring Cloud Service with enterprise tier.
    skuName String
    Specifies the SKU Name for this Spring Cloud Service. Possible values are B0, S0 and E0. Defaults to S0. Changing this forces a new resource to be created.
    skuTier String
    Specifies the SKU Tier for this Spring Cloud Service. Possible values are Basic, Enterprise, Standard and StandardGen2. The attribute is automatically computed from API response except when managed_environment_id is defined. Changing this forces a new resource to be created.
    tags Map<String>
    A mapping of tags to assign to the resource.
    trace Property Map
    A trace block as defined below.
    zoneRedundant Boolean
    Whether zone redundancy is enabled for this Spring Cloud Service. Defaults to false.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    OutboundPublicIpAddresses List<string>
    A list of the outbound Public IP Addresses used by this Spring Cloud Service.
    RequiredNetworkTrafficRules List<SpringCloudServiceRequiredNetworkTrafficRule>
    A list of required_network_traffic_rules blocks as defined below.
    ServiceRegistryId string
    The ID of the Spring Cloud Service Registry.
    Id string
    The provider-assigned unique ID for this managed resource.
    OutboundPublicIpAddresses []string
    A list of the outbound Public IP Addresses used by this Spring Cloud Service.
    RequiredNetworkTrafficRules []SpringCloudServiceRequiredNetworkTrafficRule
    A list of required_network_traffic_rules blocks as defined below.
    ServiceRegistryId string
    The ID of the Spring Cloud Service Registry.
    id String
    The provider-assigned unique ID for this managed resource.
    outboundPublicIpAddresses List<String>
    A list of the outbound Public IP Addresses used by this Spring Cloud Service.
    requiredNetworkTrafficRules List<SpringCloudServiceRequiredNetworkTrafficRule>
    A list of required_network_traffic_rules blocks as defined below.
    serviceRegistryId String
    The ID of the Spring Cloud Service Registry.
    id string
    The provider-assigned unique ID for this managed resource.
    outboundPublicIpAddresses string[]
    A list of the outbound Public IP Addresses used by this Spring Cloud Service.
    requiredNetworkTrafficRules SpringCloudServiceRequiredNetworkTrafficRule[]
    A list of required_network_traffic_rules blocks as defined below.
    serviceRegistryId string
    The ID of the Spring Cloud Service Registry.
    id str
    The provider-assigned unique ID for this managed resource.
    outbound_public_ip_addresses Sequence[str]
    A list of the outbound Public IP Addresses used by this Spring Cloud Service.
    required_network_traffic_rules Sequence[SpringCloudServiceRequiredNetworkTrafficRule]
    A list of required_network_traffic_rules blocks as defined below.
    service_registry_id str
    The ID of the Spring Cloud Service Registry.
    id String
    The provider-assigned unique ID for this managed resource.
    outboundPublicIpAddresses List<String>
    A list of the outbound Public IP Addresses used by this Spring Cloud Service.
    requiredNetworkTrafficRules List<Property Map>
    A list of required_network_traffic_rules blocks as defined below.
    serviceRegistryId String
    The ID of the Spring Cloud Service Registry.

    Look up Existing SpringCloudService Resource

    Get an existing SpringCloudService 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?: SpringCloudServiceState, opts?: CustomResourceOptions): SpringCloudService
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            build_agent_pool_size: Optional[str] = None,
            config_server_git_setting: Optional[SpringCloudServiceConfigServerGitSettingArgs] = None,
            container_registries: Optional[Sequence[SpringCloudServiceContainerRegistryArgs]] = None,
            default_build_service: Optional[SpringCloudServiceDefaultBuildServiceArgs] = None,
            location: Optional[str] = None,
            log_stream_public_endpoint_enabled: Optional[bool] = None,
            managed_environment_id: Optional[str] = None,
            marketplace: Optional[SpringCloudServiceMarketplaceArgs] = None,
            name: Optional[str] = None,
            network: Optional[SpringCloudServiceNetworkArgs] = None,
            outbound_public_ip_addresses: Optional[Sequence[str]] = None,
            required_network_traffic_rules: Optional[Sequence[SpringCloudServiceRequiredNetworkTrafficRuleArgs]] = None,
            resource_group_name: Optional[str] = None,
            service_registry_enabled: Optional[bool] = None,
            service_registry_id: Optional[str] = None,
            sku_name: Optional[str] = None,
            sku_tier: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            trace: Optional[SpringCloudServiceTraceArgs] = None,
            zone_redundant: Optional[bool] = None) -> SpringCloudService
    func GetSpringCloudService(ctx *Context, name string, id IDInput, state *SpringCloudServiceState, opts ...ResourceOption) (*SpringCloudService, error)
    public static SpringCloudService Get(string name, Input<string> id, SpringCloudServiceState? state, CustomResourceOptions? opts = null)
    public static SpringCloudService get(String name, Output<String> id, SpringCloudServiceState 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:
    BuildAgentPoolSize string
    Specifies the size for this Spring Cloud Service's default build agent pool. Possible values are S1, S2, S3, S4 and S5. This field is applicable only for Spring Cloud Service with enterprise tier.
    ConfigServerGitSetting SpringCloudServiceConfigServerGitSetting
    A config_server_git_setting block as defined below. This field is applicable only for Spring Cloud Service with basic and standard tier.
    ContainerRegistries List<SpringCloudServiceContainerRegistry>
    One or more container_registry block as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
    DefaultBuildService SpringCloudServiceDefaultBuildService
    A default_build_service block as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
    Location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    LogStreamPublicEndpointEnabled bool
    Should the log stream in vnet injection instance could be accessed from Internet?
    ManagedEnvironmentId string
    The resource Id of the Managed Environment that the Spring Apps instance builds on. Can only be specified when sku_tier is set to StandardGen2.
    Marketplace SpringCloudServiceMarketplace
    A marketplace block as defined below. Can only be specified when sku is set to E0.
    Name string
    Specifies the name of the Spring Cloud Service resource. Changing this forces a new resource to be created.
    Network SpringCloudServiceNetwork
    A network block as defined below. Changing this forces a new resource to be created.
    OutboundPublicIpAddresses List<string>
    A list of the outbound Public IP Addresses used by this Spring Cloud Service.
    RequiredNetworkTrafficRules List<SpringCloudServiceRequiredNetworkTrafficRule>
    A list of required_network_traffic_rules blocks as defined below.
    ResourceGroupName string
    Specifies The name of the resource group in which to create the Spring Cloud Service. Changing this forces a new resource to be created.
    ServiceRegistryEnabled bool
    Whether enable the default Service Registry. This field is applicable only for Spring Cloud Service with enterprise tier.
    ServiceRegistryId string
    The ID of the Spring Cloud Service Registry.
    SkuName string
    Specifies the SKU Name for this Spring Cloud Service. Possible values are B0, S0 and E0. Defaults to S0. Changing this forces a new resource to be created.
    SkuTier string
    Specifies the SKU Tier for this Spring Cloud Service. Possible values are Basic, Enterprise, Standard and StandardGen2. The attribute is automatically computed from API response except when managed_environment_id is defined. Changing this forces a new resource to be created.
    Tags Dictionary<string, string>
    A mapping of tags to assign to the resource.
    Trace SpringCloudServiceTrace
    A trace block as defined below.
    ZoneRedundant bool
    Whether zone redundancy is enabled for this Spring Cloud Service. Defaults to false.
    BuildAgentPoolSize string
    Specifies the size for this Spring Cloud Service's default build agent pool. Possible values are S1, S2, S3, S4 and S5. This field is applicable only for Spring Cloud Service with enterprise tier.
    ConfigServerGitSetting SpringCloudServiceConfigServerGitSettingArgs
    A config_server_git_setting block as defined below. This field is applicable only for Spring Cloud Service with basic and standard tier.
    ContainerRegistries []SpringCloudServiceContainerRegistryArgs
    One or more container_registry block as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
    DefaultBuildService SpringCloudServiceDefaultBuildServiceArgs
    A default_build_service block as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
    Location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    LogStreamPublicEndpointEnabled bool
    Should the log stream in vnet injection instance could be accessed from Internet?
    ManagedEnvironmentId string
    The resource Id of the Managed Environment that the Spring Apps instance builds on. Can only be specified when sku_tier is set to StandardGen2.
    Marketplace SpringCloudServiceMarketplaceArgs
    A marketplace block as defined below. Can only be specified when sku is set to E0.
    Name string
    Specifies the name of the Spring Cloud Service resource. Changing this forces a new resource to be created.
    Network SpringCloudServiceNetworkArgs
    A network block as defined below. Changing this forces a new resource to be created.
    OutboundPublicIpAddresses []string
    A list of the outbound Public IP Addresses used by this Spring Cloud Service.
    RequiredNetworkTrafficRules []SpringCloudServiceRequiredNetworkTrafficRuleArgs
    A list of required_network_traffic_rules blocks as defined below.
    ResourceGroupName string
    Specifies The name of the resource group in which to create the Spring Cloud Service. Changing this forces a new resource to be created.
    ServiceRegistryEnabled bool
    Whether enable the default Service Registry. This field is applicable only for Spring Cloud Service with enterprise tier.
    ServiceRegistryId string
    The ID of the Spring Cloud Service Registry.
    SkuName string
    Specifies the SKU Name for this Spring Cloud Service. Possible values are B0, S0 and E0. Defaults to S0. Changing this forces a new resource to be created.
    SkuTier string
    Specifies the SKU Tier for this Spring Cloud Service. Possible values are Basic, Enterprise, Standard and StandardGen2. The attribute is automatically computed from API response except when managed_environment_id is defined. Changing this forces a new resource to be created.
    Tags map[string]string
    A mapping of tags to assign to the resource.
    Trace SpringCloudServiceTraceArgs
    A trace block as defined below.
    ZoneRedundant bool
    Whether zone redundancy is enabled for this Spring Cloud Service. Defaults to false.
    buildAgentPoolSize String
    Specifies the size for this Spring Cloud Service's default build agent pool. Possible values are S1, S2, S3, S4 and S5. This field is applicable only for Spring Cloud Service with enterprise tier.
    configServerGitSetting SpringCloudServiceConfigServerGitSetting
    A config_server_git_setting block as defined below. This field is applicable only for Spring Cloud Service with basic and standard tier.
    containerRegistries List<SpringCloudServiceContainerRegistry>
    One or more container_registry block as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
    defaultBuildService SpringCloudServiceDefaultBuildService
    A default_build_service block as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
    location String
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    logStreamPublicEndpointEnabled Boolean
    Should the log stream in vnet injection instance could be accessed from Internet?
    managedEnvironmentId String
    The resource Id of the Managed Environment that the Spring Apps instance builds on. Can only be specified when sku_tier is set to StandardGen2.
    marketplace SpringCloudServiceMarketplace
    A marketplace block as defined below. Can only be specified when sku is set to E0.
    name String
    Specifies the name of the Spring Cloud Service resource. Changing this forces a new resource to be created.
    network SpringCloudServiceNetwork
    A network block as defined below. Changing this forces a new resource to be created.
    outboundPublicIpAddresses List<String>
    A list of the outbound Public IP Addresses used by this Spring Cloud Service.
    requiredNetworkTrafficRules List<SpringCloudServiceRequiredNetworkTrafficRule>
    A list of required_network_traffic_rules blocks as defined below.
    resourceGroupName String
    Specifies The name of the resource group in which to create the Spring Cloud Service. Changing this forces a new resource to be created.
    serviceRegistryEnabled Boolean
    Whether enable the default Service Registry. This field is applicable only for Spring Cloud Service with enterprise tier.
    serviceRegistryId String
    The ID of the Spring Cloud Service Registry.
    skuName String
    Specifies the SKU Name for this Spring Cloud Service. Possible values are B0, S0 and E0. Defaults to S0. Changing this forces a new resource to be created.
    skuTier String
    Specifies the SKU Tier for this Spring Cloud Service. Possible values are Basic, Enterprise, Standard and StandardGen2. The attribute is automatically computed from API response except when managed_environment_id is defined. Changing this forces a new resource to be created.
    tags Map<String,String>
    A mapping of tags to assign to the resource.
    trace SpringCloudServiceTrace
    A trace block as defined below.
    zoneRedundant Boolean
    Whether zone redundancy is enabled for this Spring Cloud Service. Defaults to false.
    buildAgentPoolSize string
    Specifies the size for this Spring Cloud Service's default build agent pool. Possible values are S1, S2, S3, S4 and S5. This field is applicable only for Spring Cloud Service with enterprise tier.
    configServerGitSetting SpringCloudServiceConfigServerGitSetting
    A config_server_git_setting block as defined below. This field is applicable only for Spring Cloud Service with basic and standard tier.
    containerRegistries SpringCloudServiceContainerRegistry[]
    One or more container_registry block as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
    defaultBuildService SpringCloudServiceDefaultBuildService
    A default_build_service block as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
    location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    logStreamPublicEndpointEnabled boolean
    Should the log stream in vnet injection instance could be accessed from Internet?
    managedEnvironmentId string
    The resource Id of the Managed Environment that the Spring Apps instance builds on. Can only be specified when sku_tier is set to StandardGen2.
    marketplace SpringCloudServiceMarketplace
    A marketplace block as defined below. Can only be specified when sku is set to E0.
    name string
    Specifies the name of the Spring Cloud Service resource. Changing this forces a new resource to be created.
    network SpringCloudServiceNetwork
    A network block as defined below. Changing this forces a new resource to be created.
    outboundPublicIpAddresses string[]
    A list of the outbound Public IP Addresses used by this Spring Cloud Service.
    requiredNetworkTrafficRules SpringCloudServiceRequiredNetworkTrafficRule[]
    A list of required_network_traffic_rules blocks as defined below.
    resourceGroupName string
    Specifies The name of the resource group in which to create the Spring Cloud Service. Changing this forces a new resource to be created.
    serviceRegistryEnabled boolean
    Whether enable the default Service Registry. This field is applicable only for Spring Cloud Service with enterprise tier.
    serviceRegistryId string
    The ID of the Spring Cloud Service Registry.
    skuName string
    Specifies the SKU Name for this Spring Cloud Service. Possible values are B0, S0 and E0. Defaults to S0. Changing this forces a new resource to be created.
    skuTier string
    Specifies the SKU Tier for this Spring Cloud Service. Possible values are Basic, Enterprise, Standard and StandardGen2. The attribute is automatically computed from API response except when managed_environment_id is defined. Changing this forces a new resource to be created.
    tags {[key: string]: string}
    A mapping of tags to assign to the resource.
    trace SpringCloudServiceTrace
    A trace block as defined below.
    zoneRedundant boolean
    Whether zone redundancy is enabled for this Spring Cloud Service. Defaults to false.
    build_agent_pool_size str
    Specifies the size for this Spring Cloud Service's default build agent pool. Possible values are S1, S2, S3, S4 and S5. This field is applicable only for Spring Cloud Service with enterprise tier.
    config_server_git_setting SpringCloudServiceConfigServerGitSettingArgs
    A config_server_git_setting block as defined below. This field is applicable only for Spring Cloud Service with basic and standard tier.
    container_registries Sequence[SpringCloudServiceContainerRegistryArgs]
    One or more container_registry block as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
    default_build_service SpringCloudServiceDefaultBuildServiceArgs
    A default_build_service block as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
    location str
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    log_stream_public_endpoint_enabled bool
    Should the log stream in vnet injection instance could be accessed from Internet?
    managed_environment_id str
    The resource Id of the Managed Environment that the Spring Apps instance builds on. Can only be specified when sku_tier is set to StandardGen2.
    marketplace SpringCloudServiceMarketplaceArgs
    A marketplace block as defined below. Can only be specified when sku is set to E0.
    name str
    Specifies the name of the Spring Cloud Service resource. Changing this forces a new resource to be created.
    network SpringCloudServiceNetworkArgs
    A network block as defined below. Changing this forces a new resource to be created.
    outbound_public_ip_addresses Sequence[str]
    A list of the outbound Public IP Addresses used by this Spring Cloud Service.
    required_network_traffic_rules Sequence[SpringCloudServiceRequiredNetworkTrafficRuleArgs]
    A list of required_network_traffic_rules blocks as defined below.
    resource_group_name str
    Specifies The name of the resource group in which to create the Spring Cloud Service. Changing this forces a new resource to be created.
    service_registry_enabled bool
    Whether enable the default Service Registry. This field is applicable only for Spring Cloud Service with enterprise tier.
    service_registry_id str
    The ID of the Spring Cloud Service Registry.
    sku_name str
    Specifies the SKU Name for this Spring Cloud Service. Possible values are B0, S0 and E0. Defaults to S0. Changing this forces a new resource to be created.
    sku_tier str
    Specifies the SKU Tier for this Spring Cloud Service. Possible values are Basic, Enterprise, Standard and StandardGen2. The attribute is automatically computed from API response except when managed_environment_id is defined. Changing this forces a new resource to be created.
    tags Mapping[str, str]
    A mapping of tags to assign to the resource.
    trace SpringCloudServiceTraceArgs
    A trace block as defined below.
    zone_redundant bool
    Whether zone redundancy is enabled for this Spring Cloud Service. Defaults to false.
    buildAgentPoolSize String
    Specifies the size for this Spring Cloud Service's default build agent pool. Possible values are S1, S2, S3, S4 and S5. This field is applicable only for Spring Cloud Service with enterprise tier.
    configServerGitSetting Property Map
    A config_server_git_setting block as defined below. This field is applicable only for Spring Cloud Service with basic and standard tier.
    containerRegistries List<Property Map>
    One or more container_registry block as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
    defaultBuildService Property Map
    A default_build_service block as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
    location String
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    logStreamPublicEndpointEnabled Boolean
    Should the log stream in vnet injection instance could be accessed from Internet?
    managedEnvironmentId String
    The resource Id of the Managed Environment that the Spring Apps instance builds on. Can only be specified when sku_tier is set to StandardGen2.
    marketplace Property Map
    A marketplace block as defined below. Can only be specified when sku is set to E0.
    name String
    Specifies the name of the Spring Cloud Service resource. Changing this forces a new resource to be created.
    network Property Map
    A network block as defined below. Changing this forces a new resource to be created.
    outboundPublicIpAddresses List<String>
    A list of the outbound Public IP Addresses used by this Spring Cloud Service.
    requiredNetworkTrafficRules List<Property Map>
    A list of required_network_traffic_rules blocks as defined below.
    resourceGroupName String
    Specifies The name of the resource group in which to create the Spring Cloud Service. Changing this forces a new resource to be created.
    serviceRegistryEnabled Boolean
    Whether enable the default Service Registry. This field is applicable only for Spring Cloud Service with enterprise tier.
    serviceRegistryId String
    The ID of the Spring Cloud Service Registry.
    skuName String
    Specifies the SKU Name for this Spring Cloud Service. Possible values are B0, S0 and E0. Defaults to S0. Changing this forces a new resource to be created.
    skuTier String
    Specifies the SKU Tier for this Spring Cloud Service. Possible values are Basic, Enterprise, Standard and StandardGen2. The attribute is automatically computed from API response except when managed_environment_id is defined. Changing this forces a new resource to be created.
    tags Map<String>
    A mapping of tags to assign to the resource.
    trace Property Map
    A trace block as defined below.
    zoneRedundant Boolean
    Whether zone redundancy is enabled for this Spring Cloud Service. Defaults to false.

    Supporting Types

    SpringCloudServiceConfigServerGitSetting, SpringCloudServiceConfigServerGitSettingArgs

    Uri string
    The URI of the default Git repository used as the Config Server back end, should be started with http://, https://, git@, or ssh://.
    HttpBasicAuth SpringCloudServiceConfigServerGitSettingHttpBasicAuth
    A http_basic_auth block as defined below.
    Label string
    The default label of the Git repository, should be the branch name, tag name, or commit-id of the repository.
    Repositories List<SpringCloudServiceConfigServerGitSettingRepository>
    One or more repository blocks as defined below.
    SearchPaths List<string>
    An array of strings used to search subdirectories of the Git repository.
    SshAuth SpringCloudServiceConfigServerGitSettingSshAuth
    A ssh_auth block as defined below.
    Uri string
    The URI of the default Git repository used as the Config Server back end, should be started with http://, https://, git@, or ssh://.
    HttpBasicAuth SpringCloudServiceConfigServerGitSettingHttpBasicAuth
    A http_basic_auth block as defined below.
    Label string
    The default label of the Git repository, should be the branch name, tag name, or commit-id of the repository.
    Repositories []SpringCloudServiceConfigServerGitSettingRepository
    One or more repository blocks as defined below.
    SearchPaths []string
    An array of strings used to search subdirectories of the Git repository.
    SshAuth SpringCloudServiceConfigServerGitSettingSshAuth
    A ssh_auth block as defined below.
    uri String
    The URI of the default Git repository used as the Config Server back end, should be started with http://, https://, git@, or ssh://.
    httpBasicAuth SpringCloudServiceConfigServerGitSettingHttpBasicAuth
    A http_basic_auth block as defined below.
    label String
    The default label of the Git repository, should be the branch name, tag name, or commit-id of the repository.
    repositories List<SpringCloudServiceConfigServerGitSettingRepository>
    One or more repository blocks as defined below.
    searchPaths List<String>
    An array of strings used to search subdirectories of the Git repository.
    sshAuth SpringCloudServiceConfigServerGitSettingSshAuth
    A ssh_auth block as defined below.
    uri string
    The URI of the default Git repository used as the Config Server back end, should be started with http://, https://, git@, or ssh://.
    httpBasicAuth SpringCloudServiceConfigServerGitSettingHttpBasicAuth
    A http_basic_auth block as defined below.
    label string
    The default label of the Git repository, should be the branch name, tag name, or commit-id of the repository.
    repositories SpringCloudServiceConfigServerGitSettingRepository[]
    One or more repository blocks as defined below.
    searchPaths string[]
    An array of strings used to search subdirectories of the Git repository.
    sshAuth SpringCloudServiceConfigServerGitSettingSshAuth
    A ssh_auth block as defined below.
    uri str
    The URI of the default Git repository used as the Config Server back end, should be started with http://, https://, git@, or ssh://.
    http_basic_auth SpringCloudServiceConfigServerGitSettingHttpBasicAuth
    A http_basic_auth block as defined below.
    label str
    The default label of the Git repository, should be the branch name, tag name, or commit-id of the repository.
    repositories Sequence[SpringCloudServiceConfigServerGitSettingRepository]
    One or more repository blocks as defined below.
    search_paths Sequence[str]
    An array of strings used to search subdirectories of the Git repository.
    ssh_auth SpringCloudServiceConfigServerGitSettingSshAuth
    A ssh_auth block as defined below.
    uri String
    The URI of the default Git repository used as the Config Server back end, should be started with http://, https://, git@, or ssh://.
    httpBasicAuth Property Map
    A http_basic_auth block as defined below.
    label String
    The default label of the Git repository, should be the branch name, tag name, or commit-id of the repository.
    repositories List<Property Map>
    One or more repository blocks as defined below.
    searchPaths List<String>
    An array of strings used to search subdirectories of the Git repository.
    sshAuth Property Map
    A ssh_auth block as defined below.

    SpringCloudServiceConfigServerGitSettingHttpBasicAuth, SpringCloudServiceConfigServerGitSettingHttpBasicAuthArgs

    Password string
    The password used to access the Git repository server, required when the Git repository server supports HTTP Basic Authentication.
    Username string
    The username that's used to access the Git repository server, required when the Git repository server supports HTTP Basic Authentication.
    Password string
    The password used to access the Git repository server, required when the Git repository server supports HTTP Basic Authentication.
    Username string
    The username that's used to access the Git repository server, required when the Git repository server supports HTTP Basic Authentication.
    password String
    The password used to access the Git repository server, required when the Git repository server supports HTTP Basic Authentication.
    username String
    The username that's used to access the Git repository server, required when the Git repository server supports HTTP Basic Authentication.
    password string
    The password used to access the Git repository server, required when the Git repository server supports HTTP Basic Authentication.
    username string
    The username that's used to access the Git repository server, required when the Git repository server supports HTTP Basic Authentication.
    password str
    The password used to access the Git repository server, required when the Git repository server supports HTTP Basic Authentication.
    username str
    The username that's used to access the Git repository server, required when the Git repository server supports HTTP Basic Authentication.
    password String
    The password used to access the Git repository server, required when the Git repository server supports HTTP Basic Authentication.
    username String
    The username that's used to access the Git repository server, required when the Git repository server supports HTTP Basic Authentication.

    SpringCloudServiceConfigServerGitSettingRepository, SpringCloudServiceConfigServerGitSettingRepositoryArgs

    Name string
    A name to identify on the Git repository, required only if repos exists.
    Uri string
    The URI of the Git repository that's used as the Config Server back end should be started with http://, https://, git@, or ssh://.
    HttpBasicAuth SpringCloudServiceConfigServerGitSettingRepositoryHttpBasicAuth
    A http_basic_auth block as defined below.
    Label string
    The default label of the Git repository, should be the branch name, tag name, or commit-id of the repository.
    Patterns List<string>
    An array of strings used to match an application name. For each pattern, use the {application}/{profile} format with wildcards.
    SearchPaths List<string>
    An array of strings used to search subdirectories of the Git repository.
    SshAuth SpringCloudServiceConfigServerGitSettingRepositorySshAuth
    A ssh_auth block as defined below.
    Name string
    A name to identify on the Git repository, required only if repos exists.
    Uri string
    The URI of the Git repository that's used as the Config Server back end should be started with http://, https://, git@, or ssh://.
    HttpBasicAuth SpringCloudServiceConfigServerGitSettingRepositoryHttpBasicAuth
    A http_basic_auth block as defined below.
    Label string
    The default label of the Git repository, should be the branch name, tag name, or commit-id of the repository.
    Patterns []string
    An array of strings used to match an application name. For each pattern, use the {application}/{profile} format with wildcards.
    SearchPaths []string
    An array of strings used to search subdirectories of the Git repository.
    SshAuth SpringCloudServiceConfigServerGitSettingRepositorySshAuth
    A ssh_auth block as defined below.
    name String
    A name to identify on the Git repository, required only if repos exists.
    uri String
    The URI of the Git repository that's used as the Config Server back end should be started with http://, https://, git@, or ssh://.
    httpBasicAuth SpringCloudServiceConfigServerGitSettingRepositoryHttpBasicAuth
    A http_basic_auth block as defined below.
    label String
    The default label of the Git repository, should be the branch name, tag name, or commit-id of the repository.
    patterns List<String>
    An array of strings used to match an application name. For each pattern, use the {application}/{profile} format with wildcards.
    searchPaths List<String>
    An array of strings used to search subdirectories of the Git repository.
    sshAuth SpringCloudServiceConfigServerGitSettingRepositorySshAuth
    A ssh_auth block as defined below.
    name string
    A name to identify on the Git repository, required only if repos exists.
    uri string
    The URI of the Git repository that's used as the Config Server back end should be started with http://, https://, git@, or ssh://.
    httpBasicAuth SpringCloudServiceConfigServerGitSettingRepositoryHttpBasicAuth
    A http_basic_auth block as defined below.
    label string
    The default label of the Git repository, should be the branch name, tag name, or commit-id of the repository.
    patterns string[]
    An array of strings used to match an application name. For each pattern, use the {application}/{profile} format with wildcards.
    searchPaths string[]
    An array of strings used to search subdirectories of the Git repository.
    sshAuth SpringCloudServiceConfigServerGitSettingRepositorySshAuth
    A ssh_auth block as defined below.
    name str
    A name to identify on the Git repository, required only if repos exists.
    uri str
    The URI of the Git repository that's used as the Config Server back end should be started with http://, https://, git@, or ssh://.
    http_basic_auth SpringCloudServiceConfigServerGitSettingRepositoryHttpBasicAuth
    A http_basic_auth block as defined below.
    label str
    The default label of the Git repository, should be the branch name, tag name, or commit-id of the repository.
    patterns Sequence[str]
    An array of strings used to match an application name. For each pattern, use the {application}/{profile} format with wildcards.
    search_paths Sequence[str]
    An array of strings used to search subdirectories of the Git repository.
    ssh_auth SpringCloudServiceConfigServerGitSettingRepositorySshAuth
    A ssh_auth block as defined below.
    name String
    A name to identify on the Git repository, required only if repos exists.
    uri String
    The URI of the Git repository that's used as the Config Server back end should be started with http://, https://, git@, or ssh://.
    httpBasicAuth Property Map
    A http_basic_auth block as defined below.
    label String
    The default label of the Git repository, should be the branch name, tag name, or commit-id of the repository.
    patterns List<String>
    An array of strings used to match an application name. For each pattern, use the {application}/{profile} format with wildcards.
    searchPaths List<String>
    An array of strings used to search subdirectories of the Git repository.
    sshAuth Property Map
    A ssh_auth block as defined below.

    SpringCloudServiceConfigServerGitSettingRepositoryHttpBasicAuth, SpringCloudServiceConfigServerGitSettingRepositoryHttpBasicAuthArgs

    Password string
    The password used to access the Git repository server, required when the Git repository server supports HTTP Basic Authentication.
    Username string
    The username that's used to access the Git repository server, required when the Git repository server supports HTTP Basic Authentication.
    Password string
    The password used to access the Git repository server, required when the Git repository server supports HTTP Basic Authentication.
    Username string
    The username that's used to access the Git repository server, required when the Git repository server supports HTTP Basic Authentication.
    password String
    The password used to access the Git repository server, required when the Git repository server supports HTTP Basic Authentication.
    username String
    The username that's used to access the Git repository server, required when the Git repository server supports HTTP Basic Authentication.
    password string
    The password used to access the Git repository server, required when the Git repository server supports HTTP Basic Authentication.
    username string
    The username that's used to access the Git repository server, required when the Git repository server supports HTTP Basic Authentication.
    password str
    The password used to access the Git repository server, required when the Git repository server supports HTTP Basic Authentication.
    username str
    The username that's used to access the Git repository server, required when the Git repository server supports HTTP Basic Authentication.
    password String
    The password used to access the Git repository server, required when the Git repository server supports HTTP Basic Authentication.
    username String
    The username that's used to access the Git repository server, required when the Git repository server supports HTTP Basic Authentication.

    SpringCloudServiceConfigServerGitSettingRepositorySshAuth, SpringCloudServiceConfigServerGitSettingRepositorySshAuthArgs

    PrivateKey string
    The SSH private key to access the Git repository, required when the URI starts with git@ or ssh://.
    HostKey string
    The host key of the Git repository server, should not include the algorithm prefix as covered by host-key-algorithm.
    HostKeyAlgorithm string
    The host key algorithm, should be ssh-dss, ssh-rsa, ecdsa-sha2-nistp256, ecdsa-sha2-nistp384, or ecdsa-sha2-nistp521. Required only if host-key exists.
    StrictHostKeyCheckingEnabled bool
    Indicates whether the Config Server instance will fail to start if the host_key does not match. Defaults to true.
    PrivateKey string
    The SSH private key to access the Git repository, required when the URI starts with git@ or ssh://.
    HostKey string
    The host key of the Git repository server, should not include the algorithm prefix as covered by host-key-algorithm.
    HostKeyAlgorithm string
    The host key algorithm, should be ssh-dss, ssh-rsa, ecdsa-sha2-nistp256, ecdsa-sha2-nistp384, or ecdsa-sha2-nistp521. Required only if host-key exists.
    StrictHostKeyCheckingEnabled bool
    Indicates whether the Config Server instance will fail to start if the host_key does not match. Defaults to true.
    privateKey String
    The SSH private key to access the Git repository, required when the URI starts with git@ or ssh://.
    hostKey String
    The host key of the Git repository server, should not include the algorithm prefix as covered by host-key-algorithm.
    hostKeyAlgorithm String
    The host key algorithm, should be ssh-dss, ssh-rsa, ecdsa-sha2-nistp256, ecdsa-sha2-nistp384, or ecdsa-sha2-nistp521. Required only if host-key exists.
    strictHostKeyCheckingEnabled Boolean
    Indicates whether the Config Server instance will fail to start if the host_key does not match. Defaults to true.
    privateKey string
    The SSH private key to access the Git repository, required when the URI starts with git@ or ssh://.
    hostKey string
    The host key of the Git repository server, should not include the algorithm prefix as covered by host-key-algorithm.
    hostKeyAlgorithm string
    The host key algorithm, should be ssh-dss, ssh-rsa, ecdsa-sha2-nistp256, ecdsa-sha2-nistp384, or ecdsa-sha2-nistp521. Required only if host-key exists.
    strictHostKeyCheckingEnabled boolean
    Indicates whether the Config Server instance will fail to start if the host_key does not match. Defaults to true.
    private_key str
    The SSH private key to access the Git repository, required when the URI starts with git@ or ssh://.
    host_key str
    The host key of the Git repository server, should not include the algorithm prefix as covered by host-key-algorithm.
    host_key_algorithm str
    The host key algorithm, should be ssh-dss, ssh-rsa, ecdsa-sha2-nistp256, ecdsa-sha2-nistp384, or ecdsa-sha2-nistp521. Required only if host-key exists.
    strict_host_key_checking_enabled bool
    Indicates whether the Config Server instance will fail to start if the host_key does not match. Defaults to true.
    privateKey String
    The SSH private key to access the Git repository, required when the URI starts with git@ or ssh://.
    hostKey String
    The host key of the Git repository server, should not include the algorithm prefix as covered by host-key-algorithm.
    hostKeyAlgorithm String
    The host key algorithm, should be ssh-dss, ssh-rsa, ecdsa-sha2-nistp256, ecdsa-sha2-nistp384, or ecdsa-sha2-nistp521. Required only if host-key exists.
    strictHostKeyCheckingEnabled Boolean
    Indicates whether the Config Server instance will fail to start if the host_key does not match. Defaults to true.

    SpringCloudServiceConfigServerGitSettingSshAuth, SpringCloudServiceConfigServerGitSettingSshAuthArgs

    PrivateKey string
    The SSH private key to access the Git repository, required when the URI starts with git@ or ssh://.
    HostKey string
    The host key of the Git repository server, should not include the algorithm prefix as covered by host-key-algorithm.
    HostKeyAlgorithm string
    The host key algorithm, should be ssh-dss, ssh-rsa, ecdsa-sha2-nistp256, ecdsa-sha2-nistp384, or ecdsa-sha2-nistp521. Required only if host-key exists.
    StrictHostKeyCheckingEnabled bool
    Indicates whether the Config Server instance will fail to start if the host_key does not match. Defaults to true.
    PrivateKey string
    The SSH private key to access the Git repository, required when the URI starts with git@ or ssh://.
    HostKey string
    The host key of the Git repository server, should not include the algorithm prefix as covered by host-key-algorithm.
    HostKeyAlgorithm string
    The host key algorithm, should be ssh-dss, ssh-rsa, ecdsa-sha2-nistp256, ecdsa-sha2-nistp384, or ecdsa-sha2-nistp521. Required only if host-key exists.
    StrictHostKeyCheckingEnabled bool
    Indicates whether the Config Server instance will fail to start if the host_key does not match. Defaults to true.
    privateKey String
    The SSH private key to access the Git repository, required when the URI starts with git@ or ssh://.
    hostKey String
    The host key of the Git repository server, should not include the algorithm prefix as covered by host-key-algorithm.
    hostKeyAlgorithm String
    The host key algorithm, should be ssh-dss, ssh-rsa, ecdsa-sha2-nistp256, ecdsa-sha2-nistp384, or ecdsa-sha2-nistp521. Required only if host-key exists.
    strictHostKeyCheckingEnabled Boolean
    Indicates whether the Config Server instance will fail to start if the host_key does not match. Defaults to true.
    privateKey string
    The SSH private key to access the Git repository, required when the URI starts with git@ or ssh://.
    hostKey string
    The host key of the Git repository server, should not include the algorithm prefix as covered by host-key-algorithm.
    hostKeyAlgorithm string
    The host key algorithm, should be ssh-dss, ssh-rsa, ecdsa-sha2-nistp256, ecdsa-sha2-nistp384, or ecdsa-sha2-nistp521. Required only if host-key exists.
    strictHostKeyCheckingEnabled boolean
    Indicates whether the Config Server instance will fail to start if the host_key does not match. Defaults to true.
    private_key str
    The SSH private key to access the Git repository, required when the URI starts with git@ or ssh://.
    host_key str
    The host key of the Git repository server, should not include the algorithm prefix as covered by host-key-algorithm.
    host_key_algorithm str
    The host key algorithm, should be ssh-dss, ssh-rsa, ecdsa-sha2-nistp256, ecdsa-sha2-nistp384, or ecdsa-sha2-nistp521. Required only if host-key exists.
    strict_host_key_checking_enabled bool
    Indicates whether the Config Server instance will fail to start if the host_key does not match. Defaults to true.
    privateKey String
    The SSH private key to access the Git repository, required when the URI starts with git@ or ssh://.
    hostKey String
    The host key of the Git repository server, should not include the algorithm prefix as covered by host-key-algorithm.
    hostKeyAlgorithm String
    The host key algorithm, should be ssh-dss, ssh-rsa, ecdsa-sha2-nistp256, ecdsa-sha2-nistp384, or ecdsa-sha2-nistp521. Required only if host-key exists.
    strictHostKeyCheckingEnabled Boolean
    Indicates whether the Config Server instance will fail to start if the host_key does not match. Defaults to true.

    SpringCloudServiceContainerRegistry, SpringCloudServiceContainerRegistryArgs

    Name string
    Specifies the name of the container registry.
    Password string
    Specifies the password of the container registry.
    Server string
    Specifies the login server of the container registry.
    Username string
    Specifies the username of the container registry.
    Name string
    Specifies the name of the container registry.
    Password string
    Specifies the password of the container registry.
    Server string
    Specifies the login server of the container registry.
    Username string
    Specifies the username of the container registry.
    name String
    Specifies the name of the container registry.
    password String
    Specifies the password of the container registry.
    server String
    Specifies the login server of the container registry.
    username String
    Specifies the username of the container registry.
    name string
    Specifies the name of the container registry.
    password string
    Specifies the password of the container registry.
    server string
    Specifies the login server of the container registry.
    username string
    Specifies the username of the container registry.
    name str
    Specifies the name of the container registry.
    password str
    Specifies the password of the container registry.
    server str
    Specifies the login server of the container registry.
    username str
    Specifies the username of the container registry.
    name String
    Specifies the name of the container registry.
    password String
    Specifies the password of the container registry.
    server String
    Specifies the login server of the container registry.
    username String
    Specifies the username of the container registry.

    SpringCloudServiceDefaultBuildService, SpringCloudServiceDefaultBuildServiceArgs

    ContainerRegistryName string
    Specifies the name of the container registry used in the default build service.
    ContainerRegistryName string
    Specifies the name of the container registry used in the default build service.
    containerRegistryName String
    Specifies the name of the container registry used in the default build service.
    containerRegistryName string
    Specifies the name of the container registry used in the default build service.
    container_registry_name str
    Specifies the name of the container registry used in the default build service.
    containerRegistryName String
    Specifies the name of the container registry used in the default build service.

    SpringCloudServiceMarketplace, SpringCloudServiceMarketplaceArgs

    Plan string
    Specifies the plan ID of the 3rd Party Artifact that is being procured.
    Product string
    Specifies the 3rd Party artifact that is being procured.
    Publisher string
    Specifies the publisher ID of the 3rd Party Artifact that is being procured.
    Plan string
    Specifies the plan ID of the 3rd Party Artifact that is being procured.
    Product string
    Specifies the 3rd Party artifact that is being procured.
    Publisher string
    Specifies the publisher ID of the 3rd Party Artifact that is being procured.
    plan String
    Specifies the plan ID of the 3rd Party Artifact that is being procured.
    product String
    Specifies the 3rd Party artifact that is being procured.
    publisher String
    Specifies the publisher ID of the 3rd Party Artifact that is being procured.
    plan string
    Specifies the plan ID of the 3rd Party Artifact that is being procured.
    product string
    Specifies the 3rd Party artifact that is being procured.
    publisher string
    Specifies the publisher ID of the 3rd Party Artifact that is being procured.
    plan str
    Specifies the plan ID of the 3rd Party Artifact that is being procured.
    product str
    Specifies the 3rd Party artifact that is being procured.
    publisher str
    Specifies the publisher ID of the 3rd Party Artifact that is being procured.
    plan String
    Specifies the plan ID of the 3rd Party Artifact that is being procured.
    product String
    Specifies the 3rd Party artifact that is being procured.
    publisher String
    Specifies the publisher ID of the 3rd Party Artifact that is being procured.

    SpringCloudServiceNetwork, SpringCloudServiceNetworkArgs

    AppSubnetId string
    Specifies the ID of the Subnet which should host the Spring Boot Applications deployed in this Spring Cloud Service. Changing this forces a new resource to be created.
    CidrRanges List<string>
    A list of (at least 3) CIDR ranges (at least /16) which are used to host the Spring Cloud infrastructure, which must not overlap with any existing CIDR ranges in the Subnet. Changing this forces a new resource to be created.
    ServiceRuntimeSubnetId string
    Specifies the ID of the Subnet where the Service Runtime components of the Spring Cloud Service will exist. Changing this forces a new resource to be created.
    AppNetworkResourceGroup string
    Specifies the Name of the resource group containing network resources of Azure Spring Cloud Apps. Changing this forces a new resource to be created.
    OutboundType string
    Specifies the egress traffic type of the Spring Cloud Service. Possible values are loadBalancer and userDefinedRouting. Defaults to loadBalancer. Changing this forces a new resource to be created.
    ReadTimeoutSeconds int
    Ingress read time out in seconds.
    ServiceRuntimeNetworkResourceGroup string
    Specifies the Name of the resource group containing network resources of Azure Spring Cloud Service Runtime. Changing this forces a new resource to be created.
    AppSubnetId string
    Specifies the ID of the Subnet which should host the Spring Boot Applications deployed in this Spring Cloud Service. Changing this forces a new resource to be created.
    CidrRanges []string
    A list of (at least 3) CIDR ranges (at least /16) which are used to host the Spring Cloud infrastructure, which must not overlap with any existing CIDR ranges in the Subnet. Changing this forces a new resource to be created.
    ServiceRuntimeSubnetId string
    Specifies the ID of the Subnet where the Service Runtime components of the Spring Cloud Service will exist. Changing this forces a new resource to be created.
    AppNetworkResourceGroup string
    Specifies the Name of the resource group containing network resources of Azure Spring Cloud Apps. Changing this forces a new resource to be created.
    OutboundType string
    Specifies the egress traffic type of the Spring Cloud Service. Possible values are loadBalancer and userDefinedRouting. Defaults to loadBalancer. Changing this forces a new resource to be created.
    ReadTimeoutSeconds int
    Ingress read time out in seconds.
    ServiceRuntimeNetworkResourceGroup string
    Specifies the Name of the resource group containing network resources of Azure Spring Cloud Service Runtime. Changing this forces a new resource to be created.
    appSubnetId String
    Specifies the ID of the Subnet which should host the Spring Boot Applications deployed in this Spring Cloud Service. Changing this forces a new resource to be created.
    cidrRanges List<String>
    A list of (at least 3) CIDR ranges (at least /16) which are used to host the Spring Cloud infrastructure, which must not overlap with any existing CIDR ranges in the Subnet. Changing this forces a new resource to be created.
    serviceRuntimeSubnetId String
    Specifies the ID of the Subnet where the Service Runtime components of the Spring Cloud Service will exist. Changing this forces a new resource to be created.
    appNetworkResourceGroup String
    Specifies the Name of the resource group containing network resources of Azure Spring Cloud Apps. Changing this forces a new resource to be created.
    outboundType String
    Specifies the egress traffic type of the Spring Cloud Service. Possible values are loadBalancer and userDefinedRouting. Defaults to loadBalancer. Changing this forces a new resource to be created.
    readTimeoutSeconds Integer
    Ingress read time out in seconds.
    serviceRuntimeNetworkResourceGroup String
    Specifies the Name of the resource group containing network resources of Azure Spring Cloud Service Runtime. Changing this forces a new resource to be created.
    appSubnetId string
    Specifies the ID of the Subnet which should host the Spring Boot Applications deployed in this Spring Cloud Service. Changing this forces a new resource to be created.
    cidrRanges string[]
    A list of (at least 3) CIDR ranges (at least /16) which are used to host the Spring Cloud infrastructure, which must not overlap with any existing CIDR ranges in the Subnet. Changing this forces a new resource to be created.
    serviceRuntimeSubnetId string
    Specifies the ID of the Subnet where the Service Runtime components of the Spring Cloud Service will exist. Changing this forces a new resource to be created.
    appNetworkResourceGroup string
    Specifies the Name of the resource group containing network resources of Azure Spring Cloud Apps. Changing this forces a new resource to be created.
    outboundType string
    Specifies the egress traffic type of the Spring Cloud Service. Possible values are loadBalancer and userDefinedRouting. Defaults to loadBalancer. Changing this forces a new resource to be created.
    readTimeoutSeconds number
    Ingress read time out in seconds.
    serviceRuntimeNetworkResourceGroup string
    Specifies the Name of the resource group containing network resources of Azure Spring Cloud Service Runtime. Changing this forces a new resource to be created.
    app_subnet_id str
    Specifies the ID of the Subnet which should host the Spring Boot Applications deployed in this Spring Cloud Service. Changing this forces a new resource to be created.
    cidr_ranges Sequence[str]
    A list of (at least 3) CIDR ranges (at least /16) which are used to host the Spring Cloud infrastructure, which must not overlap with any existing CIDR ranges in the Subnet. Changing this forces a new resource to be created.
    service_runtime_subnet_id str
    Specifies the ID of the Subnet where the Service Runtime components of the Spring Cloud Service will exist. Changing this forces a new resource to be created.
    app_network_resource_group str
    Specifies the Name of the resource group containing network resources of Azure Spring Cloud Apps. Changing this forces a new resource to be created.
    outbound_type str
    Specifies the egress traffic type of the Spring Cloud Service. Possible values are loadBalancer and userDefinedRouting. Defaults to loadBalancer. Changing this forces a new resource to be created.
    read_timeout_seconds int
    Ingress read time out in seconds.
    service_runtime_network_resource_group str
    Specifies the Name of the resource group containing network resources of Azure Spring Cloud Service Runtime. Changing this forces a new resource to be created.
    appSubnetId String
    Specifies the ID of the Subnet which should host the Spring Boot Applications deployed in this Spring Cloud Service. Changing this forces a new resource to be created.
    cidrRanges List<String>
    A list of (at least 3) CIDR ranges (at least /16) which are used to host the Spring Cloud infrastructure, which must not overlap with any existing CIDR ranges in the Subnet. Changing this forces a new resource to be created.
    serviceRuntimeSubnetId String
    Specifies the ID of the Subnet where the Service Runtime components of the Spring Cloud Service will exist. Changing this forces a new resource to be created.
    appNetworkResourceGroup String
    Specifies the Name of the resource group containing network resources of Azure Spring Cloud Apps. Changing this forces a new resource to be created.
    outboundType String
    Specifies the egress traffic type of the Spring Cloud Service. Possible values are loadBalancer and userDefinedRouting. Defaults to loadBalancer. Changing this forces a new resource to be created.
    readTimeoutSeconds Number
    Ingress read time out in seconds.
    serviceRuntimeNetworkResourceGroup String
    Specifies the Name of the resource group containing network resources of Azure Spring Cloud Service Runtime. Changing this forces a new resource to be created.

    SpringCloudServiceRequiredNetworkTrafficRule, SpringCloudServiceRequiredNetworkTrafficRuleArgs

    Direction string
    The direction of required traffic. Possible values are Inbound, Outbound.
    Fqdns List<string>
    The FQDN list of required traffic.
    IpAddresses List<string>
    The IP list of required traffic.
    Port int
    The port of required traffic.
    Protocol string
    The protocol of required traffic.
    Direction string
    The direction of required traffic. Possible values are Inbound, Outbound.
    Fqdns []string
    The FQDN list of required traffic.
    IpAddresses []string
    The IP list of required traffic.
    Port int
    The port of required traffic.
    Protocol string
    The protocol of required traffic.
    direction String
    The direction of required traffic. Possible values are Inbound, Outbound.
    fqdns List<String>
    The FQDN list of required traffic.
    ipAddresses List<String>
    The IP list of required traffic.
    port Integer
    The port of required traffic.
    protocol String
    The protocol of required traffic.
    direction string
    The direction of required traffic. Possible values are Inbound, Outbound.
    fqdns string[]
    The FQDN list of required traffic.
    ipAddresses string[]
    The IP list of required traffic.
    port number
    The port of required traffic.
    protocol string
    The protocol of required traffic.
    direction str
    The direction of required traffic. Possible values are Inbound, Outbound.
    fqdns Sequence[str]
    The FQDN list of required traffic.
    ip_addresses Sequence[str]
    The IP list of required traffic.
    port int
    The port of required traffic.
    protocol str
    The protocol of required traffic.
    direction String
    The direction of required traffic. Possible values are Inbound, Outbound.
    fqdns List<String>
    The FQDN list of required traffic.
    ipAddresses List<String>
    The IP list of required traffic.
    port Number
    The port of required traffic.
    protocol String
    The protocol of required traffic.

    SpringCloudServiceTrace, SpringCloudServiceTraceArgs

    ConnectionString string
    The connection string used for Application Insights.
    SampleRate double
    The sampling rate of Application Insights Agent. Must be between 0.0 and 100.0. Defaults to 10.0.
    ConnectionString string
    The connection string used for Application Insights.
    SampleRate float64
    The sampling rate of Application Insights Agent. Must be between 0.0 and 100.0. Defaults to 10.0.
    connectionString String
    The connection string used for Application Insights.
    sampleRate Double
    The sampling rate of Application Insights Agent. Must be between 0.0 and 100.0. Defaults to 10.0.
    connectionString string
    The connection string used for Application Insights.
    sampleRate number
    The sampling rate of Application Insights Agent. Must be between 0.0 and 100.0. Defaults to 10.0.
    connection_string str
    The connection string used for Application Insights.
    sample_rate float
    The sampling rate of Application Insights Agent. Must be between 0.0 and 100.0. Defaults to 10.0.
    connectionString String
    The connection string used for Application Insights.
    sampleRate Number
    The sampling rate of Application Insights Agent. Must be between 0.0 and 100.0. Defaults to 10.0.

    Import

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

    $ pulumi import azure:appplatform/springCloudService:SpringCloudService example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.AppPlatform/spring/spring1
    

    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.70.0 published on Wednesday, Mar 27, 2024 by Pulumi