azure-native.sovereign.LandingZoneRegistrationOperation
Explore with Pulumi AI
The Landing zone registration resource type. Azure REST 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 = "ExampleLZA",
        LandingZoneRegistrationName = "ExampleLZR",
        Properties = new AzureNative.Sovereign.Inputs.LandingZoneRegistrationResourcePropertiesArgs
        {
            ExistingLandingZoneConfigurationId = "/subscriptions/00000000-0000-0000-0000-000000000001/resourceGroups/TestResourceGroup/providers/Microsoft.Sovereign/landingZoneAccounts/ExampleLZA/landingZoneConfigurations/ExampleLZC",
            ExistingTopLevelMgId = "/providers/Microsoft.Management/managementGroups/mcfs",
            ManagedIdentity = new AzureNative.Sovereign.Inputs.ManagedIdentityPropertiesArgs
            {
                Type = AzureNative.Sovereign.ManagedIdentityResourceType.SystemAssigned,
            },
        },
        ResourceGroupName = "ExampleResourceGroup",
    });
});
package main
import (
	sovereign "github.com/pulumi/pulumi-azure-native-sdk/sovereign/v2"
	"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("ExampleLZA"),
			LandingZoneRegistrationName: pulumi.String("ExampleLZR"),
			Properties: &sovereign.LandingZoneRegistrationResourcePropertiesArgs{
				ExistingLandingZoneConfigurationId: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000001/resourceGroups/TestResourceGroup/providers/Microsoft.Sovereign/landingZoneAccounts/ExampleLZA/landingZoneConfigurations/ExampleLZC"),
				ExistingTopLevelMgId:               pulumi.String("/providers/Microsoft.Management/managementGroups/mcfs"),
				ManagedIdentity: &sovereign.ManagedIdentityPropertiesArgs{
					Type: pulumi.String(sovereign.ManagedIdentityResourceTypeSystemAssigned),
				},
			},
			ResourceGroupName: pulumi.String("ExampleResourceGroup"),
		})
		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.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("ExampleLZA")
            .landingZoneRegistrationName("ExampleLZR")
            .properties(LandingZoneRegistrationResourcePropertiesArgs.builder()
                .existingLandingZoneConfigurationId("/subscriptions/00000000-0000-0000-0000-000000000001/resourceGroups/TestResourceGroup/providers/Microsoft.Sovereign/landingZoneAccounts/ExampleLZA/landingZoneConfigurations/ExampleLZC")
                .existingTopLevelMgId("/providers/Microsoft.Management/managementGroups/mcfs")
                .managedIdentity(ManagedIdentityPropertiesArgs.builder()
                    .type("SystemAssigned")
                    .build())
                .build())
            .resourceGroupName("ExampleResourceGroup")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const landingZoneRegistrationOperation = new azure_native.sovereign.LandingZoneRegistrationOperation("landingZoneRegistrationOperation", {
    landingZoneAccountName: "ExampleLZA",
    landingZoneRegistrationName: "ExampleLZR",
    properties: {
        existingLandingZoneConfigurationId: "/subscriptions/00000000-0000-0000-0000-000000000001/resourceGroups/TestResourceGroup/providers/Microsoft.Sovereign/landingZoneAccounts/ExampleLZA/landingZoneConfigurations/ExampleLZC",
        existingTopLevelMgId: "/providers/Microsoft.Management/managementGroups/mcfs",
        managedIdentity: {
            type: azure_native.sovereign.ManagedIdentityResourceType.SystemAssigned,
        },
    },
    resourceGroupName: "ExampleResourceGroup",
});
import pulumi
import pulumi_azure_native as azure_native
landing_zone_registration_operation = azure_native.sovereign.LandingZoneRegistrationOperation("landingZoneRegistrationOperation",
    landing_zone_account_name="ExampleLZA",
    landing_zone_registration_name="ExampleLZR",
    properties={
        "existing_landing_zone_configuration_id": "/subscriptions/00000000-0000-0000-0000-000000000001/resourceGroups/TestResourceGroup/providers/Microsoft.Sovereign/landingZoneAccounts/ExampleLZA/landingZoneConfigurations/ExampleLZC",
        "existing_top_level_mg_id": "/providers/Microsoft.Management/managementGroups/mcfs",
        "managed_identity": {
            "type": azure_native.sovereign.ManagedIdentityResourceType.SYSTEM_ASSIGNED,
        },
    },
    resource_group_name="ExampleResourceGroup")
resources:
  landingZoneRegistrationOperation:
    type: azure-native:sovereign:LandingZoneRegistrationOperation
    properties:
      landingZoneAccountName: ExampleLZA
      landingZoneRegistrationName: ExampleLZR
      properties:
        existingLandingZoneConfigurationId: /subscriptions/00000000-0000-0000-0000-000000000001/resourceGroups/TestResourceGroup/providers/Microsoft.Sovereign/landingZoneAccounts/ExampleLZA/landingZoneConfigurations/ExampleLZC
        existingTopLevelMgId: /providers/Microsoft.Management/managementGroups/mcfs
        managedIdentity:
          type: SystemAssigned
      resourceGroupName: ExampleResourceGroup
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 string
- The unique name of the resource.
- args LandingZoneRegistrationOperationArgs
- 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 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 string
- The unique name of the resource.
- args LandingZoneRegistrationOperationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args LandingZoneRegistrationOperationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
        },
    },
});
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"),
		},
	},
})
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());
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",
        },
    })
const landingZoneRegistrationOperationResource = new azure_native.sovereign.LandingZoneRegistrationOperation("landingZoneRegistrationOperationResource", {
    landingZoneAccountName: "string",
    resourceGroupName: "string",
    landingZoneRegistrationName: "string",
    properties: {
        existingLandingZoneConfigurationId: "string",
        existingTopLevelMgId: "string",
        managedIdentity: {
            type: "string",
            userAssignedIdentityResourceId: "string",
        },
    },
});
type: azure-native:sovereign:LandingZoneRegistrationOperation
properties:
    landingZoneAccountName: string
    landingZoneRegistrationName: string
    properties:
        existingLandingZoneConfigurationId: string
        existingTopLevelMgId: string
        managedIdentity:
            type: string
            userAssignedIdentityResourceId: string
    resourceGroupName: string
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:
- LandingZone stringAccount Name 
- The landing zone account.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- LandingZone stringRegistration Name 
- The name of the landing zone registration resource.
- Properties
Pulumi.Azure Native. Sovereign. Inputs. Landing Zone Registration Resource Properties 
- The resource-specific properties for this resource.
- LandingZone stringAccount Name 
- The landing zone account.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- LandingZone stringRegistration Name 
- The name of the landing zone registration resource.
- Properties
LandingZone Registration Resource Properties Args 
- The resource-specific properties for this resource.
- landingZone StringAccount Name 
- The landing zone account.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- landingZone StringRegistration Name 
- The name of the landing zone registration resource.
- properties
LandingZone Registration Resource Properties 
- The resource-specific properties for this resource.
- landingZone stringAccount Name 
- The landing zone account.
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- landingZone stringRegistration Name 
- The name of the landing zone registration resource.
- properties
LandingZone Registration Resource Properties 
- The resource-specific properties for this resource.
- landing_zone_ straccount_ name 
- The landing zone account.
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- landing_zone_ strregistration_ name 
- The name of the landing zone registration resource.
- properties
LandingZone Registration Resource Properties Args 
- The resource-specific properties for this resource.
- landingZone StringAccount Name 
- The landing zone account.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- landingZone StringRegistration Name 
- 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:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- SystemData Pulumi.Azure Native. Sovereign. Outputs. System Data Response 
- 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"
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- SystemData SystemData Response 
- 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"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- systemData SystemData Response 
- 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"
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- systemData SystemData Response 
- 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"
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- system_data SystemData Response 
- 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"
- 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          
- ExistingLanding stringZone Configuration Id 
- The resource id of the associated landing zone configuration.
- ExistingTop stringLevel Mg Id 
- The resource id of the top level management group
- ManagedIdentity Pulumi.Azure Native. Sovereign. Inputs. Managed Identity Properties 
- The managed identity to be assigned to this landing zone registration.
- ExistingLanding stringZone Configuration Id 
- The resource id of the associated landing zone configuration.
- ExistingTop stringLevel Mg Id 
- The resource id of the top level management group
- ManagedIdentity ManagedIdentity Properties 
- The managed identity to be assigned to this landing zone registration.
- existingLanding StringZone Configuration Id 
- The resource id of the associated landing zone configuration.
- existingTop StringLevel Mg Id 
- The resource id of the top level management group
- managedIdentity ManagedIdentity Properties 
- The managed identity to be assigned to this landing zone registration.
- existingLanding stringZone Configuration Id 
- The resource id of the associated landing zone configuration.
- existingTop stringLevel Mg Id 
- The resource id of the top level management group
- managedIdentity ManagedIdentity Properties 
- The managed identity to be assigned to this landing zone registration.
- existing_landing_ strzone_ configuration_ id 
- The resource id of the associated landing zone configuration.
- existing_top_ strlevel_ mg_ id 
- The resource id of the top level management group
- managed_identity ManagedIdentity Properties 
- The managed identity to be assigned to this landing zone registration.
- existingLanding StringZone Configuration Id 
- The resource id of the associated landing zone configuration.
- existingTop StringLevel Mg Id 
- 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            
- ExistingLanding stringZone Configuration Id 
- The resource id of the associated landing zone configuration.
- ExistingTop stringLevel Mg Id 
- The resource id of the top level management group
- ManagedIdentity Pulumi.Azure Native. Sovereign. Inputs. Managed Identity Properties Response 
- The managed identity to be assigned to this landing zone registration.
- ProvisioningState string
- The state that reflects the current stage in the creation, updating, or deletion process of the landing zone registration resource type.
- ExistingLanding stringZone Configuration Id 
- The resource id of the associated landing zone configuration.
- ExistingTop stringLevel Mg Id 
- The resource id of the top level management group
- ManagedIdentity ManagedIdentity Properties Response 
- The managed identity to be assigned to this landing zone registration.
- ProvisioningState string
- The state that reflects the current stage in the creation, updating, or deletion process of the landing zone registration resource type.
- existingLanding StringZone Configuration Id 
- The resource id of the associated landing zone configuration.
- existingTop StringLevel Mg Id 
- The resource id of the top level management group
- managedIdentity ManagedIdentity Properties Response 
- The managed identity to be assigned to this landing zone registration.
- provisioningState String
- The state that reflects the current stage in the creation, updating, or deletion process of the landing zone registration resource type.
- existingLanding stringZone Configuration Id 
- The resource id of the associated landing zone configuration.
- existingTop stringLevel Mg Id 
- The resource id of the top level management group
- managedIdentity ManagedIdentity Properties Response 
- The managed identity to be assigned to this landing zone registration.
- provisioningState string
- The state that reflects the current stage in the creation, updating, or deletion process of the landing zone registration resource type.
- existing_landing_ strzone_ configuration_ id 
- The resource id of the associated landing zone configuration.
- existing_top_ strlevel_ mg_ id 
- The resource id of the top level management group
- managed_identity ManagedIdentity Properties Response 
- The managed identity to be assigned to this landing zone registration.
- provisioning_state str
- The state that reflects the current stage in the creation, updating, or deletion process of the landing zone registration resource type.
- existingLanding StringZone Configuration Id 
- The resource id of the associated landing zone configuration.
- existingTop StringLevel Mg Id 
- The resource id of the top level management group
- managedIdentity Property Map
- The managed identity to be assigned to this landing zone registration.
- provisioningState String
- The state that reflects the current stage in the creation, updating, or deletion process of the landing zone registration resource type.
ManagedIdentityProperties, ManagedIdentityPropertiesArgs      
- Type
string | Pulumi.Azure Native. Sovereign. Managed Identity Resource Type 
- The type of managed identity.
- UserAssigned stringIdentity Resource Id 
- The resource id of the managed identity.
- Type
string | ManagedIdentity Resource Type 
- The type of managed identity.
- UserAssigned stringIdentity Resource Id 
- The resource id of the managed identity.
- type
String | ManagedIdentity Resource Type 
- The type of managed identity.
- userAssigned StringIdentity Resource Id 
- The resource id of the managed identity.
- type
string | ManagedIdentity Resource Type 
- The type of managed identity.
- userAssigned stringIdentity Resource Id 
- The resource id of the managed identity.
- type
str | ManagedIdentity Resource Type 
- The type of managed identity.
- user_assigned_ stridentity_ resource_ id 
- The resource id of the managed identity.
- type
String | "SystemAssigned" | "User Assigned" 
- The type of managed identity.
- userAssigned StringIdentity Resource Id 
- The resource id of the managed identity.
ManagedIdentityPropertiesResponse, ManagedIdentityPropertiesResponseArgs        
- Type string
- The type of managed identity.
- UserAssigned stringIdentity Resource Id 
- The resource id of the managed identity.
- Type string
- The type of managed identity.
- UserAssigned stringIdentity Resource Id 
- The resource id of the managed identity.
- type String
- The type of managed identity.
- userAssigned StringIdentity Resource Id 
- The resource id of the managed identity.
- type string
- The type of managed identity.
- userAssigned stringIdentity Resource Id 
- The resource id of the managed identity.
- type str
- The type of managed identity.
- user_assigned_ stridentity_ resource_ id 
- The resource id of the managed identity.
- type String
- The type of managed identity.
- userAssigned StringIdentity Resource Id 
- The resource id of the managed identity.
ManagedIdentityResourceType, ManagedIdentityResourceTypeArgs        
- SystemAssigned 
- SystemAssignedSystem assigned managed identity.
- UserAssigned 
- UserAssignedUser assigned managed identity.
- ManagedIdentity Resource Type System Assigned 
- SystemAssignedSystem assigned managed identity.
- ManagedIdentity Resource Type User Assigned 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified 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.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified 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:sovereign:LandingZoneRegistrationOperation ExampleLZR /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sovereign/landingZoneAccounts/{landingZoneAccountName}/landingZoneRegistrations/{landingZoneRegistrationName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0