1. Packages
  2. Azure Native v2
  3. API Docs
  4. appplatform
  5. Job
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.appplatform.Job

Explore with Pulumi AI

These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

Job resource payload Azure REST API version: 2024-05-01-preview.

Example Usage

Job_CreateOrUpdate

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var job = new AzureNative.AppPlatform.Job("job", new()
    {
        JobName = "test-job",
        Properties = new AzureNative.AppPlatform.Inputs.JobResourcePropertiesArgs
        {
            Source = new AzureNative.AppPlatform.Inputs.BuildResultUserSourceInfoArgs
            {
                BuildResultId = "<default>",
                Type = "BuildResult",
            },
            Template = new AzureNative.AppPlatform.Inputs.JobExecutionTemplateArgs
            {
                Args = new[]
                {
                    "arg1",
                    "arg2",
                },
                EnvironmentVariables = new[]
                {
                    new AzureNative.AppPlatform.Inputs.EnvVarArgs
                    {
                        Name = "key1",
                        Value = "value1",
                    },
                    new AzureNative.AppPlatform.Inputs.EnvVarArgs
                    {
                        Name = "env2",
                        Value = "value2",
                    },
                    new AzureNative.AppPlatform.Inputs.EnvVarArgs
                    {
                        Name = "secretKey1",
                        SecretValue = "secretValue1",
                    },
                },
            },
            TriggerConfig = new AzureNative.AppPlatform.Inputs.ManualJobTriggerConfigArgs
            {
                TriggerType = "Manual",
            },
        },
        ResourceGroupName = "myResourceGroup",
        ServiceName = "myservice",
    });

});
Copy
package main

import (
	appplatform "github.com/pulumi/pulumi-azure-native-sdk/appplatform/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := appplatform.NewJob(ctx, "job", &appplatform.JobArgs{
			JobName: pulumi.String("test-job"),
			Properties: &appplatform.JobResourcePropertiesArgs{
				Source: appplatform.BuildResultUserSourceInfo{
					BuildResultId: "<default>",
					Type:          "BuildResult",
				},
				Template: &appplatform.JobExecutionTemplateArgs{
					Args: pulumi.StringArray{
						pulumi.String("arg1"),
						pulumi.String("arg2"),
					},
					EnvironmentVariables: appplatform.EnvVarArray{
						&appplatform.EnvVarArgs{
							Name:  pulumi.String("key1"),
							Value: pulumi.String("value1"),
						},
						&appplatform.EnvVarArgs{
							Name:  pulumi.String("env2"),
							Value: pulumi.String("value2"),
						},
						&appplatform.EnvVarArgs{
							Name:        pulumi.String("secretKey1"),
							SecretValue: pulumi.String("secretValue1"),
						},
					},
				},
				TriggerConfig: &appplatform.ManualJobTriggerConfigArgs{
					TriggerType: pulumi.String("Manual"),
				},
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			ServiceName:       pulumi.String("myservice"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.appplatform.Job;
import com.pulumi.azurenative.appplatform.JobArgs;
import com.pulumi.azurenative.appplatform.inputs.JobResourcePropertiesArgs;
import com.pulumi.azurenative.appplatform.inputs.JobExecutionTemplateArgs;
import com.pulumi.azurenative.appplatform.inputs.ManualJobTriggerConfigArgs;
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 job = new Job("job", JobArgs.builder()
            .jobName("test-job")
            .properties(JobResourcePropertiesArgs.builder()
                .source(BuildResultUserSourceInfoArgs.builder()
                    .buildResultId("<default>")
                    .type("BuildResult")
                    .build())
                .template(JobExecutionTemplateArgs.builder()
                    .args(                    
                        "arg1",
                        "arg2")
                    .environmentVariables(                    
                        EnvVarArgs.builder()
                            .name("key1")
                            .value("value1")
                            .build(),
                        EnvVarArgs.builder()
                            .name("env2")
                            .value("value2")
                            .build(),
                        EnvVarArgs.builder()
                            .name("secretKey1")
                            .secretValue("secretValue1")
                            .build())
                    .build())
                .triggerConfig(ManualJobTriggerConfigArgs.builder()
                    .triggerType("Manual")
                    .build())
                .build())
            .resourceGroupName("myResourceGroup")
            .serviceName("myservice")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const job = new azure_native.appplatform.Job("job", {
    jobName: "test-job",
    properties: {
        source: {
            buildResultId: "<default>",
            type: "BuildResult",
        },
        template: {
            args: [
                "arg1",
                "arg2",
            ],
            environmentVariables: [
                {
                    name: "key1",
                    value: "value1",
                },
                {
                    name: "env2",
                    value: "value2",
                },
                {
                    name: "secretKey1",
                    secretValue: "secretValue1",
                },
            ],
        },
        triggerConfig: {
            triggerType: "Manual",
        },
    },
    resourceGroupName: "myResourceGroup",
    serviceName: "myservice",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

job = azure_native.appplatform.Job("job",
    job_name="test-job",
    properties={
        "source": {
            "build_result_id": "<default>",
            "type": "BuildResult",
        },
        "template": {
            "args": [
                "arg1",
                "arg2",
            ],
            "environment_variables": [
                {
                    "name": "key1",
                    "value": "value1",
                },
                {
                    "name": "env2",
                    "value": "value2",
                },
                {
                    "name": "secretKey1",
                    "secret_value": "secretValue1",
                },
            ],
        },
        "trigger_config": {
            "trigger_type": "Manual",
        },
    },
    resource_group_name="myResourceGroup",
    service_name="myservice")
Copy
resources:
  job:
    type: azure-native:appplatform:Job
    properties:
      jobName: test-job
      properties:
        source:
          buildResultId: <default>
          type: BuildResult
        template:
          args:
            - arg1
            - arg2
          environmentVariables:
            - name: key1
              value: value1
            - name: env2
              value: value2
            - name: secretKey1
              secretValue: secretValue1
        triggerConfig:
          triggerType: Manual
      resourceGroupName: myResourceGroup
      serviceName: myservice
Copy

Create Job Resource

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

Constructor syntax

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

@overload
def Job(resource_name: str,
        opts: Optional[ResourceOptions] = None,
        resource_group_name: Optional[str] = None,
        service_name: Optional[str] = None,
        job_name: Optional[str] = None,
        properties: Optional[JobResourcePropertiesArgs] = None)
func NewJob(ctx *Context, name string, args JobArgs, opts ...ResourceOption) (*Job, error)
public Job(string name, JobArgs args, CustomResourceOptions? opts = null)
public Job(String name, JobArgs args)
public Job(String name, JobArgs args, CustomResourceOptions options)
type: azure-native:appplatform:Job
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. JobArgs
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. JobArgs
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. JobArgs
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. JobArgs
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. JobArgs
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 azure_nativeJobResource = new AzureNative.Appplatform.Job("azure-nativeJobResource", new()
{
    ResourceGroupName = "string",
    ServiceName = "string",
    JobName = "string",
    Properties = 
    {
        { "managedComponentReferences", new[]
        {
            
            {
                { "resourceId", "string" },
            },
        } },
        { "source", 
        {
            { "type", "BuildResult" },
            { "buildResultId", "string" },
            { "version", "string" },
        } },
        { "template", 
        {
            { "args", new[]
            {
                "string",
            } },
            { "environmentVariables", new[]
            {
                
                {
                    { "name", "string" },
                    { "secretValue", "string" },
                    { "value", "string" },
                },
            } },
            { "resourceRequests", 
            {
                { "cpu", "string" },
                { "memory", "string" },
            } },
        } },
        { "triggerConfig", 
        {
            { "triggerType", "Manual" },
            { "parallelism", 0 },
            { "retryLimit", 0 },
            { "timeoutInSeconds", 0 },
        } },
    },
});
Copy
example, err := appplatform.NewJob(ctx, "azure-nativeJobResource", &appplatform.JobArgs{
	ResourceGroupName: "string",
	ServiceName:       "string",
	JobName:           "string",
	Properties: map[string]interface{}{
		"managedComponentReferences": []map[string]interface{}{
			map[string]interface{}{
				"resourceId": "string",
			},
		},
		"source": map[string]interface{}{
			"type":          "BuildResult",
			"buildResultId": "string",
			"version":       "string",
		},
		"template": map[string]interface{}{
			"args": []string{
				"string",
			},
			"environmentVariables": []map[string]interface{}{
				map[string]interface{}{
					"name":        "string",
					"secretValue": "string",
					"value":       "string",
				},
			},
			"resourceRequests": map[string]interface{}{
				"cpu":    "string",
				"memory": "string",
			},
		},
		"triggerConfig": map[string]interface{}{
			"triggerType":      "Manual",
			"parallelism":      0,
			"retryLimit":       0,
			"timeoutInSeconds": 0,
		},
	},
})
Copy
var azure_nativeJobResource = new Job("azure-nativeJobResource", JobArgs.builder()
    .resourceGroupName("string")
    .serviceName("string")
    .jobName("string")
    .properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
Copy
azure_native_job_resource = azure_native.appplatform.Job("azure-nativeJobResource",
    resource_group_name=string,
    service_name=string,
    job_name=string,
    properties={
        managedComponentReferences: [{
            resourceId: string,
        }],
        source: {
            type: BuildResult,
            buildResultId: string,
            version: string,
        },
        template: {
            args: [string],
            environmentVariables: [{
                name: string,
                secretValue: string,
                value: string,
            }],
            resourceRequests: {
                cpu: string,
                memory: string,
            },
        },
        triggerConfig: {
            triggerType: Manual,
            parallelism: 0,
            retryLimit: 0,
            timeoutInSeconds: 0,
        },
    })
Copy
const azure_nativeJobResource = new azure_native.appplatform.Job("azure-nativeJobResource", {
    resourceGroupName: "string",
    serviceName: "string",
    jobName: "string",
    properties: {
        managedComponentReferences: [{
            resourceId: "string",
        }],
        source: {
            type: "BuildResult",
            buildResultId: "string",
            version: "string",
        },
        template: {
            args: ["string"],
            environmentVariables: [{
                name: "string",
                secretValue: "string",
                value: "string",
            }],
            resourceRequests: {
                cpu: "string",
                memory: "string",
            },
        },
        triggerConfig: {
            triggerType: "Manual",
            parallelism: 0,
            retryLimit: 0,
            timeoutInSeconds: 0,
        },
    },
});
Copy
type: azure-native:appplatform:Job
properties:
    jobName: string
    properties:
        managedComponentReferences:
            - resourceId: string
        source:
            buildResultId: string
            type: BuildResult
            version: string
        template:
            args:
                - string
            environmentVariables:
                - name: string
                  secretValue: string
                  value: string
            resourceRequests:
                cpu: string
                memory: string
        triggerConfig:
            parallelism: 0
            retryLimit: 0
            timeoutInSeconds: 0
            triggerType: Manual
    resourceGroupName: string
    serviceName: string
Copy

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

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
ServiceName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Service resource.
JobName Changes to this property will trigger replacement. string
The name of the Job resource.
Properties Pulumi.AzureNative.AppPlatform.Inputs.JobResourceProperties
Properties of the Job resource
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
ServiceName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Service resource.
JobName Changes to this property will trigger replacement. string
The name of the Job resource.
Properties JobResourcePropertiesArgs
Properties of the Job resource
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
serviceName
This property is required.
Changes to this property will trigger replacement.
String
The name of the Service resource.
jobName Changes to this property will trigger replacement. String
The name of the Job resource.
properties JobResourceProperties
Properties of the Job resource
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
serviceName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Service resource.
jobName Changes to this property will trigger replacement. string
The name of the Job resource.
properties JobResourceProperties
Properties of the Job resource
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
service_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the Service resource.
job_name Changes to this property will trigger replacement. str
The name of the Job resource.
properties JobResourcePropertiesArgs
Properties of the Job resource
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
serviceName
This property is required.
Changes to this property will trigger replacement.
String
The name of the Service resource.
jobName Changes to this property will trigger replacement. String
The name of the Job resource.
properties Property Map
Properties of the Job resource

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource.
SystemData Pulumi.AzureNative.AppPlatform.Outputs.SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
Type string
The type of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource.
SystemData SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
Type string
The type of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource.
systemData SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
type String
The type of the resource.
id string
The provider-assigned unique ID for this managed resource.
name string
The name of the resource.
systemData SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
type string
The type of the resource.
id str
The provider-assigned unique ID for this managed resource.
name str
The name of the resource.
system_data SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
type str
The type of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource.
systemData Property Map
Metadata pertaining to creation and last modification of the resource.
type String
The type of the resource.

Supporting Types

BuildResultUserSourceInfo
, BuildResultUserSourceInfoArgs

BuildResultId string
Resource id of an existing succeeded build result under the same Spring instance.
Version string
Version of the source
BuildResultId string
Resource id of an existing succeeded build result under the same Spring instance.
Version string
Version of the source
buildResultId String
Resource id of an existing succeeded build result under the same Spring instance.
version String
Version of the source
buildResultId string
Resource id of an existing succeeded build result under the same Spring instance.
version string
Version of the source
build_result_id str
Resource id of an existing succeeded build result under the same Spring instance.
version str
Version of the source
buildResultId String
Resource id of an existing succeeded build result under the same Spring instance.
version String
Version of the source

BuildResultUserSourceInfoResponse
, BuildResultUserSourceInfoResponseArgs

BuildResultId string
Resource id of an existing succeeded build result under the same Spring instance.
Version string
Version of the source
BuildResultId string
Resource id of an existing succeeded build result under the same Spring instance.
Version string
Version of the source
buildResultId String
Resource id of an existing succeeded build result under the same Spring instance.
version String
Version of the source
buildResultId string
Resource id of an existing succeeded build result under the same Spring instance.
version string
Version of the source
build_result_id str
Resource id of an existing succeeded build result under the same Spring instance.
version str
Version of the source
buildResultId String
Resource id of an existing succeeded build result under the same Spring instance.
version String
Version of the source

CustomContainer
, CustomContainerArgs

Args List<string>
Arguments to the entrypoint. The docker image's CMD is used if this is not provided.
Command List<string>
Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided.
ContainerImage string
Container image of the custom container. This should be in the form of : without the server name of the registry
ImageRegistryCredential Pulumi.AzureNative.AppPlatform.Inputs.ImageRegistryCredential
Credential of the image registry
LanguageFramework string
Language framework of the container image uploaded. Supported values: "springboot", "", null.
Server string
The name of the registry that contains the container image
Args []string
Arguments to the entrypoint. The docker image's CMD is used if this is not provided.
Command []string
Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided.
ContainerImage string
Container image of the custom container. This should be in the form of : without the server name of the registry
ImageRegistryCredential ImageRegistryCredential
Credential of the image registry
LanguageFramework string
Language framework of the container image uploaded. Supported values: "springboot", "", null.
Server string
The name of the registry that contains the container image
args List<String>
Arguments to the entrypoint. The docker image's CMD is used if this is not provided.
command List<String>
Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided.
containerImage String
Container image of the custom container. This should be in the form of : without the server name of the registry
imageRegistryCredential ImageRegistryCredential
Credential of the image registry
languageFramework String
Language framework of the container image uploaded. Supported values: "springboot", "", null.
server String
The name of the registry that contains the container image
args string[]
Arguments to the entrypoint. The docker image's CMD is used if this is not provided.
command string[]
Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided.
containerImage string
Container image of the custom container. This should be in the form of : without the server name of the registry
imageRegistryCredential ImageRegistryCredential
Credential of the image registry
languageFramework string
Language framework of the container image uploaded. Supported values: "springboot", "", null.
server string
The name of the registry that contains the container image
args Sequence[str]
Arguments to the entrypoint. The docker image's CMD is used if this is not provided.
command Sequence[str]
Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided.
container_image str
Container image of the custom container. This should be in the form of : without the server name of the registry
image_registry_credential ImageRegistryCredential
Credential of the image registry
language_framework str
Language framework of the container image uploaded. Supported values: "springboot", "", null.
server str
The name of the registry that contains the container image
args List<String>
Arguments to the entrypoint. The docker image's CMD is used if this is not provided.
command List<String>
Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided.
containerImage String
Container image of the custom container. This should be in the form of : without the server name of the registry
imageRegistryCredential Property Map
Credential of the image registry
languageFramework String
Language framework of the container image uploaded. Supported values: "springboot", "", null.
server String
The name of the registry that contains the container image

CustomContainerResponse
, CustomContainerResponseArgs

Args List<string>
Arguments to the entrypoint. The docker image's CMD is used if this is not provided.
Command List<string>
Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided.
ContainerImage string
Container image of the custom container. This should be in the form of : without the server name of the registry
ImageRegistryCredential Pulumi.AzureNative.AppPlatform.Inputs.ImageRegistryCredentialResponse
Credential of the image registry
LanguageFramework string
Language framework of the container image uploaded. Supported values: "springboot", "", null.
Server string
The name of the registry that contains the container image
Args []string
Arguments to the entrypoint. The docker image's CMD is used if this is not provided.
Command []string
Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided.
ContainerImage string
Container image of the custom container. This should be in the form of : without the server name of the registry
ImageRegistryCredential ImageRegistryCredentialResponse
Credential of the image registry
LanguageFramework string
Language framework of the container image uploaded. Supported values: "springboot", "", null.
Server string
The name of the registry that contains the container image
args List<String>
Arguments to the entrypoint. The docker image's CMD is used if this is not provided.
command List<String>
Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided.
containerImage String
Container image of the custom container. This should be in the form of : without the server name of the registry
imageRegistryCredential ImageRegistryCredentialResponse
Credential of the image registry
languageFramework String
Language framework of the container image uploaded. Supported values: "springboot", "", null.
server String
The name of the registry that contains the container image
args string[]
Arguments to the entrypoint. The docker image's CMD is used if this is not provided.
command string[]
Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided.
containerImage string
Container image of the custom container. This should be in the form of : without the server name of the registry
imageRegistryCredential ImageRegistryCredentialResponse
Credential of the image registry
languageFramework string
Language framework of the container image uploaded. Supported values: "springboot", "", null.
server string
The name of the registry that contains the container image
args Sequence[str]
Arguments to the entrypoint. The docker image's CMD is used if this is not provided.
command Sequence[str]
Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided.
container_image str
Container image of the custom container. This should be in the form of : without the server name of the registry
image_registry_credential ImageRegistryCredentialResponse
Credential of the image registry
language_framework str
Language framework of the container image uploaded. Supported values: "springboot", "", null.
server str
The name of the registry that contains the container image
args List<String>
Arguments to the entrypoint. The docker image's CMD is used if this is not provided.
command List<String>
Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided.
containerImage String
Container image of the custom container. This should be in the form of : without the server name of the registry
imageRegistryCredential Property Map
Credential of the image registry
languageFramework String
Language framework of the container image uploaded. Supported values: "springboot", "", null.
server String
The name of the registry that contains the container image

CustomContainerUserSourceInfo
, CustomContainerUserSourceInfoArgs

CustomContainer Pulumi.AzureNative.AppPlatform.Inputs.CustomContainer
Custom container payload
Version string
Version of the source
CustomContainer CustomContainer
Custom container payload
Version string
Version of the source
customContainer CustomContainer
Custom container payload
version String
Version of the source
customContainer CustomContainer
Custom container payload
version string
Version of the source
custom_container CustomContainer
Custom container payload
version str
Version of the source
customContainer Property Map
Custom container payload
version String
Version of the source

CustomContainerUserSourceInfoResponse
, CustomContainerUserSourceInfoResponseArgs

CustomContainer CustomContainerResponse
Custom container payload
Version string
Version of the source
customContainer CustomContainerResponse
Custom container payload
version String
Version of the source
customContainer CustomContainerResponse
Custom container payload
version string
Version of the source
custom_container CustomContainerResponse
Custom container payload
version str
Version of the source
customContainer Property Map
Custom container payload
version String
Version of the source

EnvVar
, EnvVarArgs

Name string
Environment variable name.
SecretValue string
secret environment variable value.
Value string
Non-secret environment variable value.
Name string
Environment variable name.
SecretValue string
secret environment variable value.
Value string
Non-secret environment variable value.
name String
Environment variable name.
secretValue String
secret environment variable value.
value String
Non-secret environment variable value.
name string
Environment variable name.
secretValue string
secret environment variable value.
value string
Non-secret environment variable value.
name str
Environment variable name.
secret_value str
secret environment variable value.
value str
Non-secret environment variable value.
name String
Environment variable name.
secretValue String
secret environment variable value.
value String
Non-secret environment variable value.

EnvVarResponse
, EnvVarResponseArgs

Name string
Environment variable name.
SecretValue string
secret environment variable value.
Value string
Non-secret environment variable value.
Name string
Environment variable name.
SecretValue string
secret environment variable value.
Value string
Non-secret environment variable value.
name String
Environment variable name.
secretValue String
secret environment variable value.
value String
Non-secret environment variable value.
name string
Environment variable name.
secretValue string
secret environment variable value.
value string
Non-secret environment variable value.
name str
Environment variable name.
secret_value str
secret environment variable value.
value str
Non-secret environment variable value.
name String
Environment variable name.
secretValue String
secret environment variable value.
value String
Non-secret environment variable value.

ImageRegistryCredential
, ImageRegistryCredentialArgs

Password string
The password of the image registry credential
Username string
The username of the image registry credential
Password string
The password of the image registry credential
Username string
The username of the image registry credential
password String
The password of the image registry credential
username String
The username of the image registry credential
password string
The password of the image registry credential
username string
The username of the image registry credential
password str
The password of the image registry credential
username str
The username of the image registry credential
password String
The password of the image registry credential
username String
The username of the image registry credential

ImageRegistryCredentialResponse
, ImageRegistryCredentialResponseArgs

Password string
The password of the image registry credential
Username string
The username of the image registry credential
Password string
The password of the image registry credential
Username string
The username of the image registry credential
password String
The password of the image registry credential
username String
The username of the image registry credential
password string
The password of the image registry credential
username string
The username of the image registry credential
password str
The password of the image registry credential
username str
The username of the image registry credential
password String
The password of the image registry credential
username String
The username of the image registry credential

JarUploadedUserSourceInfo
, JarUploadedUserSourceInfoArgs

JvmOptions string
JVM parameter
RelativePath string
Relative path of the storage which stores the source
RuntimeVersion string
Runtime version of the Jar file
Version string
Version of the source
JvmOptions string
JVM parameter
RelativePath string
Relative path of the storage which stores the source
RuntimeVersion string
Runtime version of the Jar file
Version string
Version of the source
jvmOptions String
JVM parameter
relativePath String
Relative path of the storage which stores the source
runtimeVersion String
Runtime version of the Jar file
version String
Version of the source
jvmOptions string
JVM parameter
relativePath string
Relative path of the storage which stores the source
runtimeVersion string
Runtime version of the Jar file
version string
Version of the source
jvm_options str
JVM parameter
relative_path str
Relative path of the storage which stores the source
runtime_version str
Runtime version of the Jar file
version str
Version of the source
jvmOptions String
JVM parameter
relativePath String
Relative path of the storage which stores the source
runtimeVersion String
Runtime version of the Jar file
version String
Version of the source

JarUploadedUserSourceInfoResponse
, JarUploadedUserSourceInfoResponseArgs

JvmOptions string
JVM parameter
RelativePath string
Relative path of the storage which stores the source
RuntimeVersion string
Runtime version of the Jar file
Version string
Version of the source
JvmOptions string
JVM parameter
RelativePath string
Relative path of the storage which stores the source
RuntimeVersion string
Runtime version of the Jar file
Version string
Version of the source
jvmOptions String
JVM parameter
relativePath String
Relative path of the storage which stores the source
runtimeVersion String
Runtime version of the Jar file
version String
Version of the source
jvmOptions string
JVM parameter
relativePath string
Relative path of the storage which stores the source
runtimeVersion string
Runtime version of the Jar file
version string
Version of the source
jvm_options str
JVM parameter
relative_path str
Relative path of the storage which stores the source
runtime_version str
Runtime version of the Jar file
version str
Version of the source
jvmOptions String
JVM parameter
relativePath String
Relative path of the storage which stores the source
runtimeVersion String
Runtime version of the Jar file
version String
Version of the source

JobExecutionTemplate
, JobExecutionTemplateArgs

Args List<string>
Arguments for the Job execution.
EnvironmentVariables List<Pulumi.AzureNative.AppPlatform.Inputs.EnvVar>
Environment variables of Job execution
ResourceRequests Pulumi.AzureNative.AppPlatform.Inputs.JobResourceRequests
The requested resource quantity for required CPU and Memory.
Args []string
Arguments for the Job execution.
EnvironmentVariables []EnvVar
Environment variables of Job execution
ResourceRequests JobResourceRequests
The requested resource quantity for required CPU and Memory.
args List<String>
Arguments for the Job execution.
environmentVariables List<EnvVar>
Environment variables of Job execution
resourceRequests JobResourceRequests
The requested resource quantity for required CPU and Memory.
args string[]
Arguments for the Job execution.
environmentVariables EnvVar[]
Environment variables of Job execution
resourceRequests JobResourceRequests
The requested resource quantity for required CPU and Memory.
args Sequence[str]
Arguments for the Job execution.
environment_variables Sequence[EnvVar]
Environment variables of Job execution
resource_requests JobResourceRequests
The requested resource quantity for required CPU and Memory.
args List<String>
Arguments for the Job execution.
environmentVariables List<Property Map>
Environment variables of Job execution
resourceRequests Property Map
The requested resource quantity for required CPU and Memory.

JobExecutionTemplateResponse
, JobExecutionTemplateResponseArgs

Args List<string>
Arguments for the Job execution.
EnvironmentVariables List<Pulumi.AzureNative.AppPlatform.Inputs.EnvVarResponse>
Environment variables of Job execution
ResourceRequests Pulumi.AzureNative.AppPlatform.Inputs.JobResourceRequestsResponse
The requested resource quantity for required CPU and Memory.
Args []string
Arguments for the Job execution.
EnvironmentVariables []EnvVarResponse
Environment variables of Job execution
ResourceRequests JobResourceRequestsResponse
The requested resource quantity for required CPU and Memory.
args List<String>
Arguments for the Job execution.
environmentVariables List<EnvVarResponse>
Environment variables of Job execution
resourceRequests JobResourceRequestsResponse
The requested resource quantity for required CPU and Memory.
args string[]
Arguments for the Job execution.
environmentVariables EnvVarResponse[]
Environment variables of Job execution
resourceRequests JobResourceRequestsResponse
The requested resource quantity for required CPU and Memory.
args Sequence[str]
Arguments for the Job execution.
environment_variables Sequence[EnvVarResponse]
Environment variables of Job execution
resource_requests JobResourceRequestsResponse
The requested resource quantity for required CPU and Memory.
args List<String>
Arguments for the Job execution.
environmentVariables List<Property Map>
Environment variables of Job execution
resourceRequests Property Map
The requested resource quantity for required CPU and Memory.

JobResourceProperties
, JobResourcePropertiesArgs

ManagedComponentReferences List<Pulumi.AzureNative.AppPlatform.Inputs.ManagedComponentReference>
Referenced managed components collection
Source Pulumi.AzureNative.AppPlatform.Inputs.BuildResultUserSourceInfo | Pulumi.AzureNative.AppPlatform.Inputs.CustomContainerUserSourceInfo | Pulumi.AzureNative.AppPlatform.Inputs.JarUploadedUserSourceInfo | Pulumi.AzureNative.AppPlatform.Inputs.NetCoreZipUploadedUserSourceInfo | Pulumi.AzureNative.AppPlatform.Inputs.SourceUploadedUserSourceInfo | Pulumi.AzureNative.AppPlatform.Inputs.UploadedUserSourceInfo | Pulumi.AzureNative.AppPlatform.Inputs.WarUploadedUserSourceInfo
Uploaded source information of the Job.
Template Pulumi.AzureNative.AppPlatform.Inputs.JobExecutionTemplate
The template which is applied for all executions of the Job.
TriggerConfig Pulumi.AzureNative.AppPlatform.Inputs.ManualJobTriggerConfig
The Job trigger related configuration.
managedComponentReferences List<Property Map>
Referenced managed components collection
source Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
Uploaded source information of the Job.
template Property Map
The template which is applied for all executions of the Job.
triggerConfig Property Map
The Job trigger related configuration.

JobResourcePropertiesResponse
, JobResourcePropertiesResponseArgs

ProvisioningState This property is required. string
Provisioning state of the Job
ManagedComponentReferences List<Pulumi.AzureNative.AppPlatform.Inputs.ManagedComponentReferenceResponse>
Referenced managed components collection
Source Pulumi.AzureNative.AppPlatform.Inputs.BuildResultUserSourceInfoResponse | Pulumi.AzureNative.AppPlatform.Inputs.CustomContainerUserSourceInfoResponse | Pulumi.AzureNative.AppPlatform.Inputs.JarUploadedUserSourceInfoResponse | Pulumi.AzureNative.AppPlatform.Inputs.NetCoreZipUploadedUserSourceInfoResponse | Pulumi.AzureNative.AppPlatform.Inputs.SourceUploadedUserSourceInfoResponse | Pulumi.AzureNative.AppPlatform.Inputs.UploadedUserSourceInfoResponse | Pulumi.AzureNative.AppPlatform.Inputs.WarUploadedUserSourceInfoResponse
Uploaded source information of the Job.
Template Pulumi.AzureNative.AppPlatform.Inputs.JobExecutionTemplateResponse
The template which is applied for all executions of the Job.
TriggerConfig Pulumi.AzureNative.AppPlatform.Inputs.ManualJobTriggerConfigResponse
The Job trigger related configuration.
provisioningState This property is required. String
Provisioning state of the Job
managedComponentReferences List<Property Map>
Referenced managed components collection
source Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
Uploaded source information of the Job.
template Property Map
The template which is applied for all executions of the Job.
triggerConfig Property Map
The Job trigger related configuration.

JobResourceRequests
, JobResourceRequestsArgs

Cpu string
CPU allocated to each job execution instance.
Memory string
Memory allocated to each job execution instance.
Cpu string
CPU allocated to each job execution instance.
Memory string
Memory allocated to each job execution instance.
cpu String
CPU allocated to each job execution instance.
memory String
Memory allocated to each job execution instance.
cpu string
CPU allocated to each job execution instance.
memory string
Memory allocated to each job execution instance.
cpu str
CPU allocated to each job execution instance.
memory str
Memory allocated to each job execution instance.
cpu String
CPU allocated to each job execution instance.
memory String
Memory allocated to each job execution instance.

JobResourceRequestsResponse
, JobResourceRequestsResponseArgs

Cpu string
CPU allocated to each job execution instance.
Memory string
Memory allocated to each job execution instance.
Cpu string
CPU allocated to each job execution instance.
Memory string
Memory allocated to each job execution instance.
cpu String
CPU allocated to each job execution instance.
memory String
Memory allocated to each job execution instance.
cpu string
CPU allocated to each job execution instance.
memory string
Memory allocated to each job execution instance.
cpu str
CPU allocated to each job execution instance.
memory str
Memory allocated to each job execution instance.
cpu String
CPU allocated to each job execution instance.
memory String
Memory allocated to each job execution instance.

ManagedComponentReference
, ManagedComponentReferenceArgs

ResourceId This property is required. string
Resource Id of the managed component
ResourceId This property is required. string
Resource Id of the managed component
resourceId This property is required. String
Resource Id of the managed component
resourceId This property is required. string
Resource Id of the managed component
resource_id This property is required. str
Resource Id of the managed component
resourceId This property is required. String
Resource Id of the managed component

ManagedComponentReferenceResponse
, ManagedComponentReferenceResponseArgs

ResourceId This property is required. string
Resource Id of the managed component
ResourceId This property is required. string
Resource Id of the managed component
resourceId This property is required. String
Resource Id of the managed component
resourceId This property is required. string
Resource Id of the managed component
resource_id This property is required. str
Resource Id of the managed component
resourceId This property is required. String
Resource Id of the managed component

ManualJobTriggerConfig
, ManualJobTriggerConfigArgs

Parallelism int
Number of parallel replicas of a job execution can run.
RetryLimit int
Maximum number of retries before failing the job.
TimeoutInSeconds int
Maximum number of seconds an execution is allowed to run.
Parallelism int
Number of parallel replicas of a job execution can run.
RetryLimit int
Maximum number of retries before failing the job.
TimeoutInSeconds int
Maximum number of seconds an execution is allowed to run.
parallelism Integer
Number of parallel replicas of a job execution can run.
retryLimit Integer
Maximum number of retries before failing the job.
timeoutInSeconds Integer
Maximum number of seconds an execution is allowed to run.
parallelism number
Number of parallel replicas of a job execution can run.
retryLimit number
Maximum number of retries before failing the job.
timeoutInSeconds number
Maximum number of seconds an execution is allowed to run.
parallelism int
Number of parallel replicas of a job execution can run.
retry_limit int
Maximum number of retries before failing the job.
timeout_in_seconds int
Maximum number of seconds an execution is allowed to run.
parallelism Number
Number of parallel replicas of a job execution can run.
retryLimit Number
Maximum number of retries before failing the job.
timeoutInSeconds Number
Maximum number of seconds an execution is allowed to run.

ManualJobTriggerConfigResponse
, ManualJobTriggerConfigResponseArgs

Parallelism int
Number of parallel replicas of a job execution can run.
RetryLimit int
Maximum number of retries before failing the job.
TimeoutInSeconds int
Maximum number of seconds an execution is allowed to run.
Parallelism int
Number of parallel replicas of a job execution can run.
RetryLimit int
Maximum number of retries before failing the job.
TimeoutInSeconds int
Maximum number of seconds an execution is allowed to run.
parallelism Integer
Number of parallel replicas of a job execution can run.
retryLimit Integer
Maximum number of retries before failing the job.
timeoutInSeconds Integer
Maximum number of seconds an execution is allowed to run.
parallelism number
Number of parallel replicas of a job execution can run.
retryLimit number
Maximum number of retries before failing the job.
timeoutInSeconds number
Maximum number of seconds an execution is allowed to run.
parallelism int
Number of parallel replicas of a job execution can run.
retry_limit int
Maximum number of retries before failing the job.
timeout_in_seconds int
Maximum number of seconds an execution is allowed to run.
parallelism Number
Number of parallel replicas of a job execution can run.
retryLimit Number
Maximum number of retries before failing the job.
timeoutInSeconds Number
Maximum number of seconds an execution is allowed to run.

NetCoreZipUploadedUserSourceInfo
, NetCoreZipUploadedUserSourceInfoArgs

NetCoreMainEntryPath string
The path to the .NET executable relative to zip root
RelativePath string
Relative path of the storage which stores the source
RuntimeVersion string
Runtime version of the .Net file
Version string
Version of the source
NetCoreMainEntryPath string
The path to the .NET executable relative to zip root
RelativePath string
Relative path of the storage which stores the source
RuntimeVersion string
Runtime version of the .Net file
Version string
Version of the source
netCoreMainEntryPath String
The path to the .NET executable relative to zip root
relativePath String
Relative path of the storage which stores the source
runtimeVersion String
Runtime version of the .Net file
version String
Version of the source
netCoreMainEntryPath string
The path to the .NET executable relative to zip root
relativePath string
Relative path of the storage which stores the source
runtimeVersion string
Runtime version of the .Net file
version string
Version of the source
net_core_main_entry_path str
The path to the .NET executable relative to zip root
relative_path str
Relative path of the storage which stores the source
runtime_version str
Runtime version of the .Net file
version str
Version of the source
netCoreMainEntryPath String
The path to the .NET executable relative to zip root
relativePath String
Relative path of the storage which stores the source
runtimeVersion String
Runtime version of the .Net file
version String
Version of the source

NetCoreZipUploadedUserSourceInfoResponse
, NetCoreZipUploadedUserSourceInfoResponseArgs

NetCoreMainEntryPath string
The path to the .NET executable relative to zip root
RelativePath string
Relative path of the storage which stores the source
RuntimeVersion string
Runtime version of the .Net file
Version string
Version of the source
NetCoreMainEntryPath string
The path to the .NET executable relative to zip root
RelativePath string
Relative path of the storage which stores the source
RuntimeVersion string
Runtime version of the .Net file
Version string
Version of the source
netCoreMainEntryPath String
The path to the .NET executable relative to zip root
relativePath String
Relative path of the storage which stores the source
runtimeVersion String
Runtime version of the .Net file
version String
Version of the source
netCoreMainEntryPath string
The path to the .NET executable relative to zip root
relativePath string
Relative path of the storage which stores the source
runtimeVersion string
Runtime version of the .Net file
version string
Version of the source
net_core_main_entry_path str
The path to the .NET executable relative to zip root
relative_path str
Relative path of the storage which stores the source
runtime_version str
Runtime version of the .Net file
version str
Version of the source
netCoreMainEntryPath String
The path to the .NET executable relative to zip root
relativePath String
Relative path of the storage which stores the source
runtimeVersion String
Runtime version of the .Net file
version String
Version of the source

SourceUploadedUserSourceInfo
, SourceUploadedUserSourceInfoArgs

ArtifactSelector string
Selector for the artifact to be used for the deployment for multi-module projects. This should be the relative path to the target module/project.
RelativePath string
Relative path of the storage which stores the source
RuntimeVersion string
Runtime version of the source file
Version string
Version of the source
ArtifactSelector string
Selector for the artifact to be used for the deployment for multi-module projects. This should be the relative path to the target module/project.
RelativePath string
Relative path of the storage which stores the source
RuntimeVersion string
Runtime version of the source file
Version string
Version of the source
artifactSelector String
Selector for the artifact to be used for the deployment for multi-module projects. This should be the relative path to the target module/project.
relativePath String
Relative path of the storage which stores the source
runtimeVersion String
Runtime version of the source file
version String
Version of the source
artifactSelector string
Selector for the artifact to be used for the deployment for multi-module projects. This should be the relative path to the target module/project.
relativePath string
Relative path of the storage which stores the source
runtimeVersion string
Runtime version of the source file
version string
Version of the source
artifact_selector str
Selector for the artifact to be used for the deployment for multi-module projects. This should be the relative path to the target module/project.
relative_path str
Relative path of the storage which stores the source
runtime_version str
Runtime version of the source file
version str
Version of the source
artifactSelector String
Selector for the artifact to be used for the deployment for multi-module projects. This should be the relative path to the target module/project.
relativePath String
Relative path of the storage which stores the source
runtimeVersion String
Runtime version of the source file
version String
Version of the source

SourceUploadedUserSourceInfoResponse
, SourceUploadedUserSourceInfoResponseArgs

ArtifactSelector string
Selector for the artifact to be used for the deployment for multi-module projects. This should be the relative path to the target module/project.
RelativePath string
Relative path of the storage which stores the source
RuntimeVersion string
Runtime version of the source file
Version string
Version of the source
ArtifactSelector string
Selector for the artifact to be used for the deployment for multi-module projects. This should be the relative path to the target module/project.
RelativePath string
Relative path of the storage which stores the source
RuntimeVersion string
Runtime version of the source file
Version string
Version of the source
artifactSelector String
Selector for the artifact to be used for the deployment for multi-module projects. This should be the relative path to the target module/project.
relativePath String
Relative path of the storage which stores the source
runtimeVersion String
Runtime version of the source file
version String
Version of the source
artifactSelector string
Selector for the artifact to be used for the deployment for multi-module projects. This should be the relative path to the target module/project.
relativePath string
Relative path of the storage which stores the source
runtimeVersion string
Runtime version of the source file
version string
Version of the source
artifact_selector str
Selector for the artifact to be used for the deployment for multi-module projects. This should be the relative path to the target module/project.
relative_path str
Relative path of the storage which stores the source
runtime_version str
Runtime version of the source file
version str
Version of the source
artifactSelector String
Selector for the artifact to be used for the deployment for multi-module projects. This should be the relative path to the target module/project.
relativePath String
Relative path of the storage which stores the source
runtimeVersion String
Runtime version of the source file
version String
Version of the source

SystemDataResponse
, SystemDataResponseArgs

CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource modification (UTC).
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource modification (UTC).
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource modification (UTC).
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.
createdAt string
The timestamp of resource creation (UTC).
createdBy string
The identity that created the resource.
createdByType string
The type of identity that created the resource.
lastModifiedAt string
The timestamp of resource modification (UTC).
lastModifiedBy string
The identity that last modified the resource.
lastModifiedByType string
The type of identity that last modified the resource.
created_at str
The timestamp of resource creation (UTC).
created_by str
The identity that created the resource.
created_by_type str
The type of identity that created the resource.
last_modified_at str
The timestamp of resource modification (UTC).
last_modified_by str
The identity that last modified the resource.
last_modified_by_type str
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource modification (UTC).
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.

UploadedUserSourceInfo
, UploadedUserSourceInfoArgs

RelativePath string
Relative path of the storage which stores the source
Version string
Version of the source
RelativePath string
Relative path of the storage which stores the source
Version string
Version of the source
relativePath String
Relative path of the storage which stores the source
version String
Version of the source
relativePath string
Relative path of the storage which stores the source
version string
Version of the source
relative_path str
Relative path of the storage which stores the source
version str
Version of the source
relativePath String
Relative path of the storage which stores the source
version String
Version of the source

UploadedUserSourceInfoResponse
, UploadedUserSourceInfoResponseArgs

RelativePath string
Relative path of the storage which stores the source
Version string
Version of the source
RelativePath string
Relative path of the storage which stores the source
Version string
Version of the source
relativePath String
Relative path of the storage which stores the source
version String
Version of the source
relativePath string
Relative path of the storage which stores the source
version string
Version of the source
relative_path str
Relative path of the storage which stores the source
version str
Version of the source
relativePath String
Relative path of the storage which stores the source
version String
Version of the source

WarUploadedUserSourceInfo
, WarUploadedUserSourceInfoArgs

JvmOptions string
JVM parameter
RelativePath string
Relative path of the storage which stores the source
RuntimeVersion string
Runtime version of the war file
ServerVersion string
Server version, currently only Apache Tomcat is supported
Version string
Version of the source
JvmOptions string
JVM parameter
RelativePath string
Relative path of the storage which stores the source
RuntimeVersion string
Runtime version of the war file
ServerVersion string
Server version, currently only Apache Tomcat is supported
Version string
Version of the source
jvmOptions String
JVM parameter
relativePath String
Relative path of the storage which stores the source
runtimeVersion String
Runtime version of the war file
serverVersion String
Server version, currently only Apache Tomcat is supported
version String
Version of the source
jvmOptions string
JVM parameter
relativePath string
Relative path of the storage which stores the source
runtimeVersion string
Runtime version of the war file
serverVersion string
Server version, currently only Apache Tomcat is supported
version string
Version of the source
jvm_options str
JVM parameter
relative_path str
Relative path of the storage which stores the source
runtime_version str
Runtime version of the war file
server_version str
Server version, currently only Apache Tomcat is supported
version str
Version of the source
jvmOptions String
JVM parameter
relativePath String
Relative path of the storage which stores the source
runtimeVersion String
Runtime version of the war file
serverVersion String
Server version, currently only Apache Tomcat is supported
version String
Version of the source

WarUploadedUserSourceInfoResponse
, WarUploadedUserSourceInfoResponseArgs

JvmOptions string
JVM parameter
RelativePath string
Relative path of the storage which stores the source
RuntimeVersion string
Runtime version of the war file
ServerVersion string
Server version, currently only Apache Tomcat is supported
Version string
Version of the source
JvmOptions string
JVM parameter
RelativePath string
Relative path of the storage which stores the source
RuntimeVersion string
Runtime version of the war file
ServerVersion string
Server version, currently only Apache Tomcat is supported
Version string
Version of the source
jvmOptions String
JVM parameter
relativePath String
Relative path of the storage which stores the source
runtimeVersion String
Runtime version of the war file
serverVersion String
Server version, currently only Apache Tomcat is supported
version String
Version of the source
jvmOptions string
JVM parameter
relativePath string
Relative path of the storage which stores the source
runtimeVersion string
Runtime version of the war file
serverVersion string
Server version, currently only Apache Tomcat is supported
version string
Version of the source
jvm_options str
JVM parameter
relative_path str
Relative path of the storage which stores the source
runtime_version str
Runtime version of the war file
server_version str
Server version, currently only Apache Tomcat is supported
version str
Version of the source
jvmOptions String
JVM parameter
relativePath String
Relative path of the storage which stores the source
runtimeVersion String
Runtime version of the war file
serverVersion String
Server version, currently only Apache Tomcat is supported
version String
Version of the source

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:appplatform:Job test-job /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AppPlatform/Spring/{serviceName}/jobs/{jobName} 
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi