We recommend using Azure Native.
azure.appplatform.SpringCloudContainerDeployment
Manages a Spring Cloud Container Deployment.
!> Note: Azure Spring Apps is now deprecated and will be retired on 2028-05-31 - as such the azure.appplatform.SpringCloudContainerDeployment resource is deprecated and will be removed in a future major version of the AzureRM Provider. See https://aka.ms/asaretirement for more information.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const example = new azure.core.ResourceGroup("example", {
    name: "example",
    location: "West Europe",
});
const exampleSpringCloudService = new azure.appplatform.SpringCloudService("example", {
    name: "example",
    location: example.location,
    resourceGroupName: example.name,
    skuName: "E0",
});
const exampleSpringCloudApp = new azure.appplatform.SpringCloudApp("example", {
    name: "example",
    resourceGroupName: exampleSpringCloudService.resourceGroupName,
    serviceName: exampleSpringCloudService.name,
});
const exampleSpringCloudContainerDeployment = new azure.appplatform.SpringCloudContainerDeployment("example", {
    name: "example",
    springCloudAppId: exampleSpringCloudApp.id,
    instanceCount: 2,
    arguments: [
        "-cp",
        "/app/resources:/app/classes:/app/libs/*",
        "hello.Application",
    ],
    commands: ["java"],
    environmentVariables: {
        Foo: "Bar",
        Env: "Staging",
    },
    server: "docker.io",
    image: "springio/gs-spring-boot-docker",
    languageFramework: "springboot",
});
import pulumi
import pulumi_azure as azure
example = azure.core.ResourceGroup("example",
    name="example",
    location="West Europe")
example_spring_cloud_service = azure.appplatform.SpringCloudService("example",
    name="example",
    location=example.location,
    resource_group_name=example.name,
    sku_name="E0")
example_spring_cloud_app = azure.appplatform.SpringCloudApp("example",
    name="example",
    resource_group_name=example_spring_cloud_service.resource_group_name,
    service_name=example_spring_cloud_service.name)
example_spring_cloud_container_deployment = azure.appplatform.SpringCloudContainerDeployment("example",
    name="example",
    spring_cloud_app_id=example_spring_cloud_app.id,
    instance_count=2,
    arguments=[
        "-cp",
        "/app/resources:/app/classes:/app/libs/*",
        "hello.Application",
    ],
    commands=["java"],
    environment_variables={
        "Foo": "Bar",
        "Env": "Staging",
    },
    server="docker.io",
    image="springio/gs-spring-boot-docker",
    language_framework="springboot")
package main
import (
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/appplatform"
	"github.com/pulumi/pulumi-azure/sdk/v6/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"),
			Location: pulumi.String("West Europe"),
		})
		if err != nil {
			return err
		}
		exampleSpringCloudService, err := appplatform.NewSpringCloudService(ctx, "example", &appplatform.SpringCloudServiceArgs{
			Name:              pulumi.String("example"),
			Location:          example.Location,
			ResourceGroupName: example.Name,
			SkuName:           pulumi.String("E0"),
		})
		if err != nil {
			return err
		}
		exampleSpringCloudApp, err := appplatform.NewSpringCloudApp(ctx, "example", &appplatform.SpringCloudAppArgs{
			Name:              pulumi.String("example"),
			ResourceGroupName: exampleSpringCloudService.ResourceGroupName,
			ServiceName:       exampleSpringCloudService.Name,
		})
		if err != nil {
			return err
		}
		_, err = appplatform.NewSpringCloudContainerDeployment(ctx, "example", &appplatform.SpringCloudContainerDeploymentArgs{
			Name:             pulumi.String("example"),
			SpringCloudAppId: exampleSpringCloudApp.ID(),
			InstanceCount:    pulumi.Int(2),
			Arguments: pulumi.StringArray{
				pulumi.String("-cp"),
				pulumi.String("/app/resources:/app/classes:/app/libs/*"),
				pulumi.String("hello.Application"),
			},
			Commands: pulumi.StringArray{
				pulumi.String("java"),
			},
			EnvironmentVariables: pulumi.StringMap{
				"Foo": pulumi.String("Bar"),
				"Env": pulumi.String("Staging"),
			},
			Server:            pulumi.String("docker.io"),
			Image:             pulumi.String("springio/gs-spring-boot-docker"),
			LanguageFramework: pulumi.String("springboot"),
		})
		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",
        Location = "West Europe",
    });
    var exampleSpringCloudService = new Azure.AppPlatform.SpringCloudService("example", new()
    {
        Name = "example",
        Location = example.Location,
        ResourceGroupName = example.Name,
        SkuName = "E0",
    });
    var exampleSpringCloudApp = new Azure.AppPlatform.SpringCloudApp("example", new()
    {
        Name = "example",
        ResourceGroupName = exampleSpringCloudService.ResourceGroupName,
        ServiceName = exampleSpringCloudService.Name,
    });
    var exampleSpringCloudContainerDeployment = new Azure.AppPlatform.SpringCloudContainerDeployment("example", new()
    {
        Name = "example",
        SpringCloudAppId = exampleSpringCloudApp.Id,
        InstanceCount = 2,
        Arguments = new[]
        {
            "-cp",
            "/app/resources:/app/classes:/app/libs/*",
            "hello.Application",
        },
        Commands = new[]
        {
            "java",
        },
        EnvironmentVariables = 
        {
            { "Foo", "Bar" },
            { "Env", "Staging" },
        },
        Server = "docker.io",
        Image = "springio/gs-spring-boot-docker",
        LanguageFramework = "springboot",
    });
});
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.SpringCloudApp;
import com.pulumi.azure.appplatform.SpringCloudAppArgs;
import com.pulumi.azure.appplatform.SpringCloudContainerDeployment;
import com.pulumi.azure.appplatform.SpringCloudContainerDeploymentArgs;
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")
            .location("West Europe")
            .build());
        var exampleSpringCloudService = new SpringCloudService("exampleSpringCloudService", SpringCloudServiceArgs.builder()
            .name("example")
            .location(example.location())
            .resourceGroupName(example.name())
            .skuName("E0")
            .build());
        var exampleSpringCloudApp = new SpringCloudApp("exampleSpringCloudApp", SpringCloudAppArgs.builder()
            .name("example")
            .resourceGroupName(exampleSpringCloudService.resourceGroupName())
            .serviceName(exampleSpringCloudService.name())
            .build());
        var exampleSpringCloudContainerDeployment = new SpringCloudContainerDeployment("exampleSpringCloudContainerDeployment", SpringCloudContainerDeploymentArgs.builder()
            .name("example")
            .springCloudAppId(exampleSpringCloudApp.id())
            .instanceCount(2)
            .arguments(            
                "-cp",
                "/app/resources:/app/classes:/app/libs/*",
                "hello.Application")
            .commands("java")
            .environmentVariables(Map.ofEntries(
                Map.entry("Foo", "Bar"),
                Map.entry("Env", "Staging")
            ))
            .server("docker.io")
            .image("springio/gs-spring-boot-docker")
            .languageFramework("springboot")
            .build());
    }
}
resources:
  example:
    type: azure:core:ResourceGroup
    properties:
      name: example
      location: West Europe
  exampleSpringCloudService:
    type: azure:appplatform:SpringCloudService
    name: example
    properties:
      name: example
      location: ${example.location}
      resourceGroupName: ${example.name}
      skuName: E0
  exampleSpringCloudApp:
    type: azure:appplatform:SpringCloudApp
    name: example
    properties:
      name: example
      resourceGroupName: ${exampleSpringCloudService.resourceGroupName}
      serviceName: ${exampleSpringCloudService.name}
  exampleSpringCloudContainerDeployment:
    type: azure:appplatform:SpringCloudContainerDeployment
    name: example
    properties:
      name: example
      springCloudAppId: ${exampleSpringCloudApp.id}
      instanceCount: 2
      arguments:
        - -cp
        - /app/resources:/app/classes:/app/libs/*
        - hello.Application
      commands:
        - java
      environmentVariables:
        Foo: Bar
        Env: Staging
      server: docker.io
      image: springio/gs-spring-boot-docker
      languageFramework: springboot
Create SpringCloudContainerDeployment Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SpringCloudContainerDeployment(name: string, args: SpringCloudContainerDeploymentArgs, opts?: CustomResourceOptions);@overload
def SpringCloudContainerDeployment(resource_name: str,
                                   args: SpringCloudContainerDeploymentArgs,
                                   opts: Optional[ResourceOptions] = None)
@overload
def SpringCloudContainerDeployment(resource_name: str,
                                   opts: Optional[ResourceOptions] = None,
                                   image: Optional[str] = None,
                                   server: Optional[str] = None,
                                   spring_cloud_app_id: Optional[str] = None,
                                   addon_json: Optional[str] = None,
                                   application_performance_monitoring_ids: Optional[Sequence[str]] = None,
                                   arguments: Optional[Sequence[str]] = None,
                                   commands: Optional[Sequence[str]] = None,
                                   environment_variables: Optional[Mapping[str, str]] = None,
                                   instance_count: Optional[int] = None,
                                   language_framework: Optional[str] = None,
                                   name: Optional[str] = None,
                                   quota: Optional[SpringCloudContainerDeploymentQuotaArgs] = None)func NewSpringCloudContainerDeployment(ctx *Context, name string, args SpringCloudContainerDeploymentArgs, opts ...ResourceOption) (*SpringCloudContainerDeployment, error)public SpringCloudContainerDeployment(string name, SpringCloudContainerDeploymentArgs args, CustomResourceOptions? opts = null)
public SpringCloudContainerDeployment(String name, SpringCloudContainerDeploymentArgs args)
public SpringCloudContainerDeployment(String name, SpringCloudContainerDeploymentArgs args, CustomResourceOptions options)
type: azure:appplatform:SpringCloudContainerDeployment
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args SpringCloudContainerDeploymentArgs
- 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 SpringCloudContainerDeploymentArgs
- 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 SpringCloudContainerDeploymentArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SpringCloudContainerDeploymentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SpringCloudContainerDeploymentArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var springCloudContainerDeploymentResource = new Azure.AppPlatform.SpringCloudContainerDeployment("springCloudContainerDeploymentResource", new()
{
    Image = "string",
    Server = "string",
    SpringCloudAppId = "string",
    AddonJson = "string",
    ApplicationPerformanceMonitoringIds = new[]
    {
        "string",
    },
    Arguments = new[]
    {
        "string",
    },
    Commands = new[]
    {
        "string",
    },
    EnvironmentVariables = 
    {
        { "string", "string" },
    },
    InstanceCount = 0,
    LanguageFramework = "string",
    Name = "string",
    Quota = new Azure.AppPlatform.Inputs.SpringCloudContainerDeploymentQuotaArgs
    {
        Cpu = "string",
        Memory = "string",
    },
});
example, err := appplatform.NewSpringCloudContainerDeployment(ctx, "springCloudContainerDeploymentResource", &appplatform.SpringCloudContainerDeploymentArgs{
	Image:            pulumi.String("string"),
	Server:           pulumi.String("string"),
	SpringCloudAppId: pulumi.String("string"),
	AddonJson:        pulumi.String("string"),
	ApplicationPerformanceMonitoringIds: pulumi.StringArray{
		pulumi.String("string"),
	},
	Arguments: pulumi.StringArray{
		pulumi.String("string"),
	},
	Commands: pulumi.StringArray{
		pulumi.String("string"),
	},
	EnvironmentVariables: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	InstanceCount:     pulumi.Int(0),
	LanguageFramework: pulumi.String("string"),
	Name:              pulumi.String("string"),
	Quota: &appplatform.SpringCloudContainerDeploymentQuotaArgs{
		Cpu:    pulumi.String("string"),
		Memory: pulumi.String("string"),
	},
})
var springCloudContainerDeploymentResource = new SpringCloudContainerDeployment("springCloudContainerDeploymentResource", SpringCloudContainerDeploymentArgs.builder()
    .image("string")
    .server("string")
    .springCloudAppId("string")
    .addonJson("string")
    .applicationPerformanceMonitoringIds("string")
    .arguments("string")
    .commands("string")
    .environmentVariables(Map.of("string", "string"))
    .instanceCount(0)
    .languageFramework("string")
    .name("string")
    .quota(SpringCloudContainerDeploymentQuotaArgs.builder()
        .cpu("string")
        .memory("string")
        .build())
    .build());
spring_cloud_container_deployment_resource = azure.appplatform.SpringCloudContainerDeployment("springCloudContainerDeploymentResource",
    image="string",
    server="string",
    spring_cloud_app_id="string",
    addon_json="string",
    application_performance_monitoring_ids=["string"],
    arguments=["string"],
    commands=["string"],
    environment_variables={
        "string": "string",
    },
    instance_count=0,
    language_framework="string",
    name="string",
    quota={
        "cpu": "string",
        "memory": "string",
    })
const springCloudContainerDeploymentResource = new azure.appplatform.SpringCloudContainerDeployment("springCloudContainerDeploymentResource", {
    image: "string",
    server: "string",
    springCloudAppId: "string",
    addonJson: "string",
    applicationPerformanceMonitoringIds: ["string"],
    arguments: ["string"],
    commands: ["string"],
    environmentVariables: {
        string: "string",
    },
    instanceCount: 0,
    languageFramework: "string",
    name: "string",
    quota: {
        cpu: "string",
        memory: "string",
    },
});
type: azure:appplatform:SpringCloudContainerDeployment
properties:
    addonJson: string
    applicationPerformanceMonitoringIds:
        - string
    arguments:
        - string
    commands:
        - string
    environmentVariables:
        string: string
    image: string
    instanceCount: 0
    languageFramework: string
    name: string
    quota:
        cpu: string
        memory: string
    server: string
    springCloudAppId: string
SpringCloudContainerDeployment Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The SpringCloudContainerDeployment resource accepts the following input properties:
- Image string
- Container image of the custom container. This should be in the form of <repository>:<tag>without the server name of the registry.
- Server string
- The name of the registry that contains the container image.
- SpringCloud stringApp Id 
- The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Container Deployment to be created.
- AddonJson string
- A JSON object that contains the addon configurations of the Spring Cloud Container Deployment.
- ApplicationPerformance List<string>Monitoring Ids 
- Specifies a list of Spring Cloud Application Performance Monitoring IDs.
- Arguments List<string>
- Specifies the arguments to the entrypoint. The docker image's CMDis used if not specified.
- Commands List<string>
- Specifies the entrypoint array. It will not be executed within a shell. The docker image's ENTRYPOINTis used if not specified.
- EnvironmentVariables Dictionary<string, string>
- Specifies the environment variables of the Spring Cloud Deployment as a map of key-value pairs.
- InstanceCount int
- Specifies the required instance count of the Spring Cloud Deployment. Possible Values are between 1and500. Defaults to1if not specified.
- LanguageFramework string
- Specifies the language framework of the container image. The only possible value is springboot.
- Name string
- The name which should be used for this Spring Cloud Container Deployment. Changing this forces a new Spring Cloud Container Deployment to be created.
- Quota
SpringCloud Container Deployment Quota 
- A quotablock as defined below.
- Image string
- Container image of the custom container. This should be in the form of <repository>:<tag>without the server name of the registry.
- Server string
- The name of the registry that contains the container image.
- SpringCloud stringApp Id 
- The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Container Deployment to be created.
- AddonJson string
- A JSON object that contains the addon configurations of the Spring Cloud Container Deployment.
- ApplicationPerformance []stringMonitoring Ids 
- Specifies a list of Spring Cloud Application Performance Monitoring IDs.
- Arguments []string
- Specifies the arguments to the entrypoint. The docker image's CMDis used if not specified.
- Commands []string
- Specifies the entrypoint array. It will not be executed within a shell. The docker image's ENTRYPOINTis used if not specified.
- EnvironmentVariables map[string]string
- Specifies the environment variables of the Spring Cloud Deployment as a map of key-value pairs.
- InstanceCount int
- Specifies the required instance count of the Spring Cloud Deployment. Possible Values are between 1and500. Defaults to1if not specified.
- LanguageFramework string
- Specifies the language framework of the container image. The only possible value is springboot.
- Name string
- The name which should be used for this Spring Cloud Container Deployment. Changing this forces a new Spring Cloud Container Deployment to be created.
- Quota
SpringCloud Container Deployment Quota Args 
- A quotablock as defined below.
- image String
- Container image of the custom container. This should be in the form of <repository>:<tag>without the server name of the registry.
- server String
- The name of the registry that contains the container image.
- springCloud StringApp Id 
- The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Container Deployment to be created.
- addonJson String
- A JSON object that contains the addon configurations of the Spring Cloud Container Deployment.
- applicationPerformance List<String>Monitoring Ids 
- Specifies a list of Spring Cloud Application Performance Monitoring IDs.
- arguments List<String>
- Specifies the arguments to the entrypoint. The docker image's CMDis used if not specified.
- commands List<String>
- Specifies the entrypoint array. It will not be executed within a shell. The docker image's ENTRYPOINTis used if not specified.
- environmentVariables Map<String,String>
- Specifies the environment variables of the Spring Cloud Deployment as a map of key-value pairs.
- instanceCount Integer
- Specifies the required instance count of the Spring Cloud Deployment. Possible Values are between 1and500. Defaults to1if not specified.
- languageFramework String
- Specifies the language framework of the container image. The only possible value is springboot.
- name String
- The name which should be used for this Spring Cloud Container Deployment. Changing this forces a new Spring Cloud Container Deployment to be created.
- quota
SpringCloud Container Deployment Quota 
- A quotablock as defined below.
- image string
- Container image of the custom container. This should be in the form of <repository>:<tag>without the server name of the registry.
- server string
- The name of the registry that contains the container image.
- springCloud stringApp Id 
- The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Container Deployment to be created.
- addonJson string
- A JSON object that contains the addon configurations of the Spring Cloud Container Deployment.
- applicationPerformance string[]Monitoring Ids 
- Specifies a list of Spring Cloud Application Performance Monitoring IDs.
- arguments string[]
- Specifies the arguments to the entrypoint. The docker image's CMDis used if not specified.
- commands string[]
- Specifies the entrypoint array. It will not be executed within a shell. The docker image's ENTRYPOINTis used if not specified.
- environmentVariables {[key: string]: string}
- Specifies the environment variables of the Spring Cloud Deployment as a map of key-value pairs.
- instanceCount number
- Specifies the required instance count of the Spring Cloud Deployment. Possible Values are between 1and500. Defaults to1if not specified.
- languageFramework string
- Specifies the language framework of the container image. The only possible value is springboot.
- name string
- The name which should be used for this Spring Cloud Container Deployment. Changing this forces a new Spring Cloud Container Deployment to be created.
- quota
SpringCloud Container Deployment Quota 
- A quotablock as defined below.
- image str
- Container image of the custom container. This should be in the form of <repository>:<tag>without the server name of the registry.
- server str
- The name of the registry that contains the container image.
- spring_cloud_ strapp_ id 
- The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Container Deployment to be created.
- addon_json str
- A JSON object that contains the addon configurations of the Spring Cloud Container Deployment.
- application_performance_ Sequence[str]monitoring_ ids 
- Specifies a list of Spring Cloud Application Performance Monitoring IDs.
- arguments Sequence[str]
- Specifies the arguments to the entrypoint. The docker image's CMDis used if not specified.
- commands Sequence[str]
- Specifies the entrypoint array. It will not be executed within a shell. The docker image's ENTRYPOINTis used if not specified.
- environment_variables Mapping[str, str]
- Specifies the environment variables of the Spring Cloud Deployment as a map of key-value pairs.
- instance_count int
- Specifies the required instance count of the Spring Cloud Deployment. Possible Values are between 1and500. Defaults to1if not specified.
- language_framework str
- Specifies the language framework of the container image. The only possible value is springboot.
- name str
- The name which should be used for this Spring Cloud Container Deployment. Changing this forces a new Spring Cloud Container Deployment to be created.
- quota
SpringCloud Container Deployment Quota Args 
- A quotablock as defined below.
- image String
- Container image of the custom container. This should be in the form of <repository>:<tag>without the server name of the registry.
- server String
- The name of the registry that contains the container image.
- springCloud StringApp Id 
- The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Container Deployment to be created.
- addonJson String
- A JSON object that contains the addon configurations of the Spring Cloud Container Deployment.
- applicationPerformance List<String>Monitoring Ids 
- Specifies a list of Spring Cloud Application Performance Monitoring IDs.
- arguments List<String>
- Specifies the arguments to the entrypoint. The docker image's CMDis used if not specified.
- commands List<String>
- Specifies the entrypoint array. It will not be executed within a shell. The docker image's ENTRYPOINTis used if not specified.
- environmentVariables Map<String>
- Specifies the environment variables of the Spring Cloud Deployment as a map of key-value pairs.
- instanceCount Number
- Specifies the required instance count of the Spring Cloud Deployment. Possible Values are between 1and500. Defaults to1if not specified.
- languageFramework String
- Specifies the language framework of the container image. The only possible value is springboot.
- name String
- The name which should be used for this Spring Cloud Container Deployment. Changing this forces a new Spring Cloud Container Deployment to be created.
- quota Property Map
- A quotablock as defined below.
Outputs
All input properties are implicitly available as output properties. Additionally, the SpringCloudContainerDeployment resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing SpringCloudContainerDeployment Resource
Get an existing SpringCloudContainerDeployment 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?: SpringCloudContainerDeploymentState, opts?: CustomResourceOptions): SpringCloudContainerDeployment@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        addon_json: Optional[str] = None,
        application_performance_monitoring_ids: Optional[Sequence[str]] = None,
        arguments: Optional[Sequence[str]] = None,
        commands: Optional[Sequence[str]] = None,
        environment_variables: Optional[Mapping[str, str]] = None,
        image: Optional[str] = None,
        instance_count: Optional[int] = None,
        language_framework: Optional[str] = None,
        name: Optional[str] = None,
        quota: Optional[SpringCloudContainerDeploymentQuotaArgs] = None,
        server: Optional[str] = None,
        spring_cloud_app_id: Optional[str] = None) -> SpringCloudContainerDeploymentfunc GetSpringCloudContainerDeployment(ctx *Context, name string, id IDInput, state *SpringCloudContainerDeploymentState, opts ...ResourceOption) (*SpringCloudContainerDeployment, error)public static SpringCloudContainerDeployment Get(string name, Input<string> id, SpringCloudContainerDeploymentState? state, CustomResourceOptions? opts = null)public static SpringCloudContainerDeployment get(String name, Output<String> id, SpringCloudContainerDeploymentState state, CustomResourceOptions options)resources:  _:    type: azure:appplatform:SpringCloudContainerDeployment    get:      id: ${id}- 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.
- AddonJson string
- A JSON object that contains the addon configurations of the Spring Cloud Container Deployment.
- ApplicationPerformance List<string>Monitoring Ids 
- Specifies a list of Spring Cloud Application Performance Monitoring IDs.
- Arguments List<string>
- Specifies the arguments to the entrypoint. The docker image's CMDis used if not specified.
- Commands List<string>
- Specifies the entrypoint array. It will not be executed within a shell. The docker image's ENTRYPOINTis used if not specified.
- EnvironmentVariables Dictionary<string, string>
- Specifies the environment variables of the Spring Cloud Deployment as a map of key-value pairs.
- Image string
- Container image of the custom container. This should be in the form of <repository>:<tag>without the server name of the registry.
- InstanceCount int
- Specifies the required instance count of the Spring Cloud Deployment. Possible Values are between 1and500. Defaults to1if not specified.
- LanguageFramework string
- Specifies the language framework of the container image. The only possible value is springboot.
- Name string
- The name which should be used for this Spring Cloud Container Deployment. Changing this forces a new Spring Cloud Container Deployment to be created.
- Quota
SpringCloud Container Deployment Quota 
- A quotablock as defined below.
- Server string
- The name of the registry that contains the container image.
- SpringCloud stringApp Id 
- The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Container Deployment to be created.
- AddonJson string
- A JSON object that contains the addon configurations of the Spring Cloud Container Deployment.
- ApplicationPerformance []stringMonitoring Ids 
- Specifies a list of Spring Cloud Application Performance Monitoring IDs.
- Arguments []string
- Specifies the arguments to the entrypoint. The docker image's CMDis used if not specified.
- Commands []string
- Specifies the entrypoint array. It will not be executed within a shell. The docker image's ENTRYPOINTis used if not specified.
- EnvironmentVariables map[string]string
- Specifies the environment variables of the Spring Cloud Deployment as a map of key-value pairs.
- Image string
- Container image of the custom container. This should be in the form of <repository>:<tag>without the server name of the registry.
- InstanceCount int
- Specifies the required instance count of the Spring Cloud Deployment. Possible Values are between 1and500. Defaults to1if not specified.
- LanguageFramework string
- Specifies the language framework of the container image. The only possible value is springboot.
- Name string
- The name which should be used for this Spring Cloud Container Deployment. Changing this forces a new Spring Cloud Container Deployment to be created.
- Quota
SpringCloud Container Deployment Quota Args 
- A quotablock as defined below.
- Server string
- The name of the registry that contains the container image.
- SpringCloud stringApp Id 
- The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Container Deployment to be created.
- addonJson String
- A JSON object that contains the addon configurations of the Spring Cloud Container Deployment.
- applicationPerformance List<String>Monitoring Ids 
- Specifies a list of Spring Cloud Application Performance Monitoring IDs.
- arguments List<String>
- Specifies the arguments to the entrypoint. The docker image's CMDis used if not specified.
- commands List<String>
- Specifies the entrypoint array. It will not be executed within a shell. The docker image's ENTRYPOINTis used if not specified.
- environmentVariables Map<String,String>
- Specifies the environment variables of the Spring Cloud Deployment as a map of key-value pairs.
- image String
- Container image of the custom container. This should be in the form of <repository>:<tag>without the server name of the registry.
- instanceCount Integer
- Specifies the required instance count of the Spring Cloud Deployment. Possible Values are between 1and500. Defaults to1if not specified.
- languageFramework String
- Specifies the language framework of the container image. The only possible value is springboot.
- name String
- The name which should be used for this Spring Cloud Container Deployment. Changing this forces a new Spring Cloud Container Deployment to be created.
- quota
SpringCloud Container Deployment Quota 
- A quotablock as defined below.
- server String
- The name of the registry that contains the container image.
- springCloud StringApp Id 
- The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Container Deployment to be created.
- addonJson string
- A JSON object that contains the addon configurations of the Spring Cloud Container Deployment.
- applicationPerformance string[]Monitoring Ids 
- Specifies a list of Spring Cloud Application Performance Monitoring IDs.
- arguments string[]
- Specifies the arguments to the entrypoint. The docker image's CMDis used if not specified.
- commands string[]
- Specifies the entrypoint array. It will not be executed within a shell. The docker image's ENTRYPOINTis used if not specified.
- environmentVariables {[key: string]: string}
- Specifies the environment variables of the Spring Cloud Deployment as a map of key-value pairs.
- image string
- Container image of the custom container. This should be in the form of <repository>:<tag>without the server name of the registry.
- instanceCount number
- Specifies the required instance count of the Spring Cloud Deployment. Possible Values are between 1and500. Defaults to1if not specified.
- languageFramework string
- Specifies the language framework of the container image. The only possible value is springboot.
- name string
- The name which should be used for this Spring Cloud Container Deployment. Changing this forces a new Spring Cloud Container Deployment to be created.
- quota
SpringCloud Container Deployment Quota 
- A quotablock as defined below.
- server string
- The name of the registry that contains the container image.
- springCloud stringApp Id 
- The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Container Deployment to be created.
- addon_json str
- A JSON object that contains the addon configurations of the Spring Cloud Container Deployment.
- application_performance_ Sequence[str]monitoring_ ids 
- Specifies a list of Spring Cloud Application Performance Monitoring IDs.
- arguments Sequence[str]
- Specifies the arguments to the entrypoint. The docker image's CMDis used if not specified.
- commands Sequence[str]
- Specifies the entrypoint array. It will not be executed within a shell. The docker image's ENTRYPOINTis used if not specified.
- environment_variables Mapping[str, str]
- Specifies the environment variables of the Spring Cloud Deployment as a map of key-value pairs.
- image str
- Container image of the custom container. This should be in the form of <repository>:<tag>without the server name of the registry.
- instance_count int
- Specifies the required instance count of the Spring Cloud Deployment. Possible Values are between 1and500. Defaults to1if not specified.
- language_framework str
- Specifies the language framework of the container image. The only possible value is springboot.
- name str
- The name which should be used for this Spring Cloud Container Deployment. Changing this forces a new Spring Cloud Container Deployment to be created.
- quota
SpringCloud Container Deployment Quota Args 
- A quotablock as defined below.
- server str
- The name of the registry that contains the container image.
- spring_cloud_ strapp_ id 
- The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Container Deployment to be created.
- addonJson String
- A JSON object that contains the addon configurations of the Spring Cloud Container Deployment.
- applicationPerformance List<String>Monitoring Ids 
- Specifies a list of Spring Cloud Application Performance Monitoring IDs.
- arguments List<String>
- Specifies the arguments to the entrypoint. The docker image's CMDis used if not specified.
- commands List<String>
- Specifies the entrypoint array. It will not be executed within a shell. The docker image's ENTRYPOINTis used if not specified.
- environmentVariables Map<String>
- Specifies the environment variables of the Spring Cloud Deployment as a map of key-value pairs.
- image String
- Container image of the custom container. This should be in the form of <repository>:<tag>without the server name of the registry.
- instanceCount Number
- Specifies the required instance count of the Spring Cloud Deployment. Possible Values are between 1and500. Defaults to1if not specified.
- languageFramework String
- Specifies the language framework of the container image. The only possible value is springboot.
- name String
- The name which should be used for this Spring Cloud Container Deployment. Changing this forces a new Spring Cloud Container Deployment to be created.
- quota Property Map
- A quotablock as defined below.
- server String
- The name of the registry that contains the container image.
- springCloud StringApp Id 
- The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Container Deployment to be created.
Supporting Types
SpringCloudContainerDeploymentQuota, SpringCloudContainerDeploymentQuotaArgs          
- Cpu string
- Specifies the required cpu of the Spring Cloud Deployment. Possible Values are - 500m,- 1,- 2,- 3and- 4. Defaults to- 1if not specified.- Note: - cpusupports- 500mand- 1for Basic tier,- 500m,- 1,- 2,- 3and- 4for 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- 1Giif not specified.- Note: - memorysupports- 512Mi,- 1Giand- 2Gifor Basic tier,- 512Mi,- 1Gi,- 2Gi,- 3Gi,- 4Gi,- 5Gi,- 6Gi,- 7Gi, and- 8Gifor Standard tier.
- Cpu string
- Specifies the required cpu of the Spring Cloud Deployment. Possible Values are - 500m,- 1,- 2,- 3and- 4. Defaults to- 1if not specified.- Note: - cpusupports- 500mand- 1for Basic tier,- 500m,- 1,- 2,- 3and- 4for 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- 1Giif not specified.- Note: - memorysupports- 512Mi,- 1Giand- 2Gifor Basic tier,- 512Mi,- 1Gi,- 2Gi,- 3Gi,- 4Gi,- 5Gi,- 6Gi,- 7Gi, and- 8Gifor Standard tier.
- cpu String
- Specifies the required cpu of the Spring Cloud Deployment. Possible Values are - 500m,- 1,- 2,- 3and- 4. Defaults to- 1if not specified.- Note: - cpusupports- 500mand- 1for Basic tier,- 500m,- 1,- 2,- 3and- 4for 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- 1Giif not specified.- Note: - memorysupports- 512Mi,- 1Giand- 2Gifor Basic tier,- 512Mi,- 1Gi,- 2Gi,- 3Gi,- 4Gi,- 5Gi,- 6Gi,- 7Gi, and- 8Gifor Standard tier.
- cpu string
- Specifies the required cpu of the Spring Cloud Deployment. Possible Values are - 500m,- 1,- 2,- 3and- 4. Defaults to- 1if not specified.- Note: - cpusupports- 500mand- 1for Basic tier,- 500m,- 1,- 2,- 3and- 4for 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- 1Giif not specified.- Note: - memorysupports- 512Mi,- 1Giand- 2Gifor Basic tier,- 512Mi,- 1Gi,- 2Gi,- 3Gi,- 4Gi,- 5Gi,- 6Gi,- 7Gi, and- 8Gifor Standard tier.
- cpu str
- Specifies the required cpu of the Spring Cloud Deployment. Possible Values are - 500m,- 1,- 2,- 3and- 4. Defaults to- 1if not specified.- Note: - cpusupports- 500mand- 1for Basic tier,- 500m,- 1,- 2,- 3and- 4for 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- 1Giif not specified.- Note: - memorysupports- 512Mi,- 1Giand- 2Gifor Basic tier,- 512Mi,- 1Gi,- 2Gi,- 3Gi,- 4Gi,- 5Gi,- 6Gi,- 7Gi, and- 8Gifor Standard tier.
- cpu String
- Specifies the required cpu of the Spring Cloud Deployment. Possible Values are - 500m,- 1,- 2,- 3and- 4. Defaults to- 1if not specified.- Note: - cpusupports- 500mand- 1for Basic tier,- 500m,- 1,- 2,- 3and- 4for 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- 1Giif not specified.- Note: - memorysupports- 512Mi,- 1Giand- 2Gifor Basic tier,- 512Mi,- 1Gi,- 2Gi,- 3Gi,- 4Gi,- 5Gi,- 6Gi,- 7Gi, and- 8Gifor Standard tier.
Import
Spring Cloud Container Deployments can be imported using the resource id, e.g.
$ pulumi import azure:appplatform/springCloudContainerDeployment:SpringCloudContainerDeployment example /subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/resGroup1/providers/Microsoft.AppPlatform/spring/spring1/apps/app1/deployments/deploy1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the azurermTerraform Provider.
