azure-native.appplatform.Job
Explore with Pulumi AI
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",
});
});
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
})
}
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());
}
}
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")
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",
});
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 Job("azure-nativeJobResource", 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(ManualJobTriggerConfigArgs.builder()
.triggerType("Manual")
.parallelism(0)
.retryLimit(0)
.timeoutInSeconds(0)
.build())
.build())
.build());
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,
},
})
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
The Job resource accepts the following input properties:
- Resource
Group 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.
- Service
Name string - The name of the Service resource.
- Job
Name string - The name of the Job resource.
- Properties
Pulumi.
Azure Native. App Platform. Inputs. Job Resource Properties - Properties of the Job resource
- Resource
Group 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.
- Service
Name string - The name of the Service resource.
- Job
Name string - The name of the Job resource.
- Properties
Job
Resource Properties Args - Properties of the Job resource
- resource
Group 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.
- service
Name String - The name of the Service resource.
- job
Name String - The name of the Job resource.
- properties
Job
Resource Properties - Properties of the Job resource
- resource
Group 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.
- service
Name string - The name of the Service resource.
- job
Name string - The name of the Job resource.
- properties
Job
Resource 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
Job
Resource Properties Args - Properties of the Job resource
- resource
Group 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.
- service
Name String - The name of the Service resource.
- job
Name 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.
- System
Data 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.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource.
- System
Data SystemData Response - 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.
- system
Data SystemData Response - 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.
- system
Data SystemData Response - 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 SystemData Response - 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.
- system
Data Property Map - Metadata pertaining to creation and last modification of the resource.
- type String
- The type of the resource.
Supporting Types
BuildResultUserSourceInfo, BuildResultUserSourceInfoArgs
- Build
Result stringId - Resource id of an existing succeeded build result under the same Spring instance.
- Version string
- Version of the source
- Build
Result stringId - Resource id of an existing succeeded build result under the same Spring instance.
- Version string
- Version of the source
- build
Result StringId - Resource id of an existing succeeded build result under the same Spring instance.
- version String
- Version of the source
- build
Result 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
- build
Result StringId - Resource id of an existing succeeded build result under the same Spring instance.
- version String
- Version of the source
BuildResultUserSourceInfoResponse, BuildResultUserSourceInfoResponseArgs
- Build
Result stringId - Resource id of an existing succeeded build result under the same Spring instance.
- Version string
- Version of the source
- Build
Result stringId - Resource id of an existing succeeded build result under the same Spring instance.
- Version string
- Version of the source
- build
Result StringId - Resource id of an existing succeeded build result under the same Spring instance.
- version String
- Version of the source
- build
Result 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
- build
Result StringId - 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.
- Container
Image string - Container image of the custom container. This should be in the form of : without the server name of the registry
- Image
Registry Pulumi.Credential Azure Native. App Platform. Inputs. Image Registry Credential - Credential of the image registry
- Language
Framework 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.
- Container
Image string - 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 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.
- container
Image String - 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 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.
- container
Image string - 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 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.
- container
Image String - Container image of the custom container. This should be in the form of : without the server name of the registry
- image
Registry Property MapCredential - Credential of the image registry
- language
Framework 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.
- Container
Image string - Container image of the custom container. This should be in the form of : without the server name of the registry
- Image
Registry Pulumi.Credential Azure Native. App Platform. Inputs. Image Registry Credential Response - Credential of the image registry
- Language
Framework 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.
- Container
Image string - 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 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.
- container
Image String - 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 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.
- container
Image string - 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 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.
- container
Image String - Container image of the custom container. This should be in the form of : without the server name of the registry
- image
Registry Property MapCredential - Credential of the image registry
- language
Framework 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 Pulumi.Azure Native. App Platform. Inputs. Custom Container - Custom container payload
- Version string
- Version of the source
- Custom
Container CustomContainer - Custom container payload
- Version string
- Version of the source
- custom
Container CustomContainer - Custom container payload
- version String
- Version of the source
- custom
Container CustomContainer - Custom container payload
- version string
- Version of the source
- custom_
container CustomContainer - Custom container payload
- version str
- Version of the source
- custom
Container Property Map - Custom container payload
- version String
- Version of the source
CustomContainerUserSourceInfoResponse, CustomContainerUserSourceInfoResponseArgs
- Custom
Container Pulumi.Azure Native. App Platform. Inputs. Custom Container Response - Custom container payload
- Version string
- Version of the source
- Custom
Container CustomContainer Response - Custom container payload
- Version string
- Version of the source
- custom
Container CustomContainer Response - Custom container payload
- version String
- Version of the source
- custom
Container CustomContainer Response - Custom container payload
- version string
- Version of the source
- custom_
container CustomContainer Response - Custom container payload
- version str
- Version of the source
- custom
Container Property Map - Custom container payload
- version String
- Version of the source
EnvVar, EnvVarArgs
- Name string
- Environment variable name.
- Secret
Value string - secret environment variable value.
- Value string
- Non-secret environment variable value.
- Name string
- Environment variable name.
- Secret
Value string - secret environment variable value.
- Value string
- Non-secret environment variable value.
- name String
- Environment variable name.
- secret
Value String - secret environment variable value.
- value String
- Non-secret environment variable value.
- name string
- Environment variable name.
- secret
Value 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.
- secret
Value String - secret environment variable value.
- value String
- Non-secret environment variable value.
EnvVarResponse, EnvVarResponseArgs
- Name string
- Environment variable name.
- Secret
Value string - secret environment variable value.
- Value string
- Non-secret environment variable value.
- Name string
- Environment variable name.
- Secret
Value string - secret environment variable value.
- Value string
- Non-secret environment variable value.
- name String
- Environment variable name.
- secret
Value String - secret environment variable value.
- value String
- Non-secret environment variable value.
- name string
- Environment variable name.
- secret
Value 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.
- secret
Value String - secret environment variable value.
- value String
- Non-secret environment variable value.
ImageRegistryCredential, ImageRegistryCredentialArgs
ImageRegistryCredentialResponse, ImageRegistryCredentialResponseArgs
JarUploadedUserSourceInfo, JarUploadedUserSourceInfoArgs
- Jvm
Options string - JVM parameter
- Relative
Path string - Relative path of the storage which stores the source
- Runtime
Version string - Runtime version of the Jar file
- Version string
- Version of the source
- Jvm
Options string - JVM parameter
- Relative
Path string - Relative path of the storage which stores the source
- Runtime
Version string - Runtime version of the Jar file
- Version string
- Version of the source
- jvm
Options String - JVM parameter
- relative
Path String - Relative path of the storage which stores the source
- runtime
Version String - Runtime version of the Jar file
- version String
- Version of the source
- jvm
Options string - JVM parameter
- relative
Path string - Relative path of the storage which stores the source
- runtime
Version 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
- jvm
Options String - JVM parameter
- relative
Path String - Relative path of the storage which stores the source
- runtime
Version String - Runtime version of the Jar file
- version String
- Version of the source
JarUploadedUserSourceInfoResponse, JarUploadedUserSourceInfoResponseArgs
- Jvm
Options string - JVM parameter
- Relative
Path string - Relative path of the storage which stores the source
- Runtime
Version string - Runtime version of the Jar file
- Version string
- Version of the source
- Jvm
Options string - JVM parameter
- Relative
Path string - Relative path of the storage which stores the source
- Runtime
Version string - Runtime version of the Jar file
- Version string
- Version of the source
- jvm
Options String - JVM parameter
- relative
Path String - Relative path of the storage which stores the source
- runtime
Version String - Runtime version of the Jar file
- version String
- Version of the source
- jvm
Options string - JVM parameter
- relative
Path string - Relative path of the storage which stores the source
- runtime
Version 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
- jvm
Options String - JVM parameter
- relative
Path String - Relative path of the storage which stores the source
- runtime
Version String - Runtime version of the Jar file
- version String
- Version of the source
JobExecutionTemplate, JobExecutionTemplateArgs
- Args List<string>
- Arguments for the Job execution.
- Environment
Variables List<Pulumi.Azure Native. App Platform. Inputs. Env Var> - Environment variables of Job execution
- Resource
Requests 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.
- Environment
Variables []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.
- environment
Variables List<EnvVar> - Environment variables of Job execution
- resource
Requests JobResource Requests - The requested resource quantity for required CPU and Memory.
- args string[]
- Arguments for the Job execution.
- environment
Variables EnvVar[] - Environment variables of Job execution
- resource
Requests 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.
- environment
Variables List<Property Map> - Environment variables of Job execution
- resource
Requests Property Map - The requested resource quantity for required CPU and Memory.
JobExecutionTemplateResponse, JobExecutionTemplateResponseArgs
- Args List<string>
- Arguments for the Job execution.
- Environment
Variables List<Pulumi.Azure Native. App Platform. Inputs. Env Var Response> - Environment variables of Job execution
- Resource
Requests 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.
- Environment
Variables []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.
- environment
Variables List<EnvVar Response> - Environment variables of Job execution
- resource
Requests JobResource Requests Response - The requested resource quantity for required CPU and Memory.
- args string[]
- Arguments for the Job execution.
- environment
Variables EnvVar Response[] - Environment variables of Job execution
- resource
Requests 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.
- environment
Variables List<Property Map> - Environment variables of Job execution
- resource
Requests Property Map - The requested resource quantity for required CPU and Memory.
JobResourceProperties, JobResourcePropertiesArgs
- Managed
Component 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.
- Trigger
Config Pulumi.Azure Native. App Platform. Inputs. Manual Job Trigger Config - The Job trigger related configuration.
- Managed
Component []ManagedReferences Component Reference - Referenced managed components collection
- Source
Build
Result | 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
Job
Execution Template - The template which is applied for all executions of the Job.
- Trigger
Config ManualJob Trigger Config - The Job trigger related configuration.
- managed
Component List<ManagedReferences Component Reference> - Referenced managed components collection
- source
Build
Result | 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
Job
Execution Template - The template which is applied for all executions of the Job.
- trigger
Config ManualJob Trigger Config - The Job trigger related configuration.
- managed
Component ManagedReferences Component Reference[] - Referenced managed components collection
- source
Build
Result | 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
Job
Execution Template - The template which is applied for all executions of the Job.
- trigger
Config ManualJob Trigger Config - The Job trigger related configuration.
- managed_
component_ Sequence[Managedreferences Component Reference] - Referenced managed components collection
- source
Build
Result | 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
Job
Execution Template - The template which is applied for all executions of the Job.
- trigger_
config ManualJob Trigger Config - The Job trigger related configuration.
- managed
Component 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.
- trigger
Config Property Map - The Job trigger related configuration.
JobResourcePropertiesResponse, JobResourcePropertiesResponseArgs
- Provisioning
State string - Provisioning state of the Job
- Managed
Component 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.
- Trigger
Config Pulumi.Azure Native. App Platform. Inputs. Manual Job Trigger Config Response - The Job trigger related configuration.
- Provisioning
State string - Provisioning state of the Job
- Managed
Component []ManagedReferences Component Reference Response - Referenced managed components collection
- Source
Build
Result | 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
Job
Execution Template Response - The template which is applied for all executions of the Job.
- Trigger
Config ManualJob Trigger Config Response - The Job trigger related configuration.
- provisioning
State String - Provisioning state of the Job
- managed
Component List<ManagedReferences Component Reference Response> - Referenced managed components collection
- source
Build
Result | 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
Job
Execution Template Response - The template which is applied for all executions of the Job.
- trigger
Config ManualJob Trigger Config Response - The Job trigger related configuration.
- provisioning
State string - Provisioning state of the Job
- managed
Component ManagedReferences Component Reference Response[] - Referenced managed components collection
- source
Build
Result | 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
Job
Execution Template Response - The template which is applied for all executions of the Job.
- trigger
Config 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
Build
Result | 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
Job
Execution Template Response - The template which is applied for all executions of the Job.
- trigger_
config ManualJob Trigger Config Response - The Job trigger related configuration.
- provisioning
State String - Provisioning state of the Job
- managed
Component 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.
- trigger
Config Property Map - The Job trigger related configuration.
JobResourceRequests, JobResourceRequestsArgs
JobResourceRequestsResponse, JobResourceRequestsResponseArgs
ManagedComponentReference, ManagedComponentReferenceArgs
- Resource
Id string - Resource Id of the managed component
- Resource
Id string - Resource Id of the managed component
- resource
Id String - Resource Id of the managed component
- resource
Id string - Resource Id of the managed component
- resource_
id str - Resource Id of the managed component
- resource
Id String - Resource Id of the managed component
ManagedComponentReferenceResponse, ManagedComponentReferenceResponseArgs
- Resource
Id string - Resource Id of the managed component
- Resource
Id string - Resource Id of the managed component
- resource
Id String - Resource Id of the managed component
- resource
Id string - Resource Id of the managed component
- resource_
id str - Resource Id of the managed component
- resource
Id String - Resource Id of the managed component
ManualJobTriggerConfig, ManualJobTriggerConfigArgs
- 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 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 Integer
- Number of parallel replicas of a job execution can run.
- retry
Limit Integer - Maximum number of retries before failing the job.
- timeout
In IntegerSeconds - Maximum number of seconds an execution is allowed to run.
- parallelism number
- Number of parallel replicas of a job execution can run.
- retry
Limit number - Maximum number of retries before failing the job.
- timeout
In 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.
- retry
Limit Number - Maximum number of retries before failing the job.
- timeout
In NumberSeconds - Maximum number of seconds an execution is allowed to run.
ManualJobTriggerConfigResponse, ManualJobTriggerConfigResponseArgs
- 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 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 Integer
- Number of parallel replicas of a job execution can run.
- retry
Limit Integer - Maximum number of retries before failing the job.
- timeout
In IntegerSeconds - Maximum number of seconds an execution is allowed to run.
- parallelism number
- Number of parallel replicas of a job execution can run.
- retry
Limit number - Maximum number of retries before failing the job.
- timeout
In 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.
- retry
Limit Number - Maximum number of retries before failing the job.
- timeout
In NumberSeconds - Maximum number of seconds an execution is allowed to run.
NetCoreZipUploadedUserSourceInfo, NetCoreZipUploadedUserSourceInfoArgs
- Net
Core stringMain Entry Path - The path to the .NET executable relative to zip root
- Relative
Path string - Relative path of the storage which stores the source
- Runtime
Version string - Runtime version of the .Net file
- Version string
- Version of the source
- Net
Core stringMain Entry Path - The path to the .NET executable relative to zip root
- Relative
Path string - Relative path of the storage which stores the source
- Runtime
Version string - Runtime version of the .Net file
- Version string
- Version of the source
- net
Core StringMain Entry Path - The path to the .NET executable relative to zip root
- relative
Path String - Relative path of the storage which stores the source
- runtime
Version String - Runtime version of the .Net file
- version String
- Version of the source
- net
Core stringMain Entry Path - The path to the .NET executable relative to zip root
- relative
Path string - Relative path of the storage which stores the source
- runtime
Version 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
- net
Core StringMain Entry Path - The path to the .NET executable relative to zip root
- relative
Path String - Relative path of the storage which stores the source
- runtime
Version String - Runtime version of the .Net file
- version String
- Version of the source
NetCoreZipUploadedUserSourceInfoResponse, NetCoreZipUploadedUserSourceInfoResponseArgs
- Net
Core stringMain Entry Path - The path to the .NET executable relative to zip root
- Relative
Path string - Relative path of the storage which stores the source
- Runtime
Version string - Runtime version of the .Net file
- Version string
- Version of the source
- Net
Core stringMain Entry Path - The path to the .NET executable relative to zip root
- Relative
Path string - Relative path of the storage which stores the source
- Runtime
Version string - Runtime version of the .Net file
- Version string
- Version of the source
- net
Core StringMain Entry Path - The path to the .NET executable relative to zip root
- relative
Path String - Relative path of the storage which stores the source
- runtime
Version String - Runtime version of the .Net file
- version String
- Version of the source
- net
Core stringMain Entry Path - The path to the .NET executable relative to zip root
- relative
Path string - Relative path of the storage which stores the source
- runtime
Version 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
- net
Core StringMain Entry Path - The path to the .NET executable relative to zip root
- relative
Path String - Relative path of the storage which stores the source
- runtime
Version String - Runtime version of the .Net file
- version String
- Version of the source
SourceUploadedUserSourceInfo, SourceUploadedUserSourceInfoArgs
- Artifact
Selector 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.
- Relative
Path string - Relative path of the storage which stores the source
- Runtime
Version string - Runtime version of the source file
- Version string
- Version of the source
- Artifact
Selector 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.
- Relative
Path string - Relative path of the storage which stores the source
- Runtime
Version string - Runtime version of the source file
- Version string
- Version of the source
- artifact
Selector 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.
- relative
Path String - Relative path of the storage which stores the source
- runtime
Version String - Runtime version of the source file
- version String
- Version of the source
- artifact
Selector 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.
- relative
Path string - Relative path of the storage which stores the source
- runtime
Version 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
- artifact
Selector 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.
- relative
Path String - Relative path of the storage which stores the source
- runtime
Version String - Runtime version of the source file
- version String
- Version of the source
SourceUploadedUserSourceInfoResponse, SourceUploadedUserSourceInfoResponseArgs
- Artifact
Selector 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.
- Relative
Path string - Relative path of the storage which stores the source
- Runtime
Version string - Runtime version of the source file
- Version string
- Version of the source
- Artifact
Selector 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.
- Relative
Path string - Relative path of the storage which stores the source
- Runtime
Version string - Runtime version of the source file
- Version string
- Version of the source
- artifact
Selector 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.
- relative
Path String - Relative path of the storage which stores the source
- runtime
Version String - Runtime version of the source file
- version String
- Version of the source
- artifact
Selector 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.
- relative
Path string - Relative path of the storage which stores the source
- runtime
Version 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
- artifact
Selector 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.
- relative
Path String - Relative path of the storage which stores the source
- runtime
Version String - Runtime version of the source file
- version String
- Version of the source
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource modification (UTC).
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource modification (UTC).
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource modification (UTC).
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource modification (UTC).
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified 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.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource modification (UTC).
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
UploadedUserSourceInfo, UploadedUserSourceInfoArgs
- Relative
Path string - Relative path of the storage which stores the source
- Version string
- Version of the source
- Relative
Path string - Relative path of the storage which stores the source
- Version string
- Version of the source
- relative
Path String - Relative path of the storage which stores the source
- version String
- Version of the source
- relative
Path 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
- relative
Path String - Relative path of the storage which stores the source
- version String
- Version of the source
UploadedUserSourceInfoResponse, UploadedUserSourceInfoResponseArgs
- Relative
Path string - Relative path of the storage which stores the source
- Version string
- Version of the source
- Relative
Path string - Relative path of the storage which stores the source
- Version string
- Version of the source
- relative
Path String - Relative path of the storage which stores the source
- version String
- Version of the source
- relative
Path 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
- relative
Path String - Relative path of the storage which stores the source
- version String
- Version of the source
WarUploadedUserSourceInfo, WarUploadedUserSourceInfoArgs
- Jvm
Options string - JVM parameter
- Relative
Path string - Relative path of the storage which stores the source
- Runtime
Version string - Runtime version of the war file
- Server
Version string - Server version, currently only Apache Tomcat is supported
- Version string
- Version of the source
- Jvm
Options string - JVM parameter
- Relative
Path string - Relative path of the storage which stores the source
- Runtime
Version string - Runtime version of the war file
- Server
Version string - Server version, currently only Apache Tomcat is supported
- Version string
- Version of the source
- jvm
Options String - JVM parameter
- relative
Path String - Relative path of the storage which stores the source
- runtime
Version String - Runtime version of the war file
- server
Version String - Server version, currently only Apache Tomcat is supported
- version String
- Version of the source
- jvm
Options string - JVM parameter
- relative
Path string - Relative path of the storage which stores the source
- runtime
Version string - Runtime version of the war file
- server
Version 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
- jvm
Options String - JVM parameter
- relative
Path String - Relative path of the storage which stores the source
- runtime
Version String - Runtime version of the war file
- server
Version String - Server version, currently only Apache Tomcat is supported
- version String
- Version of the source
WarUploadedUserSourceInfoResponse, WarUploadedUserSourceInfoResponseArgs
- Jvm
Options string - JVM parameter
- Relative
Path string - Relative path of the storage which stores the source
- Runtime
Version string - Runtime version of the war file
- Server
Version string - Server version, currently only Apache Tomcat is supported
- Version string
- Version of the source
- Jvm
Options string - JVM parameter
- Relative
Path string - Relative path of the storage which stores the source
- Runtime
Version string - Runtime version of the war file
- Server
Version string - Server version, currently only Apache Tomcat is supported
- Version string
- Version of the source
- jvm
Options String - JVM parameter
- relative
Path String - Relative path of the storage which stores the source
- runtime
Version String - Runtime version of the war file
- server
Version String - Server version, currently only Apache Tomcat is supported
- version String
- Version of the source
- jvm
Options string - JVM parameter
- relative
Path string - Relative path of the storage which stores the source
- runtime
Version string - Runtime version of the war file
- server
Version 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
- jvm
Options String - JVM parameter
- relative
Path String - Relative path of the storage which stores the source
- runtime
Version String - Runtime version of the war file
- server
Version 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