azure-native.sovereign.LandingZoneRegistrationOperation
Explore with Pulumi AI
The Landing zone registration resource type.
Uses 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 = "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",
});
});
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("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
})
}
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());
}
}
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",
});
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")
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
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:
- Landing
Zone stringAccount Name - The landing zone account.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Landing
Zone 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.
- Landing
Zone stringAccount Name - The landing zone account.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Landing
Zone stringRegistration Name - The name of the landing zone registration resource.
- Properties
Landing
Zone Registration Resource Properties Args - The resource-specific properties for this resource.
- landing
Zone StringAccount Name - The landing zone account.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- landing
Zone StringRegistration Name - The name of the landing zone registration resource.
- properties
Landing
Zone Registration Resource Properties - The resource-specific properties for this resource.
- landing
Zone stringAccount Name - The landing zone account.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- landing
Zone stringRegistration Name - The name of the landing zone registration resource.
- properties
Landing
Zone 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
Landing
Zone Registration Resource Properties Args - The resource-specific properties for this resource.
- landing
Zone StringAccount Name - The landing zone account.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- landing
Zone 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
- System
Data 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
- System
Data 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
- system
Data 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
- system
Data 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
- system
Data 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
- Existing
Landing stringZone Configuration Id - The resource id of the associated landing zone configuration.
- Existing
Top stringLevel Mg Id - The resource id of the top level management group
- Managed
Identity Pulumi.Azure Native. Sovereign. Inputs. Managed Identity Properties - The managed identity to be assigned to this landing zone registration.
- Existing
Landing stringZone Configuration Id - The resource id of the associated landing zone configuration.
- Existing
Top stringLevel 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.
- existing
Landing StringZone Configuration Id - The resource id of the associated landing zone configuration.
- existing
Top StringLevel 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.
- existing
Landing stringZone Configuration Id - The resource id of the associated landing zone configuration.
- existing
Top stringLevel 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.
- 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.
- existing
Landing StringZone Configuration Id - The resource id of the associated landing zone configuration.
- existing
Top StringLevel Mg Id - The resource id of the top level management group
- managed
Identity Property Map - The managed identity to be assigned to this landing zone registration.
LandingZoneRegistrationResourcePropertiesResponse, LandingZoneRegistrationResourcePropertiesResponseArgs
- Existing
Landing stringZone Configuration Id - The resource id of the associated landing zone configuration.
- Existing
Top stringLevel Mg Id - The resource id of the top level management group
- Provisioning
State string - The state that reflects the current stage in the creation, updating, or deletion process of the landing zone registration resource type.
- Managed
Identity Pulumi.Azure Native. Sovereign. Inputs. Managed Identity Properties Response - The managed identity to be assigned to this landing zone registration.
- Existing
Landing stringZone Configuration Id - The resource id of the associated landing zone configuration.
- Existing
Top stringLevel Mg Id - The resource id of the top level management group
- Provisioning
State string - The state that reflects the current stage in the creation, updating, or deletion process of the landing zone registration resource type.
- Managed
Identity ManagedIdentity Properties Response - The managed identity to be assigned to this landing zone registration.
- existing
Landing StringZone Configuration Id - The resource id of the associated landing zone configuration.
- existing
Top StringLevel Mg Id - The resource id of the top level management group
- provisioning
State String - The state that reflects the current stage in the creation, updating, or deletion process of the landing zone registration resource type.
- managed
Identity ManagedIdentity Properties Response - The managed identity to be assigned to this landing zone registration.
- existing
Landing stringZone Configuration Id - The resource id of the associated landing zone configuration.
- existing
Top stringLevel Mg Id - The resource id of the top level management group
- provisioning
State string - The state that reflects the current stage in the creation, updating, or deletion process of the landing zone registration resource type.
- managed
Identity ManagedIdentity Properties Response - 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
- provisioning_
state str - The state that reflects the current stage in the creation, updating, or deletion process of the landing zone registration resource type.
- managed_
identity ManagedIdentity Properties Response - The managed identity to be assigned to this landing zone registration.
- existing
Landing StringZone Configuration Id - The resource id of the associated landing zone configuration.
- existing
Top StringLevel Mg Id - The resource id of the top level management group
- provisioning
State String - The state that reflects the current stage in the creation, updating, or deletion process of the landing zone registration resource type.
- managed
Identity Property Map - The managed identity to be assigned to this landing zone registration.
ManagedIdentityProperties, ManagedIdentityPropertiesArgs
- Type
string | Pulumi.
Azure Native. Sovereign. Managed Identity Resource Type - The type of managed identity.
- User
Assigned stringIdentity Resource Id - The resource id of the managed identity.
- Type
string | Managed
Identity Resource Type - The type of managed identity.
- User
Assigned stringIdentity Resource Id - The resource id of the managed identity.
- type
String | Managed
Identity Resource Type - The type of managed identity.
- user
Assigned StringIdentity Resource Id - The resource id of the managed identity.
- type
string | Managed
Identity Resource Type - The type of managed identity.
- user
Assigned stringIdentity Resource Id - The resource id of the managed identity.
- type
str | Managed
Identity Resource Type - The type of managed identity.
- user_
assigned_ stridentity_ resource_ id - The resource id of the managed identity.
- type
String | "System
Assigned" | "User Assigned" - The type of managed identity.
- user
Assigned StringIdentity Resource Id - The resource id of the managed identity.
ManagedIdentityPropertiesResponse, ManagedIdentityPropertiesResponseArgs
- Type string
- The type of managed identity.
- User
Assigned stringIdentity Resource Id - The resource id of the managed identity.
- Type string
- The type of managed identity.
- User
Assigned stringIdentity Resource Id - The resource id of the managed identity.
- type String
- The type of managed identity.
- user
Assigned StringIdentity Resource Id - The resource id of the managed identity.
- type string
- The type of managed identity.
- user
Assigned 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.
- user
Assigned StringIdentity Resource Id - The resource id of the managed identity.
ManagedIdentityResourceType, ManagedIdentityResourceTypeArgs
- System
Assigned - SystemAssignedSystem assigned managed identity.
- User
Assigned - UserAssignedUser assigned managed identity.
- Managed
Identity Resource Type System Assigned - SystemAssignedSystem assigned managed identity.
- Managed
Identity Resource Type User Assigned - UserAssignedUser assigned managed identity.
- System
Assigned - SystemAssignedSystem assigned managed identity.
- User
Assigned - UserAssignedUser assigned managed identity.
- System
Assigned - SystemAssignedSystem assigned managed identity.
- User
Assigned - UserAssignedUser assigned managed identity.
- SYSTEM_ASSIGNED
- SystemAssignedSystem assigned managed identity.
- USER_ASSIGNED
- UserAssignedUser assigned managed identity.
- "System
Assigned" - SystemAssignedSystem assigned managed identity.
- "User
Assigned" - UserAssignedUser assigned managed identity.
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:sovereign:LandingZoneRegistrationOperation lzr-RemApiExample /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