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

azure-native.sovereign.LandingZoneRegistrationOperation

Explore with Pulumi AI

The Landing zone registration resource type.

Uses Azure REST API version 2025-02-27-preview. In version 2.x of the Azure Native provider, it used API version 2025-02-27-preview.

Example Usage

LandingZoneRegistrationOperations_Create

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

return await Deployment.RunAsync(() => 
{
    var landingZoneRegistrationOperation = new AzureNative.Sovereign.LandingZoneRegistrationOperation("landingZoneRegistrationOperation", new()
    {
        LandingZoneAccountName = "lza-RemApiExample",
        LandingZoneRegistrationName = "lzr-RemApiExample",
        Properties = new AzureNative.Sovereign.Inputs.LandingZoneRegistrationResourcePropertiesArgs
        {
            ExistingLandingZoneConfigurationId = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-RemApiExample/providers/Microsoft.Sovereign/landingZoneAccounts/lza-RemApiExample/landingZoneConfigurations/lzc-RemApiExample",
            ExistingTopLevelMgId = "/providers/Microsoft.Management/managementGroups/mg-example",
            ManagedIdentity = new AzureNative.Sovereign.Inputs.ManagedIdentityPropertiesArgs
            {
                Type = AzureNative.Sovereign.ManagedIdentityResourceType.UserAssigned,
                UserAssignedIdentityResourceId = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-RemApiExample/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-RemApiExample",
            },
        },
        ResourceGroupName = "rg-RemApiExample",
    });

});
Copy
package main

import (
	sovereign "github.com/pulumi/pulumi-azure-native-sdk/sovereign/v3"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := sovereign.NewLandingZoneRegistrationOperation(ctx, "landingZoneRegistrationOperation", &sovereign.LandingZoneRegistrationOperationArgs{
			LandingZoneAccountName:      pulumi.String("lza-RemApiExample"),
			LandingZoneRegistrationName: pulumi.String("lzr-RemApiExample"),
			Properties: &sovereign.LandingZoneRegistrationResourcePropertiesArgs{
				ExistingLandingZoneConfigurationId: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-RemApiExample/providers/Microsoft.Sovereign/landingZoneAccounts/lza-RemApiExample/landingZoneConfigurations/lzc-RemApiExample"),
				ExistingTopLevelMgId:               pulumi.String("/providers/Microsoft.Management/managementGroups/mg-example"),
				ManagedIdentity: &sovereign.ManagedIdentityPropertiesArgs{
					Type:                           pulumi.String(sovereign.ManagedIdentityResourceTypeUserAssigned),
					UserAssignedIdentityResourceId: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-RemApiExample/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-RemApiExample"),
				},
			},
			ResourceGroupName: pulumi.String("rg-RemApiExample"),
		})
		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.sovereign.LandingZoneRegistrationOperation;
import com.pulumi.azurenative.sovereign.LandingZoneRegistrationOperationArgs;
import com.pulumi.azurenative.sovereign.inputs.LandingZoneRegistrationResourcePropertiesArgs;
import com.pulumi.azurenative.sovereign.inputs.ManagedIdentityPropertiesArgs;
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 landingZoneRegistrationOperation = new LandingZoneRegistrationOperation("landingZoneRegistrationOperation", LandingZoneRegistrationOperationArgs.builder()
            .landingZoneAccountName("lza-RemApiExample")
            .landingZoneRegistrationName("lzr-RemApiExample")
            .properties(LandingZoneRegistrationResourcePropertiesArgs.builder()
                .existingLandingZoneConfigurationId("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-RemApiExample/providers/Microsoft.Sovereign/landingZoneAccounts/lza-RemApiExample/landingZoneConfigurations/lzc-RemApiExample")
                .existingTopLevelMgId("/providers/Microsoft.Management/managementGroups/mg-example")
                .managedIdentity(ManagedIdentityPropertiesArgs.builder()
                    .type("UserAssigned")
                    .userAssignedIdentityResourceId("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-RemApiExample/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-RemApiExample")
                    .build())
                .build())
            .resourceGroupName("rg-RemApiExample")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const landingZoneRegistrationOperation = new azure_native.sovereign.LandingZoneRegistrationOperation("landingZoneRegistrationOperation", {
    landingZoneAccountName: "lza-RemApiExample",
    landingZoneRegistrationName: "lzr-RemApiExample",
    properties: {
        existingLandingZoneConfigurationId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-RemApiExample/providers/Microsoft.Sovereign/landingZoneAccounts/lza-RemApiExample/landingZoneConfigurations/lzc-RemApiExample",
        existingTopLevelMgId: "/providers/Microsoft.Management/managementGroups/mg-example",
        managedIdentity: {
            type: azure_native.sovereign.ManagedIdentityResourceType.UserAssigned,
            userAssignedIdentityResourceId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-RemApiExample/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-RemApiExample",
        },
    },
    resourceGroupName: "rg-RemApiExample",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

landing_zone_registration_operation = azure_native.sovereign.LandingZoneRegistrationOperation("landingZoneRegistrationOperation",
    landing_zone_account_name="lza-RemApiExample",
    landing_zone_registration_name="lzr-RemApiExample",
    properties={
        "existing_landing_zone_configuration_id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-RemApiExample/providers/Microsoft.Sovereign/landingZoneAccounts/lza-RemApiExample/landingZoneConfigurations/lzc-RemApiExample",
        "existing_top_level_mg_id": "/providers/Microsoft.Management/managementGroups/mg-example",
        "managed_identity": {
            "type": azure_native.sovereign.ManagedIdentityResourceType.USER_ASSIGNED,
            "user_assigned_identity_resource_id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-RemApiExample/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-RemApiExample",
        },
    },
    resource_group_name="rg-RemApiExample")
Copy
resources:
  landingZoneRegistrationOperation:
    type: azure-native:sovereign:LandingZoneRegistrationOperation
    properties:
      landingZoneAccountName: lza-RemApiExample
      landingZoneRegistrationName: lzr-RemApiExample
      properties:
        existingLandingZoneConfigurationId: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-RemApiExample/providers/Microsoft.Sovereign/landingZoneAccounts/lza-RemApiExample/landingZoneConfigurations/lzc-RemApiExample
        existingTopLevelMgId: /providers/Microsoft.Management/managementGroups/mg-example
        managedIdentity:
          type: UserAssigned
          userAssignedIdentityResourceId: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-RemApiExample/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-RemApiExample
      resourceGroupName: rg-RemApiExample
Copy

Create LandingZoneRegistrationOperation Resource

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

Constructor syntax

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

@overload
def LandingZoneRegistrationOperation(resource_name: str,
                                     opts: Optional[ResourceOptions] = None,
                                     landing_zone_account_name: Optional[str] = None,
                                     resource_group_name: Optional[str] = None,
                                     landing_zone_registration_name: Optional[str] = None,
                                     properties: Optional[LandingZoneRegistrationResourcePropertiesArgs] = None)
func NewLandingZoneRegistrationOperation(ctx *Context, name string, args LandingZoneRegistrationOperationArgs, opts ...ResourceOption) (*LandingZoneRegistrationOperation, error)
public LandingZoneRegistrationOperation(string name, LandingZoneRegistrationOperationArgs args, CustomResourceOptions? opts = null)
public LandingZoneRegistrationOperation(String name, LandingZoneRegistrationOperationArgs args)
public LandingZoneRegistrationOperation(String name, LandingZoneRegistrationOperationArgs args, CustomResourceOptions options)
type: azure-native:sovereign:LandingZoneRegistrationOperation
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. LandingZoneRegistrationOperationArgs
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. LandingZoneRegistrationOperationArgs
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. LandingZoneRegistrationOperationArgs
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. LandingZoneRegistrationOperationArgs
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. LandingZoneRegistrationOperationArgs
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 landingZoneRegistrationOperationResource = new AzureNative.Sovereign.LandingZoneRegistrationOperation("landingZoneRegistrationOperationResource", new()
{
    LandingZoneAccountName = "string",
    ResourceGroupName = "string",
    LandingZoneRegistrationName = "string",
    Properties = new AzureNative.Sovereign.Inputs.LandingZoneRegistrationResourcePropertiesArgs
    {
        ExistingLandingZoneConfigurationId = "string",
        ExistingTopLevelMgId = "string",
        ManagedIdentity = new AzureNative.Sovereign.Inputs.ManagedIdentityPropertiesArgs
        {
            Type = "string",
            UserAssignedIdentityResourceId = "string",
        },
    },
});
Copy
example, err := sovereign.NewLandingZoneRegistrationOperation(ctx, "landingZoneRegistrationOperationResource", &sovereign.LandingZoneRegistrationOperationArgs{
	LandingZoneAccountName:      pulumi.String("string"),
	ResourceGroupName:           pulumi.String("string"),
	LandingZoneRegistrationName: pulumi.String("string"),
	Properties: &sovereign.LandingZoneRegistrationResourcePropertiesArgs{
		ExistingLandingZoneConfigurationId: pulumi.String("string"),
		ExistingTopLevelMgId:               pulumi.String("string"),
		ManagedIdentity: &sovereign.ManagedIdentityPropertiesArgs{
			Type:                           pulumi.String("string"),
			UserAssignedIdentityResourceId: pulumi.String("string"),
		},
	},
})
Copy
var landingZoneRegistrationOperationResource = new LandingZoneRegistrationOperation("landingZoneRegistrationOperationResource", LandingZoneRegistrationOperationArgs.builder()
    .landingZoneAccountName("string")
    .resourceGroupName("string")
    .landingZoneRegistrationName("string")
    .properties(LandingZoneRegistrationResourcePropertiesArgs.builder()
        .existingLandingZoneConfigurationId("string")
        .existingTopLevelMgId("string")
        .managedIdentity(ManagedIdentityPropertiesArgs.builder()
            .type("string")
            .userAssignedIdentityResourceId("string")
            .build())
        .build())
    .build());
Copy
landing_zone_registration_operation_resource = azure_native.sovereign.LandingZoneRegistrationOperation("landingZoneRegistrationOperationResource",
    landing_zone_account_name="string",
    resource_group_name="string",
    landing_zone_registration_name="string",
    properties={
        "existing_landing_zone_configuration_id": "string",
        "existing_top_level_mg_id": "string",
        "managed_identity": {
            "type": "string",
            "user_assigned_identity_resource_id": "string",
        },
    })
Copy
const landingZoneRegistrationOperationResource = new azure_native.sovereign.LandingZoneRegistrationOperation("landingZoneRegistrationOperationResource", {
    landingZoneAccountName: "string",
    resourceGroupName: "string",
    landingZoneRegistrationName: "string",
    properties: {
        existingLandingZoneConfigurationId: "string",
        existingTopLevelMgId: "string",
        managedIdentity: {
            type: "string",
            userAssignedIdentityResourceId: "string",
        },
    },
});
Copy
type: azure-native:sovereign:LandingZoneRegistrationOperation
properties:
    landingZoneAccountName: string
    landingZoneRegistrationName: string
    properties:
        existingLandingZoneConfigurationId: string
        existingTopLevelMgId: string
        managedIdentity:
            type: string
            userAssignedIdentityResourceId: string
    resourceGroupName: string
Copy

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

LandingZoneAccountName
This property is required.
Changes to this property will trigger replacement.
string
The landing zone account.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
LandingZoneRegistrationName Changes to this property will trigger replacement. string
The name of the landing zone registration resource.
Properties Pulumi.AzureNative.Sovereign.Inputs.LandingZoneRegistrationResourceProperties
The resource-specific properties for this resource.
LandingZoneAccountName
This property is required.
Changes to this property will trigger replacement.
string
The landing zone account.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
LandingZoneRegistrationName Changes to this property will trigger replacement. string
The name of the landing zone registration resource.
Properties LandingZoneRegistrationResourcePropertiesArgs
The resource-specific properties for this resource.
landingZoneAccountName
This property is required.
Changes to this property will trigger replacement.
String
The landing zone account.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
landingZoneRegistrationName Changes to this property will trigger replacement. String
The name of the landing zone registration resource.
properties LandingZoneRegistrationResourceProperties
The resource-specific properties for this resource.
landingZoneAccountName
This property is required.
Changes to this property will trigger replacement.
string
The landing zone account.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
landingZoneRegistrationName Changes to this property will trigger replacement. string
The name of the landing zone registration resource.
properties LandingZoneRegistrationResourceProperties
The resource-specific properties for this resource.
landing_zone_account_name
This property is required.
Changes to this property will trigger replacement.
str
The landing zone account.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
landing_zone_registration_name Changes to this property will trigger replacement. str
The name of the landing zone registration resource.
properties LandingZoneRegistrationResourcePropertiesArgs
The resource-specific properties for this resource.
landingZoneAccountName
This property is required.
Changes to this property will trigger replacement.
String
The landing zone account.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
landingZoneRegistrationName Changes to this property will trigger replacement. String
The name of the landing zone registration resource.
properties Property Map
The resource-specific properties for this resource.

Outputs

All input properties are implicitly available as output properties. Additionally, the LandingZoneRegistrationOperation 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 resource
SystemData Pulumi.AzureNative.Sovereign.Outputs.SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
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 resource
SystemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
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 resource
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
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 resource
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
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 resource
system_data SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type str
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
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 resource
systemData Property Map
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Supporting Types

LandingZoneRegistrationResourceProperties
, LandingZoneRegistrationResourcePropertiesArgs

ExistingLandingZoneConfigurationId This property is required. string
The resource id of the associated landing zone configuration.
ExistingTopLevelMgId This property is required. string
The resource id of the top level management group
ManagedIdentity Pulumi.AzureNative.Sovereign.Inputs.ManagedIdentityProperties
The managed identity to be assigned to this landing zone registration.
ExistingLandingZoneConfigurationId This property is required. string
The resource id of the associated landing zone configuration.
ExistingTopLevelMgId This property is required. string
The resource id of the top level management group
ManagedIdentity ManagedIdentityProperties
The managed identity to be assigned to this landing zone registration.
existingLandingZoneConfigurationId This property is required. String
The resource id of the associated landing zone configuration.
existingTopLevelMgId This property is required. String
The resource id of the top level management group
managedIdentity ManagedIdentityProperties
The managed identity to be assigned to this landing zone registration.
existingLandingZoneConfigurationId This property is required. string
The resource id of the associated landing zone configuration.
existingTopLevelMgId This property is required. string
The resource id of the top level management group
managedIdentity ManagedIdentityProperties
The managed identity to be assigned to this landing zone registration.
existing_landing_zone_configuration_id This property is required. str
The resource id of the associated landing zone configuration.
existing_top_level_mg_id This property is required. str
The resource id of the top level management group
managed_identity ManagedIdentityProperties
The managed identity to be assigned to this landing zone registration.
existingLandingZoneConfigurationId This property is required. String
The resource id of the associated landing zone configuration.
existingTopLevelMgId This property is required. String
The resource id of the top level management group
managedIdentity Property Map
The managed identity to be assigned to this landing zone registration.

LandingZoneRegistrationResourcePropertiesResponse
, LandingZoneRegistrationResourcePropertiesResponseArgs

ExistingLandingZoneConfigurationId This property is required. string
The resource id of the associated landing zone configuration.
ExistingTopLevelMgId This property is required. string
The resource id of the top level management group
ProvisioningState This property is required. string
The state that reflects the current stage in the creation, updating, or deletion process of the landing zone registration resource type.
ManagedIdentity Pulumi.AzureNative.Sovereign.Inputs.ManagedIdentityPropertiesResponse
The managed identity to be assigned to this landing zone registration.
ExistingLandingZoneConfigurationId This property is required. string
The resource id of the associated landing zone configuration.
ExistingTopLevelMgId This property is required. string
The resource id of the top level management group
ProvisioningState This property is required. string
The state that reflects the current stage in the creation, updating, or deletion process of the landing zone registration resource type.
ManagedIdentity ManagedIdentityPropertiesResponse
The managed identity to be assigned to this landing zone registration.
existingLandingZoneConfigurationId This property is required. String
The resource id of the associated landing zone configuration.
existingTopLevelMgId This property is required. String
The resource id of the top level management group
provisioningState This property is required. String
The state that reflects the current stage in the creation, updating, or deletion process of the landing zone registration resource type.
managedIdentity ManagedIdentityPropertiesResponse
The managed identity to be assigned to this landing zone registration.
existingLandingZoneConfigurationId This property is required. string
The resource id of the associated landing zone configuration.
existingTopLevelMgId This property is required. string
The resource id of the top level management group
provisioningState This property is required. string
The state that reflects the current stage in the creation, updating, or deletion process of the landing zone registration resource type.
managedIdentity ManagedIdentityPropertiesResponse
The managed identity to be assigned to this landing zone registration.
existing_landing_zone_configuration_id This property is required. str
The resource id of the associated landing zone configuration.
existing_top_level_mg_id This property is required. str
The resource id of the top level management group
provisioning_state This property is required. str
The state that reflects the current stage in the creation, updating, or deletion process of the landing zone registration resource type.
managed_identity ManagedIdentityPropertiesResponse
The managed identity to be assigned to this landing zone registration.
existingLandingZoneConfigurationId This property is required. String
The resource id of the associated landing zone configuration.
existingTopLevelMgId This property is required. String
The resource id of the top level management group
provisioningState This property is required. String
The state that reflects the current stage in the creation, updating, or deletion process of the landing zone registration resource type.
managedIdentity Property Map
The managed identity to be assigned to this landing zone registration.

ManagedIdentityProperties
, ManagedIdentityPropertiesArgs

Type This property is required. string | Pulumi.AzureNative.Sovereign.ManagedIdentityResourceType
The type of managed identity.
UserAssignedIdentityResourceId string
The resource id of the managed identity.
Type This property is required. string | ManagedIdentityResourceType
The type of managed identity.
UserAssignedIdentityResourceId string
The resource id of the managed identity.
type This property is required. String | ManagedIdentityResourceType
The type of managed identity.
userAssignedIdentityResourceId String
The resource id of the managed identity.
type This property is required. string | ManagedIdentityResourceType
The type of managed identity.
userAssignedIdentityResourceId string
The resource id of the managed identity.
type This property is required. str | ManagedIdentityResourceType
The type of managed identity.
user_assigned_identity_resource_id str
The resource id of the managed identity.
type This property is required. String | "SystemAssigned" | "UserAssigned"
The type of managed identity.
userAssignedIdentityResourceId String
The resource id of the managed identity.

ManagedIdentityPropertiesResponse
, ManagedIdentityPropertiesResponseArgs

Type This property is required. string
The type of managed identity.
UserAssignedIdentityResourceId string
The resource id of the managed identity.
Type This property is required. string
The type of managed identity.
UserAssignedIdentityResourceId string
The resource id of the managed identity.
type This property is required. String
The type of managed identity.
userAssignedIdentityResourceId String
The resource id of the managed identity.
type This property is required. string
The type of managed identity.
userAssignedIdentityResourceId string
The resource id of the managed identity.
type This property is required. str
The type of managed identity.
user_assigned_identity_resource_id str
The resource id of the managed identity.
type This property is required. String
The type of managed identity.
userAssignedIdentityResourceId String
The resource id of the managed identity.

ManagedIdentityResourceType
, ManagedIdentityResourceTypeArgs

SystemAssigned
SystemAssignedSystem assigned managed identity.
UserAssigned
UserAssignedUser assigned managed identity.
ManagedIdentityResourceTypeSystemAssigned
SystemAssignedSystem assigned managed identity.
ManagedIdentityResourceTypeUserAssigned
UserAssignedUser assigned managed identity.
SystemAssigned
SystemAssignedSystem assigned managed identity.
UserAssigned
UserAssignedUser assigned managed identity.
SystemAssigned
SystemAssignedSystem assigned managed identity.
UserAssigned
UserAssignedUser assigned managed identity.
SYSTEM_ASSIGNED
SystemAssignedSystem assigned managed identity.
USER_ASSIGNED
UserAssignedUser assigned managed identity.
"SystemAssigned"
SystemAssignedSystem assigned managed identity.
"UserAssigned"
UserAssignedUser assigned managed identity.

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:sovereign:LandingZoneRegistrationOperation lzr-RemApiExample /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sovereign/landingZoneAccounts/{landingZoneAccountName}/landingZoneRegistrations/{landingZoneRegistrationName} 
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