1. Packages
  2. Azure Native
  3. API Docs
  4. managedservices
  5. RegistrationDefinition
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.1.0 published on Tuesday, Apr 8, 2025 by Pulumi

azure-native.managedservices.RegistrationDefinition

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.1.0 published on Tuesday, Apr 8, 2025 by Pulumi

The registration definition.

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 Definition

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

return await Deployment.RunAsync(() => 
{
    var registrationDefinition = new AzureNative.ManagedServices.RegistrationDefinition("registrationDefinition", new()
    {
        Plan = new AzureNative.ManagedServices.Inputs.PlanArgs
        {
            Name = "addesai-plan",
            Product = "test",
            Publisher = "marketplace-test",
            Version = "1.0.0",
        },
        Properties = new AzureNative.ManagedServices.Inputs.RegistrationDefinitionPropertiesArgs
        {
            Authorizations = new[]
            {
                new AzureNative.ManagedServices.Inputs.AuthorizationArgs
                {
                    PrincipalId = "f98d86a2-4cc4-4e9d-ad47-b3e80a1bcdfc",
                    PrincipalIdDisplayName = "Support User",
                    RoleDefinitionId = "acdd72a7-3385-48ef-bd42-f606fba81ae7",
                },
                new AzureNative.ManagedServices.Inputs.AuthorizationArgs
                {
                    DelegatedRoleDefinitionIds = new[]
                    {
                        "b24988ac-6180-42a0-ab88-20f7382dd24c",
                    },
                    PrincipalId = "f98d86a2-4cc4-4e9d-ad47-b3e80a1bcdfc",
                    PrincipalIdDisplayName = "User Access Administrator",
                    RoleDefinitionId = "18d7d88d-d35e-4fb5-a5c3-7773c20a72d9",
                },
            },
            Description = "Tes1t",
            EligibleAuthorizations = new[]
            {
                new AzureNative.ManagedServices.Inputs.EligibleAuthorizationArgs
                {
                    JustInTimeAccessPolicy = new AzureNative.ManagedServices.Inputs.JustInTimeAccessPolicyArgs
                    {
                        ManagedByTenantApprovers = new[]
                        {
                            new AzureNative.ManagedServices.Inputs.EligibleApproverArgs
                            {
                                PrincipalId = "d9b22cd6-6407-43cc-8c60-07c56df0b51a",
                                PrincipalIdDisplayName = "Approver Group",
                            },
                        },
                        MaximumActivationDuration = "PT8H",
                        MultiFactorAuthProvider = AzureNative.ManagedServices.MultiFactorAuthProvider.Azure,
                    },
                    PrincipalId = "3e0ed8c6-e902-4fc5-863c-e3ddbb2ae2a2",
                    PrincipalIdDisplayName = "Support User",
                    RoleDefinitionId = "ae349356-3a1b-4a5e-921d-050484c6347e",
                },
            },
            ManagedByTenantId = "83abe5cd-bcc3-441a-bd86-e6a75360cecc",
            RegistrationDefinitionName = "DefinitionName",
        },
        RegistrationDefinitionId = "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.NewRegistrationDefinition(ctx, "registrationDefinition", &managedservices.RegistrationDefinitionArgs{
			Plan: &managedservices.PlanArgs{
				Name:      pulumi.String("addesai-plan"),
				Product:   pulumi.String("test"),
				Publisher: pulumi.String("marketplace-test"),
				Version:   pulumi.String("1.0.0"),
			},
			Properties: &managedservices.RegistrationDefinitionPropertiesArgs{
				Authorizations: managedservices.AuthorizationArray{
					&managedservices.AuthorizationArgs{
						PrincipalId:            pulumi.String("f98d86a2-4cc4-4e9d-ad47-b3e80a1bcdfc"),
						PrincipalIdDisplayName: pulumi.String("Support User"),
						RoleDefinitionId:       pulumi.String("acdd72a7-3385-48ef-bd42-f606fba81ae7"),
					},
					&managedservices.AuthorizationArgs{
						DelegatedRoleDefinitionIds: pulumi.StringArray{
							pulumi.String("b24988ac-6180-42a0-ab88-20f7382dd24c"),
						},
						PrincipalId:            pulumi.String("f98d86a2-4cc4-4e9d-ad47-b3e80a1bcdfc"),
						PrincipalIdDisplayName: pulumi.String("User Access Administrator"),
						RoleDefinitionId:       pulumi.String("18d7d88d-d35e-4fb5-a5c3-7773c20a72d9"),
					},
				},
				Description: pulumi.String("Tes1t"),
				EligibleAuthorizations: managedservices.EligibleAuthorizationArray{
					&managedservices.EligibleAuthorizationArgs{
						JustInTimeAccessPolicy: &managedservices.JustInTimeAccessPolicyArgs{
							ManagedByTenantApprovers: managedservices.EligibleApproverArray{
								&managedservices.EligibleApproverArgs{
									PrincipalId:            pulumi.String("d9b22cd6-6407-43cc-8c60-07c56df0b51a"),
									PrincipalIdDisplayName: pulumi.String("Approver Group"),
								},
							},
							MaximumActivationDuration: pulumi.String("PT8H"),
							MultiFactorAuthProvider:   pulumi.String(managedservices.MultiFactorAuthProviderAzure),
						},
						PrincipalId:            pulumi.String("3e0ed8c6-e902-4fc5-863c-e3ddbb2ae2a2"),
						PrincipalIdDisplayName: pulumi.String("Support User"),
						RoleDefinitionId:       pulumi.String("ae349356-3a1b-4a5e-921d-050484c6347e"),
					},
				},
				ManagedByTenantId:          pulumi.String("83abe5cd-bcc3-441a-bd86-e6a75360cecc"),
				RegistrationDefinitionName: pulumi.String("DefinitionName"),
			},
			RegistrationDefinitionId: 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.RegistrationDefinition;
import com.pulumi.azurenative.managedservices.RegistrationDefinitionArgs;
import com.pulumi.azurenative.managedservices.inputs.PlanArgs;
import com.pulumi.azurenative.managedservices.inputs.RegistrationDefinitionPropertiesArgs;
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 registrationDefinition = new RegistrationDefinition("registrationDefinition", RegistrationDefinitionArgs.builder()
            .plan(PlanArgs.builder()
                .name("addesai-plan")
                .product("test")
                .publisher("marketplace-test")
                .version("1.0.0")
                .build())
            .properties(RegistrationDefinitionPropertiesArgs.builder()
                .authorizations(                
                    AuthorizationArgs.builder()
                        .principalId("f98d86a2-4cc4-4e9d-ad47-b3e80a1bcdfc")
                        .principalIdDisplayName("Support User")
                        .roleDefinitionId("acdd72a7-3385-48ef-bd42-f606fba81ae7")
                        .build(),
                    AuthorizationArgs.builder()
                        .delegatedRoleDefinitionIds("b24988ac-6180-42a0-ab88-20f7382dd24c")
                        .principalId("f98d86a2-4cc4-4e9d-ad47-b3e80a1bcdfc")
                        .principalIdDisplayName("User Access Administrator")
                        .roleDefinitionId("18d7d88d-d35e-4fb5-a5c3-7773c20a72d9")
                        .build())
                .description("Tes1t")
                .eligibleAuthorizations(EligibleAuthorizationArgs.builder()
                    .justInTimeAccessPolicy(JustInTimeAccessPolicyArgs.builder()
                        .managedByTenantApprovers(EligibleApproverArgs.builder()
                            .principalId("d9b22cd6-6407-43cc-8c60-07c56df0b51a")
                            .principalIdDisplayName("Approver Group")
                            .build())
                        .maximumActivationDuration("PT8H")
                        .multiFactorAuthProvider("Azure")
                        .build())
                    .principalId("3e0ed8c6-e902-4fc5-863c-e3ddbb2ae2a2")
                    .principalIdDisplayName("Support User")
                    .roleDefinitionId("ae349356-3a1b-4a5e-921d-050484c6347e")
                    .build())
                .managedByTenantId("83abe5cd-bcc3-441a-bd86-e6a75360cecc")
                .registrationDefinitionName("DefinitionName")
                .build())
            .registrationDefinitionId("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 registrationDefinition = new azure_native.managedservices.RegistrationDefinition("registrationDefinition", {
    plan: {
        name: "addesai-plan",
        product: "test",
        publisher: "marketplace-test",
        version: "1.0.0",
    },
    properties: {
        authorizations: [
            {
                principalId: "f98d86a2-4cc4-4e9d-ad47-b3e80a1bcdfc",
                principalIdDisplayName: "Support User",
                roleDefinitionId: "acdd72a7-3385-48ef-bd42-f606fba81ae7",
            },
            {
                delegatedRoleDefinitionIds: ["b24988ac-6180-42a0-ab88-20f7382dd24c"],
                principalId: "f98d86a2-4cc4-4e9d-ad47-b3e80a1bcdfc",
                principalIdDisplayName: "User Access Administrator",
                roleDefinitionId: "18d7d88d-d35e-4fb5-a5c3-7773c20a72d9",
            },
        ],
        description: "Tes1t",
        eligibleAuthorizations: [{
            justInTimeAccessPolicy: {
                managedByTenantApprovers: [{
                    principalId: "d9b22cd6-6407-43cc-8c60-07c56df0b51a",
                    principalIdDisplayName: "Approver Group",
                }],
                maximumActivationDuration: "PT8H",
                multiFactorAuthProvider: azure_native.managedservices.MultiFactorAuthProvider.Azure,
            },
            principalId: "3e0ed8c6-e902-4fc5-863c-e3ddbb2ae2a2",
            principalIdDisplayName: "Support User",
            roleDefinitionId: "ae349356-3a1b-4a5e-921d-050484c6347e",
        }],
        managedByTenantId: "83abe5cd-bcc3-441a-bd86-e6a75360cecc",
        registrationDefinitionName: "DefinitionName",
    },
    registrationDefinitionId: "26c128c2-fefa-4340-9bb1-6e081c90ada2",
    scope: "subscription/0afefe50-734e-4610-8a82-a144ahf49dea",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

registration_definition = azure_native.managedservices.RegistrationDefinition("registrationDefinition",
    plan={
        "name": "addesai-plan",
        "product": "test",
        "publisher": "marketplace-test",
        "version": "1.0.0",
    },
    properties={
        "authorizations": [
            {
                "principal_id": "f98d86a2-4cc4-4e9d-ad47-b3e80a1bcdfc",
                "principal_id_display_name": "Support User",
                "role_definition_id": "acdd72a7-3385-48ef-bd42-f606fba81ae7",
            },
            {
                "delegated_role_definition_ids": ["b24988ac-6180-42a0-ab88-20f7382dd24c"],
                "principal_id": "f98d86a2-4cc4-4e9d-ad47-b3e80a1bcdfc",
                "principal_id_display_name": "User Access Administrator",
                "role_definition_id": "18d7d88d-d35e-4fb5-a5c3-7773c20a72d9",
            },
        ],
        "description": "Tes1t",
        "eligible_authorizations": [{
            "just_in_time_access_policy": {
                "managed_by_tenant_approvers": [{
                    "principal_id": "d9b22cd6-6407-43cc-8c60-07c56df0b51a",
                    "principal_id_display_name": "Approver Group",
                }],
                "maximum_activation_duration": "PT8H",
                "multi_factor_auth_provider": azure_native.managedservices.MultiFactorAuthProvider.AZURE,
            },
            "principal_id": "3e0ed8c6-e902-4fc5-863c-e3ddbb2ae2a2",
            "principal_id_display_name": "Support User",
            "role_definition_id": "ae349356-3a1b-4a5e-921d-050484c6347e",
        }],
        "managed_by_tenant_id": "83abe5cd-bcc3-441a-bd86-e6a75360cecc",
        "registration_definition_name": "DefinitionName",
    },
    registration_definition_id="26c128c2-fefa-4340-9bb1-6e081c90ada2",
    scope="subscription/0afefe50-734e-4610-8a82-a144ahf49dea")
Copy
resources:
  registrationDefinition:
    type: azure-native:managedservices:RegistrationDefinition
    properties:
      plan:
        name: addesai-plan
        product: test
        publisher: marketplace-test
        version: 1.0.0
      properties:
        authorizations:
          - principalId: f98d86a2-4cc4-4e9d-ad47-b3e80a1bcdfc
            principalIdDisplayName: Support User
            roleDefinitionId: acdd72a7-3385-48ef-bd42-f606fba81ae7
          - delegatedRoleDefinitionIds:
              - b24988ac-6180-42a0-ab88-20f7382dd24c
            principalId: f98d86a2-4cc4-4e9d-ad47-b3e80a1bcdfc
            principalIdDisplayName: User Access Administrator
            roleDefinitionId: 18d7d88d-d35e-4fb5-a5c3-7773c20a72d9
        description: Tes1t
        eligibleAuthorizations:
          - justInTimeAccessPolicy:
              managedByTenantApprovers:
                - principalId: d9b22cd6-6407-43cc-8c60-07c56df0b51a
                  principalIdDisplayName: Approver Group
              maximumActivationDuration: PT8H
              multiFactorAuthProvider: Azure
            principalId: 3e0ed8c6-e902-4fc5-863c-e3ddbb2ae2a2
            principalIdDisplayName: Support User
            roleDefinitionId: ae349356-3a1b-4a5e-921d-050484c6347e
        managedByTenantId: 83abe5cd-bcc3-441a-bd86-e6a75360cecc
        registrationDefinitionName: DefinitionName
      registrationDefinitionId: 26c128c2-fefa-4340-9bb1-6e081c90ada2
      scope: subscription/0afefe50-734e-4610-8a82-a144ahf49dea
Copy

Create RegistrationDefinition Resource

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

Constructor syntax

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

@overload
def RegistrationDefinition(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           scope: Optional[str] = None,
                           plan: Optional[PlanArgs] = None,
                           properties: Optional[RegistrationDefinitionPropertiesArgs] = None,
                           registration_definition_id: Optional[str] = None)
func NewRegistrationDefinition(ctx *Context, name string, args RegistrationDefinitionArgs, opts ...ResourceOption) (*RegistrationDefinition, error)
public RegistrationDefinition(string name, RegistrationDefinitionArgs args, CustomResourceOptions? opts = null)
public RegistrationDefinition(String name, RegistrationDefinitionArgs args)
public RegistrationDefinition(String name, RegistrationDefinitionArgs args, CustomResourceOptions options)
type: azure-native:managedservices:RegistrationDefinition
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. RegistrationDefinitionArgs
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. RegistrationDefinitionArgs
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. RegistrationDefinitionArgs
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. RegistrationDefinitionArgs
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. RegistrationDefinitionArgs
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 registrationDefinitionResource = new AzureNative.ManagedServices.RegistrationDefinition("registrationDefinitionResource", new()
{
    Scope = "string",
    Plan = new AzureNative.ManagedServices.Inputs.PlanArgs
    {
        Name = "string",
        Product = "string",
        Publisher = "string",
        Version = "string",
    },
    Properties = new AzureNative.ManagedServices.Inputs.RegistrationDefinitionPropertiesArgs
    {
        Authorizations = new[]
        {
            new AzureNative.ManagedServices.Inputs.AuthorizationArgs
            {
                PrincipalId = "string",
                RoleDefinitionId = "string",
                DelegatedRoleDefinitionIds = new[]
                {
                    "string",
                },
                PrincipalIdDisplayName = "string",
            },
        },
        ManagedByTenantId = "string",
        Description = "string",
        EligibleAuthorizations = new[]
        {
            new AzureNative.ManagedServices.Inputs.EligibleAuthorizationArgs
            {
                PrincipalId = "string",
                RoleDefinitionId = "string",
                JustInTimeAccessPolicy = new AzureNative.ManagedServices.Inputs.JustInTimeAccessPolicyArgs
                {
                    MultiFactorAuthProvider = "string",
                    ManagedByTenantApprovers = new[]
                    {
                        new AzureNative.ManagedServices.Inputs.EligibleApproverArgs
                        {
                            PrincipalId = "string",
                            PrincipalIdDisplayName = "string",
                        },
                    },
                    MaximumActivationDuration = "string",
                },
                PrincipalIdDisplayName = "string",
            },
        },
        RegistrationDefinitionName = "string",
    },
    RegistrationDefinitionId = "string",
});
Copy
example, err := managedservices.NewRegistrationDefinition(ctx, "registrationDefinitionResource", &managedservices.RegistrationDefinitionArgs{
	Scope: pulumi.String("string"),
	Plan: &managedservices.PlanArgs{
		Name:      pulumi.String("string"),
		Product:   pulumi.String("string"),
		Publisher: pulumi.String("string"),
		Version:   pulumi.String("string"),
	},
	Properties: &managedservices.RegistrationDefinitionPropertiesArgs{
		Authorizations: managedservices.AuthorizationArray{
			&managedservices.AuthorizationArgs{
				PrincipalId:      pulumi.String("string"),
				RoleDefinitionId: pulumi.String("string"),
				DelegatedRoleDefinitionIds: pulumi.StringArray{
					pulumi.String("string"),
				},
				PrincipalIdDisplayName: pulumi.String("string"),
			},
		},
		ManagedByTenantId: pulumi.String("string"),
		Description:       pulumi.String("string"),
		EligibleAuthorizations: managedservices.EligibleAuthorizationArray{
			&managedservices.EligibleAuthorizationArgs{
				PrincipalId:      pulumi.String("string"),
				RoleDefinitionId: pulumi.String("string"),
				JustInTimeAccessPolicy: &managedservices.JustInTimeAccessPolicyArgs{
					MultiFactorAuthProvider: pulumi.String("string"),
					ManagedByTenantApprovers: managedservices.EligibleApproverArray{
						&managedservices.EligibleApproverArgs{
							PrincipalId:            pulumi.String("string"),
							PrincipalIdDisplayName: pulumi.String("string"),
						},
					},
					MaximumActivationDuration: pulumi.String("string"),
				},
				PrincipalIdDisplayName: pulumi.String("string"),
			},
		},
		RegistrationDefinitionName: pulumi.String("string"),
	},
	RegistrationDefinitionId: pulumi.String("string"),
})
Copy
var registrationDefinitionResource = new RegistrationDefinition("registrationDefinitionResource", RegistrationDefinitionArgs.builder()
    .scope("string")
    .plan(PlanArgs.builder()
        .name("string")
        .product("string")
        .publisher("string")
        .version("string")
        .build())
    .properties(RegistrationDefinitionPropertiesArgs.builder()
        .authorizations(AuthorizationArgs.builder()
            .principalId("string")
            .roleDefinitionId("string")
            .delegatedRoleDefinitionIds("string")
            .principalIdDisplayName("string")
            .build())
        .managedByTenantId("string")
        .description("string")
        .eligibleAuthorizations(EligibleAuthorizationArgs.builder()
            .principalId("string")
            .roleDefinitionId("string")
            .justInTimeAccessPolicy(JustInTimeAccessPolicyArgs.builder()
                .multiFactorAuthProvider("string")
                .managedByTenantApprovers(EligibleApproverArgs.builder()
                    .principalId("string")
                    .principalIdDisplayName("string")
                    .build())
                .maximumActivationDuration("string")
                .build())
            .principalIdDisplayName("string")
            .build())
        .registrationDefinitionName("string")
        .build())
    .registrationDefinitionId("string")
    .build());
Copy
registration_definition_resource = azure_native.managedservices.RegistrationDefinition("registrationDefinitionResource",
    scope="string",
    plan={
        "name": "string",
        "product": "string",
        "publisher": "string",
        "version": "string",
    },
    properties={
        "authorizations": [{
            "principal_id": "string",
            "role_definition_id": "string",
            "delegated_role_definition_ids": ["string"],
            "principal_id_display_name": "string",
        }],
        "managed_by_tenant_id": "string",
        "description": "string",
        "eligible_authorizations": [{
            "principal_id": "string",
            "role_definition_id": "string",
            "just_in_time_access_policy": {
                "multi_factor_auth_provider": "string",
                "managed_by_tenant_approvers": [{
                    "principal_id": "string",
                    "principal_id_display_name": "string",
                }],
                "maximum_activation_duration": "string",
            },
            "principal_id_display_name": "string",
        }],
        "registration_definition_name": "string",
    },
    registration_definition_id="string")
Copy
const registrationDefinitionResource = new azure_native.managedservices.RegistrationDefinition("registrationDefinitionResource", {
    scope: "string",
    plan: {
        name: "string",
        product: "string",
        publisher: "string",
        version: "string",
    },
    properties: {
        authorizations: [{
            principalId: "string",
            roleDefinitionId: "string",
            delegatedRoleDefinitionIds: ["string"],
            principalIdDisplayName: "string",
        }],
        managedByTenantId: "string",
        description: "string",
        eligibleAuthorizations: [{
            principalId: "string",
            roleDefinitionId: "string",
            justInTimeAccessPolicy: {
                multiFactorAuthProvider: "string",
                managedByTenantApprovers: [{
                    principalId: "string",
                    principalIdDisplayName: "string",
                }],
                maximumActivationDuration: "string",
            },
            principalIdDisplayName: "string",
        }],
        registrationDefinitionName: "string",
    },
    registrationDefinitionId: "string",
});
Copy
type: azure-native:managedservices:RegistrationDefinition
properties:
    plan:
        name: string
        product: string
        publisher: string
        version: string
    properties:
        authorizations:
            - delegatedRoleDefinitionIds:
                - string
              principalId: string
              principalIdDisplayName: string
              roleDefinitionId: string
        description: string
        eligibleAuthorizations:
            - justInTimeAccessPolicy:
                managedByTenantApprovers:
                    - principalId: string
                      principalIdDisplayName: string
                maximumActivationDuration: string
                multiFactorAuthProvider: string
              principalId: string
              principalIdDisplayName: string
              roleDefinitionId: string
        managedByTenantId: string
        registrationDefinitionName: string
    registrationDefinitionId: string
    scope: string
Copy

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

Scope
This property is required.
Changes to this property will trigger replacement.
string
The scope of the resource.
Plan Pulumi.AzureNative.ManagedServices.Inputs.Plan
The details for the Managed Services offer’s plan in Azure Marketplace.
Properties Pulumi.AzureNative.ManagedServices.Inputs.RegistrationDefinitionProperties
The properties of a registration definition.
RegistrationDefinitionId Changes to this property will trigger replacement. string
The GUID of the registration definition.
Scope
This property is required.
Changes to this property will trigger replacement.
string
The scope of the resource.
Plan PlanArgs
The details for the Managed Services offer’s plan in Azure Marketplace.
Properties RegistrationDefinitionPropertiesArgs
The properties of a registration definition.
RegistrationDefinitionId Changes to this property will trigger replacement. string
The GUID of the registration definition.
scope
This property is required.
Changes to this property will trigger replacement.
String
The scope of the resource.
plan Plan
The details for the Managed Services offer’s plan in Azure Marketplace.
properties RegistrationDefinitionProperties
The properties of a registration definition.
registrationDefinitionId Changes to this property will trigger replacement. String
The GUID of the registration definition.
scope
This property is required.
Changes to this property will trigger replacement.
string
The scope of the resource.
plan Plan
The details for the Managed Services offer’s plan in Azure Marketplace.
properties RegistrationDefinitionProperties
The properties of a registration definition.
registrationDefinitionId Changes to this property will trigger replacement. string
The GUID of the registration definition.
scope
This property is required.
Changes to this property will trigger replacement.
str
The scope of the resource.
plan PlanArgs
The details for the Managed Services offer’s plan in Azure Marketplace.
properties RegistrationDefinitionPropertiesArgs
The properties of a registration definition.
registration_definition_id Changes to this property will trigger replacement. str
The GUID of the registration definition.
scope
This property is required.
Changes to this property will trigger replacement.
String
The scope of the resource.
plan Property Map
The details for the Managed Services offer’s plan in Azure Marketplace.
properties Property Map
The properties of a registration definition.
registrationDefinitionId Changes to this property will trigger replacement. String
The GUID of the registration definition.

Outputs

All input properties are implicitly available as output properties. Additionally, the RegistrationDefinition 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 definition.
SystemData Pulumi.AzureNative.ManagedServices.Outputs.SystemDataResponse
The metadata for the registration assignment resource.
Type string
The type of the Azure resource (Microsoft.ManagedServices/registrationDefinitions).
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 definition.
SystemData SystemDataResponse
The metadata for the registration assignment resource.
Type string
The type of the Azure resource (Microsoft.ManagedServices/registrationDefinitions).
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 definition.
systemData SystemDataResponse
The metadata for the registration assignment resource.
type String
The type of the Azure resource (Microsoft.ManagedServices/registrationDefinitions).
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 definition.
systemData SystemDataResponse
The metadata for the registration assignment resource.
type string
The type of the Azure resource (Microsoft.ManagedServices/registrationDefinitions).
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 definition.
system_data SystemDataResponse
The metadata for the registration assignment resource.
type str
The type of the Azure resource (Microsoft.ManagedServices/registrationDefinitions).
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 definition.
systemData Property Map
The metadata for the registration assignment resource.
type String
The type of the Azure resource (Microsoft.ManagedServices/registrationDefinitions).

Supporting Types

Authorization
, AuthorizationArgs

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.

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.

EligibleApprover
, EligibleApproverArgs

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.

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.

EligibleAuthorization
, EligibleAuthorizationArgs

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.JustInTimeAccessPolicy
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 JustInTimeAccessPolicy
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 JustInTimeAccessPolicy
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 JustInTimeAccessPolicy
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 JustInTimeAccessPolicy
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.

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.

JustInTimeAccessPolicy
, JustInTimeAccessPolicyArgs

MultiFactorAuthProvider This property is required. string | Pulumi.AzureNative.ManagedServices.MultiFactorAuthProvider
The multi-factor authorization provider to be used for just-in-time access requests.
ManagedByTenantApprovers List<Pulumi.AzureNative.ManagedServices.Inputs.EligibleApprover>
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 | MultiFactorAuthProvider
The multi-factor authorization provider to be used for just-in-time access requests.
ManagedByTenantApprovers []EligibleApprover
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 | MultiFactorAuthProvider
The multi-factor authorization provider to be used for just-in-time access requests.
managedByTenantApprovers List<EligibleApprover>
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 | MultiFactorAuthProvider
The multi-factor authorization provider to be used for just-in-time access requests.
managedByTenantApprovers EligibleApprover[]
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 | MultiFactorAuthProvider
The multi-factor authorization provider to be used for just-in-time access requests.
managed_by_tenant_approvers Sequence[EligibleApprover]
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 | "Azure" | "None"
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.

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.

MultiFactorAuthProvider
, MultiFactorAuthProviderArgs

Azure
Azure
None
None
MultiFactorAuthProviderAzure
Azure
MultiFactorAuthProviderNone
None
Azure
Azure
None
None
Azure
Azure
None
None
AZURE
Azure
NONE
None
"Azure"
Azure
"None"
None

Plan
, PlanArgs

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.

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.

RegistrationDefinitionProperties
, RegistrationDefinitionPropertiesArgs

Authorizations This property is required. List<Pulumi.AzureNative.ManagedServices.Inputs.Authorization>
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.
ManagedByTenantId This property is required. string
The identifier of the managedBy tenant.
Description string
The description of the registration definition.
EligibleAuthorizations List<Pulumi.AzureNative.ManagedServices.Inputs.EligibleAuthorization>
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.
RegistrationDefinitionName string
The name of the registration definition.
Authorizations This property is required. []Authorization
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.
ManagedByTenantId This property is required. string
The identifier of the managedBy tenant.
Description string
The description of the registration definition.
EligibleAuthorizations []EligibleAuthorization
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.
RegistrationDefinitionName string
The name of the registration definition.
authorizations This property is required. List<Authorization>
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.
managedByTenantId This property is required. String
The identifier of the managedBy tenant.
description String
The description of the registration definition.
eligibleAuthorizations List<EligibleAuthorization>
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.
registrationDefinitionName String
The name of the registration definition.
authorizations This property is required. Authorization[]
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.
managedByTenantId This property is required. string
The identifier of the managedBy tenant.
description string
The description of the registration definition.
eligibleAuthorizations EligibleAuthorization[]
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.
registrationDefinitionName string
The name of the registration definition.
authorizations This property is required. Sequence[Authorization]
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.
managed_by_tenant_id This property is required. str
The identifier of the managedBy tenant.
description str
The description of the registration definition.
eligible_authorizations Sequence[EligibleAuthorization]
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.
registration_definition_name str
The name of the registration definition.
authorizations This property is required. 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.
managedByTenantId This property is required. String
The identifier of the managedBy 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.
registrationDefinitionName String
The name of the registration definition.

RegistrationDefinitionPropertiesResponse
, RegistrationDefinitionPropertiesResponseArgs

Authorizations This property is required. 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.
ManagedByTenantId This property is required. string
The identifier of the managedBy tenant.
ManagedByTenantName This property is required. string
The name of the managedBy tenant.
ManageeTenantId This property is required. string
The identifier of the managed tenant.
ManageeTenantName This property is required. string
The name of the managed tenant.
ProvisioningState This property is required. string
The current provisioning state of the registration definition.
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.
RegistrationDefinitionName string
The name of the registration definition.
Authorizations This property is required. []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.
ManagedByTenantId This property is required. string
The identifier of the managedBy tenant.
ManagedByTenantName This property is required. string
The name of the managedBy tenant.
ManageeTenantId This property is required. string
The identifier of the managed tenant.
ManageeTenantName This property is required. string
The name of the managed tenant.
ProvisioningState This property is required. string
The current provisioning state of the registration definition.
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.
RegistrationDefinitionName string
The name of the registration definition.
authorizations This property is required. 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.
managedByTenantId This property is required. String
The identifier of the managedBy tenant.
managedByTenantName This property is required. String
The name of the managedBy tenant.
manageeTenantId This property is required. String
The identifier of the managed tenant.
manageeTenantName This property is required. String
The name of the managed tenant.
provisioningState This property is required. String
The current provisioning state of the registration definition.
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.
registrationDefinitionName String
The name of the registration definition.
authorizations This property is required. 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.
managedByTenantId This property is required. string
The identifier of the managedBy tenant.
managedByTenantName This property is required. string
The name of the managedBy tenant.
manageeTenantId This property is required. string
The identifier of the managed tenant.
manageeTenantName This property is required. string
The name of the managed tenant.
provisioningState This property is required. string
The current provisioning state of the registration definition.
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.
registrationDefinitionName string
The name of the registration definition.
authorizations This property is required. 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.
managed_by_tenant_id This property is required. str
The identifier of the managedBy tenant.
managed_by_tenant_name This property is required. str
The name of the managedBy tenant.
managee_tenant_id This property is required. str
The identifier of the managed tenant.
managee_tenant_name This property is required. str
The name of the managed tenant.
provisioning_state This property is required. str
The current provisioning state of the registration definition.
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.
registration_definition_name str
The name of the registration definition.
authorizations This property is required. 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.
managedByTenantId This property is required. String
The identifier of the managedBy tenant.
managedByTenantName This property is required. String
The name of the managedBy tenant.
manageeTenantId This property is required. String
The identifier of the managed tenant.
manageeTenantName This property is required. String
The name of the managed tenant.
provisioningState This property is required. String
The current provisioning state of the registration definition.
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.
registrationDefinitionName String
The name of the registration definition.

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:RegistrationDefinition 26c128c2-fefa-4340-9bb1-6e081c90ada2 /{scope}/providers/Microsoft.ManagedServices/registrationDefinitions/{registrationDefinitionId} 
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.1.0 published on Tuesday, Apr 8, 2025 by Pulumi