azure-native.mission.Approval
Explore with Pulumi AI
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:
- Request
Metadata Pulumi.Azure Native. Mission. Inputs. Request Metadata - Request metadata for the approval request.
- Resource
Uri string - The fully qualified Azure Resource manager identifier of the resource.
- Approval
Name string - The name of the approvals resource.
- Approvers
List<Pulumi.
Azure Native. Mission. Inputs. Approver> - List of approvers for the approval request
- Created
At string - Approval request creation time
- Grandparent
Resource stringId - Parameter for optimizing query results
- Parent
Resource stringId - Parameter for optimizing query results
- State
Changed stringAt - Approval request state change time, time at which approval request state changed from pending to approved or rejected.
- Ticket
Id string - Ticket ID for the approval request
- Request
Metadata RequestMetadata Args - Request metadata for the approval request.
- Resource
Uri string - The fully qualified Azure Resource manager identifier of the resource.
- Approval
Name string - The name of the approvals resource.
- Approvers
[]Approver
Args - List of approvers for the approval request
- Created
At string - Approval request creation time
- Grandparent
Resource stringId - Parameter for optimizing query results
- Parent
Resource stringId - Parameter for optimizing query results
- State
Changed stringAt - Approval request state change time, time at which approval request state changed from pending to approved or rejected.
- Ticket
Id string - Ticket ID for the approval request
- request
Metadata RequestMetadata - Request metadata for the approval request.
- resource
Uri String - The fully qualified Azure Resource manager identifier of the resource.
- approval
Name String - The name of the approvals resource.
- approvers List<Approver>
- List of approvers for the approval request
- created
At String - Approval request creation time
- grandparent
Resource StringId - Parameter for optimizing query results
- parent
Resource StringId - Parameter for optimizing query results
- state
Changed StringAt - Approval request state change time, time at which approval request state changed from pending to approved or rejected.
- ticket
Id String - Ticket ID for the approval request
- request
Metadata RequestMetadata - Request metadata for the approval request.
- resource
Uri string - The fully qualified Azure Resource manager identifier of the resource.
- approval
Name string - The name of the approvals resource.
- approvers Approver[]
- List of approvers for the approval request
- created
At string - Approval request creation time
- grandparent
Resource stringId - Parameter for optimizing query results
- parent
Resource stringId - Parameter for optimizing query results
- state
Changed stringAt - Approval request state change time, time at which approval request state changed from pending to approved or rejected.
- ticket
Id string - Ticket ID for the approval request
- request_
metadata RequestMetadata Args - 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[Approver
Args] - List of approvers for the approval request
- created_
at str - Approval request creation time
- grandparent_
resource_ strid - Parameter for optimizing query results
- parent_
resource_ strid - Parameter for optimizing query results
- state_
changed_ strat - 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
- request
Metadata Property Map - Request metadata for the approval request.
- resource
Uri String - The fully qualified Azure Resource manager identifier of the resource.
- approval
Name String - The name of the approvals resource.
- approvers List<Property Map>
- List of approvers for the approval request
- created
At String - Approval request creation time
- grandparent
Resource StringId - Parameter for optimizing query results
- parent
Resource StringId - Parameter for optimizing query results
- state
Changed StringAt - Approval request state change time, time at which approval request state changed from pending to approved or rejected.
- ticket
Id 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:
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Provisioning
State string - Provisioning State.
- System
Data Pulumi.Azure Native. Mission. 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.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Provisioning
State string - Provisioning State.
- 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.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioning
State String - Provisioning State.
- 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.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- provisioning
State string - Provisioning State.
- 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.
- 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 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.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioning
State String - Provisioning State.
- 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
ActionPerformed, ActionPerformedArgs
- Approved
- ApprovedAction was Approved
- Rejected
- RejectedAction was Rejected
- Action
Performed Approved - ApprovedAction was Approved
- Action
Performed 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
- "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
- Approval
Status Approved - ApprovedApprovalStatus Type Approved
- Approval
Status Rejected - RejectedApprovalStatus Type Rejected
- Approval
Status Pending - PendingApprovalStatus Type Pending
- Approval
Status Deleted - DeletedApprovalStatus Type Deleted
- Approval
Status 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
- "Approved"
- ApprovedApprovalStatus Type Approved
- "Rejected"
- RejectedApprovalStatus Type Rejected
- "Pending"
- PendingApprovalStatus Type Pending
- "Deleted"
- DeletedApprovalStatus Type Deleted
- "Expired"
- ExpiredApprovalStatus Type Expired
Approver, ApproverArgs
- Approver
Entra stringId - Entra ObjectID of the approver
- Last
Updated stringAt - approval request last updated at
- Action
Performed string | Pulumi.Azure Native. Mission. Action Performed - Action Performed by approver
- Approver
Entra stringId - Entra ObjectID of the approver
- Last
Updated stringAt - approval request last updated at
- Action
Performed string | ActionPerformed - Action Performed by approver
- approver
Entra StringId - Entra ObjectID of the approver
- last
Updated StringAt - approval request last updated at
- action
Performed String | ActionPerformed - Action Performed by approver
- approver
Entra stringId - Entra ObjectID of the approver
- last
Updated stringAt - approval request last updated at
- action
Performed string | ActionPerformed - Action Performed by approver
- approver_
entra_ strid - Entra ObjectID of the approver
- last_
updated_ strat - approval request last updated at
- action_
performed str | ActionPerformed - Action Performed by approver
- approver
Entra StringId - Entra ObjectID of the approver
- last
Updated StringAt - approval request last updated at
- action
Performed String | "Approved" | "Rejected" - Action Performed by approver
ApproverResponse, ApproverResponseArgs
- Approver
Entra stringId - Entra ObjectID of the approver
- Last
Updated stringAt - approval request last updated at
- Action
Performed string - Action Performed by approver
- Approver
Entra stringId - Entra ObjectID of the approver
- Last
Updated stringAt - approval request last updated at
- Action
Performed string - Action Performed by approver
- approver
Entra StringId - Entra ObjectID of the approver
- last
Updated StringAt - approval request last updated at
- action
Performed String - Action Performed by approver
- approver
Entra stringId - Entra ObjectID of the approver
- last
Updated stringAt - approval request last updated at
- action
Performed string - Action Performed by approver
- approver_
entra_ strid - Entra ObjectID of the approver
- last_
updated_ strat - approval request last updated at
- action_
performed str - Action Performed by approver
- approver
Entra StringId - Entra ObjectID of the approver
- last
Updated StringAt - approval request last updated at
- action
Performed String - Action Performed by approver
RequestMetadata, RequestMetadataArgs
- Resource
Action string - Resource Action of the item being approved or declined.
- Approval
Callback stringPayload - Payload to be sent upon any action on approval request
- Approval
Callback stringRoute - Route name for the approval callback
- Approval
Status string | Pulumi.Azure Native. Mission. Approval Status - Status of the approval. Uses ApprovalStatus enum.
- Resource
Action string - Resource Action of the item being approved or declined.
- Approval
Callback stringPayload - Payload to be sent upon any action on approval request
- Approval
Callback stringRoute - Route name for the approval callback
- Approval
Status string | ApprovalStatus - Status of the approval. Uses ApprovalStatus enum.
- resource
Action String - Resource Action of the item being approved or declined.
- approval
Callback StringPayload - Payload to be sent upon any action on approval request
- approval
Callback StringRoute - Route name for the approval callback
- approval
Status String | ApprovalStatus - Status of the approval. Uses ApprovalStatus enum.
- resource
Action string - Resource Action of the item being approved or declined.
- approval
Callback stringPayload - Payload to be sent upon any action on approval request
- approval
Callback stringRoute - Route name for the approval callback
- approval
Status string | ApprovalStatus - Status of the approval. Uses ApprovalStatus enum.
- resource_
action str - Resource Action of the item being approved or declined.
- approval_
callback_ strpayload - Payload to be sent upon any action on approval request
- approval_
callback_ strroute - Route name for the approval callback
- approval_
status str | ApprovalStatus - Status of the approval. Uses ApprovalStatus enum.
- resource
Action String - Resource Action of the item being approved or declined.
- approval
Callback StringPayload - Payload to be sent upon any action on approval request
- approval
Callback StringRoute - Route name for the approval callback
- approval
Status String | "Approved" | "Rejected" | "Pending" | "Deleted" | "Expired" - Status of the approval. Uses ApprovalStatus enum.
RequestMetadataResponse, RequestMetadataResponseArgs
- Resource
Action string - Resource Action of the item being approved or declined.
- Approval
Callback stringPayload - Payload to be sent upon any action on approval request
- Approval
Callback stringRoute - Route name for the approval callback
- Approval
Status string - Status of the approval. Uses ApprovalStatus enum.
- Resource
Action string - Resource Action of the item being approved or declined.
- Approval
Callback stringPayload - Payload to be sent upon any action on approval request
- Approval
Callback stringRoute - Route name for the approval callback
- Approval
Status string - Status of the approval. Uses ApprovalStatus enum.
- resource
Action String - Resource Action of the item being approved or declined.
- approval
Callback StringPayload - Payload to be sent upon any action on approval request
- approval
Callback StringRoute - Route name for the approval callback
- approval
Status String - Status of the approval. Uses ApprovalStatus enum.
- resource
Action string - Resource Action of the item being approved or declined.
- approval
Callback stringPayload - Payload to be sent upon any action on approval request
- approval
Callback stringRoute - Route name for the approval callback
- approval
Status string - Status of the approval. Uses ApprovalStatus enum.
- resource_
action str - Resource Action of the item being approved or declined.
- approval_
callback_ strpayload - Payload to be sent upon any action on approval request
- approval_
callback_ strroute - Route name for the approval callback
- approval_
status str - Status of the approval. Uses ApprovalStatus enum.
- resource
Action String - Resource Action of the item being approved or declined.
- approval
Callback StringPayload - Payload to be sent upon any action on approval request
- approval
Callback StringRoute - Route name for the approval callback
- approval
Status String - Status of the approval. Uses ApprovalStatus enum.
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: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