1. Packages
  2. Azure Native
  3. API Docs
  4. mission
  5. Approval
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.mission.Approval

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

    Approval Model Resource

    Uses Azure REST API version 2025-05-01-preview.

    Other available API versions: 2024-06-01-preview, 2024-12-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native mission [ApiVersion]. See the version guide for details.

    Example Usage

    Approval_CreateOrUpdate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var approval = new AzureNative.Mission.Approval("approval", new()
        {
            ApprovalName = "TestApprovals",
            Approvers = new[]
            {
                new AzureNative.Mission.Inputs.ApproverArgs
                {
                    ActionPerformed = AzureNative.Mission.ActionPerformed.Approved,
                    ApproverEntraId = "00000000-0000-0000-0000-000000000000",
                    LastUpdatedAt = "2023-03-17T20:43:17.760Z",
                },
            },
            CreatedAt = "2023-03-17T20:43:17.760Z",
            GrandparentResourceId = "/subscriptions/c64f6eca-bdc5-4bc2-88d6-f8f1dc23f86c/resourceGroups/testrg/providers/Microsoft.Mission/communities/TestMyCommunity",
            ParentResourceId = "/subscriptions/c64f6eca-bdc5-4bc2-88d6-f8f1dc23f86c/resourceGroups/TestMyRg/providers/microsoft.mission/virtualenclaves/TestMyEnclave",
            RequestMetadata = new AzureNative.Mission.Inputs.RequestMetadataArgs
            {
                ApprovalCallbackPayload = @"{
      ""key1"": ""value1"",
      ""key2"": ""value2""
    }",
                ApprovalCallbackRoute = "approvalCallback",
                ApprovalStatus = AzureNative.Mission.ApprovalStatus.Approved,
                ResourceAction = "string",
            },
            ResourceUri = "subscriptions/c64f6eca-bdc5-4bc2-88d6-f8f1dc23f86c/resourceGroups/TestMyRg/providers/Microsoft.Mission/enclaveconnections/TestMyEnclaveConnection",
            StateChangedAt = "2023-03-17T20:43:17.760Z",
            TicketId = "string",
        });
    
    });
    
    package main
    
    import (
    	mission "github.com/pulumi/pulumi-azure-native-sdk/mission/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := mission.NewApproval(ctx, "approval", &mission.ApprovalArgs{
    			ApprovalName: pulumi.String("TestApprovals"),
    			Approvers: mission.ApproverArray{
    				&mission.ApproverArgs{
    					ActionPerformed: pulumi.String(mission.ActionPerformedApproved),
    					ApproverEntraId: pulumi.String("00000000-0000-0000-0000-000000000000"),
    					LastUpdatedAt:   pulumi.String("2023-03-17T20:43:17.760Z"),
    				},
    			},
    			CreatedAt:             pulumi.String("2023-03-17T20:43:17.760Z"),
    			GrandparentResourceId: pulumi.String("/subscriptions/c64f6eca-bdc5-4bc2-88d6-f8f1dc23f86c/resourceGroups/testrg/providers/Microsoft.Mission/communities/TestMyCommunity"),
    			ParentResourceId:      pulumi.String("/subscriptions/c64f6eca-bdc5-4bc2-88d6-f8f1dc23f86c/resourceGroups/TestMyRg/providers/microsoft.mission/virtualenclaves/TestMyEnclave"),
    			RequestMetadata: &mission.RequestMetadataArgs{
    				ApprovalCallbackPayload: pulumi.String("{\n  \"key1\": \"value1\",\n  \"key2\": \"value2\"\n}"),
    				ApprovalCallbackRoute:   pulumi.String("approvalCallback"),
    				ApprovalStatus:          pulumi.String(mission.ApprovalStatusApproved),
    				ResourceAction:          pulumi.String("string"),
    			},
    			ResourceUri:    pulumi.String("subscriptions/c64f6eca-bdc5-4bc2-88d6-f8f1dc23f86c/resourceGroups/TestMyRg/providers/Microsoft.Mission/enclaveconnections/TestMyEnclaveConnection"),
    			StateChangedAt: pulumi.String("2023-03-17T20:43:17.760Z"),
    			TicketId:       pulumi.String("string"),
    		})
    		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.mission.Approval;
    import com.pulumi.azurenative.mission.ApprovalArgs;
    import com.pulumi.azurenative.mission.inputs.ApproverArgs;
    import com.pulumi.azurenative.mission.inputs.RequestMetadataArgs;
    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 approval = new Approval("approval", ApprovalArgs.builder()
                .approvalName("TestApprovals")
                .approvers(ApproverArgs.builder()
                    .actionPerformed("Approved")
                    .approverEntraId("00000000-0000-0000-0000-000000000000")
                    .lastUpdatedAt("2023-03-17T20:43:17.760Z")
                    .build())
                .createdAt("2023-03-17T20:43:17.760Z")
                .grandparentResourceId("/subscriptions/c64f6eca-bdc5-4bc2-88d6-f8f1dc23f86c/resourceGroups/testrg/providers/Microsoft.Mission/communities/TestMyCommunity")
                .parentResourceId("/subscriptions/c64f6eca-bdc5-4bc2-88d6-f8f1dc23f86c/resourceGroups/TestMyRg/providers/microsoft.mission/virtualenclaves/TestMyEnclave")
                .requestMetadata(RequestMetadataArgs.builder()
                    .approvalCallbackPayload("""
    {
      "key1": "value1",
      "key2": "value2"
    }                """)
                    .approvalCallbackRoute("approvalCallback")
                    .approvalStatus("Approved")
                    .resourceAction("string")
                    .build())
                .resourceUri("subscriptions/c64f6eca-bdc5-4bc2-88d6-f8f1dc23f86c/resourceGroups/TestMyRg/providers/Microsoft.Mission/enclaveconnections/TestMyEnclaveConnection")
                .stateChangedAt("2023-03-17T20:43:17.760Z")
                .ticketId("string")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const approval = new azure_native.mission.Approval("approval", {
        approvalName: "TestApprovals",
        approvers: [{
            actionPerformed: azure_native.mission.ActionPerformed.Approved,
            approverEntraId: "00000000-0000-0000-0000-000000000000",
            lastUpdatedAt: "2023-03-17T20:43:17.760Z",
        }],
        createdAt: "2023-03-17T20:43:17.760Z",
        grandparentResourceId: "/subscriptions/c64f6eca-bdc5-4bc2-88d6-f8f1dc23f86c/resourceGroups/testrg/providers/Microsoft.Mission/communities/TestMyCommunity",
        parentResourceId: "/subscriptions/c64f6eca-bdc5-4bc2-88d6-f8f1dc23f86c/resourceGroups/TestMyRg/providers/microsoft.mission/virtualenclaves/TestMyEnclave",
        requestMetadata: {
            approvalCallbackPayload: `{
      "key1": "value1",
      "key2": "value2"
    }`,
            approvalCallbackRoute: "approvalCallback",
            approvalStatus: azure_native.mission.ApprovalStatus.Approved,
            resourceAction: "string",
        },
        resourceUri: "subscriptions/c64f6eca-bdc5-4bc2-88d6-f8f1dc23f86c/resourceGroups/TestMyRg/providers/Microsoft.Mission/enclaveconnections/TestMyEnclaveConnection",
        stateChangedAt: "2023-03-17T20:43:17.760Z",
        ticketId: "string",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    approval = azure_native.mission.Approval("approval",
        approval_name="TestApprovals",
        approvers=[{
            "action_performed": azure_native.mission.ActionPerformed.APPROVED,
            "approver_entra_id": "00000000-0000-0000-0000-000000000000",
            "last_updated_at": "2023-03-17T20:43:17.760Z",
        }],
        created_at="2023-03-17T20:43:17.760Z",
        grandparent_resource_id="/subscriptions/c64f6eca-bdc5-4bc2-88d6-f8f1dc23f86c/resourceGroups/testrg/providers/Microsoft.Mission/communities/TestMyCommunity",
        parent_resource_id="/subscriptions/c64f6eca-bdc5-4bc2-88d6-f8f1dc23f86c/resourceGroups/TestMyRg/providers/microsoft.mission/virtualenclaves/TestMyEnclave",
        request_metadata={
            "approval_callback_payload": """{
      "key1": "value1",
      "key2": "value2"
    }""",
            "approval_callback_route": "approvalCallback",
            "approval_status": azure_native.mission.ApprovalStatus.APPROVED,
            "resource_action": "string",
        },
        resource_uri="subscriptions/c64f6eca-bdc5-4bc2-88d6-f8f1dc23f86c/resourceGroups/TestMyRg/providers/Microsoft.Mission/enclaveconnections/TestMyEnclaveConnection",
        state_changed_at="2023-03-17T20:43:17.760Z",
        ticket_id="string")
    
    resources:
      approval:
        type: azure-native:mission:Approval
        properties:
          approvalName: TestApprovals
          approvers:
            - actionPerformed: Approved
              approverEntraId: 00000000-0000-0000-0000-000000000000
              lastUpdatedAt: 2023-03-17T20:43:17.760Z
          createdAt: 2023-03-17T20:43:17.760Z
          grandparentResourceId: /subscriptions/c64f6eca-bdc5-4bc2-88d6-f8f1dc23f86c/resourceGroups/testrg/providers/Microsoft.Mission/communities/TestMyCommunity
          parentResourceId: /subscriptions/c64f6eca-bdc5-4bc2-88d6-f8f1dc23f86c/resourceGroups/TestMyRg/providers/microsoft.mission/virtualenclaves/TestMyEnclave
          requestMetadata:
            approvalCallbackPayload: |-
              {
                "key1": "value1",
                "key2": "value2"
              }          
            approvalCallbackRoute: approvalCallback
            approvalStatus: Approved
            resourceAction: string
          resourceUri: subscriptions/c64f6eca-bdc5-4bc2-88d6-f8f1dc23f86c/resourceGroups/TestMyRg/providers/Microsoft.Mission/enclaveconnections/TestMyEnclaveConnection
          stateChangedAt: 2023-03-17T20:43:17.760Z
          ticketId: string
    

    Create Approval Resource

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

    Constructor syntax

    new Approval(name: string, args: ApprovalArgs, opts?: CustomResourceOptions);
    @overload
    def Approval(resource_name: str,
                 args: ApprovalArgs,
                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def Approval(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 request_metadata: Optional[RequestMetadataArgs] = None,
                 resource_uri: Optional[str] = None,
                 approval_name: Optional[str] = None,
                 approvers: Optional[Sequence[ApproverArgs]] = None,
                 created_at: Optional[str] = None,
                 grandparent_resource_id: Optional[str] = None,
                 parent_resource_id: Optional[str] = None,
                 state_changed_at: Optional[str] = None,
                 ticket_id: Optional[str] = None)
    func NewApproval(ctx *Context, name string, args ApprovalArgs, opts ...ResourceOption) (*Approval, error)
    public Approval(string name, ApprovalArgs args, CustomResourceOptions? opts = null)
    public Approval(String name, ApprovalArgs args)
    public Approval(String name, ApprovalArgs args, CustomResourceOptions options)
    
    type: azure-native:mission:Approval
    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 ApprovalArgs
    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 ApprovalArgs
    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 ApprovalArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ApprovalArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ApprovalArgs
    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 approvalResource = new AzureNative.Mission.Approval("approvalResource", new()
    {
        RequestMetadata = new AzureNative.Mission.Inputs.RequestMetadataArgs
        {
            ResourceAction = "string",
            ApprovalCallbackPayload = "string",
            ApprovalCallbackRoute = "string",
            ApprovalStatus = "string",
        },
        ResourceUri = "string",
        ApprovalName = "string",
        Approvers = new[]
        {
            new AzureNative.Mission.Inputs.ApproverArgs
            {
                ApproverEntraId = "string",
                LastUpdatedAt = "string",
                ActionPerformed = "string",
            },
        },
        CreatedAt = "string",
        GrandparentResourceId = "string",
        ParentResourceId = "string",
        StateChangedAt = "string",
        TicketId = "string",
    });
    
    example, err := mission.NewApproval(ctx, "approvalResource", &mission.ApprovalArgs{
    	RequestMetadata: &mission.RequestMetadataArgs{
    		ResourceAction:          pulumi.String("string"),
    		ApprovalCallbackPayload: pulumi.String("string"),
    		ApprovalCallbackRoute:   pulumi.String("string"),
    		ApprovalStatus:          pulumi.String("string"),
    	},
    	ResourceUri:  pulumi.String("string"),
    	ApprovalName: pulumi.String("string"),
    	Approvers: mission.ApproverArray{
    		&mission.ApproverArgs{
    			ApproverEntraId: pulumi.String("string"),
    			LastUpdatedAt:   pulumi.String("string"),
    			ActionPerformed: pulumi.String("string"),
    		},
    	},
    	CreatedAt:             pulumi.String("string"),
    	GrandparentResourceId: pulumi.String("string"),
    	ParentResourceId:      pulumi.String("string"),
    	StateChangedAt:        pulumi.String("string"),
    	TicketId:              pulumi.String("string"),
    })
    
    var approvalResource = new Approval("approvalResource", ApprovalArgs.builder()
        .requestMetadata(RequestMetadataArgs.builder()
            .resourceAction("string")
            .approvalCallbackPayload("string")
            .approvalCallbackRoute("string")
            .approvalStatus("string")
            .build())
        .resourceUri("string")
        .approvalName("string")
        .approvers(ApproverArgs.builder()
            .approverEntraId("string")
            .lastUpdatedAt("string")
            .actionPerformed("string")
            .build())
        .createdAt("string")
        .grandparentResourceId("string")
        .parentResourceId("string")
        .stateChangedAt("string")
        .ticketId("string")
        .build());
    
    approval_resource = azure_native.mission.Approval("approvalResource",
        request_metadata={
            "resource_action": "string",
            "approval_callback_payload": "string",
            "approval_callback_route": "string",
            "approval_status": "string",
        },
        resource_uri="string",
        approval_name="string",
        approvers=[{
            "approver_entra_id": "string",
            "last_updated_at": "string",
            "action_performed": "string",
        }],
        created_at="string",
        grandparent_resource_id="string",
        parent_resource_id="string",
        state_changed_at="string",
        ticket_id="string")
    
    const approvalResource = new azure_native.mission.Approval("approvalResource", {
        requestMetadata: {
            resourceAction: "string",
            approvalCallbackPayload: "string",
            approvalCallbackRoute: "string",
            approvalStatus: "string",
        },
        resourceUri: "string",
        approvalName: "string",
        approvers: [{
            approverEntraId: "string",
            lastUpdatedAt: "string",
            actionPerformed: "string",
        }],
        createdAt: "string",
        grandparentResourceId: "string",
        parentResourceId: "string",
        stateChangedAt: "string",
        ticketId: "string",
    });
    
    type: azure-native:mission:Approval
    properties:
        approvalName: string
        approvers:
            - actionPerformed: string
              approverEntraId: string
              lastUpdatedAt: string
        createdAt: string
        grandparentResourceId: string
        parentResourceId: string
        requestMetadata:
            approvalCallbackPayload: string
            approvalCallbackRoute: string
            approvalStatus: string
            resourceAction: string
        resourceUri: string
        stateChangedAt: string
        ticketId: string
    

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

    RequestMetadata Pulumi.AzureNative.Mission.Inputs.RequestMetadata
    Request metadata for the approval request.
    ResourceUri string
    The fully qualified Azure Resource manager identifier of the resource.
    ApprovalName string
    The name of the approvals resource.
    Approvers List<Pulumi.AzureNative.Mission.Inputs.Approver>
    List of approvers for the approval request
    CreatedAt string
    Approval request creation time
    GrandparentResourceId string
    Parameter for optimizing query results
    ParentResourceId string
    Parameter for optimizing query results
    StateChangedAt string
    Approval request state change time, time at which approval request state changed from pending to approved or rejected.
    TicketId string
    Ticket ID for the approval request
    RequestMetadata RequestMetadataArgs
    Request metadata for the approval request.
    ResourceUri string
    The fully qualified Azure Resource manager identifier of the resource.
    ApprovalName string
    The name of the approvals resource.
    Approvers []ApproverArgs
    List of approvers for the approval request
    CreatedAt string
    Approval request creation time
    GrandparentResourceId string
    Parameter for optimizing query results
    ParentResourceId string
    Parameter for optimizing query results
    StateChangedAt string
    Approval request state change time, time at which approval request state changed from pending to approved or rejected.
    TicketId string
    Ticket ID for the approval request
    requestMetadata RequestMetadata
    Request metadata for the approval request.
    resourceUri String
    The fully qualified Azure Resource manager identifier of the resource.
    approvalName String
    The name of the approvals resource.
    approvers List<Approver>
    List of approvers for the approval request
    createdAt String
    Approval request creation time
    grandparentResourceId String
    Parameter for optimizing query results
    parentResourceId String
    Parameter for optimizing query results
    stateChangedAt String
    Approval request state change time, time at which approval request state changed from pending to approved or rejected.
    ticketId String
    Ticket ID for the approval request
    requestMetadata RequestMetadata
    Request metadata for the approval request.
    resourceUri string
    The fully qualified Azure Resource manager identifier of the resource.
    approvalName string
    The name of the approvals resource.
    approvers Approver[]
    List of approvers for the approval request
    createdAt string
    Approval request creation time
    grandparentResourceId string
    Parameter for optimizing query results
    parentResourceId string
    Parameter for optimizing query results
    stateChangedAt string
    Approval request state change time, time at which approval request state changed from pending to approved or rejected.
    ticketId string
    Ticket ID for the approval request
    request_metadata RequestMetadataArgs
    Request metadata for the approval request.
    resource_uri str
    The fully qualified Azure Resource manager identifier of the resource.
    approval_name str
    The name of the approvals resource.
    approvers Sequence[ApproverArgs]
    List of approvers for the approval request
    created_at str
    Approval request creation time
    grandparent_resource_id str
    Parameter for optimizing query results
    parent_resource_id str
    Parameter for optimizing query results
    state_changed_at str
    Approval request state change time, time at which approval request state changed from pending to approved or rejected.
    ticket_id str
    Ticket ID for the approval request
    requestMetadata Property Map
    Request metadata for the approval request.
    resourceUri String
    The fully qualified Azure Resource manager identifier of the resource.
    approvalName String
    The name of the approvals resource.
    approvers List<Property Map>
    List of approvers for the approval request
    createdAt String
    Approval request creation time
    grandparentResourceId String
    Parameter for optimizing query results
    parentResourceId String
    Parameter for optimizing query results
    stateChangedAt String
    Approval request state change time, time at which approval request state changed from pending to approved or rejected.
    ticketId String
    Ticket ID for the approval request

    Outputs

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

    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    ProvisioningState string
    Provisioning State.
    SystemData Pulumi.AzureNative.Mission.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.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    ProvisioningState string
    Provisioning State.
    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.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    provisioningState String
    Provisioning State.
    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.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    provisioningState string
    Provisioning State.
    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.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    provisioning_state str
    Provisioning State.
    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.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    provisioningState String
    Provisioning State.
    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

    ActionPerformed, ActionPerformedArgs

    Approved
    ApprovedAction was Approved
    Rejected
    RejectedAction was Rejected
    ActionPerformedApproved
    ApprovedAction was Approved
    ActionPerformedRejected
    RejectedAction was Rejected
    Approved
    ApprovedAction was Approved
    Rejected
    RejectedAction was Rejected
    Approved
    ApprovedAction was Approved
    Rejected
    RejectedAction was Rejected
    APPROVED
    ApprovedAction was Approved
    REJECTED
    RejectedAction was Rejected
    "Approved"
    ApprovedAction was Approved
    "Rejected"
    RejectedAction was Rejected

    ApprovalStatus, ApprovalStatusArgs

    Approved
    ApprovedApprovalStatus Type Approved
    Rejected
    RejectedApprovalStatus Type Rejected
    Pending
    PendingApprovalStatus Type Pending
    Deleted
    DeletedApprovalStatus Type Deleted
    Expired
    ExpiredApprovalStatus Type Expired
    ApprovalStatusApproved
    ApprovedApprovalStatus Type Approved
    ApprovalStatusRejected
    RejectedApprovalStatus Type Rejected
    ApprovalStatusPending
    PendingApprovalStatus Type Pending
    ApprovalStatusDeleted
    DeletedApprovalStatus Type Deleted
    ApprovalStatusExpired
    ExpiredApprovalStatus Type Expired
    Approved
    ApprovedApprovalStatus Type Approved
    Rejected
    RejectedApprovalStatus Type Rejected
    Pending
    PendingApprovalStatus Type Pending
    Deleted
    DeletedApprovalStatus Type Deleted
    Expired
    ExpiredApprovalStatus Type Expired
    Approved
    ApprovedApprovalStatus Type Approved
    Rejected
    RejectedApprovalStatus Type Rejected
    Pending
    PendingApprovalStatus Type Pending
    Deleted
    DeletedApprovalStatus Type Deleted
    Expired
    ExpiredApprovalStatus Type Expired
    APPROVED
    ApprovedApprovalStatus Type Approved
    REJECTED
    RejectedApprovalStatus Type Rejected
    PENDING
    PendingApprovalStatus Type Pending
    DELETED
    DeletedApprovalStatus Type Deleted
    EXPIRED
    ExpiredApprovalStatus Type Expired
    "Approved"
    ApprovedApprovalStatus Type Approved
    "Rejected"
    RejectedApprovalStatus Type Rejected
    "Pending"
    PendingApprovalStatus Type Pending
    "Deleted"
    DeletedApprovalStatus Type Deleted
    "Expired"
    ExpiredApprovalStatus Type Expired

    Approver, ApproverArgs

    ApproverEntraId string
    Entra ObjectID of the approver
    LastUpdatedAt string
    approval request last updated at
    ActionPerformed string | Pulumi.AzureNative.Mission.ActionPerformed
    Action Performed by approver
    ApproverEntraId string
    Entra ObjectID of the approver
    LastUpdatedAt string
    approval request last updated at
    ActionPerformed string | ActionPerformed
    Action Performed by approver
    approverEntraId String
    Entra ObjectID of the approver
    lastUpdatedAt String
    approval request last updated at
    actionPerformed String | ActionPerformed
    Action Performed by approver
    approverEntraId string
    Entra ObjectID of the approver
    lastUpdatedAt string
    approval request last updated at
    actionPerformed string | ActionPerformed
    Action Performed by approver
    approver_entra_id str
    Entra ObjectID of the approver
    last_updated_at str
    approval request last updated at
    action_performed str | ActionPerformed
    Action Performed by approver
    approverEntraId String
    Entra ObjectID of the approver
    lastUpdatedAt String
    approval request last updated at
    actionPerformed String | "Approved" | "Rejected"
    Action Performed by approver

    ApproverResponse, ApproverResponseArgs

    ApproverEntraId string
    Entra ObjectID of the approver
    LastUpdatedAt string
    approval request last updated at
    ActionPerformed string
    Action Performed by approver
    ApproverEntraId string
    Entra ObjectID of the approver
    LastUpdatedAt string
    approval request last updated at
    ActionPerformed string
    Action Performed by approver
    approverEntraId String
    Entra ObjectID of the approver
    lastUpdatedAt String
    approval request last updated at
    actionPerformed String
    Action Performed by approver
    approverEntraId string
    Entra ObjectID of the approver
    lastUpdatedAt string
    approval request last updated at
    actionPerformed string
    Action Performed by approver
    approver_entra_id str
    Entra ObjectID of the approver
    last_updated_at str
    approval request last updated at
    action_performed str
    Action Performed by approver
    approverEntraId String
    Entra ObjectID of the approver
    lastUpdatedAt String
    approval request last updated at
    actionPerformed String
    Action Performed by approver

    RequestMetadata, RequestMetadataArgs

    ResourceAction string
    Resource Action of the item being approved or declined.
    ApprovalCallbackPayload string
    Payload to be sent upon any action on approval request
    ApprovalCallbackRoute string
    Route name for the approval callback
    ApprovalStatus string | Pulumi.AzureNative.Mission.ApprovalStatus
    Status of the approval. Uses ApprovalStatus enum.
    ResourceAction string
    Resource Action of the item being approved or declined.
    ApprovalCallbackPayload string
    Payload to be sent upon any action on approval request
    ApprovalCallbackRoute string
    Route name for the approval callback
    ApprovalStatus string | ApprovalStatus
    Status of the approval. Uses ApprovalStatus enum.
    resourceAction String
    Resource Action of the item being approved or declined.
    approvalCallbackPayload String
    Payload to be sent upon any action on approval request
    approvalCallbackRoute String
    Route name for the approval callback
    approvalStatus String | ApprovalStatus
    Status of the approval. Uses ApprovalStatus enum.
    resourceAction string
    Resource Action of the item being approved or declined.
    approvalCallbackPayload string
    Payload to be sent upon any action on approval request
    approvalCallbackRoute string
    Route name for the approval callback
    approvalStatus string | ApprovalStatus
    Status of the approval. Uses ApprovalStatus enum.
    resource_action str
    Resource Action of the item being approved or declined.
    approval_callback_payload str
    Payload to be sent upon any action on approval request
    approval_callback_route str
    Route name for the approval callback
    approval_status str | ApprovalStatus
    Status of the approval. Uses ApprovalStatus enum.
    resourceAction String
    Resource Action of the item being approved or declined.
    approvalCallbackPayload String
    Payload to be sent upon any action on approval request
    approvalCallbackRoute String
    Route name for the approval callback
    approvalStatus String | "Approved" | "Rejected" | "Pending" | "Deleted" | "Expired"
    Status of the approval. Uses ApprovalStatus enum.

    RequestMetadataResponse, RequestMetadataResponseArgs

    ResourceAction string
    Resource Action of the item being approved or declined.
    ApprovalCallbackPayload string
    Payload to be sent upon any action on approval request
    ApprovalCallbackRoute string
    Route name for the approval callback
    ApprovalStatus string
    Status of the approval. Uses ApprovalStatus enum.
    ResourceAction string
    Resource Action of the item being approved or declined.
    ApprovalCallbackPayload string
    Payload to be sent upon any action on approval request
    ApprovalCallbackRoute string
    Route name for the approval callback
    ApprovalStatus string
    Status of the approval. Uses ApprovalStatus enum.
    resourceAction String
    Resource Action of the item being approved or declined.
    approvalCallbackPayload String
    Payload to be sent upon any action on approval request
    approvalCallbackRoute String
    Route name for the approval callback
    approvalStatus String
    Status of the approval. Uses ApprovalStatus enum.
    resourceAction string
    Resource Action of the item being approved or declined.
    approvalCallbackPayload string
    Payload to be sent upon any action on approval request
    approvalCallbackRoute string
    Route name for the approval callback
    approvalStatus string
    Status of the approval. Uses ApprovalStatus enum.
    resource_action str
    Resource Action of the item being approved or declined.
    approval_callback_payload str
    Payload to be sent upon any action on approval request
    approval_callback_route str
    Route name for the approval callback
    approval_status str
    Status of the approval. Uses ApprovalStatus enum.
    resourceAction String
    Resource Action of the item being approved or declined.
    approvalCallbackPayload String
    Payload to be sent upon any action on approval request
    approvalCallbackRoute String
    Route name for the approval callback
    approvalStatus String
    Status of the approval. Uses ApprovalStatus enum.

    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:mission:Approval TestApprovals /{resourceUri}/providers/Microsoft.Mission/approvals/{approvalName} 
    

    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