azure-native.solutions.JitRequest
Explore with Pulumi AI
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",
    });
});
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
	})
}
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());
    }
}
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",
});
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")
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
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 string
- The unique name of the resource.
- args JitRequestArgs
- 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 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 string
- The unique name of the resource.
- args JitRequestArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args JitRequestArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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[]
    {
        new AzureNative.Solutions.Inputs.JitAuthorizationPoliciesArgs
        {
            PrincipalId = "string",
            RoleDefinitionId = "string",
        },
    },
    JitSchedulingPolicy = new AzureNative.Solutions.Inputs.JitSchedulingPolicyArgs
    {
        Duration = "string",
        StartTime = "string",
        Type = "string",
    },
    ResourceGroupName = "string",
    JitRequestName = "string",
    Location = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := solutions.NewJitRequest(ctx, "jitRequestResource", &solutions.JitRequestArgs{
	ApplicationResourceId: pulumi.String("string"),
	JitAuthorizationPolicies: solutions.JitAuthorizationPoliciesArray{
		&solutions.JitAuthorizationPoliciesArgs{
			PrincipalId:      pulumi.String("string"),
			RoleDefinitionId: pulumi.String("string"),
		},
	},
	JitSchedulingPolicy: &solutions.JitSchedulingPolicyArgs{
		Duration:  pulumi.String("string"),
		StartTime: pulumi.String("string"),
		Type:      pulumi.String("string"),
	},
	ResourceGroupName: pulumi.String("string"),
	JitRequestName:    pulumi.String("string"),
	Location:          pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var jitRequestResource = new JitRequest("jitRequestResource", JitRequestArgs.builder()
    .applicationResourceId("string")
    .jitAuthorizationPolicies(JitAuthorizationPoliciesArgs.builder()
        .principalId("string")
        .roleDefinitionId("string")
        .build())
    .jitSchedulingPolicy(JitSchedulingPolicyArgs.builder()
        .duration("string")
        .startTime("string")
        .type("string")
        .build())
    .resourceGroupName("string")
    .jitRequestName("string")
    .location("string")
    .tags(Map.of("string", "string"))
    .build());
jit_request_resource = azure_native.solutions.JitRequest("jitRequestResource",
    application_resource_id="string",
    jit_authorization_policies=[{
        "principal_id": "string",
        "role_definition_id": "string",
    }],
    jit_scheduling_policy={
        "duration": "string",
        "start_time": "string",
        "type": "string",
    },
    resource_group_name="string",
    jit_request_name="string",
    location="string",
    tags={
        "string": "string",
    })
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",
    },
});
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
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:
- ApplicationResource stringId 
- The parent application id.
- 
List<Pulumi.Azure Native. Solutions. Inputs. Jit Authorization Policies> 
- The JIT authorization policies.
- JitScheduling Pulumi.Policy Azure Native. Solutions. Inputs. Jit Scheduling Policy 
- The JIT request properties.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- JitRequest stringName 
- The name of the JIT request.
- Location string
- Resource location
- Dictionary<string, string>
- Resource tags
- ApplicationResource stringId 
- The parent application id.
- 
[]JitAuthorization Policies Args 
- The JIT authorization policies.
- JitScheduling JitPolicy Scheduling Policy Args 
- The JIT request properties.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- JitRequest stringName 
- The name of the JIT request.
- Location string
- Resource location
- map[string]string
- Resource tags
- applicationResource StringId 
- The parent application id.
- 
List<JitAuthorization Policies> 
- The JIT authorization policies.
- jitScheduling JitPolicy Scheduling Policy 
- The JIT request properties.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- jitRequest StringName 
- The name of the JIT request.
- location String
- Resource location
- Map<String,String>
- Resource tags
- applicationResource stringId 
- The parent application id.
- 
JitAuthorization Policies[] 
- The JIT authorization policies.
- jitScheduling JitPolicy Scheduling Policy 
- The JIT request properties.
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- jitRequest stringName 
- The name of the JIT request.
- location string
- Resource location
- {[key: string]: string}
- Resource tags
- application_resource_ strid 
- The parent application id.
- 
Sequence[JitAuthorization Policies Args] 
- The JIT authorization policies.
- jit_scheduling_ Jitpolicy Scheduling Policy Args 
- The JIT request properties.
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- jit_request_ strname 
- The name of the JIT request.
- location str
- Resource location
- Mapping[str, str]
- Resource tags
- applicationResource StringId 
- The parent application id.
- List<Property Map>
- The JIT authorization policies.
- jitScheduling Property MapPolicy 
- The JIT request properties.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- jitRequest StringName 
- The name of the JIT request.
- location String
- Resource location
- 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.Azure Native. Solutions. Outputs. Application Client Details Response 
- The client entity that created the JIT request.
- Id string
- The provider-assigned unique ID for this managed resource.
- JitRequest stringState 
- The JIT request state.
- Name string
- Resource name
- ProvisioningState string
- The JIT request provisioning state.
- PublisherTenant stringId 
- The publisher tenant id.
- SystemData Pulumi.Azure Native. Solutions. Outputs. System Data Response 
- Metadata pertaining to creation and last modification of the resource.
- Type string
- Resource type
- UpdatedBy Pulumi.Azure Native. Solutions. Outputs. Application Client Details Response 
- The client entity that last updated the JIT request.
- CreatedBy ApplicationClient Details Response 
- The client entity that created the JIT request.
- Id string
- The provider-assigned unique ID for this managed resource.
- JitRequest stringState 
- The JIT request state.
- Name string
- Resource name
- ProvisioningState string
- The JIT request provisioning state.
- PublisherTenant stringId 
- The publisher tenant id.
- SystemData SystemData Response 
- Metadata pertaining to creation and last modification of the resource.
- Type string
- Resource type
- UpdatedBy ApplicationClient Details Response 
- The client entity that last updated the JIT request.
- createdBy ApplicationClient Details Response 
- The client entity that created the JIT request.
- id String
- The provider-assigned unique ID for this managed resource.
- jitRequest StringState 
- The JIT request state.
- name String
- Resource name
- provisioningState String
- The JIT request provisioning state.
- publisherTenant StringId 
- The publisher tenant id.
- systemData SystemData Response 
- Metadata pertaining to creation and last modification of the resource.
- type String
- Resource type
- updatedBy ApplicationClient Details Response 
- The client entity that last updated the JIT request.
- createdBy ApplicationClient Details Response 
- The client entity that created the JIT request.
- id string
- The provider-assigned unique ID for this managed resource.
- jitRequest stringState 
- The JIT request state.
- name string
- Resource name
- provisioningState string
- The JIT request provisioning state.
- publisherTenant stringId 
- The publisher tenant id.
- systemData SystemData Response 
- Metadata pertaining to creation and last modification of the resource.
- type string
- Resource type
- updatedBy ApplicationClient Details Response 
- The client entity that last updated the JIT request.
- created_by ApplicationClient Details Response 
- The client entity that created the JIT request.
- id str
- The provider-assigned unique ID for this managed resource.
- jit_request_ strstate 
- The JIT request state.
- name str
- Resource name
- provisioning_state str
- The JIT request provisioning state.
- publisher_tenant_ strid 
- The publisher tenant id.
- system_data SystemData Response 
- Metadata pertaining to creation and last modification of the resource.
- type str
- Resource type
- updated_by ApplicationClient Details Response 
- 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.
- jitRequest StringState 
- The JIT request state.
- name String
- Resource name
- provisioningState String
- The JIT request provisioning state.
- publisherTenant StringId 
- 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 string
- The the principal id that will be granted JIT access.
- RoleDefinition stringId 
- The role definition id that will be granted to the Principal.
- PrincipalId string
- The the principal id that will be granted JIT access.
- RoleDefinition stringId 
- The role definition id that will be granted to the Principal.
- principalId String
- The the principal id that will be granted JIT access.
- roleDefinition StringId 
- The role definition id that will be granted to the Principal.
- principalId string
- The the principal id that will be granted JIT access.
- roleDefinition stringId 
- The role definition id that will be granted to the Principal.
- principal_id str
- The the principal id that will be granted JIT access.
- role_definition_ strid 
- The role definition id that will be granted to the Principal.
- principalId String
- The the principal id that will be granted JIT access.
- roleDefinition StringId 
- The role definition id that will be granted to the Principal.
JitAuthorizationPoliciesResponse, JitAuthorizationPoliciesResponseArgs        
- PrincipalId string
- The the principal id that will be granted JIT access.
- RoleDefinition stringId 
- The role definition id that will be granted to the Principal.
- PrincipalId string
- The the principal id that will be granted JIT access.
- RoleDefinition stringId 
- The role definition id that will be granted to the Principal.
- principalId String
- The the principal id that will be granted JIT access.
- roleDefinition StringId 
- The role definition id that will be granted to the Principal.
- principalId string
- The the principal id that will be granted JIT access.
- roleDefinition stringId 
- The role definition id that will be granted to the Principal.
- principal_id str
- The the principal id that will be granted JIT access.
- role_definition_ strid 
- The role definition id that will be granted to the Principal.
- principalId String
- The the principal id that will be granted JIT access.
- roleDefinition StringId 
- The role definition id that will be granted to the Principal.
JitSchedulingPolicy, JitSchedulingPolicyArgs      
- Duration string
- StartTime string
- The start time of the request.
- Type
string | Pulumi.Azure Native. Solutions. Jit Scheduling Type 
- The type of JIT schedule.
- Duration string
- StartTime string
- The start time of the request.
- Type
string | JitScheduling Type 
- The type of JIT schedule.
- duration String
- startTime String
- The start time of the request.
- type
String | JitScheduling Type 
- The type of JIT schedule.
- duration string
- startTime string
- The start time of the request.
- type
string | JitScheduling Type 
- The type of JIT schedule.
- duration str
- start_time str
- The start time of the request.
- type
str | JitScheduling Type 
- The type of JIT schedule.
- duration String
- startTime String
- The start time of the request.
- type
String | "NotSpecified" | "Once" | "Recurring" 
- The type of JIT schedule.
JitSchedulingPolicyResponse, JitSchedulingPolicyResponseArgs        
- duration str
- start_time str
- The start time of the request.
- type str
- The type of JIT schedule.
JitSchedulingType, JitSchedulingTypeArgs      
- NotSpecified 
- NotSpecified
- Once
- Once
- Recurring
- Recurring
- JitScheduling Type Not Specified 
- NotSpecified
- JitScheduling Type Once 
- Once
- JitScheduling Type Recurring 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified 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.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified 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:solutions:JitRequest myJitRequest /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Solutions/jitRequests/{jitRequestName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0