1. Packages
  2. Azure Native
  3. API Docs
  4. managedservices
  5. RegistrationAssignment
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.34.0 published on Thursday, Mar 28, 2024 by Pulumi

azure-native.managedservices.RegistrationAssignment

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.34.0 published on Thursday, Mar 28, 2024 by Pulumi

    The registration assignment. Azure REST API version: 2022-10-01. Prior API version in Azure Native 1.x: 2019-09-01.

    Example Usage

    Put Registration Assignment

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var registrationAssignment = new AzureNative.ManagedServices.RegistrationAssignment("registrationAssignment", new()
        {
            Properties = new AzureNative.ManagedServices.Inputs.RegistrationAssignmentPropertiesArgs
            {
                RegistrationDefinitionId = "/subscriptions/0afefe50-734e-4610-8a82-a144ahf49dea/providers/Microsoft.ManagedServices/registrationDefinitions/26c128c2-fefa-4340-9bb1-6e081c90ada2",
            },
            RegistrationAssignmentId = "26c128c2-fefa-4340-9bb1-6e081c90ada2",
            Scope = "subscription/0afefe50-734e-4610-8a82-a144ahf49dea",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/managedservices/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := managedservices.NewRegistrationAssignment(ctx, "registrationAssignment", &managedservices.RegistrationAssignmentArgs{
    			Properties: &managedservices.RegistrationAssignmentPropertiesArgs{
    				RegistrationDefinitionId: pulumi.String("/subscriptions/0afefe50-734e-4610-8a82-a144ahf49dea/providers/Microsoft.ManagedServices/registrationDefinitions/26c128c2-fefa-4340-9bb1-6e081c90ada2"),
    			},
    			RegistrationAssignmentId: pulumi.String("26c128c2-fefa-4340-9bb1-6e081c90ada2"),
    			Scope:                    pulumi.String("subscription/0afefe50-734e-4610-8a82-a144ahf49dea"),
    		})
    		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.managedservices.RegistrationAssignment;
    import com.pulumi.azurenative.managedservices.RegistrationAssignmentArgs;
    import com.pulumi.azurenative.managedservices.inputs.RegistrationAssignmentPropertiesArgs;
    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 registrationAssignment = new RegistrationAssignment("registrationAssignment", RegistrationAssignmentArgs.builder()        
                .properties(RegistrationAssignmentPropertiesArgs.builder()
                    .registrationDefinitionId("/subscriptions/0afefe50-734e-4610-8a82-a144ahf49dea/providers/Microsoft.ManagedServices/registrationDefinitions/26c128c2-fefa-4340-9bb1-6e081c90ada2")
                    .build())
                .registrationAssignmentId("26c128c2-fefa-4340-9bb1-6e081c90ada2")
                .scope("subscription/0afefe50-734e-4610-8a82-a144ahf49dea")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    registration_assignment = azure_native.managedservices.RegistrationAssignment("registrationAssignment",
        properties=azure_native.managedservices.RegistrationAssignmentPropertiesArgs(
            registration_definition_id="/subscriptions/0afefe50-734e-4610-8a82-a144ahf49dea/providers/Microsoft.ManagedServices/registrationDefinitions/26c128c2-fefa-4340-9bb1-6e081c90ada2",
        ),
        registration_assignment_id="26c128c2-fefa-4340-9bb1-6e081c90ada2",
        scope="subscription/0afefe50-734e-4610-8a82-a144ahf49dea")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const registrationAssignment = new azure_native.managedservices.RegistrationAssignment("registrationAssignment", {
        properties: {
            registrationDefinitionId: "/subscriptions/0afefe50-734e-4610-8a82-a144ahf49dea/providers/Microsoft.ManagedServices/registrationDefinitions/26c128c2-fefa-4340-9bb1-6e081c90ada2",
        },
        registrationAssignmentId: "26c128c2-fefa-4340-9bb1-6e081c90ada2",
        scope: "subscription/0afefe50-734e-4610-8a82-a144ahf49dea",
    });
    
    resources:
      registrationAssignment:
        type: azure-native:managedservices:RegistrationAssignment
        properties:
          properties:
            registrationDefinitionId: /subscriptions/0afefe50-734e-4610-8a82-a144ahf49dea/providers/Microsoft.ManagedServices/registrationDefinitions/26c128c2-fefa-4340-9bb1-6e081c90ada2
          registrationAssignmentId: 26c128c2-fefa-4340-9bb1-6e081c90ada2
          scope: subscription/0afefe50-734e-4610-8a82-a144ahf49dea
    

    Create RegistrationAssignment Resource

    new RegistrationAssignment(name: string, args: RegistrationAssignmentArgs, opts?: CustomResourceOptions);
    @overload
    def RegistrationAssignment(resource_name: str,
                               opts: Optional[ResourceOptions] = None,
                               properties: Optional[RegistrationAssignmentPropertiesArgs] = None,
                               registration_assignment_id: Optional[str] = None,
                               scope: Optional[str] = None)
    @overload
    def RegistrationAssignment(resource_name: str,
                               args: RegistrationAssignmentArgs,
                               opts: Optional[ResourceOptions] = None)
    func NewRegistrationAssignment(ctx *Context, name string, args RegistrationAssignmentArgs, opts ...ResourceOption) (*RegistrationAssignment, error)
    public RegistrationAssignment(string name, RegistrationAssignmentArgs args, CustomResourceOptions? opts = null)
    public RegistrationAssignment(String name, RegistrationAssignmentArgs args)
    public RegistrationAssignment(String name, RegistrationAssignmentArgs args, CustomResourceOptions options)
    
    type: azure-native:managedservices:RegistrationAssignment
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args RegistrationAssignmentArgs
    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 RegistrationAssignmentArgs
    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 RegistrationAssignmentArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args RegistrationAssignmentArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args RegistrationAssignmentArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

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

    Scope string
    The scope of the resource.
    Properties Pulumi.AzureNative.ManagedServices.Inputs.RegistrationAssignmentProperties
    The properties of a registration assignment.
    RegistrationAssignmentId string
    The GUID of the registration assignment.
    Scope string
    The scope of the resource.
    Properties RegistrationAssignmentPropertiesArgs
    The properties of a registration assignment.
    RegistrationAssignmentId string
    The GUID of the registration assignment.
    scope String
    The scope of the resource.
    properties RegistrationAssignmentProperties
    The properties of a registration assignment.
    registrationAssignmentId String
    The GUID of the registration assignment.
    scope string
    The scope of the resource.
    properties RegistrationAssignmentProperties
    The properties of a registration assignment.
    registrationAssignmentId string
    The GUID of the registration assignment.
    scope str
    The scope of the resource.
    properties RegistrationAssignmentPropertiesArgs
    The properties of a registration assignment.
    registration_assignment_id str
    The GUID of the registration assignment.
    scope String
    The scope of the resource.
    properties Property Map
    The properties of a registration assignment.
    registrationAssignmentId String
    The GUID of the registration assignment.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the registration assignment.
    SystemData Pulumi.AzureNative.ManagedServices.Outputs.SystemDataResponse
    The metadata for the registration assignment resource.
    Type string
    The type of the Azure resource (Microsoft.ManagedServices/registrationAssignments).
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the registration assignment.
    SystemData SystemDataResponse
    The metadata for the registration assignment resource.
    Type string
    The type of the Azure resource (Microsoft.ManagedServices/registrationAssignments).
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the registration assignment.
    systemData SystemDataResponse
    The metadata for the registration assignment resource.
    type String
    The type of the Azure resource (Microsoft.ManagedServices/registrationAssignments).
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the registration assignment.
    systemData SystemDataResponse
    The metadata for the registration assignment resource.
    type string
    The type of the Azure resource (Microsoft.ManagedServices/registrationAssignments).
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the registration assignment.
    system_data SystemDataResponse
    The metadata for the registration assignment resource.
    type str
    The type of the Azure resource (Microsoft.ManagedServices/registrationAssignments).
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the registration assignment.
    systemData Property Map
    The metadata for the registration assignment resource.
    type String
    The type of the Azure resource (Microsoft.ManagedServices/registrationAssignments).

    Supporting Types

    AuthorizationResponse, AuthorizationResponseArgs

    PrincipalId string
    The identifier of the Azure Active Directory principal.
    RoleDefinitionId string
    The identifier of the Azure built-in role that defines the permissions that the Azure Active Directory principal will have on the projected scope.
    DelegatedRoleDefinitionIds List<string>
    The delegatedRoleDefinitionIds field is required when the roleDefinitionId refers to the User Access Administrator Role. It is the list of role definition ids which define all the permissions that the user in the authorization can assign to other principals.
    PrincipalIdDisplayName string
    The display name of the Azure Active Directory principal.
    PrincipalId string
    The identifier of the Azure Active Directory principal.
    RoleDefinitionId string
    The identifier of the Azure built-in role that defines the permissions that the Azure Active Directory principal will have on the projected scope.
    DelegatedRoleDefinitionIds []string
    The delegatedRoleDefinitionIds field is required when the roleDefinitionId refers to the User Access Administrator Role. It is the list of role definition ids which define all the permissions that the user in the authorization can assign to other principals.
    PrincipalIdDisplayName string
    The display name of the Azure Active Directory principal.
    principalId String
    The identifier of the Azure Active Directory principal.
    roleDefinitionId String
    The identifier of the Azure built-in role that defines the permissions that the Azure Active Directory principal will have on the projected scope.
    delegatedRoleDefinitionIds List<String>
    The delegatedRoleDefinitionIds field is required when the roleDefinitionId refers to the User Access Administrator Role. It is the list of role definition ids which define all the permissions that the user in the authorization can assign to other principals.
    principalIdDisplayName String
    The display name of the Azure Active Directory principal.
    principalId string
    The identifier of the Azure Active Directory principal.
    roleDefinitionId string
    The identifier of the Azure built-in role that defines the permissions that the Azure Active Directory principal will have on the projected scope.
    delegatedRoleDefinitionIds string[]
    The delegatedRoleDefinitionIds field is required when the roleDefinitionId refers to the User Access Administrator Role. It is the list of role definition ids which define all the permissions that the user in the authorization can assign to other principals.
    principalIdDisplayName string
    The display name of the Azure Active Directory principal.
    principal_id str
    The identifier of the Azure Active Directory principal.
    role_definition_id str
    The identifier of the Azure built-in role that defines the permissions that the Azure Active Directory principal will have on the projected scope.
    delegated_role_definition_ids Sequence[str]
    The delegatedRoleDefinitionIds field is required when the roleDefinitionId refers to the User Access Administrator Role. It is the list of role definition ids which define all the permissions that the user in the authorization can assign to other principals.
    principal_id_display_name str
    The display name of the Azure Active Directory principal.
    principalId String
    The identifier of the Azure Active Directory principal.
    roleDefinitionId String
    The identifier of the Azure built-in role that defines the permissions that the Azure Active Directory principal will have on the projected scope.
    delegatedRoleDefinitionIds List<String>
    The delegatedRoleDefinitionIds field is required when the roleDefinitionId refers to the User Access Administrator Role. It is the list of role definition ids which define all the permissions that the user in the authorization can assign to other principals.
    principalIdDisplayName String
    The display name of the Azure Active Directory principal.

    EligibleApproverResponse, EligibleApproverResponseArgs

    PrincipalId string
    The identifier of the Azure Active Directory principal.
    PrincipalIdDisplayName string
    The display name of the Azure Active Directory principal.
    PrincipalId string
    The identifier of the Azure Active Directory principal.
    PrincipalIdDisplayName string
    The display name of the Azure Active Directory principal.
    principalId String
    The identifier of the Azure Active Directory principal.
    principalIdDisplayName String
    The display name of the Azure Active Directory principal.
    principalId string
    The identifier of the Azure Active Directory principal.
    principalIdDisplayName string
    The display name of the Azure Active Directory principal.
    principal_id str
    The identifier of the Azure Active Directory principal.
    principal_id_display_name str
    The display name of the Azure Active Directory principal.
    principalId String
    The identifier of the Azure Active Directory principal.
    principalIdDisplayName String
    The display name of the Azure Active Directory principal.

    EligibleAuthorizationResponse, EligibleAuthorizationResponseArgs

    PrincipalId string
    The identifier of the Azure Active Directory principal.
    RoleDefinitionId string
    The identifier of the Azure built-in role that defines the permissions that the Azure Active Directory principal will have on the projected scope.
    JustInTimeAccessPolicy Pulumi.AzureNative.ManagedServices.Inputs.JustInTimeAccessPolicyResponse
    The just-in-time access policy setting.
    PrincipalIdDisplayName string
    The display name of the Azure Active Directory principal.
    PrincipalId string
    The identifier of the Azure Active Directory principal.
    RoleDefinitionId string
    The identifier of the Azure built-in role that defines the permissions that the Azure Active Directory principal will have on the projected scope.
    JustInTimeAccessPolicy JustInTimeAccessPolicyResponse
    The just-in-time access policy setting.
    PrincipalIdDisplayName string
    The display name of the Azure Active Directory principal.
    principalId String
    The identifier of the Azure Active Directory principal.
    roleDefinitionId String
    The identifier of the Azure built-in role that defines the permissions that the Azure Active Directory principal will have on the projected scope.
    justInTimeAccessPolicy JustInTimeAccessPolicyResponse
    The just-in-time access policy setting.
    principalIdDisplayName String
    The display name of the Azure Active Directory principal.
    principalId string
    The identifier of the Azure Active Directory principal.
    roleDefinitionId string
    The identifier of the Azure built-in role that defines the permissions that the Azure Active Directory principal will have on the projected scope.
    justInTimeAccessPolicy JustInTimeAccessPolicyResponse
    The just-in-time access policy setting.
    principalIdDisplayName string
    The display name of the Azure Active Directory principal.
    principal_id str
    The identifier of the Azure Active Directory principal.
    role_definition_id str
    The identifier of the Azure built-in role that defines the permissions that the Azure Active Directory principal will have on the projected scope.
    just_in_time_access_policy JustInTimeAccessPolicyResponse
    The just-in-time access policy setting.
    principal_id_display_name str
    The display name of the Azure Active Directory principal.
    principalId String
    The identifier of the Azure Active Directory principal.
    roleDefinitionId String
    The identifier of the Azure built-in role that defines the permissions that the Azure Active Directory principal will have on the projected scope.
    justInTimeAccessPolicy Property Map
    The just-in-time access policy setting.
    principalIdDisplayName String
    The display name of the Azure Active Directory principal.

    JustInTimeAccessPolicyResponse, JustInTimeAccessPolicyResponseArgs

    MultiFactorAuthProvider string
    The multi-factor authorization provider to be used for just-in-time access requests.
    ManagedByTenantApprovers List<Pulumi.AzureNative.ManagedServices.Inputs.EligibleApproverResponse>
    The list of managedByTenant approvers for the eligible authorization.
    MaximumActivationDuration string
    The maximum access duration in ISO 8601 format for just-in-time access requests.
    MultiFactorAuthProvider string
    The multi-factor authorization provider to be used for just-in-time access requests.
    ManagedByTenantApprovers []EligibleApproverResponse
    The list of managedByTenant approvers for the eligible authorization.
    MaximumActivationDuration string
    The maximum access duration in ISO 8601 format for just-in-time access requests.
    multiFactorAuthProvider String
    The multi-factor authorization provider to be used for just-in-time access requests.
    managedByTenantApprovers List<EligibleApproverResponse>
    The list of managedByTenant approvers for the eligible authorization.
    maximumActivationDuration String
    The maximum access duration in ISO 8601 format for just-in-time access requests.
    multiFactorAuthProvider string
    The multi-factor authorization provider to be used for just-in-time access requests.
    managedByTenantApprovers EligibleApproverResponse[]
    The list of managedByTenant approvers for the eligible authorization.
    maximumActivationDuration string
    The maximum access duration in ISO 8601 format for just-in-time access requests.
    multi_factor_auth_provider str
    The multi-factor authorization provider to be used for just-in-time access requests.
    managed_by_tenant_approvers Sequence[EligibleApproverResponse]
    The list of managedByTenant approvers for the eligible authorization.
    maximum_activation_duration str
    The maximum access duration in ISO 8601 format for just-in-time access requests.
    multiFactorAuthProvider String
    The multi-factor authorization provider to be used for just-in-time access requests.
    managedByTenantApprovers List<Property Map>
    The list of managedByTenant approvers for the eligible authorization.
    maximumActivationDuration String
    The maximum access duration in ISO 8601 format for just-in-time access requests.

    PlanResponse, PlanResponseArgs

    Name string
    Azure Marketplace plan name.
    Product string
    Azure Marketplace product code.
    Publisher string
    Azure Marketplace publisher ID.
    Version string
    Azure Marketplace plan's version.
    Name string
    Azure Marketplace plan name.
    Product string
    Azure Marketplace product code.
    Publisher string
    Azure Marketplace publisher ID.
    Version string
    Azure Marketplace plan's version.
    name String
    Azure Marketplace plan name.
    product String
    Azure Marketplace product code.
    publisher String
    Azure Marketplace publisher ID.
    version String
    Azure Marketplace plan's version.
    name string
    Azure Marketplace plan name.
    product string
    Azure Marketplace product code.
    publisher string
    Azure Marketplace publisher ID.
    version string
    Azure Marketplace plan's version.
    name str
    Azure Marketplace plan name.
    product str
    Azure Marketplace product code.
    publisher str
    Azure Marketplace publisher ID.
    version str
    Azure Marketplace plan's version.
    name String
    Azure Marketplace plan name.
    product String
    Azure Marketplace product code.
    publisher String
    Azure Marketplace publisher ID.
    version String
    Azure Marketplace plan's version.

    RegistrationAssignmentProperties, RegistrationAssignmentPropertiesArgs

    RegistrationDefinitionId string
    The fully qualified path of the registration definition.
    RegistrationDefinitionId string
    The fully qualified path of the registration definition.
    registrationDefinitionId String
    The fully qualified path of the registration definition.
    registrationDefinitionId string
    The fully qualified path of the registration definition.
    registration_definition_id str
    The fully qualified path of the registration definition.
    registrationDefinitionId String
    The fully qualified path of the registration definition.

    RegistrationAssignmentPropertiesResponse, RegistrationAssignmentPropertiesResponseArgs

    ProvisioningState string
    The current provisioning state of the registration assignment.
    RegistrationDefinition Pulumi.AzureNative.ManagedServices.Inputs.RegistrationAssignmentPropertiesResponseRegistrationDefinition
    The registration definition associated with the registration assignment.
    RegistrationDefinitionId string
    The fully qualified path of the registration definition.
    ProvisioningState string
    The current provisioning state of the registration assignment.
    RegistrationDefinition RegistrationAssignmentPropertiesResponseRegistrationDefinition
    The registration definition associated with the registration assignment.
    RegistrationDefinitionId string
    The fully qualified path of the registration definition.
    provisioningState String
    The current provisioning state of the registration assignment.
    registrationDefinition RegistrationAssignmentPropertiesResponseRegistrationDefinition
    The registration definition associated with the registration assignment.
    registrationDefinitionId String
    The fully qualified path of the registration definition.
    provisioningState string
    The current provisioning state of the registration assignment.
    registrationDefinition RegistrationAssignmentPropertiesResponseRegistrationDefinition
    The registration definition associated with the registration assignment.
    registrationDefinitionId string
    The fully qualified path of the registration definition.
    provisioning_state str
    The current provisioning state of the registration assignment.
    registration_definition RegistrationAssignmentPropertiesResponseRegistrationDefinition
    The registration definition associated with the registration assignment.
    registration_definition_id str
    The fully qualified path of the registration definition.
    provisioningState String
    The current provisioning state of the registration assignment.
    registrationDefinition Property Map
    The registration definition associated with the registration assignment.
    registrationDefinitionId String
    The fully qualified path of the registration definition.

    RegistrationAssignmentPropertiesResponseProperties, RegistrationAssignmentPropertiesResponsePropertiesArgs

    Authorizations List<Pulumi.AzureNative.ManagedServices.Inputs.AuthorizationResponse>
    The collection of authorization objects describing the access Azure Active Directory principals in the managedBy tenant will receive on the delegated resource in the managed tenant.
    Description string
    The description of the registration definition.
    EligibleAuthorizations List<Pulumi.AzureNative.ManagedServices.Inputs.EligibleAuthorizationResponse>
    The collection of eligible authorization objects describing the just-in-time access Azure Active Directory principals in the managedBy tenant will receive on the delegated resource in the managed tenant.
    ManagedByTenantId string
    The identifier of the managedBy tenant.
    ManagedByTenantName string
    The name of the managedBy tenant.
    ManageeTenantId string
    The identifier of the managed tenant.
    ManageeTenantName string
    The name of the managed tenant.
    ProvisioningState string
    The current provisioning state of the registration definition.
    RegistrationDefinitionName string
    The name of the registration definition.
    Authorizations []AuthorizationResponse
    The collection of authorization objects describing the access Azure Active Directory principals in the managedBy tenant will receive on the delegated resource in the managed tenant.
    Description string
    The description of the registration definition.
    EligibleAuthorizations []EligibleAuthorizationResponse
    The collection of eligible authorization objects describing the just-in-time access Azure Active Directory principals in the managedBy tenant will receive on the delegated resource in the managed tenant.
    ManagedByTenantId string
    The identifier of the managedBy tenant.
    ManagedByTenantName string
    The name of the managedBy tenant.
    ManageeTenantId string
    The identifier of the managed tenant.
    ManageeTenantName string
    The name of the managed tenant.
    ProvisioningState string
    The current provisioning state of the registration definition.
    RegistrationDefinitionName string
    The name of the registration definition.
    authorizations List<AuthorizationResponse>
    The collection of authorization objects describing the access Azure Active Directory principals in the managedBy tenant will receive on the delegated resource in the managed tenant.
    description String
    The description of the registration definition.
    eligibleAuthorizations List<EligibleAuthorizationResponse>
    The collection of eligible authorization objects describing the just-in-time access Azure Active Directory principals in the managedBy tenant will receive on the delegated resource in the managed tenant.
    managedByTenantId String
    The identifier of the managedBy tenant.
    managedByTenantName String
    The name of the managedBy tenant.
    manageeTenantId String
    The identifier of the managed tenant.
    manageeTenantName String
    The name of the managed tenant.
    provisioningState String
    The current provisioning state of the registration definition.
    registrationDefinitionName String
    The name of the registration definition.
    authorizations AuthorizationResponse[]
    The collection of authorization objects describing the access Azure Active Directory principals in the managedBy tenant will receive on the delegated resource in the managed tenant.
    description string
    The description of the registration definition.
    eligibleAuthorizations EligibleAuthorizationResponse[]
    The collection of eligible authorization objects describing the just-in-time access Azure Active Directory principals in the managedBy tenant will receive on the delegated resource in the managed tenant.
    managedByTenantId string
    The identifier of the managedBy tenant.
    managedByTenantName string
    The name of the managedBy tenant.
    manageeTenantId string
    The identifier of the managed tenant.
    manageeTenantName string
    The name of the managed tenant.
    provisioningState string
    The current provisioning state of the registration definition.
    registrationDefinitionName string
    The name of the registration definition.
    authorizations Sequence[AuthorizationResponse]
    The collection of authorization objects describing the access Azure Active Directory principals in the managedBy tenant will receive on the delegated resource in the managed tenant.
    description str
    The description of the registration definition.
    eligible_authorizations Sequence[EligibleAuthorizationResponse]
    The collection of eligible authorization objects describing the just-in-time access Azure Active Directory principals in the managedBy tenant will receive on the delegated resource in the managed tenant.
    managed_by_tenant_id str
    The identifier of the managedBy tenant.
    managed_by_tenant_name str
    The name of the managedBy tenant.
    managee_tenant_id str
    The identifier of the managed tenant.
    managee_tenant_name str
    The name of the managed tenant.
    provisioning_state str
    The current provisioning state of the registration definition.
    registration_definition_name str
    The name of the registration definition.
    authorizations List<Property Map>
    The collection of authorization objects describing the access Azure Active Directory principals in the managedBy tenant will receive on the delegated resource in the managed tenant.
    description String
    The description of the registration definition.
    eligibleAuthorizations List<Property Map>
    The collection of eligible authorization objects describing the just-in-time access Azure Active Directory principals in the managedBy tenant will receive on the delegated resource in the managed tenant.
    managedByTenantId String
    The identifier of the managedBy tenant.
    managedByTenantName String
    The name of the managedBy tenant.
    manageeTenantId String
    The identifier of the managed tenant.
    manageeTenantName String
    The name of the managed tenant.
    provisioningState String
    The current provisioning state of the registration definition.
    registrationDefinitionName String
    The name of the registration definition.

    RegistrationAssignmentPropertiesResponseRegistrationDefinition, RegistrationAssignmentPropertiesResponseRegistrationDefinitionArgs

    Id string
    The fully qualified path of the registration definition.
    Name string
    The name of the registration definition.
    SystemData Pulumi.AzureNative.ManagedServices.Inputs.SystemDataResponse
    The metadata for the registration definition resource.
    Type string
    The type of the Azure resource (Microsoft.ManagedServices/registrationDefinitions).
    Plan Pulumi.AzureNative.ManagedServices.Inputs.PlanResponse
    The details for the Managed Services offer’s plan in Azure Marketplace.
    Properties Pulumi.AzureNative.ManagedServices.Inputs.RegistrationAssignmentPropertiesResponseProperties
    The properties of the registration definition associated with the registration assignment.
    Id string
    The fully qualified path of the registration definition.
    Name string
    The name of the registration definition.
    SystemData SystemDataResponse
    The metadata for the registration definition resource.
    Type string
    The type of the Azure resource (Microsoft.ManagedServices/registrationDefinitions).
    Plan PlanResponse
    The details for the Managed Services offer’s plan in Azure Marketplace.
    Properties RegistrationAssignmentPropertiesResponseProperties
    The properties of the registration definition associated with the registration assignment.
    id String
    The fully qualified path of the registration definition.
    name String
    The name of the registration definition.
    systemData SystemDataResponse
    The metadata for the registration definition resource.
    type String
    The type of the Azure resource (Microsoft.ManagedServices/registrationDefinitions).
    plan PlanResponse
    The details for the Managed Services offer’s plan in Azure Marketplace.
    properties RegistrationAssignmentPropertiesResponseProperties
    The properties of the registration definition associated with the registration assignment.
    id string
    The fully qualified path of the registration definition.
    name string
    The name of the registration definition.
    systemData SystemDataResponse
    The metadata for the registration definition resource.
    type string
    The type of the Azure resource (Microsoft.ManagedServices/registrationDefinitions).
    plan PlanResponse
    The details for the Managed Services offer’s plan in Azure Marketplace.
    properties RegistrationAssignmentPropertiesResponseProperties
    The properties of the registration definition associated with the registration assignment.
    id str
    The fully qualified path of the registration definition.
    name str
    The name of the registration definition.
    system_data SystemDataResponse
    The metadata for the registration definition resource.
    type str
    The type of the Azure resource (Microsoft.ManagedServices/registrationDefinitions).
    plan PlanResponse
    The details for the Managed Services offer’s plan in Azure Marketplace.
    properties RegistrationAssignmentPropertiesResponseProperties
    The properties of the registration definition associated with the registration assignment.
    id String
    The fully qualified path of the registration definition.
    name String
    The name of the registration definition.
    systemData Property Map
    The metadata for the registration definition resource.
    type String
    The type of the Azure resource (Microsoft.ManagedServices/registrationDefinitions).
    plan Property Map
    The details for the Managed Services offer’s plan in Azure Marketplace.
    properties Property Map
    The properties of the registration definition associated with the registration assignment.

    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:managedservices:RegistrationAssignment 484a7d5f-9729-4b87-bc9b-26610985a013 /{scope}/providers/Microsoft.ManagedServices/registrationAssignments/{registrationAssignmentId} 
    

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.34.0 published on Thursday, Mar 28, 2024 by Pulumi