1. Packages
  2. Azure Native
  3. API Docs
  4. managedservices
  5. RegistrationAssignment
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.2.0 published on Monday, Apr 14, 2025 by Pulumi

azure-native.managedservices.RegistrationAssignment

Explore with Pulumi AI

This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.2.0 published on Monday, Apr 14, 2025 by Pulumi

The registration assignment.

Uses Azure REST API version 2022-10-01. In version 2.x of the Azure Native provider, it used API version 2022-10-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",
    });

});
Copy
package main

import (
	managedservices "github.com/pulumi/pulumi-azure-native-sdk/managedservices/v3"
	"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
	})
}
Copy
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());

    }
}
Copy
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",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

registration_assignment = azure_native.managedservices.RegistrationAssignment("registrationAssignment",
    properties={
        "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")
Copy
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
Copy

Create RegistrationAssignment Resource

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

Constructor syntax

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

@overload
def RegistrationAssignment(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           scope: Optional[str] = None,
                           properties: Optional[RegistrationAssignmentPropertiesArgs] = None,
                           registration_assignment_id: Optional[str] = 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.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. RegistrationAssignmentArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. RegistrationAssignmentArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. RegistrationAssignmentArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. RegistrationAssignmentArgs
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 registrationAssignmentResource = new AzureNative.ManagedServices.RegistrationAssignment("registrationAssignmentResource", new()
{
    Scope = "string",
    Properties = new AzureNative.ManagedServices.Inputs.RegistrationAssignmentPropertiesArgs
    {
        RegistrationDefinitionId = "string",
    },
    RegistrationAssignmentId = "string",
});
Copy
example, err := managedservices.NewRegistrationAssignment(ctx, "registrationAssignmentResource", &managedservices.RegistrationAssignmentArgs{
	Scope: pulumi.String("string"),
	Properties: &managedservices.RegistrationAssignmentPropertiesArgs{
		RegistrationDefinitionId: pulumi.String("string"),
	},
	RegistrationAssignmentId: pulumi.String("string"),
})
Copy
var registrationAssignmentResource = new RegistrationAssignment("registrationAssignmentResource", RegistrationAssignmentArgs.builder()
    .scope("string")
    .properties(RegistrationAssignmentPropertiesArgs.builder()
        .registrationDefinitionId("string")
        .build())
    .registrationAssignmentId("string")
    .build());
Copy
registration_assignment_resource = azure_native.managedservices.RegistrationAssignment("registrationAssignmentResource",
    scope="string",
    properties={
        "registration_definition_id": "string",
    },
    registration_assignment_id="string")
Copy
const registrationAssignmentResource = new azure_native.managedservices.RegistrationAssignment("registrationAssignmentResource", {
    scope: "string",
    properties: {
        registrationDefinitionId: "string",
    },
    registrationAssignmentId: "string",
});
Copy
type: azure-native:managedservices:RegistrationAssignment
properties:
    properties:
        registrationDefinitionId: string
    registrationAssignmentId: string
    scope: string
Copy

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

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The RegistrationAssignment resource accepts the following input properties:

Scope
This property is required.
Changes to this property will trigger replacement.
string
The scope of the resource.
Properties Pulumi.AzureNative.ManagedServices.Inputs.RegistrationAssignmentProperties
The properties of a registration assignment.
RegistrationAssignmentId Changes to this property will trigger replacement. string
The GUID of the registration assignment.
Scope
This property is required.
Changes to this property will trigger replacement.
string
The scope of the resource.
Properties RegistrationAssignmentPropertiesArgs
The properties of a registration assignment.
RegistrationAssignmentId Changes to this property will trigger replacement. string
The GUID of the registration assignment.
scope
This property is required.
Changes to this property will trigger replacement.
String
The scope of the resource.
properties RegistrationAssignmentProperties
The properties of a registration assignment.
registrationAssignmentId Changes to this property will trigger replacement. String
The GUID of the registration assignment.
scope
This property is required.
Changes to this property will trigger replacement.
string
The scope of the resource.
properties RegistrationAssignmentProperties
The properties of a registration assignment.
registrationAssignmentId Changes to this property will trigger replacement. string
The GUID of the registration assignment.
scope
This property is required.
Changes to this property will trigger replacement.
str
The scope of the resource.
properties RegistrationAssignmentPropertiesArgs
The properties of a registration assignment.
registration_assignment_id Changes to this property will trigger replacement. str
The GUID of the registration assignment.
scope
This property is required.
Changes to this property will trigger replacement.
String
The scope of the resource.
properties Property Map
The properties of a registration assignment.
registrationAssignmentId Changes to this property will trigger replacement. 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:

AzureApiVersion string
The Azure API version of the resource.
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).
AzureApiVersion string
The Azure API version of the resource.
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).
azureApiVersion String
The Azure API version of the resource.
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).
azureApiVersion string
The Azure API version of the resource.
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).
azure_api_version str
The Azure API version of the resource.
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).
azureApiVersion String
The Azure API version of the resource.
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 This property is required. string
The identifier of the Azure Active Directory principal.
RoleDefinitionId This property is required. 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 This property is required. string
The identifier of the Azure Active Directory principal.
RoleDefinitionId This property is required. 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 This property is required. String
The identifier of the Azure Active Directory principal.
roleDefinitionId This property is required. 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 This property is required. string
The identifier of the Azure Active Directory principal.
roleDefinitionId This property is required. 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 This property is required. str
The identifier of the Azure Active Directory principal.
role_definition_id This property is required. 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 This property is required. String
The identifier of the Azure Active Directory principal.
roleDefinitionId This property is required. 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 This property is required. string
The identifier of the Azure Active Directory principal.
PrincipalIdDisplayName string
The display name of the Azure Active Directory principal.
PrincipalId This property is required. string
The identifier of the Azure Active Directory principal.
PrincipalIdDisplayName string
The display name of the Azure Active Directory principal.
principalId This property is required. String
The identifier of the Azure Active Directory principal.
principalIdDisplayName String
The display name of the Azure Active Directory principal.
principalId This property is required. string
The identifier of the Azure Active Directory principal.
principalIdDisplayName string
The display name of the Azure Active Directory principal.
principal_id This property is required. str
The identifier of the Azure Active Directory principal.
principal_id_display_name str
The display name of the Azure Active Directory principal.
principalId This property is required. String
The identifier of the Azure Active Directory principal.
principalIdDisplayName String
The display name of the Azure Active Directory principal.

EligibleAuthorizationResponse
, EligibleAuthorizationResponseArgs

PrincipalId This property is required. string
The identifier of the Azure Active Directory principal.
RoleDefinitionId This property is required. 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 This property is required. string
The identifier of the Azure Active Directory principal.
RoleDefinitionId This property is required. 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 This property is required. String
The identifier of the Azure Active Directory principal.
roleDefinitionId This property is required. 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 This property is required. string
The identifier of the Azure Active Directory principal.
roleDefinitionId This property is required. 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 This property is required. str
The identifier of the Azure Active Directory principal.
role_definition_id This property is required. 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 This property is required. String
The identifier of the Azure Active Directory principal.
roleDefinitionId This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. string
Azure Marketplace plan name.
Product This property is required. string
Azure Marketplace product code.
Publisher This property is required. string
Azure Marketplace publisher ID.
Version This property is required. string
Azure Marketplace plan's version.
Name This property is required. string
Azure Marketplace plan name.
Product This property is required. string
Azure Marketplace product code.
Publisher This property is required. string
Azure Marketplace publisher ID.
Version This property is required. string
Azure Marketplace plan's version.
name This property is required. String
Azure Marketplace plan name.
product This property is required. String
Azure Marketplace product code.
publisher This property is required. String
Azure Marketplace publisher ID.
version This property is required. String
Azure Marketplace plan's version.
name This property is required. string
Azure Marketplace plan name.
product This property is required. string
Azure Marketplace product code.
publisher This property is required. string
Azure Marketplace publisher ID.
version This property is required. string
Azure Marketplace plan's version.
name This property is required. str
Azure Marketplace plan name.
product This property is required. str
Azure Marketplace product code.
publisher This property is required. str
Azure Marketplace publisher ID.
version This property is required. str
Azure Marketplace plan's version.
name This property is required. String
Azure Marketplace plan name.
product This property is required. String
Azure Marketplace product code.
publisher This property is required. String
Azure Marketplace publisher ID.
version This property is required. String
Azure Marketplace plan's version.

RegistrationAssignmentProperties
, RegistrationAssignmentPropertiesArgs

RegistrationDefinitionId This property is required. string
The fully qualified path of the registration definition.
RegistrationDefinitionId This property is required. string
The fully qualified path of the registration definition.
registrationDefinitionId This property is required. String
The fully qualified path of the registration definition.
registrationDefinitionId This property is required. string
The fully qualified path of the registration definition.
registration_definition_id This property is required. str
The fully qualified path of the registration definition.
registrationDefinitionId This property is required. String
The fully qualified path of the registration definition.

RegistrationAssignmentPropertiesResponse
, RegistrationAssignmentPropertiesResponseArgs

ProvisioningState This property is required. string
The current provisioning state of the registration assignment.
RegistrationDefinition This property is required. Pulumi.AzureNative.ManagedServices.Inputs.RegistrationAssignmentPropertiesResponseRegistrationDefinition
The registration definition associated with the registration assignment.
RegistrationDefinitionId This property is required. string
The fully qualified path of the registration definition.
ProvisioningState This property is required. string
The current provisioning state of the registration assignment.
RegistrationDefinition This property is required. RegistrationAssignmentPropertiesResponseRegistrationDefinition
The registration definition associated with the registration assignment.
RegistrationDefinitionId This property is required. string
The fully qualified path of the registration definition.
provisioningState This property is required. String
The current provisioning state of the registration assignment.
registrationDefinition This property is required. RegistrationAssignmentPropertiesResponseRegistrationDefinition
The registration definition associated with the registration assignment.
registrationDefinitionId This property is required. String
The fully qualified path of the registration definition.
provisioningState This property is required. string
The current provisioning state of the registration assignment.
registrationDefinition This property is required. RegistrationAssignmentPropertiesResponseRegistrationDefinition
The registration definition associated with the registration assignment.
registrationDefinitionId This property is required. string
The fully qualified path of the registration definition.
provisioning_state This property is required. str
The current provisioning state of the registration assignment.
registration_definition This property is required. RegistrationAssignmentPropertiesResponseRegistrationDefinition
The registration definition associated with the registration assignment.
registration_definition_id This property is required. str
The fully qualified path of the registration definition.
provisioningState This property is required. String
The current provisioning state of the registration assignment.
registrationDefinition This property is required. Property Map
The registration definition associated with the registration assignment.
registrationDefinitionId This property is required. 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 This property is required. string
The fully qualified path of the registration definition.
Name This property is required. string
The name of the registration definition.
SystemData This property is required. Pulumi.AzureNative.ManagedServices.Inputs.SystemDataResponse
The metadata for the registration definition resource.
Type This property is required. 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 This property is required. string
The fully qualified path of the registration definition.
Name This property is required. string
The name of the registration definition.
SystemData This property is required. SystemDataResponse
The metadata for the registration definition resource.
Type This property is required. 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 This property is required. String
The fully qualified path of the registration definition.
name This property is required. String
The name of the registration definition.
systemData This property is required. SystemDataResponse
The metadata for the registration definition resource.
type This property is required. 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 This property is required. string
The fully qualified path of the registration definition.
name This property is required. string
The name of the registration definition.
systemData This property is required. SystemDataResponse
The metadata for the registration definition resource.
type This property is required. 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 This property is required. str
The fully qualified path of the registration definition.
name This property is required. str
The name of the registration definition.
system_data This property is required. SystemDataResponse
The metadata for the registration definition resource.
type This property is required. 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 This property is required. String
The fully qualified path of the registration definition.
name This property is required. String
The name of the registration definition.
systemData This property is required. Property Map
The metadata for the registration definition resource.
type This property is required. 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} 
Copy

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

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.2.0 published on Monday, Apr 14, 2025 by Pulumi