1. Packages
  2. Azure Native v2
  3. API Docs
  4. solutions
  5. JitRequest
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.solutions.JitRequest

Explore with Pulumi AI

These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

Information about JIT request definition. Azure REST API version: 2021-07-01. Prior API version in Azure Native 1.x: 2019-07-01.

Other available API versions: 2023-12-01-preview.

Example Usage

Create or update jit request

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var jitRequest = new AzureNative.Solutions.JitRequest("jitRequest", new()
    {
        ApplicationResourceId = "/subscriptions/00c76877-e316-48a7-af60-4a09fec9d43f/resourceGroups/52F30DB2/providers/Microsoft.Solutions/applications/7E193158",
        JitAuthorizationPolicies = new[]
        {
            new AzureNative.Solutions.Inputs.JitAuthorizationPoliciesArgs
            {
                PrincipalId = "1db8e132e2934dbcb8e1178a61319491",
                RoleDefinitionId = "ecd05a23-931a-4c38-a52b-ac7c4c583334",
            },
        },
        JitRequestName = "myJitRequest",
        JitSchedulingPolicy = new AzureNative.Solutions.Inputs.JitSchedulingPolicyArgs
        {
            Duration = "PT8H",
            StartTime = "2021-04-22T05:48:30.6661804Z",
            Type = AzureNative.Solutions.JitSchedulingType.Once,
        },
        ResourceGroupName = "rg",
    });

});
Copy
package main

import (
	solutions "github.com/pulumi/pulumi-azure-native-sdk/solutions/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := solutions.NewJitRequest(ctx, "jitRequest", &solutions.JitRequestArgs{
			ApplicationResourceId: pulumi.String("/subscriptions/00c76877-e316-48a7-af60-4a09fec9d43f/resourceGroups/52F30DB2/providers/Microsoft.Solutions/applications/7E193158"),
			JitAuthorizationPolicies: solutions.JitAuthorizationPoliciesArray{
				&solutions.JitAuthorizationPoliciesArgs{
					PrincipalId:      pulumi.String("1db8e132e2934dbcb8e1178a61319491"),
					RoleDefinitionId: pulumi.String("ecd05a23-931a-4c38-a52b-ac7c4c583334"),
				},
			},
			JitRequestName: pulumi.String("myJitRequest"),
			JitSchedulingPolicy: &solutions.JitSchedulingPolicyArgs{
				Duration:  pulumi.String("PT8H"),
				StartTime: pulumi.String("2021-04-22T05:48:30.6661804Z"),
				Type:      pulumi.String(solutions.JitSchedulingTypeOnce),
			},
			ResourceGroupName: pulumi.String("rg"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.solutions.JitRequest;
import com.pulumi.azurenative.solutions.JitRequestArgs;
import com.pulumi.azurenative.solutions.inputs.JitAuthorizationPoliciesArgs;
import com.pulumi.azurenative.solutions.inputs.JitSchedulingPolicyArgs;
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 jitRequest = new JitRequest("jitRequest", JitRequestArgs.builder()
            .applicationResourceId("/subscriptions/00c76877-e316-48a7-af60-4a09fec9d43f/resourceGroups/52F30DB2/providers/Microsoft.Solutions/applications/7E193158")
            .jitAuthorizationPolicies(JitAuthorizationPoliciesArgs.builder()
                .principalId("1db8e132e2934dbcb8e1178a61319491")
                .roleDefinitionId("ecd05a23-931a-4c38-a52b-ac7c4c583334")
                .build())
            .jitRequestName("myJitRequest")
            .jitSchedulingPolicy(JitSchedulingPolicyArgs.builder()
                .duration("PT8H")
                .startTime("2021-04-22T05:48:30.6661804Z")
                .type("Once")
                .build())
            .resourceGroupName("rg")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const jitRequest = new azure_native.solutions.JitRequest("jitRequest", {
    applicationResourceId: "/subscriptions/00c76877-e316-48a7-af60-4a09fec9d43f/resourceGroups/52F30DB2/providers/Microsoft.Solutions/applications/7E193158",
    jitAuthorizationPolicies: [{
        principalId: "1db8e132e2934dbcb8e1178a61319491",
        roleDefinitionId: "ecd05a23-931a-4c38-a52b-ac7c4c583334",
    }],
    jitRequestName: "myJitRequest",
    jitSchedulingPolicy: {
        duration: "PT8H",
        startTime: "2021-04-22T05:48:30.6661804Z",
        type: azure_native.solutions.JitSchedulingType.Once,
    },
    resourceGroupName: "rg",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

jit_request = azure_native.solutions.JitRequest("jitRequest",
    application_resource_id="/subscriptions/00c76877-e316-48a7-af60-4a09fec9d43f/resourceGroups/52F30DB2/providers/Microsoft.Solutions/applications/7E193158",
    jit_authorization_policies=[{
        "principal_id": "1db8e132e2934dbcb8e1178a61319491",
        "role_definition_id": "ecd05a23-931a-4c38-a52b-ac7c4c583334",
    }],
    jit_request_name="myJitRequest",
    jit_scheduling_policy={
        "duration": "PT8H",
        "start_time": "2021-04-22T05:48:30.6661804Z",
        "type": azure_native.solutions.JitSchedulingType.ONCE,
    },
    resource_group_name="rg")
Copy
resources:
  jitRequest:
    type: azure-native:solutions:JitRequest
    properties:
      applicationResourceId: /subscriptions/00c76877-e316-48a7-af60-4a09fec9d43f/resourceGroups/52F30DB2/providers/Microsoft.Solutions/applications/7E193158
      jitAuthorizationPolicies:
        - principalId: 1db8e132e2934dbcb8e1178a61319491
          roleDefinitionId: ecd05a23-931a-4c38-a52b-ac7c4c583334
      jitRequestName: myJitRequest
      jitSchedulingPolicy:
        duration: PT8H
        startTime: 2021-04-22T05:48:30.6661804Z
        type: Once
      resourceGroupName: rg
Copy

Create JitRequest Resource

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

Constructor syntax

new JitRequest(name: string, args: JitRequestArgs, opts?: CustomResourceOptions);
@overload
def JitRequest(resource_name: str,
               args: JitRequestArgs,
               opts: Optional[ResourceOptions] = None)

@overload
def JitRequest(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               application_resource_id: Optional[str] = None,
               jit_authorization_policies: Optional[Sequence[JitAuthorizationPoliciesArgs]] = None,
               jit_scheduling_policy: Optional[JitSchedulingPolicyArgs] = None,
               resource_group_name: Optional[str] = None,
               jit_request_name: Optional[str] = None,
               location: Optional[str] = None,
               tags: Optional[Mapping[str, str]] = None)
func NewJitRequest(ctx *Context, name string, args JitRequestArgs, opts ...ResourceOption) (*JitRequest, error)
public JitRequest(string name, JitRequestArgs args, CustomResourceOptions? opts = null)
public JitRequest(String name, JitRequestArgs args)
public JitRequest(String name, JitRequestArgs args, CustomResourceOptions options)
type: azure-native:solutions:JitRequest
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. JitRequestArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. JitRequestArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. JitRequestArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. JitRequestArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. JitRequestArgs
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 jitRequestResource = new AzureNative.Solutions.JitRequest("jitRequestResource", new()
{
    ApplicationResourceId = "string",
    JitAuthorizationPolicies = new[]
    {
        
        {
            { "principalId", "string" },
            { "roleDefinitionId", "string" },
        },
    },
    JitSchedulingPolicy = 
    {
        { "duration", "string" },
        { "startTime", "string" },
        { "type", "string" },
    },
    ResourceGroupName = "string",
    JitRequestName = "string",
    Location = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := solutions.NewJitRequest(ctx, "jitRequestResource", &solutions.JitRequestArgs{
	ApplicationResourceId: "string",
	JitAuthorizationPolicies: []map[string]interface{}{
		map[string]interface{}{
			"principalId":      "string",
			"roleDefinitionId": "string",
		},
	},
	JitSchedulingPolicy: map[string]interface{}{
		"duration":  "string",
		"startTime": "string",
		"type":      "string",
	},
	ResourceGroupName: "string",
	JitRequestName:    "string",
	Location:          "string",
	Tags: map[string]interface{}{
		"string": "string",
	},
})
Copy
var jitRequestResource = new JitRequest("jitRequestResource", JitRequestArgs.builder()
    .applicationResourceId("string")
    .jitAuthorizationPolicies(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .jitSchedulingPolicy(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .resourceGroupName("string")
    .jitRequestName("string")
    .location("string")
    .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
Copy
jit_request_resource = azure_native.solutions.JitRequest("jitRequestResource",
    application_resource_id=string,
    jit_authorization_policies=[{
        principalId: string,
        roleDefinitionId: string,
    }],
    jit_scheduling_policy={
        duration: string,
        startTime: string,
        type: string,
    },
    resource_group_name=string,
    jit_request_name=string,
    location=string,
    tags={
        string: string,
    })
Copy
const jitRequestResource = new azure_native.solutions.JitRequest("jitRequestResource", {
    applicationResourceId: "string",
    jitAuthorizationPolicies: [{
        principalId: "string",
        roleDefinitionId: "string",
    }],
    jitSchedulingPolicy: {
        duration: "string",
        startTime: "string",
        type: "string",
    },
    resourceGroupName: "string",
    jitRequestName: "string",
    location: "string",
    tags: {
        string: "string",
    },
});
Copy
type: azure-native:solutions:JitRequest
properties:
    applicationResourceId: string
    jitAuthorizationPolicies:
        - principalId: string
          roleDefinitionId: string
    jitRequestName: string
    jitSchedulingPolicy:
        duration: string
        startTime: string
        type: string
    location: string
    resourceGroupName: string
    tags:
        string: string
Copy

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

ApplicationResourceId This property is required. string
The parent application id.
JitAuthorizationPolicies This property is required. List<Pulumi.AzureNative.Solutions.Inputs.JitAuthorizationPolicies>
The JIT authorization policies.
JitSchedulingPolicy This property is required. Pulumi.AzureNative.Solutions.Inputs.JitSchedulingPolicy
The JIT request properties.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
JitRequestName Changes to this property will trigger replacement. string
The name of the JIT request.
Location string
Resource location
Tags Dictionary<string, string>
Resource tags
ApplicationResourceId This property is required. string
The parent application id.
JitAuthorizationPolicies This property is required. []JitAuthorizationPoliciesArgs
The JIT authorization policies.
JitSchedulingPolicy This property is required. JitSchedulingPolicyArgs
The JIT request properties.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
JitRequestName Changes to this property will trigger replacement. string
The name of the JIT request.
Location string
Resource location
Tags map[string]string
Resource tags
applicationResourceId This property is required. String
The parent application id.
jitAuthorizationPolicies This property is required. List<JitAuthorizationPolicies>
The JIT authorization policies.
jitSchedulingPolicy This property is required. JitSchedulingPolicy
The JIT request properties.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
jitRequestName Changes to this property will trigger replacement. String
The name of the JIT request.
location String
Resource location
tags Map<String,String>
Resource tags
applicationResourceId This property is required. string
The parent application id.
jitAuthorizationPolicies This property is required. JitAuthorizationPolicies[]
The JIT authorization policies.
jitSchedulingPolicy This property is required. JitSchedulingPolicy
The JIT request properties.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
jitRequestName Changes to this property will trigger replacement. string
The name of the JIT request.
location string
Resource location
tags {[key: string]: string}
Resource tags
application_resource_id This property is required. str
The parent application id.
jit_authorization_policies This property is required. Sequence[JitAuthorizationPoliciesArgs]
The JIT authorization policies.
jit_scheduling_policy This property is required. JitSchedulingPolicyArgs
The JIT request properties.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
jit_request_name Changes to this property will trigger replacement. str
The name of the JIT request.
location str
Resource location
tags Mapping[str, str]
Resource tags
applicationResourceId This property is required. String
The parent application id.
jitAuthorizationPolicies This property is required. List<Property Map>
The JIT authorization policies.
jitSchedulingPolicy This property is required. Property Map
The JIT request properties.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
jitRequestName Changes to this property will trigger replacement. String
The name of the JIT request.
location String
Resource location
tags Map<String>
Resource tags

Outputs

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

CreatedBy Pulumi.AzureNative.Solutions.Outputs.ApplicationClientDetailsResponse
The client entity that created the JIT request.
Id string
The provider-assigned unique ID for this managed resource.
JitRequestState string
The JIT request state.
Name string
Resource name
ProvisioningState string
The JIT request provisioning state.
PublisherTenantId string
The publisher tenant id.
SystemData Pulumi.AzureNative.Solutions.Outputs.SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
Type string
Resource type
UpdatedBy Pulumi.AzureNative.Solutions.Outputs.ApplicationClientDetailsResponse
The client entity that last updated the JIT request.
CreatedBy ApplicationClientDetailsResponse
The client entity that created the JIT request.
Id string
The provider-assigned unique ID for this managed resource.
JitRequestState string
The JIT request state.
Name string
Resource name
ProvisioningState string
The JIT request provisioning state.
PublisherTenantId string
The publisher tenant id.
SystemData SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
Type string
Resource type
UpdatedBy ApplicationClientDetailsResponse
The client entity that last updated the JIT request.
createdBy ApplicationClientDetailsResponse
The client entity that created the JIT request.
id String
The provider-assigned unique ID for this managed resource.
jitRequestState String
The JIT request state.
name String
Resource name
provisioningState String
The JIT request provisioning state.
publisherTenantId String
The publisher tenant id.
systemData SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
type String
Resource type
updatedBy ApplicationClientDetailsResponse
The client entity that last updated the JIT request.
createdBy ApplicationClientDetailsResponse
The client entity that created the JIT request.
id string
The provider-assigned unique ID for this managed resource.
jitRequestState string
The JIT request state.
name string
Resource name
provisioningState string
The JIT request provisioning state.
publisherTenantId string
The publisher tenant id.
systemData SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
type string
Resource type
updatedBy ApplicationClientDetailsResponse
The client entity that last updated the JIT request.
created_by ApplicationClientDetailsResponse
The client entity that created the JIT request.
id str
The provider-assigned unique ID for this managed resource.
jit_request_state str
The JIT request state.
name str
Resource name
provisioning_state str
The JIT request provisioning state.
publisher_tenant_id str
The publisher tenant id.
system_data SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
type str
Resource type
updated_by ApplicationClientDetailsResponse
The client entity that last updated the JIT request.
createdBy Property Map
The client entity that created the JIT request.
id String
The provider-assigned unique ID for this managed resource.
jitRequestState String
The JIT request state.
name String
Resource name
provisioningState String
The JIT request provisioning state.
publisherTenantId String
The publisher tenant id.
systemData Property Map
Metadata pertaining to creation and last modification of the resource.
type String
Resource type
updatedBy Property Map
The client entity that last updated the JIT request.

Supporting Types

ApplicationClientDetailsResponse
, ApplicationClientDetailsResponseArgs

ApplicationId string
The client application Id.
Oid string
The client Oid.
Puid string
The client Puid
ApplicationId string
The client application Id.
Oid string
The client Oid.
Puid string
The client Puid
applicationId String
The client application Id.
oid String
The client Oid.
puid String
The client Puid
applicationId string
The client application Id.
oid string
The client Oid.
puid string
The client Puid
application_id str
The client application Id.
oid str
The client Oid.
puid str
The client Puid
applicationId String
The client application Id.
oid String
The client Oid.
puid String
The client Puid

JitAuthorizationPolicies
, JitAuthorizationPoliciesArgs

PrincipalId This property is required. string
The the principal id that will be granted JIT access.
RoleDefinitionId This property is required. string
The role definition id that will be granted to the Principal.
PrincipalId This property is required. string
The the principal id that will be granted JIT access.
RoleDefinitionId This property is required. string
The role definition id that will be granted to the Principal.
principalId This property is required. String
The the principal id that will be granted JIT access.
roleDefinitionId This property is required. String
The role definition id that will be granted to the Principal.
principalId This property is required. string
The the principal id that will be granted JIT access.
roleDefinitionId This property is required. string
The role definition id that will be granted to the Principal.
principal_id This property is required. str
The the principal id that will be granted JIT access.
role_definition_id This property is required. str
The role definition id that will be granted to the Principal.
principalId This property is required. String
The the principal id that will be granted JIT access.
roleDefinitionId This property is required. String
The role definition id that will be granted to the Principal.

JitAuthorizationPoliciesResponse
, JitAuthorizationPoliciesResponseArgs

PrincipalId This property is required. string
The the principal id that will be granted JIT access.
RoleDefinitionId This property is required. string
The role definition id that will be granted to the Principal.
PrincipalId This property is required. string
The the principal id that will be granted JIT access.
RoleDefinitionId This property is required. string
The role definition id that will be granted to the Principal.
principalId This property is required. String
The the principal id that will be granted JIT access.
roleDefinitionId This property is required. String
The role definition id that will be granted to the Principal.
principalId This property is required. string
The the principal id that will be granted JIT access.
roleDefinitionId This property is required. string
The role definition id that will be granted to the Principal.
principal_id This property is required. str
The the principal id that will be granted JIT access.
role_definition_id This property is required. str
The role definition id that will be granted to the Principal.
principalId This property is required. String
The the principal id that will be granted JIT access.
roleDefinitionId This property is required. String
The role definition id that will be granted to the Principal.

JitSchedulingPolicy
, JitSchedulingPolicyArgs

Duration This property is required. string
StartTime This property is required. string
The start time of the request.
Type This property is required. string | Pulumi.AzureNative.Solutions.JitSchedulingType
The type of JIT schedule.
Duration This property is required. string
StartTime This property is required. string
The start time of the request.
Type This property is required. string | JitSchedulingType
The type of JIT schedule.
duration This property is required. String
startTime This property is required. String
The start time of the request.
type This property is required. String | JitSchedulingType
The type of JIT schedule.
duration This property is required. string
startTime This property is required. string
The start time of the request.
type This property is required. string | JitSchedulingType
The type of JIT schedule.
duration This property is required. str
start_time This property is required. str
The start time of the request.
type This property is required. str | JitSchedulingType
The type of JIT schedule.
duration This property is required. String
startTime This property is required. String
The start time of the request.
type This property is required. String | "NotSpecified" | "Once" | "Recurring"
The type of JIT schedule.

JitSchedulingPolicyResponse
, JitSchedulingPolicyResponseArgs

Duration This property is required. string
StartTime This property is required. string
The start time of the request.
Type This property is required. string
The type of JIT schedule.
Duration This property is required. string
StartTime This property is required. string
The start time of the request.
Type This property is required. string
The type of JIT schedule.
duration This property is required. String
startTime This property is required. String
The start time of the request.
type This property is required. String
The type of JIT schedule.
duration This property is required. string
startTime This property is required. string
The start time of the request.
type This property is required. string
The type of JIT schedule.
duration This property is required. str
start_time This property is required. str
The start time of the request.
type This property is required. str
The type of JIT schedule.
duration This property is required. String
startTime This property is required. String
The start time of the request.
type This property is required. String
The type of JIT schedule.

JitSchedulingType
, JitSchedulingTypeArgs

NotSpecified
NotSpecified
Once
Once
Recurring
Recurring
JitSchedulingTypeNotSpecified
NotSpecified
JitSchedulingTypeOnce
Once
JitSchedulingTypeRecurring
Recurring
NotSpecified
NotSpecified
Once
Once
Recurring
Recurring
NotSpecified
NotSpecified
Once
Once
Recurring
Recurring
NOT_SPECIFIED
NotSpecified
ONCE
Once
RECURRING
Recurring
"NotSpecified"
NotSpecified
"Once"
Once
"Recurring"
Recurring

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:solutions:JitRequest myJitRequest /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Solutions/jitRequests/{jitRequestName} 
Copy

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

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi