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

We recommend using Azure Native.

Azure v6.22.0 published on Tuesday, Apr 1, 2025 by Pulumi

azure.appplatform.SpringCloudBuildDeployment

Explore with Pulumi AI

Manages a Spring Cloud Build Deployment.

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

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 exampleSpringCloudBuildDeployment = new azure.appplatform.SpringCloudBuildDeployment("example", {
    name: "example",
    springCloudAppId: exampleSpringCloudApp.id,
    buildResultId: "<default>",
    instanceCount: 2,
    environmentVariables: {
        Foo: "Bar",
        Env: "Staging",
    },
    quota: {
        cpu: "2",
        memory: "4Gi",
    },
});
Copy
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_build_deployment = azure.appplatform.SpringCloudBuildDeployment("example",
    name="example",
    spring_cloud_app_id=example_spring_cloud_app.id,
    build_result_id="<default>",
    instance_count=2,
    environment_variables={
        "Foo": "Bar",
        "Env": "Staging",
    },
    quota={
        "cpu": "2",
        "memory": "4Gi",
    })
Copy
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.NewSpringCloudBuildDeployment(ctx, "example", &appplatform.SpringCloudBuildDeploymentArgs{
			Name:             pulumi.String("example"),
			SpringCloudAppId: exampleSpringCloudApp.ID(),
			BuildResultId:    pulumi.String("<default>"),
			InstanceCount:    pulumi.Int(2),
			EnvironmentVariables: pulumi.StringMap{
				"Foo": pulumi.String("Bar"),
				"Env": pulumi.String("Staging"),
			},
			Quota: &appplatform.SpringCloudBuildDeploymentQuotaArgs{
				Cpu:    pulumi.String("2"),
				Memory: pulumi.String("4Gi"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
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 exampleSpringCloudBuildDeployment = new Azure.AppPlatform.SpringCloudBuildDeployment("example", new()
    {
        Name = "example",
        SpringCloudAppId = exampleSpringCloudApp.Id,
        BuildResultId = "<default>",
        InstanceCount = 2,
        EnvironmentVariables = 
        {
            { "Foo", "Bar" },
            { "Env", "Staging" },
        },
        Quota = new Azure.AppPlatform.Inputs.SpringCloudBuildDeploymentQuotaArgs
        {
            Cpu = "2",
            Memory = "4Gi",
        },
    });

});
Copy
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.SpringCloudBuildDeployment;
import com.pulumi.azure.appplatform.SpringCloudBuildDeploymentArgs;
import com.pulumi.azure.appplatform.inputs.SpringCloudBuildDeploymentQuotaArgs;
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 exampleSpringCloudBuildDeployment = new SpringCloudBuildDeployment("exampleSpringCloudBuildDeployment", SpringCloudBuildDeploymentArgs.builder()
            .name("example")
            .springCloudAppId(exampleSpringCloudApp.id())
            .buildResultId("<default>")
            .instanceCount(2)
            .environmentVariables(Map.ofEntries(
                Map.entry("Foo", "Bar"),
                Map.entry("Env", "Staging")
            ))
            .quota(SpringCloudBuildDeploymentQuotaArgs.builder()
                .cpu("2")
                .memory("4Gi")
                .build())
            .build());

    }
}
Copy
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}
  exampleSpringCloudBuildDeployment:
    type: azure:appplatform:SpringCloudBuildDeployment
    name: example
    properties:
      name: example
      springCloudAppId: ${exampleSpringCloudApp.id}
      buildResultId: <default>
      instanceCount: 2
      environmentVariables:
        Foo: Bar
        Env: Staging
      quota:
        cpu: '2'
        memory: 4Gi
Copy

Create SpringCloudBuildDeployment Resource

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

Constructor syntax

new SpringCloudBuildDeployment(name: string, args: SpringCloudBuildDeploymentArgs, opts?: CustomResourceOptions);
@overload
def SpringCloudBuildDeployment(resource_name: str,
                               args: SpringCloudBuildDeploymentArgs,
                               opts: Optional[ResourceOptions] = None)

@overload
def SpringCloudBuildDeployment(resource_name: str,
                               opts: Optional[ResourceOptions] = None,
                               build_result_id: Optional[str] = None,
                               spring_cloud_app_id: Optional[str] = None,
                               addon_json: Optional[str] = None,
                               application_performance_monitoring_ids: Optional[Sequence[str]] = None,
                               environment_variables: Optional[Mapping[str, str]] = None,
                               instance_count: Optional[int] = None,
                               name: Optional[str] = None,
                               quota: Optional[SpringCloudBuildDeploymentQuotaArgs] = None)
func NewSpringCloudBuildDeployment(ctx *Context, name string, args SpringCloudBuildDeploymentArgs, opts ...ResourceOption) (*SpringCloudBuildDeployment, error)
public SpringCloudBuildDeployment(string name, SpringCloudBuildDeploymentArgs args, CustomResourceOptions? opts = null)
public SpringCloudBuildDeployment(String name, SpringCloudBuildDeploymentArgs args)
public SpringCloudBuildDeployment(String name, SpringCloudBuildDeploymentArgs args, CustomResourceOptions options)
type: azure:appplatform:SpringCloudBuildDeployment
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. SpringCloudBuildDeploymentArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. SpringCloudBuildDeploymentArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. SpringCloudBuildDeploymentArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. SpringCloudBuildDeploymentArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. SpringCloudBuildDeploymentArgs
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 springCloudBuildDeploymentResource = new Azure.AppPlatform.SpringCloudBuildDeployment("springCloudBuildDeploymentResource", new()
{
    BuildResultId = "string",
    SpringCloudAppId = "string",
    AddonJson = "string",
    ApplicationPerformanceMonitoringIds = new[]
    {
        "string",
    },
    EnvironmentVariables = 
    {
        { "string", "string" },
    },
    InstanceCount = 0,
    Name = "string",
    Quota = new Azure.AppPlatform.Inputs.SpringCloudBuildDeploymentQuotaArgs
    {
        Cpu = "string",
        Memory = "string",
    },
});
Copy
example, err := appplatform.NewSpringCloudBuildDeployment(ctx, "springCloudBuildDeploymentResource", &appplatform.SpringCloudBuildDeploymentArgs{
	BuildResultId:    pulumi.String("string"),
	SpringCloudAppId: pulumi.String("string"),
	AddonJson:        pulumi.String("string"),
	ApplicationPerformanceMonitoringIds: pulumi.StringArray{
		pulumi.String("string"),
	},
	EnvironmentVariables: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	InstanceCount: pulumi.Int(0),
	Name:          pulumi.String("string"),
	Quota: &appplatform.SpringCloudBuildDeploymentQuotaArgs{
		Cpu:    pulumi.String("string"),
		Memory: pulumi.String("string"),
	},
})
Copy
var springCloudBuildDeploymentResource = new SpringCloudBuildDeployment("springCloudBuildDeploymentResource", SpringCloudBuildDeploymentArgs.builder()
    .buildResultId("string")
    .springCloudAppId("string")
    .addonJson("string")
    .applicationPerformanceMonitoringIds("string")
    .environmentVariables(Map.of("string", "string"))
    .instanceCount(0)
    .name("string")
    .quota(SpringCloudBuildDeploymentQuotaArgs.builder()
        .cpu("string")
        .memory("string")
        .build())
    .build());
Copy
spring_cloud_build_deployment_resource = azure.appplatform.SpringCloudBuildDeployment("springCloudBuildDeploymentResource",
    build_result_id="string",
    spring_cloud_app_id="string",
    addon_json="string",
    application_performance_monitoring_ids=["string"],
    environment_variables={
        "string": "string",
    },
    instance_count=0,
    name="string",
    quota={
        "cpu": "string",
        "memory": "string",
    })
Copy
const springCloudBuildDeploymentResource = new azure.appplatform.SpringCloudBuildDeployment("springCloudBuildDeploymentResource", {
    buildResultId: "string",
    springCloudAppId: "string",
    addonJson: "string",
    applicationPerformanceMonitoringIds: ["string"],
    environmentVariables: {
        string: "string",
    },
    instanceCount: 0,
    name: "string",
    quota: {
        cpu: "string",
        memory: "string",
    },
});
Copy
type: azure:appplatform:SpringCloudBuildDeployment
properties:
    addonJson: string
    applicationPerformanceMonitoringIds:
        - string
    buildResultId: string
    environmentVariables:
        string: string
    instanceCount: 0
    name: string
    quota:
        cpu: string
        memory: string
    springCloudAppId: string
Copy

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

BuildResultId This property is required. string
The ID of the Spring Cloud Build Result.
SpringCloudAppId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Build Deployment to be created.
AddonJson string
A JSON object that contains the addon configurations of the Spring Cloud Build Deployment.
ApplicationPerformanceMonitoringIds List<string>
Specifies a list of Spring Cloud Application Performance Monitoring IDs.
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.
Name Changes to this property will trigger replacement. string
The name which should be used for this Spring Cloud Build Deployment. Changing this forces a new Spring Cloud Build Deployment to be created.
Quota SpringCloudBuildDeploymentQuota
A quota block as defined below.
BuildResultId This property is required. string
The ID of the Spring Cloud Build Result.
SpringCloudAppId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Build Deployment to be created.
AddonJson string
A JSON object that contains the addon configurations of the Spring Cloud Build Deployment.
ApplicationPerformanceMonitoringIds []string
Specifies a list of Spring Cloud Application Performance Monitoring IDs.
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.
Name Changes to this property will trigger replacement. string
The name which should be used for this Spring Cloud Build Deployment. Changing this forces a new Spring Cloud Build Deployment to be created.
Quota SpringCloudBuildDeploymentQuotaArgs
A quota block as defined below.
buildResultId This property is required. String
The ID of the Spring Cloud Build Result.
springCloudAppId
This property is required.
Changes to this property will trigger replacement.
String
The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Build Deployment to be created.
addonJson String
A JSON object that contains the addon configurations of the Spring Cloud Build Deployment.
applicationPerformanceMonitoringIds List<String>
Specifies a list of Spring Cloud Application Performance Monitoring IDs.
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.
name Changes to this property will trigger replacement. String
The name which should be used for this Spring Cloud Build Deployment. Changing this forces a new Spring Cloud Build Deployment to be created.
quota SpringCloudBuildDeploymentQuota
A quota block as defined below.
buildResultId This property is required. string
The ID of the Spring Cloud Build Result.
springCloudAppId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Build Deployment to be created.
addonJson string
A JSON object that contains the addon configurations of the Spring Cloud Build Deployment.
applicationPerformanceMonitoringIds string[]
Specifies a list of Spring Cloud Application Performance Monitoring IDs.
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.
name Changes to this property will trigger replacement. string
The name which should be used for this Spring Cloud Build Deployment. Changing this forces a new Spring Cloud Build Deployment to be created.
quota SpringCloudBuildDeploymentQuota
A quota block as defined below.
build_result_id This property is required. str
The ID of the Spring Cloud Build Result.
spring_cloud_app_id
This property is required.
Changes to this property will trigger replacement.
str
The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Build Deployment to be created.
addon_json str
A JSON object that contains the addon configurations of the Spring Cloud Build Deployment.
application_performance_monitoring_ids Sequence[str]
Specifies a list of Spring Cloud Application Performance Monitoring IDs.
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.
name Changes to this property will trigger replacement. str
The name which should be used for this Spring Cloud Build Deployment. Changing this forces a new Spring Cloud Build Deployment to be created.
quota SpringCloudBuildDeploymentQuotaArgs
A quota block as defined below.
buildResultId This property is required. String
The ID of the Spring Cloud Build Result.
springCloudAppId
This property is required.
Changes to this property will trigger replacement.
String
The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Build Deployment to be created.
addonJson String
A JSON object that contains the addon configurations of the Spring Cloud Build Deployment.
applicationPerformanceMonitoringIds List<String>
Specifies a list of Spring Cloud Application Performance Monitoring IDs.
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.
name Changes to this property will trigger replacement. String
The name which should be used for this Spring Cloud Build Deployment. Changing this forces a new Spring Cloud Build Deployment to be created.
quota Property Map
A quota block as defined below.

Outputs

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

Get an existing SpringCloudBuildDeployment 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?: SpringCloudBuildDeploymentState, opts?: CustomResourceOptions): SpringCloudBuildDeployment
@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,
        build_result_id: Optional[str] = None,
        environment_variables: Optional[Mapping[str, str]] = None,
        instance_count: Optional[int] = None,
        name: Optional[str] = None,
        quota: Optional[SpringCloudBuildDeploymentQuotaArgs] = None,
        spring_cloud_app_id: Optional[str] = None) -> SpringCloudBuildDeployment
func GetSpringCloudBuildDeployment(ctx *Context, name string, id IDInput, state *SpringCloudBuildDeploymentState, opts ...ResourceOption) (*SpringCloudBuildDeployment, error)
public static SpringCloudBuildDeployment Get(string name, Input<string> id, SpringCloudBuildDeploymentState? state, CustomResourceOptions? opts = null)
public static SpringCloudBuildDeployment get(String name, Output<String> id, SpringCloudBuildDeploymentState state, CustomResourceOptions options)
resources:  _:    type: azure:appplatform:SpringCloudBuildDeployment    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
AddonJson string
A JSON object that contains the addon configurations of the Spring Cloud Build Deployment.
ApplicationPerformanceMonitoringIds List<string>
Specifies a list of Spring Cloud Application Performance Monitoring IDs.
BuildResultId string
The ID of the Spring Cloud Build Result.
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.
Name Changes to this property will trigger replacement. string
The name which should be used for this Spring Cloud Build Deployment. Changing this forces a new Spring Cloud Build Deployment to be created.
Quota SpringCloudBuildDeploymentQuota
A quota block as defined below.
SpringCloudAppId Changes to this property will trigger replacement. string
The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Build Deployment to be created.
AddonJson string
A JSON object that contains the addon configurations of the Spring Cloud Build Deployment.
ApplicationPerformanceMonitoringIds []string
Specifies a list of Spring Cloud Application Performance Monitoring IDs.
BuildResultId string
The ID of the Spring Cloud Build Result.
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.
Name Changes to this property will trigger replacement. string
The name which should be used for this Spring Cloud Build Deployment. Changing this forces a new Spring Cloud Build Deployment to be created.
Quota SpringCloudBuildDeploymentQuotaArgs
A quota block as defined below.
SpringCloudAppId Changes to this property will trigger replacement. string
The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Build Deployment to be created.
addonJson String
A JSON object that contains the addon configurations of the Spring Cloud Build Deployment.
applicationPerformanceMonitoringIds List<String>
Specifies a list of Spring Cloud Application Performance Monitoring IDs.
buildResultId String
The ID of the Spring Cloud Build Result.
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.
name Changes to this property will trigger replacement. String
The name which should be used for this Spring Cloud Build Deployment. Changing this forces a new Spring Cloud Build Deployment to be created.
quota SpringCloudBuildDeploymentQuota
A quota block as defined below.
springCloudAppId Changes to this property will trigger replacement. String
The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Build Deployment to be created.
addonJson string
A JSON object that contains the addon configurations of the Spring Cloud Build Deployment.
applicationPerformanceMonitoringIds string[]
Specifies a list of Spring Cloud Application Performance Monitoring IDs.
buildResultId string
The ID of the Spring Cloud Build Result.
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.
name Changes to this property will trigger replacement. string
The name which should be used for this Spring Cloud Build Deployment. Changing this forces a new Spring Cloud Build Deployment to be created.
quota SpringCloudBuildDeploymentQuota
A quota block as defined below.
springCloudAppId Changes to this property will trigger replacement. string
The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Build Deployment to be created.
addon_json str
A JSON object that contains the addon configurations of the Spring Cloud Build Deployment.
application_performance_monitoring_ids Sequence[str]
Specifies a list of Spring Cloud Application Performance Monitoring IDs.
build_result_id str
The ID of the Spring Cloud Build Result.
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.
name Changes to this property will trigger replacement. str
The name which should be used for this Spring Cloud Build Deployment. Changing this forces a new Spring Cloud Build Deployment to be created.
quota SpringCloudBuildDeploymentQuotaArgs
A quota block as defined below.
spring_cloud_app_id Changes to this property will trigger replacement. str
The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Build Deployment to be created.
addonJson String
A JSON object that contains the addon configurations of the Spring Cloud Build Deployment.
applicationPerformanceMonitoringIds List<String>
Specifies a list of Spring Cloud Application Performance Monitoring IDs.
buildResultId String
The ID of the Spring Cloud Build Result.
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.
name Changes to this property will trigger replacement. String
The name which should be used for this Spring Cloud Build Deployment. Changing this forces a new Spring Cloud Build Deployment to be created.
quota Property Map
A quota block as defined below.
springCloudAppId Changes to this property will trigger replacement. String
The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Build Deployment to be created.

Supporting Types

SpringCloudBuildDeploymentQuota
, SpringCloudBuildDeploymentQuotaArgs

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 Build Deployments can be imported using the resource id, e.g.

$ pulumi import azure:appplatform/springCloudBuildDeployment:SpringCloudBuildDeployment example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resGroup1/providers/Microsoft.AppPlatform/spring/spring1/apps/app1/deployments/deploy1
Copy

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.