1. Packages
  2. Azure Classic
  3. API Docs
  4. pim
  5. EligibleRoleAssignment

We recommend using Azure Native.

Azure Classic v5.52.0 published on Monday, Oct 2, 2023 by Pulumi

azure.pim.EligibleRoleAssignment

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure Classic v5.52.0 published on Monday, Oct 2, 2023 by Pulumi

    Manages a Pim Eligible Role Assignment.

    Example Usage

    Subscription)

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Azure = Pulumi.Azure;
    using Time = Pulumiverse.Time;
    
    return await Deployment.RunAsync(() => 
    {
        var primary = Azure.Core.GetSubscription.Invoke();
    
        var exampleClientConfig = Azure.Core.GetClientConfig.Invoke();
    
        var exampleRoleDefinition = Azure.Authorization.GetRoleDefinition.Invoke(new()
        {
            Name = "Reader",
        });
    
        var exampleStatic = new Time.Static("exampleStatic");
    
        var exampleEligibleRoleAssignment = new Azure.Pim.EligibleRoleAssignment("exampleEligibleRoleAssignment", new()
        {
            Scope = primary.Apply(getSubscriptionResult => getSubscriptionResult.Id),
            RoleDefinitionId = Output.Tuple(primary, exampleRoleDefinition).Apply(values =>
            {
                var primary = values.Item1;
                var exampleRoleDefinition = values.Item2;
                return $"{primary.Apply(getSubscriptionResult => getSubscriptionResult.Id)}{exampleRoleDefinition.Apply(getRoleDefinitionResult => getRoleDefinitionResult.Id)}";
            }),
            PrincipalId = exampleClientConfig.Apply(getClientConfigResult => getClientConfigResult.ObjectId),
            Schedule = new Azure.Pim.Inputs.EligibleRoleAssignmentScheduleArgs
            {
                StartDateTime = exampleStatic.Rfc3339,
                Expiration = new Azure.Pim.Inputs.EligibleRoleAssignmentScheduleExpirationArgs
                {
                    DurationHours = 8,
                },
            },
            Justification = "Expiration Duration Set",
            Ticket = new Azure.Pim.Inputs.EligibleRoleAssignmentTicketArgs
            {
                Number = "1",
                System = "example ticket system",
            },
        });
    
    });
    
    package main
    
    import (
    	"fmt"
    
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/authorization"
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/pim"
    	"github.com/pulumi/pulumi-time/sdk/go/time"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		primary, err := core.LookupSubscription(ctx, nil, nil)
    		if err != nil {
    			return err
    		}
    		exampleClientConfig, err := core.GetClientConfig(ctx, nil, nil)
    		if err != nil {
    			return err
    		}
    		exampleRoleDefinition, err := authorization.LookupRoleDefinition(ctx, &authorization.LookupRoleDefinitionArgs{
    			Name: pulumi.StringRef("Reader"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		exampleStatic, err := time.NewStatic(ctx, "exampleStatic", nil)
    		if err != nil {
    			return err
    		}
    		_, err = pim.NewEligibleRoleAssignment(ctx, "exampleEligibleRoleAssignment", &pim.EligibleRoleAssignmentArgs{
    			Scope:            *pulumi.String(primary.Id),
    			RoleDefinitionId: pulumi.String(fmt.Sprintf("%v%v", primary.Id, exampleRoleDefinition.Id)),
    			PrincipalId:      *pulumi.String(exampleClientConfig.ObjectId),
    			Schedule: &pim.EligibleRoleAssignmentScheduleArgs{
    				StartDateTime: exampleStatic.Rfc3339,
    				Expiration: &pim.EligibleRoleAssignmentScheduleExpirationArgs{
    					DurationHours: pulumi.Int(8),
    				},
    			},
    			Justification: pulumi.String("Expiration Duration Set"),
    			Ticket: &pim.EligibleRoleAssignmentTicketArgs{
    				Number: pulumi.String("1"),
    				System: pulumi.String("example ticket system"),
    			},
    		})
    		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.azure.core.CoreFunctions;
    import com.pulumi.azure.core.inputs.GetSubscriptionArgs;
    import com.pulumi.azure.authorization.AuthorizationFunctions;
    import com.pulumi.azure.authorization.inputs.GetRoleDefinitionArgs;
    import com.pulumi.time.Static;
    import com.pulumi.azure.pim.EligibleRoleAssignment;
    import com.pulumi.azure.pim.EligibleRoleAssignmentArgs;
    import com.pulumi.azure.pim.inputs.EligibleRoleAssignmentScheduleArgs;
    import com.pulumi.azure.pim.inputs.EligibleRoleAssignmentScheduleExpirationArgs;
    import com.pulumi.azure.pim.inputs.EligibleRoleAssignmentTicketArgs;
    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) {
            final var primary = CoreFunctions.getSubscription();
    
            final var exampleClientConfig = CoreFunctions.getClientConfig();
    
            final var exampleRoleDefinition = AuthorizationFunctions.getRoleDefinition(GetRoleDefinitionArgs.builder()
                .name("Reader")
                .build());
    
            var exampleStatic = new Static("exampleStatic");
    
            var exampleEligibleRoleAssignment = new EligibleRoleAssignment("exampleEligibleRoleAssignment", EligibleRoleAssignmentArgs.builder()        
                .scope(primary.applyValue(getSubscriptionResult -> getSubscriptionResult.id()))
                .roleDefinitionId(String.format("%s%s", primary.applyValue(getSubscriptionResult -> getSubscriptionResult.id()),exampleRoleDefinition.applyValue(getRoleDefinitionResult -> getRoleDefinitionResult.id())))
                .principalId(exampleClientConfig.applyValue(getClientConfigResult -> getClientConfigResult.objectId()))
                .schedule(EligibleRoleAssignmentScheduleArgs.builder()
                    .startDateTime(exampleStatic.rfc3339())
                    .expiration(EligibleRoleAssignmentScheduleExpirationArgs.builder()
                        .durationHours(8)
                        .build())
                    .build())
                .justification("Expiration Duration Set")
                .ticket(EligibleRoleAssignmentTicketArgs.builder()
                    .number("1")
                    .system("example ticket system")
                    .build())
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure as azure
    import pulumiverse_time as time
    
    primary = azure.core.get_subscription()
    example_client_config = azure.core.get_client_config()
    example_role_definition = azure.authorization.get_role_definition(name="Reader")
    example_static = time.Static("exampleStatic")
    example_eligible_role_assignment = azure.pim.EligibleRoleAssignment("exampleEligibleRoleAssignment",
        scope=primary.id,
        role_definition_id=f"{primary.id}{example_role_definition.id}",
        principal_id=example_client_config.object_id,
        schedule=azure.pim.EligibleRoleAssignmentScheduleArgs(
            start_date_time=example_static.rfc3339,
            expiration=azure.pim.EligibleRoleAssignmentScheduleExpirationArgs(
                duration_hours=8,
            ),
        ),
        justification="Expiration Duration Set",
        ticket=azure.pim.EligibleRoleAssignmentTicketArgs(
            number="1",
            system="example ticket system",
        ))
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    import * as time from "@pulumiverse/time";
    
    const primary = azure.core.getSubscription({});
    const exampleClientConfig = azure.core.getClientConfig({});
    const exampleRoleDefinition = azure.authorization.getRoleDefinition({
        name: "Reader",
    });
    const exampleStatic = new time.Static("exampleStatic", {});
    const exampleEligibleRoleAssignment = new azure.pim.EligibleRoleAssignment("exampleEligibleRoleAssignment", {
        scope: primary.then(primary => primary.id),
        roleDefinitionId: Promise.all([primary, exampleRoleDefinition]).then(([primary, exampleRoleDefinition]) => `${primary.id}${exampleRoleDefinition.id}`),
        principalId: exampleClientConfig.then(exampleClientConfig => exampleClientConfig.objectId),
        schedule: {
            startDateTime: exampleStatic.rfc3339,
            expiration: {
                durationHours: 8,
            },
        },
        justification: "Expiration Duration Set",
        ticket: {
            number: "1",
            system: "example ticket system",
        },
    });
    
    resources:
      exampleStatic:
        type: time:Static
      exampleEligibleRoleAssignment:
        type: azure:pim:EligibleRoleAssignment
        properties:
          scope: ${primary.id}
          roleDefinitionId: ${primary.id}${exampleRoleDefinition.id}
          principalId: ${exampleClientConfig.objectId}
          schedule:
            startDateTime: ${exampleStatic.rfc3339}
            expiration:
              durationHours: 8
          justification: Expiration Duration Set
          ticket:
            number: '1'
            system: example ticket system
    variables:
      primary:
        fn::invoke:
          Function: azure:core:getSubscription
          Arguments: {}
      exampleClientConfig:
        fn::invoke:
          Function: azure:core:getClientConfig
          Arguments: {}
      exampleRoleDefinition:
        fn::invoke:
          Function: azure:authorization:getRoleDefinition
          Arguments:
            name: Reader
    

    Management Group)

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Azure = Pulumi.Azure;
    using Time = Pulumiverse.Time;
    
    return await Deployment.RunAsync(() => 
    {
        var exampleClientConfig = Azure.Core.GetClientConfig.Invoke();
    
        var exampleRoleDefinition = Azure.Authorization.GetRoleDefinition.Invoke(new()
        {
            Name = "Reader",
        });
    
        var exampleGroup = new Azure.Management.Group("exampleGroup");
    
        var exampleStatic = new Time.Static("exampleStatic");
    
        var exampleEligibleRoleAssignment = new Azure.Pim.EligibleRoleAssignment("exampleEligibleRoleAssignment", new()
        {
            Scope = exampleGroup.Id,
            RoleDefinitionId = exampleRoleDefinition.Apply(getRoleDefinitionResult => getRoleDefinitionResult.Id),
            PrincipalId = exampleClientConfig.Apply(getClientConfigResult => getClientConfigResult.ObjectId),
            Schedule = new Azure.Pim.Inputs.EligibleRoleAssignmentScheduleArgs
            {
                StartDateTime = exampleStatic.Rfc3339,
                Expiration = new Azure.Pim.Inputs.EligibleRoleAssignmentScheduleExpirationArgs
                {
                    DurationHours = 8,
                },
            },
            Justification = "Expiration Duration Set",
            Ticket = new Azure.Pim.Inputs.EligibleRoleAssignmentTicketArgs
            {
                Number = "1",
                System = "example ticket system",
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/authorization"
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/management"
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/pim"
    	"github.com/pulumi/pulumi-time/sdk/go/time"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		exampleClientConfig, err := core.GetClientConfig(ctx, nil, nil)
    		if err != nil {
    			return err
    		}
    		exampleRoleDefinition, err := authorization.LookupRoleDefinition(ctx, &authorization.LookupRoleDefinitionArgs{
    			Name: pulumi.StringRef("Reader"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		exampleGroup, err := management.NewGroup(ctx, "exampleGroup", nil)
    		if err != nil {
    			return err
    		}
    		exampleStatic, err := time.NewStatic(ctx, "exampleStatic", nil)
    		if err != nil {
    			return err
    		}
    		_, err = pim.NewEligibleRoleAssignment(ctx, "exampleEligibleRoleAssignment", &pim.EligibleRoleAssignmentArgs{
    			Scope:            exampleGroup.ID(),
    			RoleDefinitionId: *pulumi.String(exampleRoleDefinition.Id),
    			PrincipalId:      *pulumi.String(exampleClientConfig.ObjectId),
    			Schedule: &pim.EligibleRoleAssignmentScheduleArgs{
    				StartDateTime: exampleStatic.Rfc3339,
    				Expiration: &pim.EligibleRoleAssignmentScheduleExpirationArgs{
    					DurationHours: pulumi.Int(8),
    				},
    			},
    			Justification: pulumi.String("Expiration Duration Set"),
    			Ticket: &pim.EligibleRoleAssignmentTicketArgs{
    				Number: pulumi.String("1"),
    				System: pulumi.String("example ticket system"),
    			},
    		})
    		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.azure.core.CoreFunctions;
    import com.pulumi.azure.authorization.AuthorizationFunctions;
    import com.pulumi.azure.authorization.inputs.GetRoleDefinitionArgs;
    import com.pulumi.azure.management.Group;
    import com.pulumi.time.Static;
    import com.pulumi.azure.pim.EligibleRoleAssignment;
    import com.pulumi.azure.pim.EligibleRoleAssignmentArgs;
    import com.pulumi.azure.pim.inputs.EligibleRoleAssignmentScheduleArgs;
    import com.pulumi.azure.pim.inputs.EligibleRoleAssignmentScheduleExpirationArgs;
    import com.pulumi.azure.pim.inputs.EligibleRoleAssignmentTicketArgs;
    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) {
            final var exampleClientConfig = CoreFunctions.getClientConfig();
    
            final var exampleRoleDefinition = AuthorizationFunctions.getRoleDefinition(GetRoleDefinitionArgs.builder()
                .name("Reader")
                .build());
    
            var exampleGroup = new Group("exampleGroup");
    
            var exampleStatic = new Static("exampleStatic");
    
            var exampleEligibleRoleAssignment = new EligibleRoleAssignment("exampleEligibleRoleAssignment", EligibleRoleAssignmentArgs.builder()        
                .scope(exampleGroup.id())
                .roleDefinitionId(exampleRoleDefinition.applyValue(getRoleDefinitionResult -> getRoleDefinitionResult.id()))
                .principalId(exampleClientConfig.applyValue(getClientConfigResult -> getClientConfigResult.objectId()))
                .schedule(EligibleRoleAssignmentScheduleArgs.builder()
                    .startDateTime(exampleStatic.rfc3339())
                    .expiration(EligibleRoleAssignmentScheduleExpirationArgs.builder()
                        .durationHours(8)
                        .build())
                    .build())
                .justification("Expiration Duration Set")
                .ticket(EligibleRoleAssignmentTicketArgs.builder()
                    .number("1")
                    .system("example ticket system")
                    .build())
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure as azure
    import pulumiverse_time as time
    
    example_client_config = azure.core.get_client_config()
    example_role_definition = azure.authorization.get_role_definition(name="Reader")
    example_group = azure.management.Group("exampleGroup")
    example_static = time.Static("exampleStatic")
    example_eligible_role_assignment = azure.pim.EligibleRoleAssignment("exampleEligibleRoleAssignment",
        scope=example_group.id,
        role_definition_id=example_role_definition.id,
        principal_id=example_client_config.object_id,
        schedule=azure.pim.EligibleRoleAssignmentScheduleArgs(
            start_date_time=example_static.rfc3339,
            expiration=azure.pim.EligibleRoleAssignmentScheduleExpirationArgs(
                duration_hours=8,
            ),
        ),
        justification="Expiration Duration Set",
        ticket=azure.pim.EligibleRoleAssignmentTicketArgs(
            number="1",
            system="example ticket system",
        ))
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    import * as time from "@pulumiverse/time";
    
    const exampleClientConfig = azure.core.getClientConfig({});
    const exampleRoleDefinition = azure.authorization.getRoleDefinition({
        name: "Reader",
    });
    const exampleGroup = new azure.management.Group("exampleGroup", {});
    const exampleStatic = new time.Static("exampleStatic", {});
    const exampleEligibleRoleAssignment = new azure.pim.EligibleRoleAssignment("exampleEligibleRoleAssignment", {
        scope: exampleGroup.id,
        roleDefinitionId: exampleRoleDefinition.then(exampleRoleDefinition => exampleRoleDefinition.id),
        principalId: exampleClientConfig.then(exampleClientConfig => exampleClientConfig.objectId),
        schedule: {
            startDateTime: exampleStatic.rfc3339,
            expiration: {
                durationHours: 8,
            },
        },
        justification: "Expiration Duration Set",
        ticket: {
            number: "1",
            system: "example ticket system",
        },
    });
    
    resources:
      exampleGroup:
        type: azure:management:Group
      exampleStatic:
        type: time:Static
      exampleEligibleRoleAssignment:
        type: azure:pim:EligibleRoleAssignment
        properties:
          scope: ${exampleGroup.id}
          roleDefinitionId: ${exampleRoleDefinition.id}
          principalId: ${exampleClientConfig.objectId}
          schedule:
            startDateTime: ${exampleStatic.rfc3339}
            expiration:
              durationHours: 8
          justification: Expiration Duration Set
          ticket:
            number: '1'
            system: example ticket system
    variables:
      exampleClientConfig:
        fn::invoke:
          Function: azure:core:getClientConfig
          Arguments: {}
      exampleRoleDefinition:
        fn::invoke:
          Function: azure:authorization:getRoleDefinition
          Arguments:
            name: Reader
    

    Create EligibleRoleAssignment Resource

    new EligibleRoleAssignment(name: string, args: EligibleRoleAssignmentArgs, opts?: CustomResourceOptions);
    @overload
    def EligibleRoleAssignment(resource_name: str,
                               opts: Optional[ResourceOptions] = None,
                               justification: Optional[str] = None,
                               principal_id: Optional[str] = None,
                               role_definition_id: Optional[str] = None,
                               schedule: Optional[EligibleRoleAssignmentScheduleArgs] = None,
                               scope: Optional[str] = None,
                               ticket: Optional[EligibleRoleAssignmentTicketArgs] = None)
    @overload
    def EligibleRoleAssignment(resource_name: str,
                               args: EligibleRoleAssignmentArgs,
                               opts: Optional[ResourceOptions] = None)
    func NewEligibleRoleAssignment(ctx *Context, name string, args EligibleRoleAssignmentArgs, opts ...ResourceOption) (*EligibleRoleAssignment, error)
    public EligibleRoleAssignment(string name, EligibleRoleAssignmentArgs args, CustomResourceOptions? opts = null)
    public EligibleRoleAssignment(String name, EligibleRoleAssignmentArgs args)
    public EligibleRoleAssignment(String name, EligibleRoleAssignmentArgs args, CustomResourceOptions options)
    
    type: azure:pim:EligibleRoleAssignment
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args EligibleRoleAssignmentArgs
    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 EligibleRoleAssignmentArgs
    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 EligibleRoleAssignmentArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args EligibleRoleAssignmentArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args EligibleRoleAssignmentArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    EligibleRoleAssignment Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The EligibleRoleAssignment resource accepts the following input properties:

    PrincipalId string

    The principal id. Changing this forces a new Pim Eligible Role Assignment to be created.

    RoleDefinitionId string

    The role definition id. Changing this forces a new Pim Eligible Role Assignment to be created.

    Scope string

    The scope. Changing this forces a new Pim Eligible Role Assignment to be created.

    Justification string

    The justification of the role assignment. Changing this forces a new Pim Eligible Role Assignment to be created.

    Schedule EligibleRoleAssignmentSchedule

    A schedule block as defined below. Changing this forces a new Pim Eligible Role Assignment to be created.

    Ticket EligibleRoleAssignmentTicket

    A ticket block as defined below. Changing this forces a new Pim Eligible Role Assignment to be created.

    PrincipalId string

    The principal id. Changing this forces a new Pim Eligible Role Assignment to be created.

    RoleDefinitionId string

    The role definition id. Changing this forces a new Pim Eligible Role Assignment to be created.

    Scope string

    The scope. Changing this forces a new Pim Eligible Role Assignment to be created.

    Justification string

    The justification of the role assignment. Changing this forces a new Pim Eligible Role Assignment to be created.

    Schedule EligibleRoleAssignmentScheduleArgs

    A schedule block as defined below. Changing this forces a new Pim Eligible Role Assignment to be created.

    Ticket EligibleRoleAssignmentTicketArgs

    A ticket block as defined below. Changing this forces a new Pim Eligible Role Assignment to be created.

    principalId String

    The principal id. Changing this forces a new Pim Eligible Role Assignment to be created.

    roleDefinitionId String

    The role definition id. Changing this forces a new Pim Eligible Role Assignment to be created.

    scope String

    The scope. Changing this forces a new Pim Eligible Role Assignment to be created.

    justification String

    The justification of the role assignment. Changing this forces a new Pim Eligible Role Assignment to be created.

    schedule EligibleRoleAssignmentSchedule

    A schedule block as defined below. Changing this forces a new Pim Eligible Role Assignment to be created.

    ticket EligibleRoleAssignmentTicket

    A ticket block as defined below. Changing this forces a new Pim Eligible Role Assignment to be created.

    principalId string

    The principal id. Changing this forces a new Pim Eligible Role Assignment to be created.

    roleDefinitionId string

    The role definition id. Changing this forces a new Pim Eligible Role Assignment to be created.

    scope string

    The scope. Changing this forces a new Pim Eligible Role Assignment to be created.

    justification string

    The justification of the role assignment. Changing this forces a new Pim Eligible Role Assignment to be created.

    schedule EligibleRoleAssignmentSchedule

    A schedule block as defined below. Changing this forces a new Pim Eligible Role Assignment to be created.

    ticket EligibleRoleAssignmentTicket

    A ticket block as defined below. Changing this forces a new Pim Eligible Role Assignment to be created.

    principal_id str

    The principal id. Changing this forces a new Pim Eligible Role Assignment to be created.

    role_definition_id str

    The role definition id. Changing this forces a new Pim Eligible Role Assignment to be created.

    scope str

    The scope. Changing this forces a new Pim Eligible Role Assignment to be created.

    justification str

    The justification of the role assignment. Changing this forces a new Pim Eligible Role Assignment to be created.

    schedule EligibleRoleAssignmentScheduleArgs

    A schedule block as defined below. Changing this forces a new Pim Eligible Role Assignment to be created.

    ticket EligibleRoleAssignmentTicketArgs

    A ticket block as defined below. Changing this forces a new Pim Eligible Role Assignment to be created.

    principalId String

    The principal id. Changing this forces a new Pim Eligible Role Assignment to be created.

    roleDefinitionId String

    The role definition id. Changing this forces a new Pim Eligible Role Assignment to be created.

    scope String

    The scope. Changing this forces a new Pim Eligible Role Assignment to be created.

    justification String

    The justification of the role assignment. Changing this forces a new Pim Eligible Role Assignment to be created.

    schedule Property Map

    A schedule block as defined below. Changing this forces a new Pim Eligible Role Assignment to be created.

    ticket Property Map

    A ticket block as defined below. Changing this forces a new Pim Eligible Role Assignment to be created.

    Outputs

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

    Id string

    The provider-assigned unique ID for this managed resource.

    PrincipalType string

    The type of principal. *

    Id string

    The provider-assigned unique ID for this managed resource.

    PrincipalType string

    The type of principal. *

    id String

    The provider-assigned unique ID for this managed resource.

    principalType String

    The type of principal. *

    id string

    The provider-assigned unique ID for this managed resource.

    principalType string

    The type of principal. *

    id str

    The provider-assigned unique ID for this managed resource.

    principal_type str

    The type of principal. *

    id String

    The provider-assigned unique ID for this managed resource.

    principalType String

    The type of principal. *

    Look up Existing EligibleRoleAssignment Resource

    Get an existing EligibleRoleAssignment resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: EligibleRoleAssignmentState, opts?: CustomResourceOptions): EligibleRoleAssignment
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            justification: Optional[str] = None,
            principal_id: Optional[str] = None,
            principal_type: Optional[str] = None,
            role_definition_id: Optional[str] = None,
            schedule: Optional[EligibleRoleAssignmentScheduleArgs] = None,
            scope: Optional[str] = None,
            ticket: Optional[EligibleRoleAssignmentTicketArgs] = None) -> EligibleRoleAssignment
    func GetEligibleRoleAssignment(ctx *Context, name string, id IDInput, state *EligibleRoleAssignmentState, opts ...ResourceOption) (*EligibleRoleAssignment, error)
    public static EligibleRoleAssignment Get(string name, Input<string> id, EligibleRoleAssignmentState? state, CustomResourceOptions? opts = null)
    public static EligibleRoleAssignment get(String name, Output<String> id, EligibleRoleAssignmentState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Justification string

    The justification of the role assignment. Changing this forces a new Pim Eligible Role Assignment to be created.

    PrincipalId string

    The principal id. Changing this forces a new Pim Eligible Role Assignment to be created.

    PrincipalType string

    The type of principal. *

    RoleDefinitionId string

    The role definition id. Changing this forces a new Pim Eligible Role Assignment to be created.

    Schedule EligibleRoleAssignmentSchedule

    A schedule block as defined below. Changing this forces a new Pim Eligible Role Assignment to be created.

    Scope string

    The scope. Changing this forces a new Pim Eligible Role Assignment to be created.

    Ticket EligibleRoleAssignmentTicket

    A ticket block as defined below. Changing this forces a new Pim Eligible Role Assignment to be created.

    Justification string

    The justification of the role assignment. Changing this forces a new Pim Eligible Role Assignment to be created.

    PrincipalId string

    The principal id. Changing this forces a new Pim Eligible Role Assignment to be created.

    PrincipalType string

    The type of principal. *

    RoleDefinitionId string

    The role definition id. Changing this forces a new Pim Eligible Role Assignment to be created.

    Schedule EligibleRoleAssignmentScheduleArgs

    A schedule block as defined below. Changing this forces a new Pim Eligible Role Assignment to be created.

    Scope string

    The scope. Changing this forces a new Pim Eligible Role Assignment to be created.

    Ticket EligibleRoleAssignmentTicketArgs

    A ticket block as defined below. Changing this forces a new Pim Eligible Role Assignment to be created.

    justification String

    The justification of the role assignment. Changing this forces a new Pim Eligible Role Assignment to be created.

    principalId String

    The principal id. Changing this forces a new Pim Eligible Role Assignment to be created.

    principalType String

    The type of principal. *

    roleDefinitionId String

    The role definition id. Changing this forces a new Pim Eligible Role Assignment to be created.

    schedule EligibleRoleAssignmentSchedule

    A schedule block as defined below. Changing this forces a new Pim Eligible Role Assignment to be created.

    scope String

    The scope. Changing this forces a new Pim Eligible Role Assignment to be created.

    ticket EligibleRoleAssignmentTicket

    A ticket block as defined below. Changing this forces a new Pim Eligible Role Assignment to be created.

    justification string

    The justification of the role assignment. Changing this forces a new Pim Eligible Role Assignment to be created.

    principalId string

    The principal id. Changing this forces a new Pim Eligible Role Assignment to be created.

    principalType string

    The type of principal. *

    roleDefinitionId string

    The role definition id. Changing this forces a new Pim Eligible Role Assignment to be created.

    schedule EligibleRoleAssignmentSchedule

    A schedule block as defined below. Changing this forces a new Pim Eligible Role Assignment to be created.

    scope string

    The scope. Changing this forces a new Pim Eligible Role Assignment to be created.

    ticket EligibleRoleAssignmentTicket

    A ticket block as defined below. Changing this forces a new Pim Eligible Role Assignment to be created.

    justification str

    The justification of the role assignment. Changing this forces a new Pim Eligible Role Assignment to be created.

    principal_id str

    The principal id. Changing this forces a new Pim Eligible Role Assignment to be created.

    principal_type str

    The type of principal. *

    role_definition_id str

    The role definition id. Changing this forces a new Pim Eligible Role Assignment to be created.

    schedule EligibleRoleAssignmentScheduleArgs

    A schedule block as defined below. Changing this forces a new Pim Eligible Role Assignment to be created.

    scope str

    The scope. Changing this forces a new Pim Eligible Role Assignment to be created.

    ticket EligibleRoleAssignmentTicketArgs

    A ticket block as defined below. Changing this forces a new Pim Eligible Role Assignment to be created.

    justification String

    The justification of the role assignment. Changing this forces a new Pim Eligible Role Assignment to be created.

    principalId String

    The principal id. Changing this forces a new Pim Eligible Role Assignment to be created.

    principalType String

    The type of principal. *

    roleDefinitionId String

    The role definition id. Changing this forces a new Pim Eligible Role Assignment to be created.

    schedule Property Map

    A schedule block as defined below. Changing this forces a new Pim Eligible Role Assignment to be created.

    scope String

    The scope. Changing this forces a new Pim Eligible Role Assignment to be created.

    ticket Property Map

    A ticket block as defined below. Changing this forces a new Pim Eligible Role Assignment to be created.

    Supporting Types

    EligibleRoleAssignmentSchedule, EligibleRoleAssignmentScheduleArgs

    Expiration EligibleRoleAssignmentScheduleExpiration

    A expiration block as defined above.

    StartDateTime string

    The start date time of the role assignment. Changing this forces a new Pim Eligible Role Assignment to be created.

    Expiration EligibleRoleAssignmentScheduleExpiration

    A expiration block as defined above.

    StartDateTime string

    The start date time of the role assignment. Changing this forces a new Pim Eligible Role Assignment to be created.

    expiration EligibleRoleAssignmentScheduleExpiration

    A expiration block as defined above.

    startDateTime String

    The start date time of the role assignment. Changing this forces a new Pim Eligible Role Assignment to be created.

    expiration EligibleRoleAssignmentScheduleExpiration

    A expiration block as defined above.

    startDateTime string

    The start date time of the role assignment. Changing this forces a new Pim Eligible Role Assignment to be created.

    expiration EligibleRoleAssignmentScheduleExpiration

    A expiration block as defined above.

    start_date_time str

    The start date time of the role assignment. Changing this forces a new Pim Eligible Role Assignment to be created.

    expiration Property Map

    A expiration block as defined above.

    startDateTime String

    The start date time of the role assignment. Changing this forces a new Pim Eligible Role Assignment to be created.

    EligibleRoleAssignmentScheduleExpiration, EligibleRoleAssignmentScheduleExpirationArgs

    DurationDays int

    The duration of the role assignment in days. Conflicts with schedule.0.expiration.0.duration_hours,schedule.0.expiration.0.end_date_time Changing this forces a new Pim Eligible Role Assignment to be created.

    DurationHours int

    The duration of the role assignment in hours. Conflicts with schedule.0.expiration.0.duration_days,schedule.0.expiration.0.end_date_time Changing this forces a new Pim Eligible Role Assignment to be created.

    EndDateTime string

    The end date time of the role assignment. Conflicts with schedule.0.expiration.0.duration_days,schedule.0.expiration.0.duration_hours Changing this forces a new Pim Eligible Role Assignment to be created.

    DurationDays int

    The duration of the role assignment in days. Conflicts with schedule.0.expiration.0.duration_hours,schedule.0.expiration.0.end_date_time Changing this forces a new Pim Eligible Role Assignment to be created.

    DurationHours int

    The duration of the role assignment in hours. Conflicts with schedule.0.expiration.0.duration_days,schedule.0.expiration.0.end_date_time Changing this forces a new Pim Eligible Role Assignment to be created.

    EndDateTime string

    The end date time of the role assignment. Conflicts with schedule.0.expiration.0.duration_days,schedule.0.expiration.0.duration_hours Changing this forces a new Pim Eligible Role Assignment to be created.

    durationDays Integer

    The duration of the role assignment in days. Conflicts with schedule.0.expiration.0.duration_hours,schedule.0.expiration.0.end_date_time Changing this forces a new Pim Eligible Role Assignment to be created.

    durationHours Integer

    The duration of the role assignment in hours. Conflicts with schedule.0.expiration.0.duration_days,schedule.0.expiration.0.end_date_time Changing this forces a new Pim Eligible Role Assignment to be created.

    endDateTime String

    The end date time of the role assignment. Conflicts with schedule.0.expiration.0.duration_days,schedule.0.expiration.0.duration_hours Changing this forces a new Pim Eligible Role Assignment to be created.

    durationDays number

    The duration of the role assignment in days. Conflicts with schedule.0.expiration.0.duration_hours,schedule.0.expiration.0.end_date_time Changing this forces a new Pim Eligible Role Assignment to be created.

    durationHours number

    The duration of the role assignment in hours. Conflicts with schedule.0.expiration.0.duration_days,schedule.0.expiration.0.end_date_time Changing this forces a new Pim Eligible Role Assignment to be created.

    endDateTime string

    The end date time of the role assignment. Conflicts with schedule.0.expiration.0.duration_days,schedule.0.expiration.0.duration_hours Changing this forces a new Pim Eligible Role Assignment to be created.

    duration_days int

    The duration of the role assignment in days. Conflicts with schedule.0.expiration.0.duration_hours,schedule.0.expiration.0.end_date_time Changing this forces a new Pim Eligible Role Assignment to be created.

    duration_hours int

    The duration of the role assignment in hours. Conflicts with schedule.0.expiration.0.duration_days,schedule.0.expiration.0.end_date_time Changing this forces a new Pim Eligible Role Assignment to be created.

    end_date_time str

    The end date time of the role assignment. Conflicts with schedule.0.expiration.0.duration_days,schedule.0.expiration.0.duration_hours Changing this forces a new Pim Eligible Role Assignment to be created.

    durationDays Number

    The duration of the role assignment in days. Conflicts with schedule.0.expiration.0.duration_hours,schedule.0.expiration.0.end_date_time Changing this forces a new Pim Eligible Role Assignment to be created.

    durationHours Number

    The duration of the role assignment in hours. Conflicts with schedule.0.expiration.0.duration_days,schedule.0.expiration.0.end_date_time Changing this forces a new Pim Eligible Role Assignment to be created.

    endDateTime String

    The end date time of the role assignment. Conflicts with schedule.0.expiration.0.duration_days,schedule.0.expiration.0.duration_hours Changing this forces a new Pim Eligible Role Assignment to be created.

    EligibleRoleAssignmentTicket, EligibleRoleAssignmentTicketArgs

    Number string

    The ticket number.

    System string

    The ticket system.

    Number string

    The ticket number.

    System string

    The ticket system.

    number String

    The ticket number.

    system String

    The ticket system.

    number string

    The ticket number.

    system string

    The ticket system.

    number str

    The ticket number.

    system str

    The ticket system.

    number String

    The ticket number.

    system String

    The ticket system.

    Import

    Pim Eligible Role Assignments can be imported using the resource id, e.g.

     $ pulumi import azure:pim/eligibleRoleAssignment:EligibleRoleAssignment example /subscriptions/00000000-0000-0000-0000-000000000000|/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/00000000-0000-0000-0000-000000000000|00000000-0000-0000-0000-000000000000
    

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes

    This Pulumi package is based on the azurerm Terraform Provider.

    azure logo

    We recommend using Azure Native.

    Azure Classic v5.52.0 published on Monday, Oct 2, 2023 by Pulumi