azure-native.appplatform.Job
Job resource payload
Uses Azure REST API version 2024-05-01-preview. In version 2.x of the Azure Native provider, it used 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",
    });
});
package main
import (
	appplatform "github.com/pulumi/pulumi-azure-native-sdk/appplatform/v3"
	"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
	})
}
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(Map.of("triggerType", "Manual"))
                .build())
            .resourceGroupName("myResourceGroup")
            .serviceName("myservice")
            .build());
    }
}
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",
});
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")
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
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)type: azure-native:appplatform:Job
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args JobArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args 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 string
- The unique name of the resource.
- args JobArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args JobArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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 = new AzureNative.AppPlatform.Inputs.JobResourcePropertiesArgs
    {
        ManagedComponentReferences = new[]
        {
            new AzureNative.AppPlatform.Inputs.ManagedComponentReferenceArgs
            {
                ResourceId = "string",
            },
        },
        Source = new AzureNative.AppPlatform.Inputs.BuildResultUserSourceInfoArgs
        {
            Type = "BuildResult",
            BuildResultId = "string",
            Version = "string",
        },
        Template = new AzureNative.AppPlatform.Inputs.JobExecutionTemplateArgs
        {
            Args = new[]
            {
                "string",
            },
            EnvironmentVariables = new[]
            {
                new AzureNative.AppPlatform.Inputs.EnvVarArgs
                {
                    Name = "string",
                    SecretValue = "string",
                    Value = "string",
                },
            },
            ResourceRequests = new AzureNative.AppPlatform.Inputs.JobResourceRequestsArgs
            {
                Cpu = "string",
                Memory = "string",
            },
        },
        TriggerConfig = new AzureNative.AppPlatform.Inputs.ManualJobTriggerConfigArgs
        {
            TriggerType = "Manual",
            Parallelism = 0,
            RetryLimit = 0,
            TimeoutInSeconds = 0,
        },
    },
});
example, err := appplatform.NewJob(ctx, "azure-nativeJobResource", &appplatform.JobArgs{
	ResourceGroupName: pulumi.String("string"),
	ServiceName:       pulumi.String("string"),
	JobName:           pulumi.String("string"),
	Properties: &appplatform.JobResourcePropertiesArgs{
		ManagedComponentReferences: appplatform.ManagedComponentReferenceArray{
			&appplatform.ManagedComponentReferenceArgs{
				ResourceId: pulumi.String("string"),
			},
		},
		Source: appplatform.BuildResultUserSourceInfo{
			Type:          "BuildResult",
			BuildResultId: "string",
			Version:       "string",
		},
		Template: &appplatform.JobExecutionTemplateArgs{
			Args: pulumi.StringArray{
				pulumi.String("string"),
			},
			EnvironmentVariables: appplatform.EnvVarArray{
				&appplatform.EnvVarArgs{
					Name:        pulumi.String("string"),
					SecretValue: pulumi.String("string"),
					Value:       pulumi.String("string"),
				},
			},
			ResourceRequests: &appplatform.JobResourceRequestsArgs{
				Cpu:    pulumi.String("string"),
				Memory: pulumi.String("string"),
			},
		},
		TriggerConfig: &appplatform.ManualJobTriggerConfigArgs{
			TriggerType:      pulumi.String("Manual"),
			Parallelism:      pulumi.Int(0),
			RetryLimit:       pulumi.Int(0),
			TimeoutInSeconds: pulumi.Int(0),
		},
	},
})
var azure_nativeJobResource = new com.pulumi.azurenative.appplatform.Job("azure-nativeJobResource", com.pulumi.azurenative.appplatform.JobArgs.builder()
    .resourceGroupName("string")
    .serviceName("string")
    .jobName("string")
    .properties(JobResourcePropertiesArgs.builder()
        .managedComponentReferences(ManagedComponentReferenceArgs.builder()
            .resourceId("string")
            .build())
        .source(BuildResultUserSourceInfoArgs.builder()
            .type("BuildResult")
            .buildResultId("string")
            .version("string")
            .build())
        .template(JobExecutionTemplateArgs.builder()
            .args("string")
            .environmentVariables(EnvVarArgs.builder()
                .name("string")
                .secretValue("string")
                .value("string")
                .build())
            .resourceRequests(JobResourceRequestsArgs.builder()
                .cpu("string")
                .memory("string")
                .build())
            .build())
        .triggerConfig(Map.ofEntries(
            Map.entry("triggerType", "Manual"),
            Map.entry("parallelism", 0),
            Map.entry("retryLimit", 0),
            Map.entry("timeoutInSeconds", 0)
        ))
        .build())
    .build());
azure_native_job_resource = azure_native.appplatform.Job("azure-nativeJobResource",
    resource_group_name="string",
    service_name="string",
    job_name="string",
    properties={
        "managed_component_references": [{
            "resource_id": "string",
        }],
        "source": {
            "type": "BuildResult",
            "build_result_id": "string",
            "version": "string",
        },
        "template": {
            "args": ["string"],
            "environment_variables": [{
                "name": "string",
                "secret_value": "string",
                "value": "string",
            }],
            "resource_requests": {
                "cpu": "string",
                "memory": "string",
            },
        },
        "trigger_config": {
            "trigger_type": "Manual",
            "parallelism": 0,
            "retry_limit": 0,
            "timeout_in_seconds": 0,
        },
    })
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,
        },
    },
});
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
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:
- ResourceGroup stringName 
- 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 string
- The name of the Service resource.
- JobName string
- The name of the Job resource.
- Properties
Pulumi.Azure Native. App Platform. Inputs. Job Resource Properties 
- Properties of the Job resource
- ResourceGroup stringName 
- 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 string
- The name of the Service resource.
- JobName string
- The name of the Job resource.
- Properties
JobResource Properties Args 
- Properties of the Job resource
- resourceGroup StringName 
- 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 String
- The name of the Service resource.
- jobName String
- The name of the Job resource.
- properties
JobResource Properties 
- Properties of the Job resource
- resourceGroup stringName 
- 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 string
- The name of the Service resource.
- jobName string
- The name of the Job resource.
- properties
JobResource Properties 
- Properties of the Job resource
- resource_group_ strname 
- 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 str
- The name of the Service resource.
- job_name str
- The name of the Job resource.
- properties
JobResource Properties Args 
- Properties of the Job resource
- resourceGroup StringName 
- 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 String
- The name of the Service resource.
- jobName 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:
- AzureApi stringVersion 
- The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource.
- SystemData Pulumi.Azure Native. App Platform. Outputs. System Data Response 
- Metadata pertaining to creation and last modification of the resource.
- Type string
- The type of the resource.
- AzureApi stringVersion 
- The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource.
- SystemData SystemData Response 
- Metadata pertaining to creation and last modification of the resource.
- Type string
- The type of the resource.
- azureApi StringVersion 
- The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource.
- systemData SystemData Response 
- Metadata pertaining to creation and last modification of the resource.
- type String
- The type of the resource.
- azureApi stringVersion 
- The Azure API version of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource.
- systemData SystemData Response 
- Metadata pertaining to creation and last modification of the resource.
- type string
- The type of the resource.
- azure_api_ strversion 
- The Azure API version of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource.
- system_data SystemData Response 
- Metadata pertaining to creation and last modification of the resource.
- type str
- The type of the resource.
- azureApi StringVersion 
- The Azure API version 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          
Reference to a build result- BuildResult stringId 
- Resource id of an existing succeeded build result under the same Spring instance.
- Version string
- Version of the source
- BuildResult stringId 
- Resource id of an existing succeeded build result under the same Spring instance.
- Version string
- Version of the source
- buildResult StringId 
- Resource id of an existing succeeded build result under the same Spring instance.
- version String
- Version of the source
- buildResult stringId 
- Resource id of an existing succeeded build result under the same Spring instance.
- version string
- Version of the source
- build_result_ strid 
- Resource id of an existing succeeded build result under the same Spring instance.
- version str
- Version of the source
- buildResult StringId 
- Resource id of an existing succeeded build result under the same Spring instance.
- version String
- Version of the source
BuildResultUserSourceInfoResponse, BuildResultUserSourceInfoResponseArgs            
Reference to a build result- BuildResult stringId 
- Resource id of an existing succeeded build result under the same Spring instance.
- Version string
- Version of the source
- BuildResult stringId 
- Resource id of an existing succeeded build result under the same Spring instance.
- Version string
- Version of the source
- buildResult StringId 
- Resource id of an existing succeeded build result under the same Spring instance.
- version String
- Version of the source
- buildResult stringId 
- Resource id of an existing succeeded build result under the same Spring instance.
- version string
- Version of the source
- build_result_ strid 
- Resource id of an existing succeeded build result under the same Spring instance.
- version str
- Version of the source
- buildResult StringId 
- Resource id of an existing succeeded build result under the same Spring instance.
- version String
- Version of the source
CustomContainer, CustomContainerArgs    
Custom container payload- 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
- ImageRegistry Pulumi.Credential Azure Native. App Platform. Inputs. Image Registry Credential 
- 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
- ImageRegistry ImageCredential Registry Credential 
- 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
- imageRegistry ImageCredential Registry Credential 
- 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
- imageRegistry ImageCredential Registry Credential 
- 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_ Imagecredential Registry Credential 
- 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
- imageRegistry Property MapCredential 
- 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      
Custom container payload- 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
- ImageRegistry Pulumi.Credential Azure Native. App Platform. Inputs. Image Registry Credential Response 
- 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
- ImageRegistry ImageCredential Registry Credential Response 
- 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
- imageRegistry ImageCredential Registry Credential Response 
- 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
- imageRegistry ImageCredential Registry Credential Response 
- 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_ Imagecredential Registry Credential Response 
- 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
- imageRegistry Property MapCredential 
- 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          
Custom container user source info- CustomContainer Pulumi.Azure Native. App Platform. Inputs. Custom Container 
- 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            
Custom container user source info- CustomContainer Pulumi.Azure Native. App Platform. Inputs. Custom Container Response 
- Custom container payload
- Version string
- Version of the source
- CustomContainer CustomContainer Response 
- Custom container payload
- Version string
- Version of the source
- customContainer CustomContainer Response 
- Custom container payload
- version String
- Version of the source
- customContainer CustomContainer Response 
- Custom container payload
- version string
- Version of the source
- custom_container CustomContainer Response 
- Custom container payload
- version str
- Version of the source
- customContainer Property Map
- Custom container payload
- version String
- Version of the source
EnvVar, EnvVarArgs    
Azure Spring Apps components' environment variable.- 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      
Azure Spring Apps components' environment variable.- 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      
Credential of the image registryImageRegistryCredentialResponse, ImageRegistryCredentialResponseArgs        
Credential of the image registryJarUploadedUserSourceInfo, JarUploadedUserSourceInfoArgs          
Uploaded Jar binary for a deployment- 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            
Uploaded Jar binary for a deployment- 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      
Job's execution template, containing configuration for an execution- Args List<string>
- Arguments for the Job execution.
- EnvironmentVariables List<Pulumi.Azure Native. App Platform. Inputs. Env Var> 
- Environment variables of Job execution
- ResourceRequests Pulumi.Azure Native. App Platform. Inputs. Job Resource Requests 
- The requested resource quantity for required CPU and Memory.
- Args []string
- Arguments for the Job execution.
- EnvironmentVariables []EnvVar 
- Environment variables of Job execution
- ResourceRequests JobResource Requests 
- 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 JobResource Requests 
- The requested resource quantity for required CPU and Memory.
- args string[]
- Arguments for the Job execution.
- environmentVariables EnvVar[] 
- Environment variables of Job execution
- resourceRequests JobResource Requests 
- 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 JobResource Requests 
- 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        
Job's execution template, containing configuration for an execution- Args List<string>
- Arguments for the Job execution.
- EnvironmentVariables List<Pulumi.Azure Native. App Platform. Inputs. Env Var Response> 
- Environment variables of Job execution
- ResourceRequests Pulumi.Azure Native. App Platform. Inputs. Job Resource Requests Response 
- The requested resource quantity for required CPU and Memory.
- Args []string
- Arguments for the Job execution.
- EnvironmentVariables []EnvVar Response 
- Environment variables of Job execution
- ResourceRequests JobResource Requests Response 
- The requested resource quantity for required CPU and Memory.
- args List<String>
- Arguments for the Job execution.
- environmentVariables List<EnvVar Response> 
- Environment variables of Job execution
- resourceRequests JobResource Requests Response 
- The requested resource quantity for required CPU and Memory.
- args string[]
- Arguments for the Job execution.
- environmentVariables EnvVar Response[] 
- Environment variables of Job execution
- resourceRequests JobResource Requests Response 
- The requested resource quantity for required CPU and Memory.
- args Sequence[str]
- Arguments for the Job execution.
- environment_variables Sequence[EnvVar Response] 
- Environment variables of Job execution
- resource_requests JobResource Requests Response 
- 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      
Job resource properties payload- ManagedComponent List<Pulumi.References Azure Native. App Platform. Inputs. Managed Component Reference> 
- Referenced managed components collection
- Source
Pulumi.Azure | Pulumi.Native. App Platform. Inputs. Build Result User Source Info Azure | Pulumi.Native. App Platform. Inputs. Custom Container User Source Info Azure | Pulumi.Native. App Platform. Inputs. Jar Uploaded User Source Info Azure | Pulumi.Native. App Platform. Inputs. Net Core Zip Uploaded User Source Info Azure | Pulumi.Native. App Platform. Inputs. Source Uploaded User Source Info Azure | Pulumi.Native. App Platform. Inputs. Uploaded User Source Info Azure Native. App Platform. Inputs. War Uploaded User Source Info 
- Uploaded source information of the Job.
- Template
Pulumi.Azure Native. App Platform. Inputs. Job Execution Template 
- The template which is applied for all executions of the Job.
- TriggerConfig Pulumi.Azure Native. App Platform. Inputs. Manual Job Trigger Config 
- The Job trigger related configuration.
- ManagedComponent []ManagedReferences Component Reference 
- Referenced managed components collection
- Source
BuildResult | CustomUser Source Info Container | JarUser Source Info Uploaded | NetUser Source Info Core | SourceZip Uploaded User Source Info Uploaded | UploadedUser Source Info User | WarSource Info Uploaded User Source Info 
- Uploaded source information of the Job.
- Template
JobExecution Template 
- The template which is applied for all executions of the Job.
- TriggerConfig ManualJob Trigger Config 
- The Job trigger related configuration.
- managedComponent List<ManagedReferences Component Reference> 
- Referenced managed components collection
- source
BuildResult | CustomUser Source Info Container | JarUser Source Info Uploaded | NetUser Source Info Core | SourceZip Uploaded User Source Info Uploaded | UploadedUser Source Info User | WarSource Info Uploaded User Source Info 
- Uploaded source information of the Job.
- template
JobExecution Template 
- The template which is applied for all executions of the Job.
- triggerConfig ManualJob Trigger Config 
- The Job trigger related configuration.
- managedComponent ManagedReferences Component Reference[] 
- Referenced managed components collection
- source
BuildResult | CustomUser Source Info Container | JarUser Source Info Uploaded | NetUser Source Info Core | SourceZip Uploaded User Source Info Uploaded | UploadedUser Source Info User | WarSource Info Uploaded User Source Info 
- Uploaded source information of the Job.
- template
JobExecution Template 
- The template which is applied for all executions of the Job.
- triggerConfig ManualJob Trigger Config 
- The Job trigger related configuration.
- managed_component_ Sequence[Managedreferences Component Reference] 
- Referenced managed components collection
- source
BuildResult | CustomUser Source Info Container | JarUser Source Info Uploaded | NetUser Source Info Core | SourceZip Uploaded User Source Info Uploaded | UploadedUser Source Info User | WarSource Info Uploaded User Source Info 
- Uploaded source information of the Job.
- template
JobExecution Template 
- The template which is applied for all executions of the Job.
- trigger_config ManualJob Trigger Config 
- The Job trigger related configuration.
- managedComponent List<Property Map>References 
- 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        
Job resource properties payload- ProvisioningState string
- Provisioning state of the Job
- ManagedComponent List<Pulumi.References Azure Native. App Platform. Inputs. Managed Component Reference Response> 
- Referenced managed components collection
- Source
Pulumi.Azure | Pulumi.Native. App Platform. Inputs. Build Result User Source Info Response Azure | Pulumi.Native. App Platform. Inputs. Custom Container User Source Info Response Azure | Pulumi.Native. App Platform. Inputs. Jar Uploaded User Source Info Response Azure | Pulumi.Native. App Platform. Inputs. Net Core Zip Uploaded User Source Info Response Azure | Pulumi.Native. App Platform. Inputs. Source Uploaded User Source Info Response Azure | Pulumi.Native. App Platform. Inputs. Uploaded User Source Info Response Azure Native. App Platform. Inputs. War Uploaded User Source Info Response 
- Uploaded source information of the Job.
- Template
Pulumi.Azure Native. App Platform. Inputs. Job Execution Template Response 
- The template which is applied for all executions of the Job.
- TriggerConfig Pulumi.Azure Native. App Platform. Inputs. Manual Job Trigger Config Response 
- The Job trigger related configuration.
- ProvisioningState string
- Provisioning state of the Job
- ManagedComponent []ManagedReferences Component Reference Response 
- Referenced managed components collection
- Source
BuildResult | CustomUser Source Info Response Container | JarUser Source Info Response Uploaded | NetUser Source Info Response Core | SourceZip Uploaded User Source Info Response Uploaded | UploadedUser Source Info Response User | WarSource Info Response Uploaded User Source Info Response 
- Uploaded source information of the Job.
- Template
JobExecution Template Response 
- The template which is applied for all executions of the Job.
- TriggerConfig ManualJob Trigger Config Response 
- The Job trigger related configuration.
- provisioningState String
- Provisioning state of the Job
- managedComponent List<ManagedReferences Component Reference Response> 
- Referenced managed components collection
- source
BuildResult | CustomUser Source Info Response Container | JarUser Source Info Response Uploaded | NetUser Source Info Response Core | SourceZip Uploaded User Source Info Response Uploaded | UploadedUser Source Info Response User | WarSource Info Response Uploaded User Source Info Response 
- Uploaded source information of the Job.
- template
JobExecution Template Response 
- The template which is applied for all executions of the Job.
- triggerConfig ManualJob Trigger Config Response 
- The Job trigger related configuration.
- provisioningState string
- Provisioning state of the Job
- managedComponent ManagedReferences Component Reference Response[] 
- Referenced managed components collection
- source
BuildResult | CustomUser Source Info Response Container | JarUser Source Info Response Uploaded | NetUser Source Info Response Core | SourceZip Uploaded User Source Info Response Uploaded | UploadedUser Source Info Response User | WarSource Info Response Uploaded User Source Info Response 
- Uploaded source information of the Job.
- template
JobExecution Template Response 
- The template which is applied for all executions of the Job.
- triggerConfig ManualJob Trigger Config Response 
- The Job trigger related configuration.
- provisioning_state str
- Provisioning state of the Job
- managed_component_ Sequence[Managedreferences Component Reference Response] 
- Referenced managed components collection
- source
BuildResult | CustomUser Source Info Response Container | JarUser Source Info Response Uploaded | NetUser Source Info Response Core | SourceZip Uploaded User Source Info Response Uploaded | UploadedUser Source Info Response User | WarSource Info Response Uploaded User Source Info Response 
- Uploaded source information of the Job.
- template
JobExecution Template Response 
- The template which is applied for all executions of the Job.
- trigger_config ManualJob Trigger Config Response 
- The Job trigger related configuration.
- provisioningState String
- Provisioning state of the Job
- managedComponent List<Property Map>References 
- 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      
Job resource request payloadJobResourceRequestsResponse, JobResourceRequestsResponseArgs        
Job resource request payloadManagedComponentReference, ManagedComponentReferenceArgs      
A reference to the managed component like Config Server.- ResourceId string
- Resource Id of the managed component
- ResourceId string
- Resource Id of the managed component
- resourceId String
- Resource Id of the managed component
- resourceId string
- Resource Id of the managed component
- resource_id str
- Resource Id of the managed component
- resourceId String
- Resource Id of the managed component
ManagedComponentReferenceResponse, ManagedComponentReferenceResponseArgs        
A reference to the managed component like Config Server.- ResourceId string
- Resource Id of the managed component
- ResourceId string
- Resource Id of the managed component
- resourceId String
- Resource Id of the managed component
- resourceId string
- Resource Id of the managed component
- resource_id str
- Resource Id of the managed component
- resourceId String
- Resource Id of the managed component
ManualJobTriggerConfig, ManualJobTriggerConfigArgs        
Configuration for manual triggered job- Parallelism int
- Number of parallel replicas of a job execution can run.
- RetryLimit int
- Maximum number of retries before failing the job.
- TimeoutIn intSeconds 
- 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.
- TimeoutIn intSeconds 
- 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.
- timeoutIn IntegerSeconds 
- 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.
- timeoutIn numberSeconds 
- 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_ intseconds 
- 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.
- timeoutIn NumberSeconds 
- Maximum number of seconds an execution is allowed to run.
ManualJobTriggerConfigResponse, ManualJobTriggerConfigResponseArgs          
Configuration for manual triggered job- Parallelism int
- Number of parallel replicas of a job execution can run.
- RetryLimit int
- Maximum number of retries before failing the job.
- TimeoutIn intSeconds 
- 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.
- TimeoutIn intSeconds 
- 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.
- timeoutIn IntegerSeconds 
- 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.
- timeoutIn numberSeconds 
- 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_ intseconds 
- 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.
- timeoutIn NumberSeconds 
- Maximum number of seconds an execution is allowed to run.
NetCoreZipUploadedUserSourceInfo, NetCoreZipUploadedUserSourceInfoArgs              
Uploaded Jar binary for a deployment- NetCore stringMain Entry Path 
- 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
- NetCore stringMain Entry Path 
- 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
- netCore StringMain Entry Path 
- 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
- netCore stringMain Entry Path 
- 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_ strmain_ entry_ path 
- 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
- netCore StringMain Entry Path 
- 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                
Uploaded Jar binary for a deployment- NetCore stringMain Entry Path 
- 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
- NetCore stringMain Entry Path 
- 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
- netCore StringMain Entry Path 
- 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
- netCore stringMain Entry Path 
- 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_ strmain_ entry_ path 
- 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
- netCore StringMain Entry Path 
- 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          
Uploaded Java source code binary for a deployment- 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            
Uploaded Java source code binary for a deployment- 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      
Metadata pertaining to creation and last modification of the resource.- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource modification (UTC).
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource modification (UTC).
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource modification (UTC).
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource modification (UTC).
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- 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_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource modification (UTC).
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource modification (UTC).
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
UploadedUserSourceInfo, UploadedUserSourceInfoArgs        
Source with uploaded location- 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          
Source with uploaded location- 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          
Uploaded War binary for a deployment- 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            
Uploaded War binary for a deployment- 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} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0
