1. Packages
  2. Azure Native
  3. API Docs
  4. edge
  5. Execution
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.7.1 published on Wednesday, Aug 13, 2025 by Pulumi

azure-native.edge.Execution

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.7.1 published on Wednesday, Aug 13, 2025 by Pulumi

    Execution Resource

    Uses Azure REST API version 2025-06-01.

    Example Usage

    Executions_CreateOrUpdate_MaximumSet - generated by [MaximumSet] rule

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var execution = new AzureNative.Edge.Execution("execution", new()
        {
            ContextName = "abcde",
            ExecutionName = "abcde",
            ExtendedLocation = new AzureNative.Edge.Inputs.AzureResourceManagerCommonTypesExtendedLocationArgs
            {
                Name = "ugf",
                Type = AzureNative.Edge.ExtendedLocationType.EdgeZone,
            },
            Properties = new AzureNative.Edge.Inputs.ExecutionPropertiesArgs
            {
                Specification = null,
                WorkflowVersionId = "souenlqwltljsojdcbpc",
            },
            ResourceGroupName = "rgconfigurationmanager",
            VersionName = "abcde",
            WorkflowName = "abcde",
        });
    
    });
    
    package main
    
    import (
    	edge "github.com/pulumi/pulumi-azure-native-sdk/edge/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := edge.NewExecution(ctx, "execution", &edge.ExecutionArgs{
    			ContextName:   pulumi.String("abcde"),
    			ExecutionName: pulumi.String("abcde"),
    			ExtendedLocation: &edge.AzureResourceManagerCommonTypesExtendedLocationArgs{
    				Name: pulumi.String("ugf"),
    				Type: pulumi.String(edge.ExtendedLocationTypeEdgeZone),
    			},
    			Properties: &edge.ExecutionPropertiesArgs{
    				Specification:     pulumi.Any(map[string]interface{}{}),
    				WorkflowVersionId: pulumi.String("souenlqwltljsojdcbpc"),
    			},
    			ResourceGroupName: pulumi.String("rgconfigurationmanager"),
    			VersionName:       pulumi.String("abcde"),
    			WorkflowName:      pulumi.String("abcde"),
    		})
    		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.edge.Execution;
    import com.pulumi.azurenative.edge.ExecutionArgs;
    import com.pulumi.azurenative.edge.inputs.AzureResourceManagerCommonTypesExtendedLocationArgs;
    import com.pulumi.azurenative.edge.inputs.ExecutionPropertiesArgs;
    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 execution = new Execution("execution", ExecutionArgs.builder()
                .contextName("abcde")
                .executionName("abcde")
                .extendedLocation(AzureResourceManagerCommonTypesExtendedLocationArgs.builder()
                    .name("ugf")
                    .type("EdgeZone")
                    .build())
                .properties(ExecutionPropertiesArgs.builder()
                    .specification(Map.ofEntries(
                    ))
                    .workflowVersionId("souenlqwltljsojdcbpc")
                    .build())
                .resourceGroupName("rgconfigurationmanager")
                .versionName("abcde")
                .workflowName("abcde")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const execution = new azure_native.edge.Execution("execution", {
        contextName: "abcde",
        executionName: "abcde",
        extendedLocation: {
            name: "ugf",
            type: azure_native.edge.ExtendedLocationType.EdgeZone,
        },
        properties: {
            specification: {},
            workflowVersionId: "souenlqwltljsojdcbpc",
        },
        resourceGroupName: "rgconfigurationmanager",
        versionName: "abcde",
        workflowName: "abcde",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    execution = azure_native.edge.Execution("execution",
        context_name="abcde",
        execution_name="abcde",
        extended_location={
            "name": "ugf",
            "type": azure_native.edge.ExtendedLocationType.EDGE_ZONE,
        },
        properties={
            "specification": {},
            "workflow_version_id": "souenlqwltljsojdcbpc",
        },
        resource_group_name="rgconfigurationmanager",
        version_name="abcde",
        workflow_name="abcde")
    
    resources:
      execution:
        type: azure-native:edge:Execution
        properties:
          contextName: abcde
          executionName: abcde
          extendedLocation:
            name: ugf
            type: EdgeZone
          properties:
            specification: {}
            workflowVersionId: souenlqwltljsojdcbpc
          resourceGroupName: rgconfigurationmanager
          versionName: abcde
          workflowName: abcde
    

    Create Execution Resource

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

    Constructor syntax

    new Execution(name: string, args: ExecutionArgs, opts?: CustomResourceOptions);
    @overload
    def Execution(resource_name: str,
                  args: ExecutionArgs,
                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def Execution(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  context_name: Optional[str] = None,
                  resource_group_name: Optional[str] = None,
                  version_name: Optional[str] = None,
                  workflow_name: Optional[str] = None,
                  execution_name: Optional[str] = None,
                  extended_location: Optional[AzureResourceManagerCommonTypesExtendedLocationArgs] = None,
                  properties: Optional[ExecutionPropertiesArgs] = None)
    func NewExecution(ctx *Context, name string, args ExecutionArgs, opts ...ResourceOption) (*Execution, error)
    public Execution(string name, ExecutionArgs args, CustomResourceOptions? opts = null)
    public Execution(String name, ExecutionArgs args)
    public Execution(String name, ExecutionArgs args, CustomResourceOptions options)
    
    type: azure-native:edge:Execution
    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 ExecutionArgs
    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 ExecutionArgs
    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 ExecutionArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ExecutionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ExecutionArgs
    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 executionResource = new AzureNative.Edge.Execution("executionResource", new()
    {
        ContextName = "string",
        ResourceGroupName = "string",
        VersionName = "string",
        WorkflowName = "string",
        ExecutionName = "string",
        ExtendedLocation = new AzureNative.Edge.Inputs.AzureResourceManagerCommonTypesExtendedLocationArgs
        {
            Name = "string",
            Type = "string",
        },
        Properties = new AzureNative.Edge.Inputs.ExecutionPropertiesArgs
        {
            WorkflowVersionId = "string",
            Specification = "any",
        },
    });
    
    example, err := edge.NewExecution(ctx, "executionResource", &edge.ExecutionArgs{
    	ContextName:       pulumi.String("string"),
    	ResourceGroupName: pulumi.String("string"),
    	VersionName:       pulumi.String("string"),
    	WorkflowName:      pulumi.String("string"),
    	ExecutionName:     pulumi.String("string"),
    	ExtendedLocation: &edge.AzureResourceManagerCommonTypesExtendedLocationArgs{
    		Name: pulumi.String("string"),
    		Type: pulumi.String("string"),
    	},
    	Properties: &edge.ExecutionPropertiesArgs{
    		WorkflowVersionId: pulumi.String("string"),
    		Specification:     pulumi.Any("any"),
    	},
    })
    
    var executionResource = new Execution("executionResource", ExecutionArgs.builder()
        .contextName("string")
        .resourceGroupName("string")
        .versionName("string")
        .workflowName("string")
        .executionName("string")
        .extendedLocation(AzureResourceManagerCommonTypesExtendedLocationArgs.builder()
            .name("string")
            .type("string")
            .build())
        .properties(ExecutionPropertiesArgs.builder()
            .workflowVersionId("string")
            .specification("any")
            .build())
        .build());
    
    execution_resource = azure_native.edge.Execution("executionResource",
        context_name="string",
        resource_group_name="string",
        version_name="string",
        workflow_name="string",
        execution_name="string",
        extended_location={
            "name": "string",
            "type": "string",
        },
        properties={
            "workflow_version_id": "string",
            "specification": "any",
        })
    
    const executionResource = new azure_native.edge.Execution("executionResource", {
        contextName: "string",
        resourceGroupName: "string",
        versionName: "string",
        workflowName: "string",
        executionName: "string",
        extendedLocation: {
            name: "string",
            type: "string",
        },
        properties: {
            workflowVersionId: "string",
            specification: "any",
        },
    });
    
    type: azure-native:edge:Execution
    properties:
        contextName: string
        executionName: string
        extendedLocation:
            name: string
            type: string
        properties:
            specification: any
            workflowVersionId: string
        resourceGroupName: string
        versionName: string
        workflowName: string
    

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

    ContextName string
    The name of the Context.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    VersionName string
    The name of the workflowVersion.
    WorkflowName string
    Name of the workflow
    ExecutionName string
    The name of the Execution.
    ExtendedLocation Pulumi.AzureNative.Edge.Inputs.AzureResourceManagerCommonTypesExtendedLocation
    The complex type of the extended location.
    Properties Pulumi.AzureNative.Edge.Inputs.ExecutionProperties
    The resource-specific properties for this resource.
    ContextName string
    The name of the Context.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    VersionName string
    The name of the workflowVersion.
    WorkflowName string
    Name of the workflow
    ExecutionName string
    The name of the Execution.
    ExtendedLocation AzureResourceManagerCommonTypesExtendedLocationArgs
    The complex type of the extended location.
    Properties ExecutionPropertiesArgs
    The resource-specific properties for this resource.
    contextName String
    The name of the Context.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    versionName String
    The name of the workflowVersion.
    workflowName String
    Name of the workflow
    executionName String
    The name of the Execution.
    extendedLocation AzureResourceManagerCommonTypesExtendedLocation
    The complex type of the extended location.
    properties ExecutionProperties
    The resource-specific properties for this resource.
    contextName string
    The name of the Context.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    versionName string
    The name of the workflowVersion.
    workflowName string
    Name of the workflow
    executionName string
    The name of the Execution.
    extendedLocation AzureResourceManagerCommonTypesExtendedLocation
    The complex type of the extended location.
    properties ExecutionProperties
    The resource-specific properties for this resource.
    context_name str
    The name of the Context.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    version_name str
    The name of the workflowVersion.
    workflow_name str
    Name of the workflow
    execution_name str
    The name of the Execution.
    extended_location AzureResourceManagerCommonTypesExtendedLocationArgs
    The complex type of the extended location.
    properties ExecutionPropertiesArgs
    The resource-specific properties for this resource.
    contextName String
    The name of the Context.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    versionName String
    The name of the workflowVersion.
    workflowName String
    Name of the workflow
    executionName String
    The name of the Execution.
    extendedLocation Property Map
    The complex type of the extended location.
    properties Property Map
    The resource-specific properties for this resource.

    Outputs

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

    AzureApiVersion string
    The Azure API version of the resource.
    ETag string
    If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData Pulumi.AzureNative.Edge.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    AzureApiVersion string
    The Azure API version of the resource.
    ETag string
    If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    eTag String
    If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion string
    The Azure API version of the resource.
    eTag string
    If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azure_api_version str
    The Azure API version of the resource.
    e_tag str
    If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    eTag String
    If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    AzureResourceManagerCommonTypesExtendedLocation, AzureResourceManagerCommonTypesExtendedLocationArgs

    Name string
    The name of the extended location.
    Type string | Pulumi.AzureNative.Edge.ExtendedLocationType
    The type of the extended location.
    Name string
    The name of the extended location.
    Type string | ExtendedLocationType
    The type of the extended location.
    name String
    The name of the extended location.
    type String | ExtendedLocationType
    The type of the extended location.
    name string
    The name of the extended location.
    type string | ExtendedLocationType
    The type of the extended location.
    name str
    The name of the extended location.
    type str | ExtendedLocationType
    The type of the extended location.
    name String
    The name of the extended location.
    type String | "EdgeZone" | "CustomLocation"
    The type of the extended location.

    AzureResourceManagerCommonTypesExtendedLocationResponse, AzureResourceManagerCommonTypesExtendedLocationResponseArgs

    Name string
    The name of the extended location.
    Type string
    The type of the extended location.
    Name string
    The name of the extended location.
    Type string
    The type of the extended location.
    name String
    The name of the extended location.
    type String
    The type of the extended location.
    name string
    The name of the extended location.
    type string
    The type of the extended location.
    name str
    The name of the extended location.
    type str
    The type of the extended location.
    name String
    The name of the extended location.
    type String
    The type of the extended location.

    ExecutionProperties, ExecutionPropertiesArgs

    WorkflowVersionId string
    Workflow version of execution
    Specification object
    Execution specification
    WorkflowVersionId string
    Workflow version of execution
    Specification interface{}
    Execution specification
    workflowVersionId String
    Workflow version of execution
    specification Object
    Execution specification
    workflowVersionId string
    Workflow version of execution
    specification any
    Execution specification
    workflow_version_id str
    Workflow version of execution
    specification Any
    Execution specification
    workflowVersionId String
    Workflow version of execution
    specification Any
    Execution specification

    ExecutionPropertiesResponse, ExecutionPropertiesResponseArgs

    ProvisioningState string
    Provisioning state of resource
    Status Pulumi.AzureNative.Edge.Inputs.ExecutionStatusResponse
    Status of Execution
    WorkflowVersionId string
    Workflow version of execution
    Specification object
    Execution specification
    ProvisioningState string
    Provisioning state of resource
    Status ExecutionStatusResponse
    Status of Execution
    WorkflowVersionId string
    Workflow version of execution
    Specification interface{}
    Execution specification
    provisioningState String
    Provisioning state of resource
    status ExecutionStatusResponse
    Status of Execution
    workflowVersionId String
    Workflow version of execution
    specification Object
    Execution specification
    provisioningState string
    Provisioning state of resource
    status ExecutionStatusResponse
    Status of Execution
    workflowVersionId string
    Workflow version of execution
    specification any
    Execution specification
    provisioning_state str
    Provisioning state of resource
    status ExecutionStatusResponse
    Status of Execution
    workflow_version_id str
    Workflow version of execution
    specification Any
    Execution specification
    provisioningState String
    Provisioning state of resource
    status Property Map
    Status of Execution
    workflowVersionId String
    Workflow version of execution
    specification Any
    Execution specification

    ExecutionStatusResponse, ExecutionStatusResponseArgs

    StageHistory List<Pulumi.AzureNative.Edge.Inputs.StageStatusResponse>
    target resource statuses
    Status int
    Deployment status
    StatusMessage string
    status details
    UpdateTime string
    The lastModified timestamp of the Status
    StageHistory []StageStatusResponse
    target resource statuses
    Status int
    Deployment status
    StatusMessage string
    status details
    UpdateTime string
    The lastModified timestamp of the Status
    stageHistory List<StageStatusResponse>
    target resource statuses
    status Integer
    Deployment status
    statusMessage String
    status details
    updateTime String
    The lastModified timestamp of the Status
    stageHistory StageStatusResponse[]
    target resource statuses
    status number
    Deployment status
    statusMessage string
    status details
    updateTime string
    The lastModified timestamp of the Status
    stage_history Sequence[StageStatusResponse]
    target resource statuses
    status int
    Deployment status
    status_message str
    status details
    update_time str
    The lastModified timestamp of the Status
    stageHistory List<Property Map>
    target resource statuses
    status Number
    Deployment status
    statusMessage String
    status details
    updateTime String
    The lastModified timestamp of the Status

    ExtendedLocationType, ExtendedLocationTypeArgs

    EdgeZone
    EdgeZoneAzure Edge Zones location type
    CustomLocation
    CustomLocationAzure Custom Locations type
    ExtendedLocationTypeEdgeZone
    EdgeZoneAzure Edge Zones location type
    ExtendedLocationTypeCustomLocation
    CustomLocationAzure Custom Locations type
    EdgeZone
    EdgeZoneAzure Edge Zones location type
    CustomLocation
    CustomLocationAzure Custom Locations type
    EdgeZone
    EdgeZoneAzure Edge Zones location type
    CustomLocation
    CustomLocationAzure Custom Locations type
    EDGE_ZONE
    EdgeZoneAzure Edge Zones location type
    CUSTOM_LOCATION
    CustomLocationAzure Custom Locations type
    "EdgeZone"
    EdgeZoneAzure Edge Zones location type
    "CustomLocation"
    CustomLocationAzure Custom Locations type

    StageStatusResponse, StageStatusResponseArgs

    ErrorMessage string
    Error message
    Inputs object
    The inputs of the StageHistory, Inputs holds a key-value map of user-defined parameters for the initial stage
    IsActive string
    whether this stage is active or inactive
    Nextstage string
    Next stage
    Outputs object
    The outputs of the StageHistory, it is different as the different input stages.
    Stage string
    Current stage
    Status int
    Deployment status
    StatusMessage string
    Status message
    ErrorMessage string
    Error message
    Inputs interface{}
    The inputs of the StageHistory, Inputs holds a key-value map of user-defined parameters for the initial stage
    IsActive string
    whether this stage is active or inactive
    Nextstage string
    Next stage
    Outputs interface{}
    The outputs of the StageHistory, it is different as the different input stages.
    Stage string
    Current stage
    Status int
    Deployment status
    StatusMessage string
    Status message
    errorMessage String
    Error message
    inputs Object
    The inputs of the StageHistory, Inputs holds a key-value map of user-defined parameters for the initial stage
    isActive String
    whether this stage is active or inactive
    nextstage String
    Next stage
    outputs Object
    The outputs of the StageHistory, it is different as the different input stages.
    stage String
    Current stage
    status Integer
    Deployment status
    statusMessage String
    Status message
    errorMessage string
    Error message
    inputs any
    The inputs of the StageHistory, Inputs holds a key-value map of user-defined parameters for the initial stage
    isActive string
    whether this stage is active or inactive
    nextstage string
    Next stage
    outputs any
    The outputs of the StageHistory, it is different as the different input stages.
    stage string
    Current stage
    status number
    Deployment status
    statusMessage string
    Status message
    error_message str
    Error message
    inputs Any
    The inputs of the StageHistory, Inputs holds a key-value map of user-defined parameters for the initial stage
    is_active str
    whether this stage is active or inactive
    nextstage str
    Next stage
    outputs Any
    The outputs of the StageHistory, it is different as the different input stages.
    stage str
    Current stage
    status int
    Deployment status
    status_message str
    Status message
    errorMessage String
    Error message
    inputs Any
    The inputs of the StageHistory, Inputs holds a key-value map of user-defined parameters for the initial stage
    isActive String
    whether this stage is active or inactive
    nextstage String
    Next stage
    outputs Any
    The outputs of the StageHistory, it is different as the different input stages.
    stage String
    Current stage
    status Number
    Deployment status
    statusMessage String
    Status message

    SystemDataResponse, SystemDataResponseArgs

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

    Import

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

    $ pulumi import azure-native:edge:Execution pljfijtnrx /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/contexts/{contextName}/workflows/{workflowName}/versions/{versionName}/executions/{executionName} 
    

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

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
    Azure Native v3.7.1 published on Wednesday, Aug 13, 2025 by Pulumi