azure-native.managedservices.RegistrationAssignment
Explore with Pulumi AI
The registration assignment. Azure REST API version: 2022-10-01. Prior API version in Azure Native 1.x: 2019-09-01.
Example Usage
Put Registration Assignment
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var registrationAssignment = new AzureNative.ManagedServices.RegistrationAssignment("registrationAssignment", new()
{
Properties = new AzureNative.ManagedServices.Inputs.RegistrationAssignmentPropertiesArgs
{
RegistrationDefinitionId = "/subscriptions/0afefe50-734e-4610-8a82-a144ahf49dea/providers/Microsoft.ManagedServices/registrationDefinitions/26c128c2-fefa-4340-9bb1-6e081c90ada2",
},
RegistrationAssignmentId = "26c128c2-fefa-4340-9bb1-6e081c90ada2",
Scope = "subscription/0afefe50-734e-4610-8a82-a144ahf49dea",
});
});
package main
import (
managedservices "github.com/pulumi/pulumi-azure-native-sdk/managedservices/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := managedservices.NewRegistrationAssignment(ctx, "registrationAssignment", &managedservices.RegistrationAssignmentArgs{
Properties: &managedservices.RegistrationAssignmentPropertiesArgs{
RegistrationDefinitionId: pulumi.String("/subscriptions/0afefe50-734e-4610-8a82-a144ahf49dea/providers/Microsoft.ManagedServices/registrationDefinitions/26c128c2-fefa-4340-9bb1-6e081c90ada2"),
},
RegistrationAssignmentId: pulumi.String("26c128c2-fefa-4340-9bb1-6e081c90ada2"),
Scope: pulumi.String("subscription/0afefe50-734e-4610-8a82-a144ahf49dea"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.managedservices.RegistrationAssignment;
import com.pulumi.azurenative.managedservices.RegistrationAssignmentArgs;
import com.pulumi.azurenative.managedservices.inputs.RegistrationAssignmentPropertiesArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var registrationAssignment = new RegistrationAssignment("registrationAssignment", RegistrationAssignmentArgs.builder()
.properties(RegistrationAssignmentPropertiesArgs.builder()
.registrationDefinitionId("/subscriptions/0afefe50-734e-4610-8a82-a144ahf49dea/providers/Microsoft.ManagedServices/registrationDefinitions/26c128c2-fefa-4340-9bb1-6e081c90ada2")
.build())
.registrationAssignmentId("26c128c2-fefa-4340-9bb1-6e081c90ada2")
.scope("subscription/0afefe50-734e-4610-8a82-a144ahf49dea")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
registration_assignment = azure_native.managedservices.RegistrationAssignment("registrationAssignment",
properties=azure_native.managedservices.RegistrationAssignmentPropertiesArgs(
registration_definition_id="/subscriptions/0afefe50-734e-4610-8a82-a144ahf49dea/providers/Microsoft.ManagedServices/registrationDefinitions/26c128c2-fefa-4340-9bb1-6e081c90ada2",
),
registration_assignment_id="26c128c2-fefa-4340-9bb1-6e081c90ada2",
scope="subscription/0afefe50-734e-4610-8a82-a144ahf49dea")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const registrationAssignment = new azure_native.managedservices.RegistrationAssignment("registrationAssignment", {
properties: {
registrationDefinitionId: "/subscriptions/0afefe50-734e-4610-8a82-a144ahf49dea/providers/Microsoft.ManagedServices/registrationDefinitions/26c128c2-fefa-4340-9bb1-6e081c90ada2",
},
registrationAssignmentId: "26c128c2-fefa-4340-9bb1-6e081c90ada2",
scope: "subscription/0afefe50-734e-4610-8a82-a144ahf49dea",
});
resources:
registrationAssignment:
type: azure-native:managedservices:RegistrationAssignment
properties:
properties:
registrationDefinitionId: /subscriptions/0afefe50-734e-4610-8a82-a144ahf49dea/providers/Microsoft.ManagedServices/registrationDefinitions/26c128c2-fefa-4340-9bb1-6e081c90ada2
registrationAssignmentId: 26c128c2-fefa-4340-9bb1-6e081c90ada2
scope: subscription/0afefe50-734e-4610-8a82-a144ahf49dea
Create RegistrationAssignment Resource
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 string
- The unique name of the resource.
- args RegistrationAssignmentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args RegistrationAssignmentArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args RegistrationAssignmentArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RegistrationAssignmentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RegistrationAssignmentArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
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",
});
example, err := managedservices.NewRegistrationAssignment(ctx, "registrationAssignmentResource", &managedservices.RegistrationAssignmentArgs{
Scope: pulumi.String("string"),
Properties: &managedservices.RegistrationAssignmentPropertiesArgs{
RegistrationDefinitionId: pulumi.String("string"),
},
RegistrationAssignmentId: pulumi.String("string"),
})
var registrationAssignmentResource = new RegistrationAssignment("registrationAssignmentResource", RegistrationAssignmentArgs.builder()
.scope("string")
.properties(RegistrationAssignmentPropertiesArgs.builder()
.registrationDefinitionId("string")
.build())
.registrationAssignmentId("string")
.build());
registration_assignment_resource = azure_native.managedservices.RegistrationAssignment("registrationAssignmentResource",
scope="string",
properties=azure_native.managedservices.RegistrationAssignmentPropertiesArgs(
registration_definition_id="string",
),
registration_assignment_id="string")
const registrationAssignmentResource = new azure_native.managedservices.RegistrationAssignment("registrationAssignmentResource", {
scope: "string",
properties: {
registrationDefinitionId: "string",
},
registrationAssignmentId: "string",
});
type: azure-native:managedservices:RegistrationAssignment
properties:
properties:
registrationDefinitionId: string
registrationAssignmentId: string
scope: string
RegistrationAssignment Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The RegistrationAssignment resource accepts the following input properties:
- Scope string
- The scope of the resource.
- Properties
Pulumi.
Azure Native. Managed Services. Inputs. Registration Assignment Properties - The properties of a registration assignment.
- Registration
Assignment stringId - The GUID of the registration assignment.
- Scope string
- The scope of the resource.
- Properties
Registration
Assignment Properties Args - The properties of a registration assignment.
- Registration
Assignment stringId - The GUID of the registration assignment.
- scope String
- The scope of the resource.
- properties
Registration
Assignment Properties - The properties of a registration assignment.
- registration
Assignment StringId - The GUID of the registration assignment.
- scope string
- The scope of the resource.
- properties
Registration
Assignment Properties - The properties of a registration assignment.
- registration
Assignment stringId - The GUID of the registration assignment.
- scope str
- The scope of the resource.
- properties
Registration
Assignment Properties Args - The properties of a registration assignment.
- registration_
assignment_ strid - The GUID of the registration assignment.
- scope String
- The scope of the resource.
- properties Property Map
- The properties of a registration assignment.
- registration
Assignment StringId - The GUID of the registration assignment.
Outputs
All input properties are implicitly available as output properties. Additionally, the RegistrationAssignment resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the registration assignment.
- System
Data Pulumi.Azure Native. Managed Services. Outputs. System Data Response - The metadata for the registration assignment resource.
- Type string
- The type of the Azure resource (Microsoft.ManagedServices/registrationAssignments).
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the registration assignment.
- System
Data SystemData Response - The metadata for the registration assignment resource.
- Type string
- The type of the Azure resource (Microsoft.ManagedServices/registrationAssignments).
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the registration assignment.
- system
Data SystemData Response - The metadata for the registration assignment resource.
- type String
- The type of the Azure resource (Microsoft.ManagedServices/registrationAssignments).
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the registration assignment.
- system
Data SystemData Response - The metadata for the registration assignment resource.
- type string
- The type of the Azure resource (Microsoft.ManagedServices/registrationAssignments).
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the registration assignment.
- system_
data SystemData Response - The metadata for the registration assignment resource.
- type str
- The type of the Azure resource (Microsoft.ManagedServices/registrationAssignments).
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the registration assignment.
- system
Data Property Map - The metadata for the registration assignment resource.
- type String
- The type of the Azure resource (Microsoft.ManagedServices/registrationAssignments).
Supporting Types
AuthorizationResponse, AuthorizationResponseArgs
- Principal
Id string - The identifier of the Azure Active Directory principal.
- Role
Definition stringId - 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 List<string>Definition Ids - 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 stringDisplay Name - The display name of the Azure Active Directory principal.
- Principal
Id string - The identifier of the Azure Active Directory principal.
- Role
Definition stringId - 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 []stringDefinition Ids - 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 stringDisplay Name - The display name of the Azure Active Directory principal.
- principal
Id String - The identifier of the Azure Active Directory principal.
- role
Definition StringId - 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 List<String>Definition Ids - 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 StringDisplay Name - The display name of the Azure Active Directory principal.
- principal
Id string - The identifier of the Azure Active Directory principal.
- role
Definition stringId - 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 string[]Definition Ids - 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 stringDisplay Name - The display name of the Azure Active Directory principal.
- principal_
id str - The identifier of the Azure Active Directory principal.
- role_
definition_ strid - 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_ Sequence[str]definition_ ids - 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_ strdisplay_ name - The display name of the Azure Active Directory principal.
- principal
Id String - The identifier of the Azure Active Directory principal.
- role
Definition StringId - 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 List<String>Definition Ids - 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 StringDisplay Name - The display name of the Azure Active Directory principal.
EligibleApproverResponse, EligibleApproverResponseArgs
- Principal
Id string - The identifier of the Azure Active Directory principal.
- Principal
Id stringDisplay Name - The display name of the Azure Active Directory principal.
- Principal
Id string - The identifier of the Azure Active Directory principal.
- Principal
Id stringDisplay Name - The display name of the Azure Active Directory principal.
- principal
Id String - The identifier of the Azure Active Directory principal.
- principal
Id StringDisplay Name - The display name of the Azure Active Directory principal.
- principal
Id string - The identifier of the Azure Active Directory principal.
- principal
Id stringDisplay Name - The display name of the Azure Active Directory principal.
- principal_
id str - The identifier of the Azure Active Directory principal.
- principal_
id_ strdisplay_ name - The display name of the Azure Active Directory principal.
- principal
Id String - The identifier of the Azure Active Directory principal.
- principal
Id StringDisplay Name - The display name of the Azure Active Directory principal.
EligibleAuthorizationResponse, EligibleAuthorizationResponseArgs
- Principal
Id string - The identifier of the Azure Active Directory principal.
- Role
Definition stringId - 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 Pulumi.Time Access Policy Azure Native. Managed Services. Inputs. Just In Time Access Policy Response - The just-in-time access policy setting.
- Principal
Id stringDisplay Name - The display name of the Azure Active Directory principal.
- Principal
Id string - The identifier of the Azure Active Directory principal.
- Role
Definition stringId - 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 JustTime Access Policy In Time Access Policy Response - The just-in-time access policy setting.
- Principal
Id stringDisplay Name - The display name of the Azure Active Directory principal.
- principal
Id String - The identifier of the Azure Active Directory principal.
- role
Definition StringId - 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 JustTime Access Policy In Time Access Policy Response - The just-in-time access policy setting.
- principal
Id StringDisplay Name - The display name of the Azure Active Directory principal.
- principal
Id string - The identifier of the Azure Active Directory principal.
- role
Definition stringId - 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 JustTime Access Policy In Time Access Policy Response - The just-in-time access policy setting.
- principal
Id stringDisplay Name - The display name of the Azure Active Directory principal.
- principal_
id str - The identifier of the Azure Active Directory principal.
- role_
definition_ strid - 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_ Justtime_ access_ policy In Time Access Policy Response - The just-in-time access policy setting.
- principal_
id_ strdisplay_ name - The display name of the Azure Active Directory principal.
- principal
Id String - The identifier of the Azure Active Directory principal.
- role
Definition StringId - 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 Property MapTime Access Policy - The just-in-time access policy setting.
- principal
Id StringDisplay Name - The display name of the Azure Active Directory principal.
JustInTimeAccessPolicyResponse, JustInTimeAccessPolicyResponseArgs
- Multi
Factor stringAuth Provider - The multi-factor authorization provider to be used for just-in-time access requests.
- Managed
By List<Pulumi.Tenant Approvers Azure Native. Managed Services. Inputs. Eligible Approver Response> - The list of managedByTenant approvers for the eligible authorization.
- Maximum
Activation stringDuration - The maximum access duration in ISO 8601 format for just-in-time access requests.
- Multi
Factor stringAuth Provider - The multi-factor authorization provider to be used for just-in-time access requests.
- Managed
By []EligibleTenant Approvers Approver Response - The list of managedByTenant approvers for the eligible authorization.
- Maximum
Activation stringDuration - The maximum access duration in ISO 8601 format for just-in-time access requests.
- multi
Factor StringAuth Provider - The multi-factor authorization provider to be used for just-in-time access requests.
- managed
By List<EligibleTenant Approvers Approver Response> - The list of managedByTenant approvers for the eligible authorization.
- maximum
Activation StringDuration - The maximum access duration in ISO 8601 format for just-in-time access requests.
- multi
Factor stringAuth Provider - The multi-factor authorization provider to be used for just-in-time access requests.
- managed
By EligibleTenant Approvers Approver Response[] - The list of managedByTenant approvers for the eligible authorization.
- maximum
Activation stringDuration - The maximum access duration in ISO 8601 format for just-in-time access requests.
- multi_
factor_ strauth_ provider - The multi-factor authorization provider to be used for just-in-time access requests.
- managed_
by_ Sequence[Eligibletenant_ approvers Approver Response] - The list of managedByTenant approvers for the eligible authorization.
- maximum_
activation_ strduration - The maximum access duration in ISO 8601 format for just-in-time access requests.
- multi
Factor StringAuth Provider - The multi-factor authorization provider to be used for just-in-time access requests.
- managed
By List<Property Map>Tenant Approvers - The list of managedByTenant approvers for the eligible authorization.
- maximum
Activation StringDuration - The maximum access duration in ISO 8601 format for just-in-time access requests.
PlanResponse, PlanResponseArgs
RegistrationAssignmentProperties, RegistrationAssignmentPropertiesArgs
- Registration
Definition stringId - The fully qualified path of the registration definition.
- Registration
Definition stringId - The fully qualified path of the registration definition.
- registration
Definition StringId - The fully qualified path of the registration definition.
- registration
Definition stringId - The fully qualified path of the registration definition.
- registration_
definition_ strid - The fully qualified path of the registration definition.
- registration
Definition StringId - The fully qualified path of the registration definition.
RegistrationAssignmentPropertiesResponse, RegistrationAssignmentPropertiesResponseArgs
- Provisioning
State string - The current provisioning state of the registration assignment.
- Registration
Definition Pulumi.Azure Native. Managed Services. Inputs. Registration Assignment Properties Response Registration Definition - The registration definition associated with the registration assignment.
- Registration
Definition stringId - The fully qualified path of the registration definition.
- Provisioning
State string - The current provisioning state of the registration assignment.
- Registration
Definition RegistrationAssignment Properties Response Registration Definition - The registration definition associated with the registration assignment.
- Registration
Definition stringId - The fully qualified path of the registration definition.
- provisioning
State String - The current provisioning state of the registration assignment.
- registration
Definition RegistrationAssignment Properties Response Registration Definition - The registration definition associated with the registration assignment.
- registration
Definition StringId - The fully qualified path of the registration definition.
- provisioning
State string - The current provisioning state of the registration assignment.
- registration
Definition RegistrationAssignment Properties Response Registration Definition - The registration definition associated with the registration assignment.
- registration
Definition stringId - The fully qualified path of the registration definition.
- provisioning_
state str - The current provisioning state of the registration assignment.
- registration_
definition RegistrationAssignment Properties Response Registration Definition - The registration definition associated with the registration assignment.
- registration_
definition_ strid - The fully qualified path of the registration definition.
- provisioning
State String - The current provisioning state of the registration assignment.
- registration
Definition Property Map - The registration definition associated with the registration assignment.
- registration
Definition StringId - The fully qualified path of the registration definition.
RegistrationAssignmentPropertiesResponseProperties, RegistrationAssignmentPropertiesResponsePropertiesArgs
- List<Pulumi.
Azure Native. Managed Services. Inputs. Authorization Response> - 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.
- List<Pulumi.
Azure Native. Managed Services. Inputs. Eligible Authorization Response> - 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 stringTenant Id - The identifier of the managedBy tenant.
- Managed
By stringTenant Name - The name of the managedBy tenant.
- Managee
Tenant stringId - The identifier of the managed tenant.
- Managee
Tenant stringName - The name of the managed tenant.
- Provisioning
State string - The current provisioning state of the registration definition.
- Registration
Definition stringName - The name of the registration definition.
- []Authorization
Response - 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.
- []Eligible
Authorization Response - 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 stringTenant Id - The identifier of the managedBy tenant.
- Managed
By stringTenant Name - The name of the managedBy tenant.
- Managee
Tenant stringId - The identifier of the managed tenant.
- Managee
Tenant stringName - The name of the managed tenant.
- Provisioning
State string - The current provisioning state of the registration definition.
- Registration
Definition stringName - The name of the registration definition.
- List<Authorization
Response> - 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.
- List<Eligible
Authorization Response> - 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 StringTenant Id - The identifier of the managedBy tenant.
- managed
By StringTenant Name - The name of the managedBy tenant.
- managee
Tenant StringId - The identifier of the managed tenant.
- managee
Tenant StringName - The name of the managed tenant.
- provisioning
State String - The current provisioning state of the registration definition.
- registration
Definition StringName - The name of the registration definition.
- Authorization
Response[] - 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.
- Eligible
Authorization Response[] - 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 stringTenant Id - The identifier of the managedBy tenant.
- managed
By stringTenant Name - The name of the managedBy tenant.
- managee
Tenant stringId - The identifier of the managed tenant.
- managee
Tenant stringName - The name of the managed tenant.
- provisioning
State string - The current provisioning state of the registration definition.
- registration
Definition stringName - The name of the registration definition.
- Sequence[Authorization
Response] - 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.
- Sequence[Eligible
Authorization Response] - 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_ strtenant_ id - The identifier of the managedBy tenant.
- managed_
by_ strtenant_ name - The name of the managedBy tenant.
- managee_
tenant_ strid - The identifier of the managed tenant.
- managee_
tenant_ strname - The name of the managed tenant.
- provisioning_
state str - The current provisioning state of the registration definition.
- registration_
definition_ strname - The name of the registration definition.
- 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.
- 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.
- managed
By StringTenant Id - The identifier of the managedBy tenant.
- managed
By StringTenant Name - The name of the managedBy tenant.
- managee
Tenant StringId - The identifier of the managed tenant.
- managee
Tenant StringName - The name of the managed tenant.
- provisioning
State String - The current provisioning state of the registration definition.
- registration
Definition StringName - The name of the registration definition.
RegistrationAssignmentPropertiesResponseRegistrationDefinition, RegistrationAssignmentPropertiesResponseRegistrationDefinitionArgs
- Id string
- The fully qualified path of the registration definition.
- Name string
- The name of the registration definition.
- System
Data Pulumi.Azure Native. Managed Services. Inputs. System Data Response - The metadata for the registration definition resource.
- Type string
- The type of the Azure resource (Microsoft.ManagedServices/registrationDefinitions).
- Plan
Pulumi.
Azure Native. Managed Services. Inputs. Plan Response - The details for the Managed Services offer’s plan in Azure Marketplace.
- Properties
Pulumi.
Azure Native. Managed Services. Inputs. Registration Assignment Properties Response Properties - The properties of the registration definition associated with the registration assignment.
- Id string
- The fully qualified path of the registration definition.
- Name string
- The name of the registration definition.
- System
Data SystemData Response - The metadata for the registration definition resource.
- Type string
- The type of the Azure resource (Microsoft.ManagedServices/registrationDefinitions).
- Plan
Plan
Response - The details for the Managed Services offer’s plan in Azure Marketplace.
- Properties
Registration
Assignment Properties Response Properties - The properties of the registration definition associated with the registration assignment.
- id String
- The fully qualified path of the registration definition.
- name String
- The name of the registration definition.
- system
Data SystemData Response - The metadata for the registration definition resource.
- type String
- The type of the Azure resource (Microsoft.ManagedServices/registrationDefinitions).
- plan
Plan
Response - The details for the Managed Services offer’s plan in Azure Marketplace.
- properties
Registration
Assignment Properties Response Properties - The properties of the registration definition associated with the registration assignment.
- id string
- The fully qualified path of the registration definition.
- name string
- The name of the registration definition.
- system
Data SystemData Response - The metadata for the registration definition resource.
- type string
- The type of the Azure resource (Microsoft.ManagedServices/registrationDefinitions).
- plan
Plan
Response - The details for the Managed Services offer’s plan in Azure Marketplace.
- properties
Registration
Assignment Properties Response Properties - The properties of the registration definition associated with the registration assignment.
- id str
- The fully qualified path of the registration definition.
- name str
- The name of the registration definition.
- system_
data SystemData Response - The metadata for the registration definition resource.
- type str
- The type of the Azure resource (Microsoft.ManagedServices/registrationDefinitions).
- plan
Plan
Response - The details for the Managed Services offer’s plan in Azure Marketplace.
- properties
Registration
Assignment Properties Response Properties - The properties of the registration definition associated with the registration assignment.
- id String
- The fully qualified path of the registration definition.
- name String
- The name of the registration definition.
- system
Data Property Map - The metadata for the registration definition resource.
- type String
- The type of the Azure resource (Microsoft.ManagedServices/registrationDefinitions).
- plan Property Map
- The details for the Managed Services offer’s plan in Azure Marketplace.
- properties Property Map
- The properties of the registration definition associated with the registration assignment.
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:managedservices:RegistrationAssignment 484a7d5f-9729-4b87-bc9b-26610985a013 /{scope}/providers/Microsoft.ManagedServices/registrationAssignments/{registrationAssignmentId}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0