azure-native.edge.Execution
Explore with Pulumi AI
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:
- Context
Name string - The name of the Context.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Version
Name string - The name of the workflowVersion.
- Workflow
Name string - Name of the workflow
- Execution
Name string - The name of the Execution.
- Extended
Location Pulumi.Azure Native. Edge. Inputs. Azure Resource Manager Common Types Extended Location - The complex type of the extended location.
- Properties
Pulumi.
Azure Native. Edge. Inputs. Execution Properties - The resource-specific properties for this resource.
- Context
Name string - The name of the Context.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Version
Name string - The name of the workflowVersion.
- Workflow
Name string - Name of the workflow
- Execution
Name string - The name of the Execution.
- Extended
Location AzureResource Manager Common Types Extended Location Args - The complex type of the extended location.
- Properties
Execution
Properties Args - The resource-specific properties for this resource.
- context
Name String - The name of the Context.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- version
Name String - The name of the workflowVersion.
- workflow
Name String - Name of the workflow
- execution
Name String - The name of the Execution.
- extended
Location AzureResource Manager Common Types Extended Location - The complex type of the extended location.
- properties
Execution
Properties - The resource-specific properties for this resource.
- context
Name string - The name of the Context.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- version
Name string - The name of the workflowVersion.
- workflow
Name string - Name of the workflow
- execution
Name string - The name of the Execution.
- extended
Location AzureResource Manager Common Types Extended Location - The complex type of the extended location.
- properties
Execution
Properties - The resource-specific properties for this resource.
- context_
name str - The name of the Context.
- resource_
group_ strname - 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 AzureResource Manager Common Types Extended Location Args - The complex type of the extended location.
- properties
Execution
Properties Args - The resource-specific properties for this resource.
- context
Name String - The name of the Context.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- version
Name String - The name of the workflowVersion.
- workflow
Name String - Name of the workflow
- execution
Name String - The name of the Execution.
- extended
Location 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:
- Azure
Api stringVersion - 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
- System
Data Pulumi.Azure Native. Edge. Outputs. System Data Response - 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 stringVersion - 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
- System
Data SystemData Response - 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 StringVersion - The Azure API version of the resource.
- e
Tag 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
- system
Data SystemData Response - 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 stringVersion - The Azure API version of the resource.
- e
Tag 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
- system
Data SystemData Response - 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_ strversion - 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 SystemData Response - 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"
- azure
Api StringVersion - The Azure API version of the resource.
- e
Tag 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
- system
Data 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.
Azure Native. Edge. Extended Location Type - The type of the extended location.
- Name string
- The name of the extended location.
- Type
string | Extended
Location Type - The type of the extended location.
- name String
- The name of the extended location.
- type
String | Extended
Location Type - The type of the extended location.
- name string
- The name of the extended location.
- type
string | Extended
Location Type - The type of the extended location.
- name str
- The name of the extended location.
- type
str | Extended
Location Type - The type of the extended location.
- name String
- The name of the extended location.
- type
String | "Edge
Zone" | "Custom Location" - The type of the extended location.
AzureResourceManagerCommonTypesExtendedLocationResponse, AzureResourceManagerCommonTypesExtendedLocationResponseArgs
ExecutionProperties, ExecutionPropertiesArgs
- Workflow
Version stringId - Workflow version of execution
- Specification object
- Execution specification
- Workflow
Version stringId - Workflow version of execution
- Specification interface{}
- Execution specification
- workflow
Version StringId - Workflow version of execution
- specification Object
- Execution specification
- workflow
Version stringId - Workflow version of execution
- specification any
- Execution specification
- workflow_
version_ strid - Workflow version of execution
- specification Any
- Execution specification
- workflow
Version StringId - Workflow version of execution
- specification Any
- Execution specification
ExecutionPropertiesResponse, ExecutionPropertiesResponseArgs
- Provisioning
State string - Provisioning state of resource
- Status
Pulumi.
Azure Native. Edge. Inputs. Execution Status Response - Status of Execution
- Workflow
Version stringId - Workflow version of execution
- Specification object
- Execution specification
- Provisioning
State string - Provisioning state of resource
- Status
Execution
Status Response - Status of Execution
- Workflow
Version stringId - Workflow version of execution
- Specification interface{}
- Execution specification
- provisioning
State String - Provisioning state of resource
- status
Execution
Status Response - Status of Execution
- workflow
Version StringId - Workflow version of execution
- specification Object
- Execution specification
- provisioning
State string - Provisioning state of resource
- status
Execution
Status Response - Status of Execution
- workflow
Version stringId - Workflow version of execution
- specification any
- Execution specification
- provisioning_
state str - Provisioning state of resource
- status
Execution
Status Response - Status of Execution
- workflow_
version_ strid - Workflow version of execution
- specification Any
- Execution specification
- provisioning
State String - Provisioning state of resource
- status Property Map
- Status of Execution
- workflow
Version StringId - Workflow version of execution
- specification Any
- Execution specification
ExecutionStatusResponse, ExecutionStatusResponseArgs
- Stage
History List<Pulumi.Azure Native. Edge. Inputs. Stage Status Response> - target resource statuses
- Status int
- Deployment status
- Status
Message string - status details
- Update
Time string - The lastModified timestamp of the Status
- Stage
History []StageStatus Response - target resource statuses
- Status int
- Deployment status
- Status
Message string - status details
- Update
Time string - The lastModified timestamp of the Status
- stage
History List<StageStatus Response> - target resource statuses
- status Integer
- Deployment status
- status
Message String - status details
- update
Time String - The lastModified timestamp of the Status
- stage
History StageStatus Response[] - target resource statuses
- status number
- Deployment status
- status
Message string - status details
- update
Time string - The lastModified timestamp of the Status
- stage_
history Sequence[StageStatus Response] - target resource statuses
- status int
- Deployment status
- status_
message str - status details
- update_
time str - The lastModified timestamp of the Status
- stage
History List<Property Map> - target resource statuses
- status Number
- Deployment status
- status
Message String - status details
- update
Time String - The lastModified timestamp of the Status
ExtendedLocationType, ExtendedLocationTypeArgs
- Edge
Zone - EdgeZoneAzure Edge Zones location type
- Custom
Location - CustomLocationAzure Custom Locations type
- Extended
Location Type Edge Zone - EdgeZoneAzure Edge Zones location type
- Extended
Location Type Custom Location - CustomLocationAzure Custom Locations type
- Edge
Zone - EdgeZoneAzure Edge Zones location type
- Custom
Location - CustomLocationAzure Custom Locations type
- Edge
Zone - EdgeZoneAzure Edge Zones location type
- Custom
Location - CustomLocationAzure Custom Locations type
- EDGE_ZONE
- EdgeZoneAzure Edge Zones location type
- CUSTOM_LOCATION
- CustomLocationAzure Custom Locations type
- "Edge
Zone" - EdgeZoneAzure Edge Zones location type
- "Custom
Location" - CustomLocationAzure Custom Locations type
StageStatusResponse, StageStatusResponseArgs
- Error
Message string - Error message
- Inputs object
- The inputs of the StageHistory, Inputs holds a key-value map of user-defined parameters for the initial stage
- Is
Active 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
- Status
Message string - Status message
- Error
Message string - Error message
- Inputs interface{}
- The inputs of the StageHistory, Inputs holds a key-value map of user-defined parameters for the initial stage
- Is
Active 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
- Status
Message string - Status message
- error
Message String - Error message
- inputs Object
- The inputs of the StageHistory, Inputs holds a key-value map of user-defined parameters for the initial stage
- is
Active 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
- status
Message String - Status message
- error
Message string - 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 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
- status
Message 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
- error
Message String - 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 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
- status
Message String - Status message
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 last 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 last 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 last 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 last 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 last 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 last 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.
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