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

We recommend using Azure Native.

Azure Classic v5.72.0 published on Monday, Apr 15, 2024 by Pulumi

azure.appplatform.SpringCloudJavaDeployment

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure Classic v5.72.0 published on Monday, Apr 15, 2024 by Pulumi

    Manages an Azure Spring Cloud Deployment with a Java runtime.

    NOTE: This resource is applicable only for Spring Cloud Service with basic and standard tier.

    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 exampleSpringCloudService = new azure.appplatform.SpringCloudService("example", {
        name: "example-springcloud",
        resourceGroupName: example.name,
        location: example.location,
    });
    const exampleSpringCloudApp = new azure.appplatform.SpringCloudApp("example", {
        name: "example-springcloudapp",
        resourceGroupName: example.name,
        serviceName: exampleSpringCloudService.name,
        identity: {
            type: "SystemAssigned",
        },
    });
    const exampleSpringCloudJavaDeployment = new azure.appplatform.SpringCloudJavaDeployment("example", {
        name: "deploy1",
        springCloudAppId: exampleSpringCloudApp.id,
        instanceCount: 2,
        jvmOptions: "-XX:+PrintGC",
        quota: {
            cpu: "2",
            memory: "4Gi",
        },
        runtimeVersion: "Java_11",
        environmentVariables: {
            Foo: "Bar",
            Env: "Staging",
        },
    });
    
    import pulumi
    import pulumi_azure as azure
    
    example = azure.core.ResourceGroup("example",
        name="example-resources",
        location="West Europe")
    example_spring_cloud_service = azure.appplatform.SpringCloudService("example",
        name="example-springcloud",
        resource_group_name=example.name,
        location=example.location)
    example_spring_cloud_app = azure.appplatform.SpringCloudApp("example",
        name="example-springcloudapp",
        resource_group_name=example.name,
        service_name=example_spring_cloud_service.name,
        identity=azure.appplatform.SpringCloudAppIdentityArgs(
            type="SystemAssigned",
        ))
    example_spring_cloud_java_deployment = azure.appplatform.SpringCloudJavaDeployment("example",
        name="deploy1",
        spring_cloud_app_id=example_spring_cloud_app.id,
        instance_count=2,
        jvm_options="-XX:+PrintGC",
        quota=azure.appplatform.SpringCloudJavaDeploymentQuotaArgs(
            cpu="2",
            memory="4Gi",
        ),
        runtime_version="Java_11",
        environment_variables={
            "Foo": "Bar",
            "Env": "Staging",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/appplatform"
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
    			Name:     pulumi.String("example-resources"),
    			Location: pulumi.String("West Europe"),
    		})
    		if err != nil {
    			return err
    		}
    		exampleSpringCloudService, err := appplatform.NewSpringCloudService(ctx, "example", &appplatform.SpringCloudServiceArgs{
    			Name:              pulumi.String("example-springcloud"),
    			ResourceGroupName: example.Name,
    			Location:          example.Location,
    		})
    		if err != nil {
    			return err
    		}
    		exampleSpringCloudApp, err := appplatform.NewSpringCloudApp(ctx, "example", &appplatform.SpringCloudAppArgs{
    			Name:              pulumi.String("example-springcloudapp"),
    			ResourceGroupName: example.Name,
    			ServiceName:       exampleSpringCloudService.Name,
    			Identity: &appplatform.SpringCloudAppIdentityArgs{
    				Type: pulumi.String("SystemAssigned"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = appplatform.NewSpringCloudJavaDeployment(ctx, "example", &appplatform.SpringCloudJavaDeploymentArgs{
    			Name:             pulumi.String("deploy1"),
    			SpringCloudAppId: exampleSpringCloudApp.ID(),
    			InstanceCount:    pulumi.Int(2),
    			JvmOptions:       pulumi.String("-XX:+PrintGC"),
    			Quota: &appplatform.SpringCloudJavaDeploymentQuotaArgs{
    				Cpu:    pulumi.String("2"),
    				Memory: pulumi.String("4Gi"),
    			},
    			RuntimeVersion: pulumi.String("Java_11"),
    			EnvironmentVariables: pulumi.StringMap{
    				"Foo": pulumi.String("Bar"),
    				"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 exampleSpringCloudService = new Azure.AppPlatform.SpringCloudService("example", new()
        {
            Name = "example-springcloud",
            ResourceGroupName = example.Name,
            Location = example.Location,
        });
    
        var exampleSpringCloudApp = new Azure.AppPlatform.SpringCloudApp("example", new()
        {
            Name = "example-springcloudapp",
            ResourceGroupName = example.Name,
            ServiceName = exampleSpringCloudService.Name,
            Identity = new Azure.AppPlatform.Inputs.SpringCloudAppIdentityArgs
            {
                Type = "SystemAssigned",
            },
        });
    
        var exampleSpringCloudJavaDeployment = new Azure.AppPlatform.SpringCloudJavaDeployment("example", new()
        {
            Name = "deploy1",
            SpringCloudAppId = exampleSpringCloudApp.Id,
            InstanceCount = 2,
            JvmOptions = "-XX:+PrintGC",
            Quota = new Azure.AppPlatform.Inputs.SpringCloudJavaDeploymentQuotaArgs
            {
                Cpu = "2",
                Memory = "4Gi",
            },
            RuntimeVersion = "Java_11",
            EnvironmentVariables = 
            {
                { "Foo", "Bar" },
                { "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.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.inputs.SpringCloudAppIdentityArgs;
    import com.pulumi.azure.appplatform.SpringCloudJavaDeployment;
    import com.pulumi.azure.appplatform.SpringCloudJavaDeploymentArgs;
    import com.pulumi.azure.appplatform.inputs.SpringCloudJavaDeploymentQuotaArgs;
    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 exampleSpringCloudService = new SpringCloudService("exampleSpringCloudService", SpringCloudServiceArgs.builder()        
                .name("example-springcloud")
                .resourceGroupName(example.name())
                .location(example.location())
                .build());
    
            var exampleSpringCloudApp = new SpringCloudApp("exampleSpringCloudApp", SpringCloudAppArgs.builder()        
                .name("example-springcloudapp")
                .resourceGroupName(example.name())
                .serviceName(exampleSpringCloudService.name())
                .identity(SpringCloudAppIdentityArgs.builder()
                    .type("SystemAssigned")
                    .build())
                .build());
    
            var exampleSpringCloudJavaDeployment = new SpringCloudJavaDeployment("exampleSpringCloudJavaDeployment", SpringCloudJavaDeploymentArgs.builder()        
                .name("deploy1")
                .springCloudAppId(exampleSpringCloudApp.id())
                .instanceCount(2)
                .jvmOptions("-XX:+PrintGC")
                .quota(SpringCloudJavaDeploymentQuotaArgs.builder()
                    .cpu("2")
                    .memory("4Gi")
                    .build())
                .runtimeVersion("Java_11")
                .environmentVariables(Map.ofEntries(
                    Map.entry("Foo", "Bar"),
                    Map.entry("Env", "Staging")
                ))
                .build());
    
        }
    }
    
    resources:
      example:
        type: azure:core:ResourceGroup
        properties:
          name: example-resources
          location: West Europe
      exampleSpringCloudService:
        type: azure:appplatform:SpringCloudService
        name: example
        properties:
          name: example-springcloud
          resourceGroupName: ${example.name}
          location: ${example.location}
      exampleSpringCloudApp:
        type: azure:appplatform:SpringCloudApp
        name: example
        properties:
          name: example-springcloudapp
          resourceGroupName: ${example.name}
          serviceName: ${exampleSpringCloudService.name}
          identity:
            type: SystemAssigned
      exampleSpringCloudJavaDeployment:
        type: azure:appplatform:SpringCloudJavaDeployment
        name: example
        properties:
          name: deploy1
          springCloudAppId: ${exampleSpringCloudApp.id}
          instanceCount: 2
          jvmOptions: -XX:+PrintGC
          quota:
            cpu: '2'
            memory: 4Gi
          runtimeVersion: Java_11
          environmentVariables:
            Foo: Bar
            Env: Staging
    

    Create SpringCloudJavaDeployment Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new SpringCloudJavaDeployment(name: string, args: SpringCloudJavaDeploymentArgs, opts?: CustomResourceOptions);
    @overload
    def SpringCloudJavaDeployment(resource_name: str,
                                  args: SpringCloudJavaDeploymentArgs,
                                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def SpringCloudJavaDeployment(resource_name: str,
                                  opts: Optional[ResourceOptions] = None,
                                  spring_cloud_app_id: Optional[str] = None,
                                  environment_variables: Optional[Mapping[str, str]] = None,
                                  instance_count: Optional[int] = None,
                                  jvm_options: Optional[str] = None,
                                  name: Optional[str] = None,
                                  quota: Optional[SpringCloudJavaDeploymentQuotaArgs] = None,
                                  runtime_version: Optional[str] = None)
    func NewSpringCloudJavaDeployment(ctx *Context, name string, args SpringCloudJavaDeploymentArgs, opts ...ResourceOption) (*SpringCloudJavaDeployment, error)
    public SpringCloudJavaDeployment(string name, SpringCloudJavaDeploymentArgs args, CustomResourceOptions? opts = null)
    public SpringCloudJavaDeployment(String name, SpringCloudJavaDeploymentArgs args)
    public SpringCloudJavaDeployment(String name, SpringCloudJavaDeploymentArgs args, CustomResourceOptions options)
    
    type: azure:appplatform:SpringCloudJavaDeployment
    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 SpringCloudJavaDeploymentArgs
    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 SpringCloudJavaDeploymentArgs
    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 SpringCloudJavaDeploymentArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SpringCloudJavaDeploymentArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SpringCloudJavaDeploymentArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var springCloudJavaDeploymentResource = new Azure.AppPlatform.SpringCloudJavaDeployment("springCloudJavaDeploymentResource", new()
    {
        SpringCloudAppId = "string",
        EnvironmentVariables = 
        {
            { "string", "string" },
        },
        InstanceCount = 0,
        JvmOptions = "string",
        Name = "string",
        Quota = new Azure.AppPlatform.Inputs.SpringCloudJavaDeploymentQuotaArgs
        {
            Cpu = "string",
            Memory = "string",
        },
        RuntimeVersion = "string",
    });
    
    example, err := appplatform.NewSpringCloudJavaDeployment(ctx, "springCloudJavaDeploymentResource", &appplatform.SpringCloudJavaDeploymentArgs{
    	SpringCloudAppId: pulumi.String("string"),
    	EnvironmentVariables: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	InstanceCount: pulumi.Int(0),
    	JvmOptions:    pulumi.String("string"),
    	Name:          pulumi.String("string"),
    	Quota: &appplatform.SpringCloudJavaDeploymentQuotaArgs{
    		Cpu:    pulumi.String("string"),
    		Memory: pulumi.String("string"),
    	},
    	RuntimeVersion: pulumi.String("string"),
    })
    
    var springCloudJavaDeploymentResource = new SpringCloudJavaDeployment("springCloudJavaDeploymentResource", SpringCloudJavaDeploymentArgs.builder()        
        .springCloudAppId("string")
        .environmentVariables(Map.of("string", "string"))
        .instanceCount(0)
        .jvmOptions("string")
        .name("string")
        .quota(SpringCloudJavaDeploymentQuotaArgs.builder()
            .cpu("string")
            .memory("string")
            .build())
        .runtimeVersion("string")
        .build());
    
    spring_cloud_java_deployment_resource = azure.appplatform.SpringCloudJavaDeployment("springCloudJavaDeploymentResource",
        spring_cloud_app_id="string",
        environment_variables={
            "string": "string",
        },
        instance_count=0,
        jvm_options="string",
        name="string",
        quota=azure.appplatform.SpringCloudJavaDeploymentQuotaArgs(
            cpu="string",
            memory="string",
        ),
        runtime_version="string")
    
    const springCloudJavaDeploymentResource = new azure.appplatform.SpringCloudJavaDeployment("springCloudJavaDeploymentResource", {
        springCloudAppId: "string",
        environmentVariables: {
            string: "string",
        },
        instanceCount: 0,
        jvmOptions: "string",
        name: "string",
        quota: {
            cpu: "string",
            memory: "string",
        },
        runtimeVersion: "string",
    });
    
    type: azure:appplatform:SpringCloudJavaDeployment
    properties:
        environmentVariables:
            string: string
        instanceCount: 0
        jvmOptions: string
        name: string
        quota:
            cpu: string
            memory: string
        runtimeVersion: string
        springCloudAppId: string
    

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

    SpringCloudAppId string
    Specifies the id of the Spring Cloud Application in which to create the Deployment. Changing this forces a new resource to be created.
    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 1 and 500. Defaults to 1 if not specified.
    JvmOptions string
    Specifies the jvm option of the Spring Cloud Deployment.
    Name string
    Specifies the name of the Spring Cloud Deployment. Changing this forces a new resource to be created.
    Quota SpringCloudJavaDeploymentQuota
    A quota block as defined below.
    RuntimeVersion string
    Specifies the runtime version of the Spring Cloud Deployment. Possible Values are Java_8, Java_11 and Java_17. Defaults to Java_8.
    SpringCloudAppId string
    Specifies the id of the Spring Cloud Application in which to create the Deployment. Changing this forces a new resource to be created.
    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 1 and 500. Defaults to 1 if not specified.
    JvmOptions string
    Specifies the jvm option of the Spring Cloud Deployment.
    Name string
    Specifies the name of the Spring Cloud Deployment. Changing this forces a new resource to be created.
    Quota SpringCloudJavaDeploymentQuotaArgs
    A quota block as defined below.
    RuntimeVersion string
    Specifies the runtime version of the Spring Cloud Deployment. Possible Values are Java_8, Java_11 and Java_17. Defaults to Java_8.
    springCloudAppId String
    Specifies the id of the Spring Cloud Application in which to create the Deployment. Changing this forces a new resource to be created.
    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 1 and 500. Defaults to 1 if not specified.
    jvmOptions String
    Specifies the jvm option of the Spring Cloud Deployment.
    name String
    Specifies the name of the Spring Cloud Deployment. Changing this forces a new resource to be created.
    quota SpringCloudJavaDeploymentQuota
    A quota block as defined below.
    runtimeVersion String
    Specifies the runtime version of the Spring Cloud Deployment. Possible Values are Java_8, Java_11 and Java_17. Defaults to Java_8.
    springCloudAppId string
    Specifies the id of the Spring Cloud Application in which to create the Deployment. Changing this forces a new resource to be created.
    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 1 and 500. Defaults to 1 if not specified.
    jvmOptions string
    Specifies the jvm option of the Spring Cloud Deployment.
    name string
    Specifies the name of the Spring Cloud Deployment. Changing this forces a new resource to be created.
    quota SpringCloudJavaDeploymentQuota
    A quota block as defined below.
    runtimeVersion string
    Specifies the runtime version of the Spring Cloud Deployment. Possible Values are Java_8, Java_11 and Java_17. Defaults to Java_8.
    spring_cloud_app_id str
    Specifies the id of the Spring Cloud Application in which to create the Deployment. Changing this forces a new resource to be created.
    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 1 and 500. Defaults to 1 if not specified.
    jvm_options str
    Specifies the jvm option of the Spring Cloud Deployment.
    name str
    Specifies the name of the Spring Cloud Deployment. Changing this forces a new resource to be created.
    quota SpringCloudJavaDeploymentQuotaArgs
    A quota block as defined below.
    runtime_version str
    Specifies the runtime version of the Spring Cloud Deployment. Possible Values are Java_8, Java_11 and Java_17. Defaults to Java_8.
    springCloudAppId String
    Specifies the id of the Spring Cloud Application in which to create the Deployment. Changing this forces a new resource to be created.
    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 1 and 500. Defaults to 1 if not specified.
    jvmOptions String
    Specifies the jvm option of the Spring Cloud Deployment.
    name String
    Specifies the name of the Spring Cloud Deployment. Changing this forces a new resource to be created.
    quota Property Map
    A quota block as defined below.
    runtimeVersion String
    Specifies the runtime version of the Spring Cloud Deployment. Possible Values are Java_8, Java_11 and Java_17. Defaults to Java_8.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the SpringCloudJavaDeployment 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 SpringCloudJavaDeployment Resource

    Get an existing SpringCloudJavaDeployment 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?: SpringCloudJavaDeploymentState, opts?: CustomResourceOptions): SpringCloudJavaDeployment
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            environment_variables: Optional[Mapping[str, str]] = None,
            instance_count: Optional[int] = None,
            jvm_options: Optional[str] = None,
            name: Optional[str] = None,
            quota: Optional[SpringCloudJavaDeploymentQuotaArgs] = None,
            runtime_version: Optional[str] = None,
            spring_cloud_app_id: Optional[str] = None) -> SpringCloudJavaDeployment
    func GetSpringCloudJavaDeployment(ctx *Context, name string, id IDInput, state *SpringCloudJavaDeploymentState, opts ...ResourceOption) (*SpringCloudJavaDeployment, error)
    public static SpringCloudJavaDeployment Get(string name, Input<string> id, SpringCloudJavaDeploymentState? state, CustomResourceOptions? opts = null)
    public static SpringCloudJavaDeployment get(String name, Output<String> id, SpringCloudJavaDeploymentState 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:
    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 1 and 500. Defaults to 1 if not specified.
    JvmOptions string
    Specifies the jvm option of the Spring Cloud Deployment.
    Name string
    Specifies the name of the Spring Cloud Deployment. Changing this forces a new resource to be created.
    Quota SpringCloudJavaDeploymentQuota
    A quota block as defined below.
    RuntimeVersion string
    Specifies the runtime version of the Spring Cloud Deployment. Possible Values are Java_8, Java_11 and Java_17. Defaults to Java_8.
    SpringCloudAppId string
    Specifies the id of the Spring Cloud Application in which to create the Deployment. Changing this forces a new resource to be created.
    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 1 and 500. Defaults to 1 if not specified.
    JvmOptions string
    Specifies the jvm option of the Spring Cloud Deployment.
    Name string
    Specifies the name of the Spring Cloud Deployment. Changing this forces a new resource to be created.
    Quota SpringCloudJavaDeploymentQuotaArgs
    A quota block as defined below.
    RuntimeVersion string
    Specifies the runtime version of the Spring Cloud Deployment. Possible Values are Java_8, Java_11 and Java_17. Defaults to Java_8.
    SpringCloudAppId string
    Specifies the id of the Spring Cloud Application in which to create the Deployment. Changing this forces a new resource to be created.
    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 1 and 500. Defaults to 1 if not specified.
    jvmOptions String
    Specifies the jvm option of the Spring Cloud Deployment.
    name String
    Specifies the name of the Spring Cloud Deployment. Changing this forces a new resource to be created.
    quota SpringCloudJavaDeploymentQuota
    A quota block as defined below.
    runtimeVersion String
    Specifies the runtime version of the Spring Cloud Deployment. Possible Values are Java_8, Java_11 and Java_17. Defaults to Java_8.
    springCloudAppId String
    Specifies the id of the Spring Cloud Application in which to create the Deployment. Changing this forces a new resource to be created.
    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 1 and 500. Defaults to 1 if not specified.
    jvmOptions string
    Specifies the jvm option of the Spring Cloud Deployment.
    name string
    Specifies the name of the Spring Cloud Deployment. Changing this forces a new resource to be created.
    quota SpringCloudJavaDeploymentQuota
    A quota block as defined below.
    runtimeVersion string
    Specifies the runtime version of the Spring Cloud Deployment. Possible Values are Java_8, Java_11 and Java_17. Defaults to Java_8.
    springCloudAppId string
    Specifies the id of the Spring Cloud Application in which to create the Deployment. Changing this forces a new resource to be created.
    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 1 and 500. Defaults to 1 if not specified.
    jvm_options str
    Specifies the jvm option of the Spring Cloud Deployment.
    name str
    Specifies the name of the Spring Cloud Deployment. Changing this forces a new resource to be created.
    quota SpringCloudJavaDeploymentQuotaArgs
    A quota block as defined below.
    runtime_version str
    Specifies the runtime version of the Spring Cloud Deployment. Possible Values are Java_8, Java_11 and Java_17. Defaults to Java_8.
    spring_cloud_app_id str
    Specifies the id of the Spring Cloud Application in which to create the Deployment. Changing this forces a new resource to be created.
    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 1 and 500. Defaults to 1 if not specified.
    jvmOptions String
    Specifies the jvm option of the Spring Cloud Deployment.
    name String
    Specifies the name of the Spring Cloud Deployment. Changing this forces a new resource to be created.
    quota Property Map
    A quota block as defined below.
    runtimeVersion String
    Specifies the runtime version of the Spring Cloud Deployment. Possible Values are Java_8, Java_11 and Java_17. Defaults to Java_8.
    springCloudAppId String
    Specifies the id of the Spring Cloud Application in which to create the Deployment. Changing this forces a new resource to be created.

    Supporting Types

    SpringCloudJavaDeploymentQuota, SpringCloudJavaDeploymentQuotaArgs

    Cpu string

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

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

    Memory string

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

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

    Cpu string

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

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

    Memory string

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

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

    cpu String

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

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

    memory String

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

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

    cpu string

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

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

    memory string

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

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

    cpu str

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

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

    memory str

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

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

    cpu String

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

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

    memory String

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

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

    Import

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

    $ pulumi import azure:appplatform/springCloudJavaDeployment:SpringCloudJavaDeployment example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroup1/providers/Microsoft.AppPlatform/spring/service1/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 azurerm Terraform Provider.
    azure logo

    We recommend using Azure Native.

    Azure Classic v5.72.0 published on Monday, Apr 15, 2024 by Pulumi