azure-native.recoveryservices.ReplicationMigrationItem
Explore with Pulumi AI
Migration item. Azure REST API version: 2023-04-01. Prior API version in Azure Native 1.x: 2018-07-10.
Other available API versions: 2023-06-01, 2023-08-01, 2024-01-01, 2024-02-01, 2024-04-01.
Example Usage
Enables migration.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var replicationMigrationItem = new AzureNative.RecoveryServices.ReplicationMigrationItem("replicationMigrationItem", new()
{
FabricName = "vmwarefabric1",
MigrationItemName = "virtualmachine1",
Properties = new AzureNative.RecoveryServices.Inputs.EnableMigrationInputPropertiesArgs
{
PolicyId = "/Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1/providers/Microsoft.RecoveryServices/vaults/migrationvault/replicationPolicies/vmwarepolicy1",
ProviderSpecificDetails = new AzureNative.RecoveryServices.Inputs.VMwareCbtEnableMigrationInputArgs
{
DataMoverRunAsAccountId = "/Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1/providers/Microsoft.OffAzure/VMwareSites/vmwaresite1/runasaccounts/dataMoverRunAsAccount1",
DisksToInclude = new[]
{
new AzureNative.RecoveryServices.Inputs.VMwareCbtDiskInputArgs
{
DiskId = "disk1",
IsOSDisk = "true",
LogStorageAccountId = "/Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1/providers/Microsoft.Storage/storageAccounts/logStorageAccount1",
LogStorageAccountSasSecretName = "logStorageSas",
},
},
InstanceType = "VMwareCbt",
SnapshotRunAsAccountId = "/Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1/providers/Microsoft.OffAzure/VMwareSites/vmwaresite1/runasaccounts/snapshotRunAsAccount1",
TargetNetworkId = "/Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1/providers/Microsoft.Network/virtualNetworks/virtualNetwork1",
TargetResourceGroupId = "/Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1",
VmwareMachineId = "/Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1/providers/Microsoft.OffAzure/VMwareSites/vmwaresite1/machines/virtualmachine1",
},
},
ProtectionContainerName = "vmwareContainer1",
ResourceGroupName = "resourcegroup1",
ResourceName = "migrationvault",
});
});
package main
import (
recoveryservices "github.com/pulumi/pulumi-azure-native-sdk/recoveryservices/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := recoveryservices.NewReplicationMigrationItem(ctx, "replicationMigrationItem", &recoveryservices.ReplicationMigrationItemArgs{
FabricName: pulumi.String("vmwarefabric1"),
MigrationItemName: pulumi.String("virtualmachine1"),
Properties: &recoveryservices.EnableMigrationInputPropertiesArgs{
PolicyId: pulumi.String("/Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1/providers/Microsoft.RecoveryServices/vaults/migrationvault/replicationPolicies/vmwarepolicy1"),
ProviderSpecificDetails: interface{}{
DataMoverRunAsAccountId: pulumi.String("/Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1/providers/Microsoft.OffAzure/VMwareSites/vmwaresite1/runasaccounts/dataMoverRunAsAccount1"),
DisksToInclude: recoveryservices.VMwareCbtDiskInputArray{
&recoveryservices.VMwareCbtDiskInputArgs{
DiskId: pulumi.String("disk1"),
IsOSDisk: pulumi.String("true"),
LogStorageAccountId: pulumi.String("/Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1/providers/Microsoft.Storage/storageAccounts/logStorageAccount1"),
LogStorageAccountSasSecretName: pulumi.String("logStorageSas"),
},
},
InstanceType: pulumi.String("VMwareCbt"),
SnapshotRunAsAccountId: pulumi.String("/Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1/providers/Microsoft.OffAzure/VMwareSites/vmwaresite1/runasaccounts/snapshotRunAsAccount1"),
TargetNetworkId: pulumi.String("/Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1/providers/Microsoft.Network/virtualNetworks/virtualNetwork1"),
TargetResourceGroupId: pulumi.String("/Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1"),
VmwareMachineId: pulumi.String("/Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1/providers/Microsoft.OffAzure/VMwareSites/vmwaresite1/machines/virtualmachine1"),
},
},
ProtectionContainerName: pulumi.String("vmwareContainer1"),
ResourceGroupName: pulumi.String("resourcegroup1"),
ResourceName: pulumi.String("migrationvault"),
})
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.recoveryservices.ReplicationMigrationItem;
import com.pulumi.azurenative.recoveryservices.ReplicationMigrationItemArgs;
import com.pulumi.azurenative.recoveryservices.inputs.EnableMigrationInputPropertiesArgs;
import com.pulumi.azurenative.recoveryservices.inputs.VMwareCbtEnableMigrationInputArgs;
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 replicationMigrationItem = new ReplicationMigrationItem("replicationMigrationItem", ReplicationMigrationItemArgs.builder()
.fabricName("vmwarefabric1")
.migrationItemName("virtualmachine1")
.properties(EnableMigrationInputPropertiesArgs.builder()
.policyId("/Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1/providers/Microsoft.RecoveryServices/vaults/migrationvault/replicationPolicies/vmwarepolicy1")
.providerSpecificDetails(VMwareCbtEnableMigrationInputArgs.builder()
.dataMoverRunAsAccountId("/Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1/providers/Microsoft.OffAzure/VMwareSites/vmwaresite1/runasaccounts/dataMoverRunAsAccount1")
.disksToInclude(VMwareCbtDiskInputArgs.builder()
.diskId("disk1")
.isOSDisk("true")
.logStorageAccountId("/Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1/providers/Microsoft.Storage/storageAccounts/logStorageAccount1")
.logStorageAccountSasSecretName("logStorageSas")
.build())
.instanceType("VMwareCbt")
.snapshotRunAsAccountId("/Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1/providers/Microsoft.OffAzure/VMwareSites/vmwaresite1/runasaccounts/snapshotRunAsAccount1")
.targetNetworkId("/Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1/providers/Microsoft.Network/virtualNetworks/virtualNetwork1")
.targetResourceGroupId("/Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1")
.vmwareMachineId("/Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1/providers/Microsoft.OffAzure/VMwareSites/vmwaresite1/machines/virtualmachine1")
.build())
.build())
.protectionContainerName("vmwareContainer1")
.resourceGroupName("resourcegroup1")
.resourceName("migrationvault")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
replication_migration_item = azure_native.recoveryservices.ReplicationMigrationItem("replicationMigrationItem",
fabric_name="vmwarefabric1",
migration_item_name="virtualmachine1",
properties=azure_native.recoveryservices.EnableMigrationInputPropertiesArgs(
policy_id="/Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1/providers/Microsoft.RecoveryServices/vaults/migrationvault/replicationPolicies/vmwarepolicy1",
provider_specific_details=azure_native.recoveryservices.VMwareCbtEnableMigrationInputArgs(
data_mover_run_as_account_id="/Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1/providers/Microsoft.OffAzure/VMwareSites/vmwaresite1/runasaccounts/dataMoverRunAsAccount1",
disks_to_include=[azure_native.recoveryservices.VMwareCbtDiskInputArgs(
disk_id="disk1",
is_os_disk="true",
log_storage_account_id="/Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1/providers/Microsoft.Storage/storageAccounts/logStorageAccount1",
log_storage_account_sas_secret_name="logStorageSas",
)],
instance_type="VMwareCbt",
snapshot_run_as_account_id="/Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1/providers/Microsoft.OffAzure/VMwareSites/vmwaresite1/runasaccounts/snapshotRunAsAccount1",
target_network_id="/Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1/providers/Microsoft.Network/virtualNetworks/virtualNetwork1",
target_resource_group_id="/Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1",
vmware_machine_id="/Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1/providers/Microsoft.OffAzure/VMwareSites/vmwaresite1/machines/virtualmachine1",
),
),
protection_container_name="vmwareContainer1",
resource_group_name="resourcegroup1",
resource_name_="migrationvault")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const replicationMigrationItem = new azure_native.recoveryservices.ReplicationMigrationItem("replicationMigrationItem", {
fabricName: "vmwarefabric1",
migrationItemName: "virtualmachine1",
properties: {
policyId: "/Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1/providers/Microsoft.RecoveryServices/vaults/migrationvault/replicationPolicies/vmwarepolicy1",
providerSpecificDetails: {
dataMoverRunAsAccountId: "/Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1/providers/Microsoft.OffAzure/VMwareSites/vmwaresite1/runasaccounts/dataMoverRunAsAccount1",
disksToInclude: [{
diskId: "disk1",
isOSDisk: "true",
logStorageAccountId: "/Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1/providers/Microsoft.Storage/storageAccounts/logStorageAccount1",
logStorageAccountSasSecretName: "logStorageSas",
}],
instanceType: "VMwareCbt",
snapshotRunAsAccountId: "/Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1/providers/Microsoft.OffAzure/VMwareSites/vmwaresite1/runasaccounts/snapshotRunAsAccount1",
targetNetworkId: "/Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1/providers/Microsoft.Network/virtualNetworks/virtualNetwork1",
targetResourceGroupId: "/Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1",
vmwareMachineId: "/Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1/providers/Microsoft.OffAzure/VMwareSites/vmwaresite1/machines/virtualmachine1",
},
},
protectionContainerName: "vmwareContainer1",
resourceGroupName: "resourcegroup1",
resourceName: "migrationvault",
});
resources:
replicationMigrationItem:
type: azure-native:recoveryservices:ReplicationMigrationItem
properties:
fabricName: vmwarefabric1
migrationItemName: virtualmachine1
properties:
policyId: /Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1/providers/Microsoft.RecoveryServices/vaults/migrationvault/replicationPolicies/vmwarepolicy1
providerSpecificDetails:
dataMoverRunAsAccountId: /Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1/providers/Microsoft.OffAzure/VMwareSites/vmwaresite1/runasaccounts/dataMoverRunAsAccount1
disksToInclude:
- diskId: disk1
isOSDisk: 'true'
logStorageAccountId: /Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1/providers/Microsoft.Storage/storageAccounts/logStorageAccount1
logStorageAccountSasSecretName: logStorageSas
instanceType: VMwareCbt
snapshotRunAsAccountId: /Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1/providers/Microsoft.OffAzure/VMwareSites/vmwaresite1/runasaccounts/snapshotRunAsAccount1
targetNetworkId: /Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1/providers/Microsoft.Network/virtualNetworks/virtualNetwork1
targetResourceGroupId: /Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1
vmwareMachineId: /Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1/providers/Microsoft.OffAzure/VMwareSites/vmwaresite1/machines/virtualmachine1
protectionContainerName: vmwareContainer1
resourceGroupName: resourcegroup1
resourceName: migrationvault
Create ReplicationMigrationItem Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ReplicationMigrationItem(name: string, args: ReplicationMigrationItemArgs, opts?: CustomResourceOptions);
@overload
def ReplicationMigrationItem(resource_name: str,
args: ReplicationMigrationItemArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ReplicationMigrationItem(resource_name: str,
opts: Optional[ResourceOptions] = None,
fabric_name: Optional[str] = None,
properties: Optional[EnableMigrationInputPropertiesArgs] = None,
protection_container_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
resource_name_: Optional[str] = None,
migration_item_name: Optional[str] = None)
func NewReplicationMigrationItem(ctx *Context, name string, args ReplicationMigrationItemArgs, opts ...ResourceOption) (*ReplicationMigrationItem, error)
public ReplicationMigrationItem(string name, ReplicationMigrationItemArgs args, CustomResourceOptions? opts = null)
public ReplicationMigrationItem(String name, ReplicationMigrationItemArgs args)
public ReplicationMigrationItem(String name, ReplicationMigrationItemArgs args, CustomResourceOptions options)
type: azure-native:recoveryservices:ReplicationMigrationItem
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 ReplicationMigrationItemArgs
- 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 ReplicationMigrationItemArgs
- 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 ReplicationMigrationItemArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ReplicationMigrationItemArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ReplicationMigrationItemArgs
- 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 replicationMigrationItemResource = new AzureNative.RecoveryServices.ReplicationMigrationItem("replicationMigrationItemResource", new()
{
FabricName = "string",
Properties = new AzureNative.RecoveryServices.Inputs.EnableMigrationInputPropertiesArgs
{
PolicyId = "string",
ProviderSpecificDetails = new AzureNative.RecoveryServices.Inputs.VMwareCbtEnableMigrationInputArgs
{
SnapshotRunAsAccountId = "string",
DataMoverRunAsAccountId = "string",
DisksToInclude = new[]
{
new AzureNative.RecoveryServices.Inputs.VMwareCbtDiskInputArgs
{
DiskId = "string",
IsOSDisk = "string",
LogStorageAccountId = "string",
LogStorageAccountSasSecretName = "string",
DiskEncryptionSetId = "string",
DiskType = "string",
},
},
InstanceType = "VMwareCbt",
VmwareMachineId = "string",
TargetResourceGroupId = "string",
TargetNetworkId = "string",
TargetBootDiagnosticsStorageAccountId = "string",
TargetProximityPlacementGroupId = "string",
SqlServerLicenseType = "string",
TargetAvailabilitySetId = "string",
TargetAvailabilityZone = "string",
ConfidentialVmKeyVaultId = "string",
TargetDiskTags =
{
{ "string", "string" },
},
PerformSqlBulkRegistration = "string",
TargetNicTags =
{
{ "string", "string" },
},
SeedDiskTags =
{
{ "string", "string" },
},
PerformAutoResync = "string",
TargetSubnetName = "string",
TargetVmName = "string",
TargetVmSecurityProfile = new AzureNative.RecoveryServices.Inputs.VMwareCbtSecurityProfilePropertiesArgs
{
IsTargetVmConfidentialEncryptionEnabled = "string",
IsTargetVmIntegrityMonitoringEnabled = "string",
IsTargetVmSecureBootEnabled = "string",
IsTargetVmTpmEnabled = "string",
TargetVmSecurityType = "string",
},
TargetVmSize = "string",
TargetVmTags =
{
{ "string", "string" },
},
TestNetworkId = "string",
TestSubnetName = "string",
LicenseType = "string",
},
},
ProtectionContainerName = "string",
ResourceGroupName = "string",
ResourceName = "string",
MigrationItemName = "string",
});
example, err := recoveryservices.NewReplicationMigrationItem(ctx, "replicationMigrationItemResource", &recoveryservices.ReplicationMigrationItemArgs{
FabricName: pulumi.String("string"),
Properties: &recoveryservices.EnableMigrationInputPropertiesArgs{
PolicyId: pulumi.String("string"),
ProviderSpecificDetails: interface{}{
SnapshotRunAsAccountId: pulumi.String("string"),
DataMoverRunAsAccountId: pulumi.String("string"),
DisksToInclude: recoveryservices.VMwareCbtDiskInputArray{
&recoveryservices.VMwareCbtDiskInputArgs{
DiskId: pulumi.String("string"),
IsOSDisk: pulumi.String("string"),
LogStorageAccountId: pulumi.String("string"),
LogStorageAccountSasSecretName: pulumi.String("string"),
DiskEncryptionSetId: pulumi.String("string"),
DiskType: pulumi.String("string"),
},
},
InstanceType: pulumi.String("VMwareCbt"),
VmwareMachineId: pulumi.String("string"),
TargetResourceGroupId: pulumi.String("string"),
TargetNetworkId: pulumi.String("string"),
TargetBootDiagnosticsStorageAccountId: pulumi.String("string"),
TargetProximityPlacementGroupId: pulumi.String("string"),
SqlServerLicenseType: pulumi.String("string"),
TargetAvailabilitySetId: pulumi.String("string"),
TargetAvailabilityZone: pulumi.String("string"),
ConfidentialVmKeyVaultId: pulumi.String("string"),
TargetDiskTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
PerformSqlBulkRegistration: pulumi.String("string"),
TargetNicTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
SeedDiskTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
PerformAutoResync: pulumi.String("string"),
TargetSubnetName: pulumi.String("string"),
TargetVmName: pulumi.String("string"),
TargetVmSecurityProfile: &recoveryservices.VMwareCbtSecurityProfilePropertiesArgs{
IsTargetVmConfidentialEncryptionEnabled: pulumi.String("string"),
IsTargetVmIntegrityMonitoringEnabled: pulumi.String("string"),
IsTargetVmSecureBootEnabled: pulumi.String("string"),
IsTargetVmTpmEnabled: pulumi.String("string"),
TargetVmSecurityType: pulumi.String("string"),
},
TargetVmSize: pulumi.String("string"),
TargetVmTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
TestNetworkId: pulumi.String("string"),
TestSubnetName: pulumi.String("string"),
LicenseType: pulumi.String("string"),
},
},
ProtectionContainerName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
ResourceName: pulumi.String("string"),
MigrationItemName: pulumi.String("string"),
})
var replicationMigrationItemResource = new ReplicationMigrationItem("replicationMigrationItemResource", ReplicationMigrationItemArgs.builder()
.fabricName("string")
.properties(EnableMigrationInputPropertiesArgs.builder()
.policyId("string")
.providerSpecificDetails(VMwareCbtEnableMigrationInputArgs.builder()
.snapshotRunAsAccountId("string")
.dataMoverRunAsAccountId("string")
.disksToInclude(VMwareCbtDiskInputArgs.builder()
.diskId("string")
.isOSDisk("string")
.logStorageAccountId("string")
.logStorageAccountSasSecretName("string")
.diskEncryptionSetId("string")
.diskType("string")
.build())
.instanceType("VMwareCbt")
.vmwareMachineId("string")
.targetResourceGroupId("string")
.targetNetworkId("string")
.targetBootDiagnosticsStorageAccountId("string")
.targetProximityPlacementGroupId("string")
.sqlServerLicenseType("string")
.targetAvailabilitySetId("string")
.targetAvailabilityZone("string")
.confidentialVmKeyVaultId("string")
.targetDiskTags(Map.of("string", "string"))
.performSqlBulkRegistration("string")
.targetNicTags(Map.of("string", "string"))
.seedDiskTags(Map.of("string", "string"))
.performAutoResync("string")
.targetSubnetName("string")
.targetVmName("string")
.targetVmSecurityProfile(VMwareCbtSecurityProfilePropertiesArgs.builder()
.isTargetVmConfidentialEncryptionEnabled("string")
.isTargetVmIntegrityMonitoringEnabled("string")
.isTargetVmSecureBootEnabled("string")
.isTargetVmTpmEnabled("string")
.targetVmSecurityType("string")
.build())
.targetVmSize("string")
.targetVmTags(Map.of("string", "string"))
.testNetworkId("string")
.testSubnetName("string")
.licenseType("string")
.build())
.build())
.protectionContainerName("string")
.resourceGroupName("string")
.resourceName("string")
.migrationItemName("string")
.build());
replication_migration_item_resource = azure_native.recoveryservices.ReplicationMigrationItem("replicationMigrationItemResource",
fabric_name="string",
properties=azure_native.recoveryservices.EnableMigrationInputPropertiesArgs(
policy_id="string",
provider_specific_details=azure_native.recoveryservices.VMwareCbtEnableMigrationInputArgs(
snapshot_run_as_account_id="string",
data_mover_run_as_account_id="string",
disks_to_include=[azure_native.recoveryservices.VMwareCbtDiskInputArgs(
disk_id="string",
is_os_disk="string",
log_storage_account_id="string",
log_storage_account_sas_secret_name="string",
disk_encryption_set_id="string",
disk_type="string",
)],
instance_type="VMwareCbt",
vmware_machine_id="string",
target_resource_group_id="string",
target_network_id="string",
target_boot_diagnostics_storage_account_id="string",
target_proximity_placement_group_id="string",
sql_server_license_type="string",
target_availability_set_id="string",
target_availability_zone="string",
confidential_vm_key_vault_id="string",
target_disk_tags={
"string": "string",
},
perform_sql_bulk_registration="string",
target_nic_tags={
"string": "string",
},
seed_disk_tags={
"string": "string",
},
perform_auto_resync="string",
target_subnet_name="string",
target_vm_name="string",
target_vm_security_profile=azure_native.recoveryservices.VMwareCbtSecurityProfilePropertiesArgs(
is_target_vm_confidential_encryption_enabled="string",
is_target_vm_integrity_monitoring_enabled="string",
is_target_vm_secure_boot_enabled="string",
is_target_vm_tpm_enabled="string",
target_vm_security_type="string",
),
target_vm_size="string",
target_vm_tags={
"string": "string",
},
test_network_id="string",
test_subnet_name="string",
license_type="string",
),
),
protection_container_name="string",
resource_group_name="string",
resource_name_="string",
migration_item_name="string")
const replicationMigrationItemResource = new azure_native.recoveryservices.ReplicationMigrationItem("replicationMigrationItemResource", {
fabricName: "string",
properties: {
policyId: "string",
providerSpecificDetails: {
snapshotRunAsAccountId: "string",
dataMoverRunAsAccountId: "string",
disksToInclude: [{
diskId: "string",
isOSDisk: "string",
logStorageAccountId: "string",
logStorageAccountSasSecretName: "string",
diskEncryptionSetId: "string",
diskType: "string",
}],
instanceType: "VMwareCbt",
vmwareMachineId: "string",
targetResourceGroupId: "string",
targetNetworkId: "string",
targetBootDiagnosticsStorageAccountId: "string",
targetProximityPlacementGroupId: "string",
sqlServerLicenseType: "string",
targetAvailabilitySetId: "string",
targetAvailabilityZone: "string",
confidentialVmKeyVaultId: "string",
targetDiskTags: {
string: "string",
},
performSqlBulkRegistration: "string",
targetNicTags: {
string: "string",
},
seedDiskTags: {
string: "string",
},
performAutoResync: "string",
targetSubnetName: "string",
targetVmName: "string",
targetVmSecurityProfile: {
isTargetVmConfidentialEncryptionEnabled: "string",
isTargetVmIntegrityMonitoringEnabled: "string",
isTargetVmSecureBootEnabled: "string",
isTargetVmTpmEnabled: "string",
targetVmSecurityType: "string",
},
targetVmSize: "string",
targetVmTags: {
string: "string",
},
testNetworkId: "string",
testSubnetName: "string",
licenseType: "string",
},
},
protectionContainerName: "string",
resourceGroupName: "string",
resourceName: "string",
migrationItemName: "string",
});
type: azure-native:recoveryservices:ReplicationMigrationItem
properties:
fabricName: string
migrationItemName: string
properties:
policyId: string
providerSpecificDetails:
confidentialVmKeyVaultId: string
dataMoverRunAsAccountId: string
disksToInclude:
- diskEncryptionSetId: string
diskId: string
diskType: string
isOSDisk: string
logStorageAccountId: string
logStorageAccountSasSecretName: string
instanceType: VMwareCbt
licenseType: string
performAutoResync: string
performSqlBulkRegistration: string
seedDiskTags:
string: string
snapshotRunAsAccountId: string
sqlServerLicenseType: string
targetAvailabilitySetId: string
targetAvailabilityZone: string
targetBootDiagnosticsStorageAccountId: string
targetDiskTags:
string: string
targetNetworkId: string
targetNicTags:
string: string
targetProximityPlacementGroupId: string
targetResourceGroupId: string
targetSubnetName: string
targetVmName: string
targetVmSecurityProfile:
isTargetVmConfidentialEncryptionEnabled: string
isTargetVmIntegrityMonitoringEnabled: string
isTargetVmSecureBootEnabled: string
isTargetVmTpmEnabled: string
targetVmSecurityType: string
targetVmSize: string
targetVmTags:
string: string
testNetworkId: string
testSubnetName: string
vmwareMachineId: string
protectionContainerName: string
resourceGroupName: string
resourceName: string
ReplicationMigrationItem 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 ReplicationMigrationItem resource accepts the following input properties:
- Fabric
Name string - Fabric name.
- Properties
Pulumi.
Azure Native. Recovery Services. Inputs. Enable Migration Input Properties - Enable migration input properties.
- Protection
Container stringName - Protection container name.
- Resource
Group stringName - The name of the resource group where the recovery services vault is present.
- Resource
Name string - The name of the recovery services vault.
- Migration
Item stringName - Migration item name.
- Fabric
Name string - Fabric name.
- Properties
Enable
Migration Input Properties Args - Enable migration input properties.
- Protection
Container stringName - Protection container name.
- Resource
Group stringName - The name of the resource group where the recovery services vault is present.
- Resource
Name string - The name of the recovery services vault.
- Migration
Item stringName - Migration item name.
- fabric
Name String - Fabric name.
- properties
Enable
Migration Input Properties - Enable migration input properties.
- protection
Container StringName - Protection container name.
- resource
Group StringName - The name of the resource group where the recovery services vault is present.
- resource
Name String - The name of the recovery services vault.
- migration
Item StringName - Migration item name.
- fabric
Name string - Fabric name.
- properties
Enable
Migration Input Properties - Enable migration input properties.
- protection
Container stringName - Protection container name.
- resource
Group stringName - The name of the resource group where the recovery services vault is present.
- resource
Name string - The name of the recovery services vault.
- migration
Item stringName - Migration item name.
- fabric_
name str - Fabric name.
- properties
Enable
Migration Input Properties Args - Enable migration input properties.
- protection_
container_ strname - Protection container name.
- resource_
group_ strname - The name of the resource group where the recovery services vault is present.
- resource_
name str - The name of the recovery services vault.
- migration_
item_ strname - Migration item name.
- fabric
Name String - Fabric name.
- properties Property Map
- Enable migration input properties.
- protection
Container StringName - Protection container name.
- resource
Group StringName - The name of the resource group where the recovery services vault is present.
- resource
Name String - The name of the recovery services vault.
- migration
Item StringName - Migration item name.
Outputs
All input properties are implicitly available as output properties. Additionally, the ReplicationMigrationItem resource produces the following output properties:
Supporting Types
CriticalJobHistoryDetailsResponse, CriticalJobHistoryDetailsResponseArgs
- job_
id str - The ARM Id of the job being executed.
- job_
name str - The job name.
- job_
status str - The job state.
- start_
time str - The start time of the job.
CurrentJobDetailsResponse, CurrentJobDetailsResponseArgs
- job_
id str - The ARM Id of the job being executed.
- job_
name str - The job name.
- start_
time str - The start time of the job.
DiskAccountType, DiskAccountTypeArgs
- Standard_LRS
- Standard_LRS
- Premium_LRS
- Premium_LRS
- Standard
SSD_LRS - StandardSSD_LRS
- Disk
Account Type_Standard_LRS - Standard_LRS
- Disk
Account Type_Premium_LRS - Premium_LRS
- Disk
Account Type_Standard SSD_LRS - StandardSSD_LRS
- Standard_LRS
- Standard_LRS
- Premium_LRS
- Premium_LRS
- Standard
SSD_LRS - StandardSSD_LRS
- Standard_LRS
- Standard_LRS
- Premium_LRS
- Premium_LRS
- Standard
SSD_LRS - StandardSSD_LRS
- STANDARD_LRS
- Standard_LRS
- PREMIUM_LRS
- Premium_LRS
- STANDARD_SS_D_LRS
- StandardSSD_LRS
- "Standard_LRS"
- Standard_LRS
- "Premium_LRS"
- Premium_LRS
- "Standard
SSD_LRS" - StandardSSD_LRS
EnableMigrationInputProperties, EnableMigrationInputPropertiesArgs
- Policy
Id string - The policy Id.
- Provider
Specific Pulumi.Details Azure Native. Recovery Services. Inputs. VMware Cbt Enable Migration Input - The provider specific details.
- Policy
Id string - The policy Id.
- Provider
Specific VMwareDetails Cbt Enable Migration Input - The provider specific details.
- policy
Id String - The policy Id.
- provider
Specific VMwareDetails Cbt Enable Migration Input - The provider specific details.
- policy
Id string - The policy Id.
- provider
Specific VMwareDetails Cbt Enable Migration Input - The provider specific details.
- policy_
id str - The policy Id.
- provider_
specific_ VMwaredetails Cbt Enable Migration Input - The provider specific details.
- policy
Id String - The policy Id.
- provider
Specific Property MapDetails - The provider specific details.
HealthErrorResponse, HealthErrorResponseArgs
- Creation
Time stringUtc - Error creation time (UTC).
- Customer
Resolvability string - Value indicating whether the health error is customer resolvable.
- Entity
Id string - ID of the entity.
- Error
Category string - Category of error.
- Error
Code string - Error code.
- Error
Id string - The health error unique id.
- Error
Level string - Level of error.
- Error
Message string - Error message.
- Error
Source string - Source of error.
- Error
Type string - Type of error.
- Inner
Health List<Pulumi.Errors Azure Native. Recovery Services. Inputs. Inner Health Error Response> - The inner health errors. HealthError having a list of HealthError as child errors is problematic. InnerHealthError is used because this will prevent an infinite loop of structures when Hydra tries to auto-generate the contract. We are exposing the related health errors as inner health errors and all API consumers can utilize this in the same fashion as Exception -> InnerException.
- Possible
Causes string - Possible causes of error.
- Recommended
Action string - Recommended action to resolve error.
- Recovery
Provider stringError Message - DRA error message.
- Summary
Message string - Summary message of the entity.
- Creation
Time stringUtc - Error creation time (UTC).
- Customer
Resolvability string - Value indicating whether the health error is customer resolvable.
- Entity
Id string - ID of the entity.
- Error
Category string - Category of error.
- Error
Code string - Error code.
- Error
Id string - The health error unique id.
- Error
Level string - Level of error.
- Error
Message string - Error message.
- Error
Source string - Source of error.
- Error
Type string - Type of error.
- Inner
Health []InnerErrors Health Error Response - The inner health errors. HealthError having a list of HealthError as child errors is problematic. InnerHealthError is used because this will prevent an infinite loop of structures when Hydra tries to auto-generate the contract. We are exposing the related health errors as inner health errors and all API consumers can utilize this in the same fashion as Exception -> InnerException.
- Possible
Causes string - Possible causes of error.
- Recommended
Action string - Recommended action to resolve error.
- Recovery
Provider stringError Message - DRA error message.
- Summary
Message string - Summary message of the entity.
- creation
Time StringUtc - Error creation time (UTC).
- customer
Resolvability String - Value indicating whether the health error is customer resolvable.
- entity
Id String - ID of the entity.
- error
Category String - Category of error.
- error
Code String - Error code.
- error
Id String - The health error unique id.
- error
Level String - Level of error.
- error
Message String - Error message.
- error
Source String - Source of error.
- error
Type String - Type of error.
- inner
Health List<InnerErrors Health Error Response> - The inner health errors. HealthError having a list of HealthError as child errors is problematic. InnerHealthError is used because this will prevent an infinite loop of structures when Hydra tries to auto-generate the contract. We are exposing the related health errors as inner health errors and all API consumers can utilize this in the same fashion as Exception -> InnerException.
- possible
Causes String - Possible causes of error.
- recommended
Action String - Recommended action to resolve error.
- recovery
Provider StringError Message - DRA error message.
- summary
Message String - Summary message of the entity.
- creation
Time stringUtc - Error creation time (UTC).
- customer
Resolvability string - Value indicating whether the health error is customer resolvable.
- entity
Id string - ID of the entity.
- error
Category string - Category of error.
- error
Code string - Error code.
- error
Id string - The health error unique id.
- error
Level string - Level of error.
- error
Message string - Error message.
- error
Source string - Source of error.
- error
Type string - Type of error.
- inner
Health InnerErrors Health Error Response[] - The inner health errors. HealthError having a list of HealthError as child errors is problematic. InnerHealthError is used because this will prevent an infinite loop of structures when Hydra tries to auto-generate the contract. We are exposing the related health errors as inner health errors and all API consumers can utilize this in the same fashion as Exception -> InnerException.
- possible
Causes string - Possible causes of error.
- recommended
Action string - Recommended action to resolve error.
- recovery
Provider stringError Message - DRA error message.
- summary
Message string - Summary message of the entity.
- creation_
time_ strutc - Error creation time (UTC).
- customer_
resolvability str - Value indicating whether the health error is customer resolvable.
- entity_
id str - ID of the entity.
- error_
category str - Category of error.
- error_
code str - Error code.
- error_
id str - The health error unique id.
- error_
level str - Level of error.
- error_
message str - Error message.
- error_
source str - Source of error.
- error_
type str - Type of error.
- inner_
health_ Sequence[Innererrors Health Error Response] - The inner health errors. HealthError having a list of HealthError as child errors is problematic. InnerHealthError is used because this will prevent an infinite loop of structures when Hydra tries to auto-generate the contract. We are exposing the related health errors as inner health errors and all API consumers can utilize this in the same fashion as Exception -> InnerException.
- possible_
causes str - Possible causes of error.
- recommended_
action str - Recommended action to resolve error.
- recovery_
provider_ strerror_ message - DRA error message.
- summary_
message str - Summary message of the entity.
- creation
Time StringUtc - Error creation time (UTC).
- customer
Resolvability String - Value indicating whether the health error is customer resolvable.
- entity
Id String - ID of the entity.
- error
Category String - Category of error.
- error
Code String - Error code.
- error
Id String - The health error unique id.
- error
Level String - Level of error.
- error
Message String - Error message.
- error
Source String - Source of error.
- error
Type String - Type of error.
- inner
Health List<Property Map>Errors - The inner health errors. HealthError having a list of HealthError as child errors is problematic. InnerHealthError is used because this will prevent an infinite loop of structures when Hydra tries to auto-generate the contract. We are exposing the related health errors as inner health errors and all API consumers can utilize this in the same fashion as Exception -> InnerException.
- possible
Causes String - Possible causes of error.
- recommended
Action String - Recommended action to resolve error.
- recovery
Provider StringError Message - DRA error message.
- summary
Message String - Summary message of the entity.
InnerHealthErrorResponse, InnerHealthErrorResponseArgs
- Creation
Time stringUtc - Error creation time (UTC).
- Customer
Resolvability string - Value indicating whether the health error is customer resolvable.
- Entity
Id string - ID of the entity.
- Error
Category string - Category of error.
- Error
Code string - Error code.
- Error
Id string - The health error unique id.
- Error
Level string - Level of error.
- Error
Message string - Error message.
- Error
Source string - Source of error.
- Error
Type string - Type of error.
- Possible
Causes string - Possible causes of error.
- Recommended
Action string - Recommended action to resolve error.
- Recovery
Provider stringError Message - DRA error message.
- Summary
Message string - Summary message of the entity.
- Creation
Time stringUtc - Error creation time (UTC).
- Customer
Resolvability string - Value indicating whether the health error is customer resolvable.
- Entity
Id string - ID of the entity.
- Error
Category string - Category of error.
- Error
Code string - Error code.
- Error
Id string - The health error unique id.
- Error
Level string - Level of error.
- Error
Message string - Error message.
- Error
Source string - Source of error.
- Error
Type string - Type of error.
- Possible
Causes string - Possible causes of error.
- Recommended
Action string - Recommended action to resolve error.
- Recovery
Provider stringError Message - DRA error message.
- Summary
Message string - Summary message of the entity.
- creation
Time StringUtc - Error creation time (UTC).
- customer
Resolvability String - Value indicating whether the health error is customer resolvable.
- entity
Id String - ID of the entity.
- error
Category String - Category of error.
- error
Code String - Error code.
- error
Id String - The health error unique id.
- error
Level String - Level of error.
- error
Message String - Error message.
- error
Source String - Source of error.
- error
Type String - Type of error.
- possible
Causes String - Possible causes of error.
- recommended
Action String - Recommended action to resolve error.
- recovery
Provider StringError Message - DRA error message.
- summary
Message String - Summary message of the entity.
- creation
Time stringUtc - Error creation time (UTC).
- customer
Resolvability string - Value indicating whether the health error is customer resolvable.
- entity
Id string - ID of the entity.
- error
Category string - Category of error.
- error
Code string - Error code.
- error
Id string - The health error unique id.
- error
Level string - Level of error.
- error
Message string - Error message.
- error
Source string - Source of error.
- error
Type string - Type of error.
- possible
Causes string - Possible causes of error.
- recommended
Action string - Recommended action to resolve error.
- recovery
Provider stringError Message - DRA error message.
- summary
Message string - Summary message of the entity.
- creation_
time_ strutc - Error creation time (UTC).
- customer_
resolvability str - Value indicating whether the health error is customer resolvable.
- entity_
id str - ID of the entity.
- error_
category str - Category of error.
- error_
code str - Error code.
- error_
id str - The health error unique id.
- error_
level str - Level of error.
- error_
message str - Error message.
- error_
source str - Source of error.
- error_
type str - Type of error.
- possible_
causes str - Possible causes of error.
- recommended_
action str - Recommended action to resolve error.
- recovery_
provider_ strerror_ message - DRA error message.
- summary_
message str - Summary message of the entity.
- creation
Time StringUtc - Error creation time (UTC).
- customer
Resolvability String - Value indicating whether the health error is customer resolvable.
- entity
Id String - ID of the entity.
- error
Category String - Category of error.
- error
Code String - Error code.
- error
Id String - The health error unique id.
- error
Level String - Level of error.
- error
Message String - Error message.
- error
Source String - Source of error.
- error
Type String - Type of error.
- possible
Causes String - Possible causes of error.
- recommended
Action String - Recommended action to resolve error.
- recovery
Provider StringError Message - DRA error message.
- summary
Message String - Summary message of the entity.
LicenseType, LicenseTypeArgs
- Not
Specified - NotSpecified
- No
License Type - NoLicenseType
- Windows
Server - WindowsServer
- License
Type Not Specified - NotSpecified
- License
Type No License Type - NoLicenseType
- License
Type Windows Server - WindowsServer
- Not
Specified - NotSpecified
- No
License Type - NoLicenseType
- Windows
Server - WindowsServer
- Not
Specified - NotSpecified
- No
License Type - NoLicenseType
- Windows
Server - WindowsServer
- NOT_SPECIFIED
- NotSpecified
- NO_LICENSE_TYPE
- NoLicenseType
- WINDOWS_SERVER
- WindowsServer
- "Not
Specified" - NotSpecified
- "No
License Type" - NoLicenseType
- "Windows
Server" - WindowsServer
MigrationItemPropertiesResponse, MigrationItemPropertiesResponseArgs
- Allowed
Operations List<string> - The allowed operations on the migration item based on the current migration state of the item.
- Critical
Job List<Pulumi.History Azure Native. Recovery Services. Inputs. Critical Job History Details Response> - The critical past job details.
- Current
Job Pulumi.Azure Native. Recovery Services. Inputs. Current Job Details Response - The current job details.
- Event
Correlation stringId - The correlation Id for events associated with this migration item.
- Health string
- The consolidated health.
- Health
Errors List<Pulumi.Azure Native. Recovery Services. Inputs. Health Error Response> - The list of health errors.
- Last
Migration stringStatus - The status of the last migration.
- Last
Migration stringTime - The last migration time.
- Last
Test stringMigration Status - The status of the last test migration.
- Last
Test stringMigration Time - The last test migration time.
- Machine
Name string - The on-premise virtual machine name.
- Migration
State string - The migration status.
- Migration
State stringDescription - The migration state description.
- Policy
Friendly stringName - The name of policy governing this item.
- Policy
Id string - The ARM Id of policy governing this item.
- Recovery
Services stringProvider Id - The recovery services provider ARM Id.
- Replication
Status string - The replication status.
- Test
Migrate stringState - The test migrate state.
- Test
Migrate stringState Description - The test migrate state description.
- Provider
Specific Pulumi.Details Azure Native. Recovery Services. Inputs. VMware Cbt Migration Details Response - The migration provider custom settings.
- Allowed
Operations []string - The allowed operations on the migration item based on the current migration state of the item.
- Critical
Job []CriticalHistory Job History Details Response - The critical past job details.
- Current
Job CurrentJob Details Response - The current job details.
- Event
Correlation stringId - The correlation Id for events associated with this migration item.
- Health string
- The consolidated health.
- Health
Errors []HealthError Response - The list of health errors.
- Last
Migration stringStatus - The status of the last migration.
- Last
Migration stringTime - The last migration time.
- Last
Test stringMigration Status - The status of the last test migration.
- Last
Test stringMigration Time - The last test migration time.
- Machine
Name string - The on-premise virtual machine name.
- Migration
State string - The migration status.
- Migration
State stringDescription - The migration state description.
- Policy
Friendly stringName - The name of policy governing this item.
- Policy
Id string - The ARM Id of policy governing this item.
- Recovery
Services stringProvider Id - The recovery services provider ARM Id.
- Replication
Status string - The replication status.
- Test
Migrate stringState - The test migrate state.
- Test
Migrate stringState Description - The test migrate state description.
- Provider
Specific VMwareDetails Cbt Migration Details Response - The migration provider custom settings.
- allowed
Operations List<String> - The allowed operations on the migration item based on the current migration state of the item.
- critical
Job List<CriticalHistory Job History Details Response> - The critical past job details.
- current
Job CurrentJob Details Response - The current job details.
- event
Correlation StringId - The correlation Id for events associated with this migration item.
- health String
- The consolidated health.
- health
Errors List<HealthError Response> - The list of health errors.
- last
Migration StringStatus - The status of the last migration.
- last
Migration StringTime - The last migration time.
- last
Test StringMigration Status - The status of the last test migration.
- last
Test StringMigration Time - The last test migration time.
- machine
Name String - The on-premise virtual machine name.
- migration
State String - The migration status.
- migration
State StringDescription - The migration state description.
- policy
Friendly StringName - The name of policy governing this item.
- policy
Id String - The ARM Id of policy governing this item.
- recovery
Services StringProvider Id - The recovery services provider ARM Id.
- replication
Status String - The replication status.
- test
Migrate StringState - The test migrate state.
- test
Migrate StringState Description - The test migrate state description.
- provider
Specific VMwareDetails Cbt Migration Details Response - The migration provider custom settings.
- allowed
Operations string[] - The allowed operations on the migration item based on the current migration state of the item.
- critical
Job CriticalHistory Job History Details Response[] - The critical past job details.
- current
Job CurrentJob Details Response - The current job details.
- event
Correlation stringId - The correlation Id for events associated with this migration item.
- health string
- The consolidated health.
- health
Errors HealthError Response[] - The list of health errors.
- last
Migration stringStatus - The status of the last migration.
- last
Migration stringTime - The last migration time.
- last
Test stringMigration Status - The status of the last test migration.
- last
Test stringMigration Time - The last test migration time.
- machine
Name string - The on-premise virtual machine name.
- migration
State string - The migration status.
- migration
State stringDescription - The migration state description.
- policy
Friendly stringName - The name of policy governing this item.
- policy
Id string - The ARM Id of policy governing this item.
- recovery
Services stringProvider Id - The recovery services provider ARM Id.
- replication
Status string - The replication status.
- test
Migrate stringState - The test migrate state.
- test
Migrate stringState Description - The test migrate state description.
- provider
Specific VMwareDetails Cbt Migration Details Response - The migration provider custom settings.
- allowed_
operations Sequence[str] - The allowed operations on the migration item based on the current migration state of the item.
- critical_
job_ Sequence[Criticalhistory Job History Details Response] - The critical past job details.
- current_
job CurrentJob Details Response - The current job details.
- event_
correlation_ strid - The correlation Id for events associated with this migration item.
- health str
- The consolidated health.
- health_
errors Sequence[HealthError Response] - The list of health errors.
- last_
migration_ strstatus - The status of the last migration.
- last_
migration_ strtime - The last migration time.
- last_
test_ strmigration_ status - The status of the last test migration.
- last_
test_ strmigration_ time - The last test migration time.
- machine_
name str - The on-premise virtual machine name.
- migration_
state str - The migration status.
- migration_
state_ strdescription - The migration state description.
- policy_
friendly_ strname - The name of policy governing this item.
- policy_
id str - The ARM Id of policy governing this item.
- recovery_
services_ strprovider_ id - The recovery services provider ARM Id.
- replication_
status str - The replication status.
- test_
migrate_ strstate - The test migrate state.
- test_
migrate_ strstate_ description - The test migrate state description.
- provider_
specific_ VMwaredetails Cbt Migration Details Response - The migration provider custom settings.
- allowed
Operations List<String> - The allowed operations on the migration item based on the current migration state of the item.
- critical
Job List<Property Map>History - The critical past job details.
- current
Job Property Map - The current job details.
- event
Correlation StringId - The correlation Id for events associated with this migration item.
- health String
- The consolidated health.
- health
Errors List<Property Map> - The list of health errors.
- last
Migration StringStatus - The status of the last migration.
- last
Migration StringTime - The last migration time.
- last
Test StringMigration Status - The status of the last test migration.
- last
Test StringMigration Time - The last test migration time.
- machine
Name String - The on-premise virtual machine name.
- migration
State String - The migration status.
- migration
State StringDescription - The migration state description.
- policy
Friendly StringName - The name of policy governing this item.
- policy
Id String - The ARM Id of policy governing this item.
- recovery
Services StringProvider Id - The recovery services provider ARM Id.
- replication
Status String - The replication status.
- test
Migrate StringState - The test migrate state.
- test
Migrate StringState Description - The test migrate state description.
- provider
Specific Property MapDetails - The migration provider custom settings.
SecurityType, SecurityTypeArgs
- None
- None
- Trusted
Launch - TrustedLaunch
- Confidential
VM - ConfidentialVM
- Security
Type None - None
- Security
Type Trusted Launch - TrustedLaunch
- Security
Type Confidential VM - ConfidentialVM
- None
- None
- Trusted
Launch - TrustedLaunch
- Confidential
VM - ConfidentialVM
- None
- None
- Trusted
Launch - TrustedLaunch
- Confidential
VM - ConfidentialVM
- NONE
- None
- TRUSTED_LAUNCH
- TrustedLaunch
- CONFIDENTIAL_VM
- ConfidentialVM
- "None"
- None
- "Trusted
Launch" - TrustedLaunch
- "Confidential
VM" - ConfidentialVM
SqlServerLicenseType, SqlServerLicenseTypeArgs
- Not
Specified - NotSpecified
- No
License Type - NoLicenseType
- PAYG
- PAYG
- AHUB
- AHUB
- Sql
Server License Type Not Specified - NotSpecified
- Sql
Server License Type No License Type - NoLicenseType
- Sql
Server License Type PAYG - PAYG
- Sql
Server License Type AHUB - AHUB
- Not
Specified - NotSpecified
- No
License Type - NoLicenseType
- PAYG
- PAYG
- AHUB
- AHUB
- Not
Specified - NotSpecified
- No
License Type - NoLicenseType
- PAYG
- PAYG
- AHUB
- AHUB
- NOT_SPECIFIED
- NotSpecified
- NO_LICENSE_TYPE
- NoLicenseType
- PAYG
- PAYG
- AHUB
- AHUB
- "Not
Specified" - NotSpecified
- "No
License Type" - NoLicenseType
- "PAYG"
- PAYG
- "AHUB"
- AHUB
VMwareCbtDiskInput, VMwareCbtDiskInputArgs
- Disk
Id string - The disk Id.
- Is
OSDisk string - A value indicating whether the disk is the OS disk.
- Log
Storage stringAccount Id - The log storage account ARM Id.
- Log
Storage stringAccount Sas Secret Name - The key vault secret name of the log storage account.
- Disk
Encryption stringSet Id - The DiskEncryptionSet ARM Id.
- Disk
Type string | Pulumi.Azure Native. Recovery Services. Disk Account Type - The disk type.
- Disk
Id string - The disk Id.
- Is
OSDisk string - A value indicating whether the disk is the OS disk.
- Log
Storage stringAccount Id - The log storage account ARM Id.
- Log
Storage stringAccount Sas Secret Name - The key vault secret name of the log storage account.
- Disk
Encryption stringSet Id - The DiskEncryptionSet ARM Id.
- Disk
Type string | DiskAccount Type - The disk type.
- disk
Id String - The disk Id.
- is
OSDisk String - A value indicating whether the disk is the OS disk.
- log
Storage StringAccount Id - The log storage account ARM Id.
- log
Storage StringAccount Sas Secret Name - The key vault secret name of the log storage account.
- disk
Encryption StringSet Id - The DiskEncryptionSet ARM Id.
- disk
Type String | DiskAccount Type - The disk type.
- disk
Id string - The disk Id.
- is
OSDisk string - A value indicating whether the disk is the OS disk.
- log
Storage stringAccount Id - The log storage account ARM Id.
- log
Storage stringAccount Sas Secret Name - The key vault secret name of the log storage account.
- disk
Encryption stringSet Id - The DiskEncryptionSet ARM Id.
- disk
Type string | DiskAccount Type - The disk type.
- disk_
id str - The disk Id.
- is_
os_ strdisk - A value indicating whether the disk is the OS disk.
- log_
storage_ straccount_ id - The log storage account ARM Id.
- log_
storage_ straccount_ sas_ secret_ name - The key vault secret name of the log storage account.
- disk_
encryption_ strset_ id - The DiskEncryptionSet ARM Id.
- disk_
type str | DiskAccount Type - The disk type.
- disk
Id String - The disk Id.
- is
OSDisk String - A value indicating whether the disk is the OS disk.
- log
Storage StringAccount Id - The log storage account ARM Id.
- log
Storage StringAccount Sas Secret Name - The key vault secret name of the log storage account.
- disk
Encryption StringSet Id - The DiskEncryptionSet ARM Id.
- disk
Type String | "Standard_LRS" | "Premium_LRS" | "StandardSSD_LRS" - The disk type.
VMwareCbtEnableMigrationInput, VMwareCbtEnableMigrationInputArgs
- Data
Mover stringRun As Account Id - The data mover run as account Id.
- Disks
To List<Pulumi.Include Azure Native. Recovery Services. Inputs. VMware Cbt Disk Input> - The disks to include list.
- Snapshot
Run stringAs Account Id - The snapshot run as account Id.
- Target
Network stringId - The target network ARM Id.
- Target
Resource stringGroup Id - The target resource group ARM Id.
- Vmware
Machine stringId - The ARM Id of the VM discovered in VMware.
- Confidential
Vm stringKey Vault Id - The confidential VM key vault Id for ADE installation.
- License
Type string | Pulumi.Azure Native. Recovery Services. License Type - License type.
- Perform
Auto stringResync - A value indicating whether auto resync is to be done.
- Perform
Sql stringBulk Registration - A value indicating whether bulk SQL RP registration to be done.
- Dictionary<string, string>
- The tags for the seed disks.
- Sql
Server string | Pulumi.License Type Azure Native. Recovery Services. Sql Server License Type - The SQL Server license type.
- Target
Availability stringSet Id - The target availability set ARM Id.
- Target
Availability stringZone - The target availability zone.
- Target
Boot stringDiagnostics Storage Account Id - The target boot diagnostics storage account ARM Id.
- Dictionary<string, string>
- The tags for the target disks.
- Dictionary<string, string>
- The tags for the target NICs.
- Target
Proximity stringPlacement Group Id - The target proximity placement group ARM Id.
- Target
Subnet stringName - The target subnet name.
- Target
Vm stringName - The target VM name.
- Target
Vm Pulumi.Security Profile Azure Native. Recovery Services. Inputs. VMware Cbt Security Profile Properties - The target VM security profile.
- Target
Vm stringSize - The target VM size.
- Dictionary<string, string>
- The target VM tags.
- Test
Network stringId - The selected test network ARM Id.
- Test
Subnet stringName - The selected test subnet name.
- Data
Mover stringRun As Account Id - The data mover run as account Id.
- Disks
To []VMwareInclude Cbt Disk Input - The disks to include list.
- Snapshot
Run stringAs Account Id - The snapshot run as account Id.
- Target
Network stringId - The target network ARM Id.
- Target
Resource stringGroup Id - The target resource group ARM Id.
- Vmware
Machine stringId - The ARM Id of the VM discovered in VMware.
- Confidential
Vm stringKey Vault Id - The confidential VM key vault Id for ADE installation.
- License
Type string | LicenseType - License type.
- Perform
Auto stringResync - A value indicating whether auto resync is to be done.
- Perform
Sql stringBulk Registration - A value indicating whether bulk SQL RP registration to be done.
- map[string]string
- The tags for the seed disks.
- Sql
Server string | SqlLicense Type Server License Type - The SQL Server license type.
- Target
Availability stringSet Id - The target availability set ARM Id.
- Target
Availability stringZone - The target availability zone.
- Target
Boot stringDiagnostics Storage Account Id - The target boot diagnostics storage account ARM Id.
- map[string]string
- The tags for the target disks.
- map[string]string
- The tags for the target NICs.
- Target
Proximity stringPlacement Group Id - The target proximity placement group ARM Id.
- Target
Subnet stringName - The target subnet name.
- Target
Vm stringName - The target VM name.
- Target
Vm VMwareSecurity Profile Cbt Security Profile Properties - The target VM security profile.
- Target
Vm stringSize - The target VM size.
- map[string]string
- The target VM tags.
- Test
Network stringId - The selected test network ARM Id.
- Test
Subnet stringName - The selected test subnet name.
- data
Mover StringRun As Account Id - The data mover run as account Id.
- disks
To List<VMwareInclude Cbt Disk Input> - The disks to include list.
- snapshot
Run StringAs Account Id - The snapshot run as account Id.
- target
Network StringId - The target network ARM Id.
- target
Resource StringGroup Id - The target resource group ARM Id.
- vmware
Machine StringId - The ARM Id of the VM discovered in VMware.
- confidential
Vm StringKey Vault Id - The confidential VM key vault Id for ADE installation.
- license
Type String | LicenseType - License type.
- perform
Auto StringResync - A value indicating whether auto resync is to be done.
- perform
Sql StringBulk Registration - A value indicating whether bulk SQL RP registration to be done.
- Map<String,String>
- The tags for the seed disks.
- sql
Server String | SqlLicense Type Server License Type - The SQL Server license type.
- target
Availability StringSet Id - The target availability set ARM Id.
- target
Availability StringZone - The target availability zone.
- target
Boot StringDiagnostics Storage Account Id - The target boot diagnostics storage account ARM Id.
- Map<String,String>
- The tags for the target disks.
- Map<String,String>
- The tags for the target NICs.
- target
Proximity StringPlacement Group Id - The target proximity placement group ARM Id.
- target
Subnet StringName - The target subnet name.
- target
Vm StringName - The target VM name.
- target
Vm VMwareSecurity Profile Cbt Security Profile Properties - The target VM security profile.
- target
Vm StringSize - The target VM size.
- Map<String,String>
- The target VM tags.
- test
Network StringId - The selected test network ARM Id.
- test
Subnet StringName - The selected test subnet name.
- data
Mover stringRun As Account Id - The data mover run as account Id.
- disks
To VMwareInclude Cbt Disk Input[] - The disks to include list.
- snapshot
Run stringAs Account Id - The snapshot run as account Id.
- target
Network stringId - The target network ARM Id.
- target
Resource stringGroup Id - The target resource group ARM Id.
- vmware
Machine stringId - The ARM Id of the VM discovered in VMware.
- confidential
Vm stringKey Vault Id - The confidential VM key vault Id for ADE installation.
- license
Type string | LicenseType - License type.
- perform
Auto stringResync - A value indicating whether auto resync is to be done.
- perform
Sql stringBulk Registration - A value indicating whether bulk SQL RP registration to be done.
- {[key: string]: string}
- The tags for the seed disks.
- sql
Server string | SqlLicense Type Server License Type - The SQL Server license type.
- target
Availability stringSet Id - The target availability set ARM Id.
- target
Availability stringZone - The target availability zone.
- target
Boot stringDiagnostics Storage Account Id - The target boot diagnostics storage account ARM Id.
- {[key: string]: string}
- The tags for the target disks.
- {[key: string]: string}
- The tags for the target NICs.
- target
Proximity stringPlacement Group Id - The target proximity placement group ARM Id.
- target
Subnet stringName - The target subnet name.
- target
Vm stringName - The target VM name.
- target
Vm VMwareSecurity Profile Cbt Security Profile Properties - The target VM security profile.
- target
Vm stringSize - The target VM size.
- {[key: string]: string}
- The target VM tags.
- test
Network stringId - The selected test network ARM Id.
- test
Subnet stringName - The selected test subnet name.
- data_
mover_ strrun_ as_ account_ id - The data mover run as account Id.
- disks_
to_ Sequence[VMwareinclude Cbt Disk Input] - The disks to include list.
- snapshot_
run_ stras_ account_ id - The snapshot run as account Id.
- target_
network_ strid - The target network ARM Id.
- target_
resource_ strgroup_ id - The target resource group ARM Id.
- vmware_
machine_ strid - The ARM Id of the VM discovered in VMware.
- confidential_
vm_ strkey_ vault_ id - The confidential VM key vault Id for ADE installation.
- license_
type str | LicenseType - License type.
- perform_
auto_ strresync - A value indicating whether auto resync is to be done.
- perform_
sql_ strbulk_ registration - A value indicating whether bulk SQL RP registration to be done.
- Mapping[str, str]
- The tags for the seed disks.
- sql_
server_ str | Sqllicense_ type Server License Type - The SQL Server license type.
- target_
availability_ strset_ id - The target availability set ARM Id.
- target_
availability_ strzone - The target availability zone.
- target_
boot_ strdiagnostics_ storage_ account_ id - The target boot diagnostics storage account ARM Id.
- Mapping[str, str]
- The tags for the target disks.
- Mapping[str, str]
- The tags for the target NICs.
- target_
proximity_ strplacement_ group_ id - The target proximity placement group ARM Id.
- target_
subnet_ strname - The target subnet name.
- target_
vm_ strname - The target VM name.
- target_
vm_ VMwaresecurity_ profile Cbt Security Profile Properties - The target VM security profile.
- target_
vm_ strsize - The target VM size.
- Mapping[str, str]
- The target VM tags.
- test_
network_ strid - The selected test network ARM Id.
- test_
subnet_ strname - The selected test subnet name.
- data
Mover StringRun As Account Id - The data mover run as account Id.
- disks
To List<Property Map>Include - The disks to include list.
- snapshot
Run StringAs Account Id - The snapshot run as account Id.
- target
Network StringId - The target network ARM Id.
- target
Resource StringGroup Id - The target resource group ARM Id.
- vmware
Machine StringId - The ARM Id of the VM discovered in VMware.
- confidential
Vm StringKey Vault Id - The confidential VM key vault Id for ADE installation.
- license
Type String | "NotSpecified" | "No License Type" | "Windows Server" - License type.
- perform
Auto StringResync - A value indicating whether auto resync is to be done.
- perform
Sql StringBulk Registration - A value indicating whether bulk SQL RP registration to be done.
- Map<String>
- The tags for the seed disks.
- sql
Server String | "NotLicense Type Specified" | "No License Type" | "PAYG" | "AHUB" - The SQL Server license type.
- target
Availability StringSet Id - The target availability set ARM Id.
- target
Availability StringZone - The target availability zone.
- target
Boot StringDiagnostics Storage Account Id - The target boot diagnostics storage account ARM Id.
- Map<String>
- The tags for the target disks.
- Map<String>
- The tags for the target NICs.
- target
Proximity StringPlacement Group Id - The target proximity placement group ARM Id.
- target
Subnet StringName - The target subnet name.
- target
Vm StringName - The target VM name.
- target
Vm Property MapSecurity Profile - The target VM security profile.
- target
Vm StringSize - The target VM size.
- Map<String>
- The target VM tags.
- test
Network StringId - The selected test network ARM Id.
- test
Subnet StringName - The selected test subnet name.
VMwareCbtMigrationDetailsResponse, VMwareCbtMigrationDetailsResponseArgs
- Data
Mover stringRun As Account Id - The data mover run as account Id.
- Firmware
Type string - The firmware type.
- Initial
Seeding intProgress Percentage - The initial seeding progress percentage.
- Initial
Seeding doubleRetry Count - The initial seeding retry count.
- Last
Recovery stringPoint Id - The last recovery point Id.
- Last
Recovery stringPoint Received - The last recovery point received time.
- Migration
Progress intPercentage - The migration progress percentage.
- Migration
Recovery stringPoint Id - The recovery point Id to which the VM was migrated.
- Os
Name string - The name of the OS on the VM.
- Os
Type string - The type of the OS on the VM.
- Resume
Progress intPercentage - The resume progress percentage.
- Resume
Retry doubleCount - The resume retry count.
- Resync
Progress intPercentage - The resync progress percentage.
- Resync
Required string - A value indicating whether resync is required.
- Resync
Retry doubleCount - The resync retry count.
- Resync
State string - The resync state.
- Snapshot
Run stringAs Account Id - The snapshot run as account Id.
- Storage
Account stringId - The replication storage account ARM Id. This is applicable only for the blob based replication test hook.
- Target
Generation string - The target generation.
- Target
Location string - The target location.
- Vmware
Machine stringId - The ARM Id of the VM discovered in VMware.
- Confidential
Vm stringKey Vault Id - The confidential VM key vault Id for ADE installation.
- License
Type string - License Type of the VM to be used.
- Perform
Auto stringResync - A value indicating whether auto resync is to be done.
- Protected
Disks List<Pulumi.Azure Native. Recovery Services. Inputs. VMware Cbt Protected Disk Details Response> - The list of protected disks.
- Dictionary<string, string>
- The tags for the seed disks.
- Sql
Server stringLicense Type - The SQL Server license type.
- Supported
OSVersions List<string> - List of supported inplace OS Upgrade versions.
- Target
Availability stringSet Id - The target availability set Id.
- Target
Availability stringZone - The target availability zone.
- Target
Boot stringDiagnostics Storage Account Id - The target boot diagnostics storage account ARM Id.
- Dictionary<string, string>
- The tags for the target disks.
- Target
Network stringId - The target network Id.
- Dictionary<string, string>
- The tags for the target NICs.
- Target
Proximity stringPlacement Group Id - The target proximity placement group Id.
- Target
Resource stringGroup Id - The target resource group Id.
- Target
Vm stringName - Target VM name.
- Target
Vm Pulumi.Security Profile Azure Native. Recovery Services. Inputs. VMware Cbt Security Profile Properties Response - The target VM security profile.
- Target
Vm stringSize - The target VM size.
- Dictionary<string, string>
- The target VM tags.
- Test
Network stringId - The test network Id.
- Vm
Nics List<Pulumi.Azure Native. Recovery Services. Inputs. VMware Cbt Nic Details Response> - The network details.
- Data
Mover stringRun As Account Id - The data mover run as account Id.
- Firmware
Type string - The firmware type.
- Initial
Seeding intProgress Percentage - The initial seeding progress percentage.
- Initial
Seeding float64Retry Count - The initial seeding retry count.
- Last
Recovery stringPoint Id - The last recovery point Id.
- Last
Recovery stringPoint Received - The last recovery point received time.
- Migration
Progress intPercentage - The migration progress percentage.
- Migration
Recovery stringPoint Id - The recovery point Id to which the VM was migrated.
- Os
Name string - The name of the OS on the VM.
- Os
Type string - The type of the OS on the VM.
- Resume
Progress intPercentage - The resume progress percentage.
- Resume
Retry float64Count - The resume retry count.
- Resync
Progress intPercentage - The resync progress percentage.
- Resync
Required string - A value indicating whether resync is required.
- Resync
Retry float64Count - The resync retry count.
- Resync
State string - The resync state.
- Snapshot
Run stringAs Account Id - The snapshot run as account Id.
- Storage
Account stringId - The replication storage account ARM Id. This is applicable only for the blob based replication test hook.
- Target
Generation string - The target generation.
- Target
Location string - The target location.
- Vmware
Machine stringId - The ARM Id of the VM discovered in VMware.
- Confidential
Vm stringKey Vault Id - The confidential VM key vault Id for ADE installation.
- License
Type string - License Type of the VM to be used.
- Perform
Auto stringResync - A value indicating whether auto resync is to be done.
- Protected
Disks []VMwareCbt Protected Disk Details Response - The list of protected disks.
- map[string]string
- The tags for the seed disks.
- Sql
Server stringLicense Type - The SQL Server license type.
- Supported
OSVersions []string - List of supported inplace OS Upgrade versions.
- Target
Availability stringSet Id - The target availability set Id.
- Target
Availability stringZone - The target availability zone.
- Target
Boot stringDiagnostics Storage Account Id - The target boot diagnostics storage account ARM Id.
- map[string]string
- The tags for the target disks.
- Target
Network stringId - The target network Id.
- map[string]string
- The tags for the target NICs.
- Target
Proximity stringPlacement Group Id - The target proximity placement group Id.
- Target
Resource stringGroup Id - The target resource group Id.
- Target
Vm stringName - Target VM name.
- Target
Vm VMwareSecurity Profile Cbt Security Profile Properties Response - The target VM security profile.
- Target
Vm stringSize - The target VM size.
- map[string]string
- The target VM tags.
- Test
Network stringId - The test network Id.
- Vm
Nics []VMwareCbt Nic Details Response - The network details.
- data
Mover StringRun As Account Id - The data mover run as account Id.
- firmware
Type String - The firmware type.
- initial
Seeding IntegerProgress Percentage - The initial seeding progress percentage.
- initial
Seeding DoubleRetry Count - The initial seeding retry count.
- last
Recovery StringPoint Id - The last recovery point Id.
- last
Recovery StringPoint Received - The last recovery point received time.
- migration
Progress IntegerPercentage - The migration progress percentage.
- migration
Recovery StringPoint Id - The recovery point Id to which the VM was migrated.
- os
Name String - The name of the OS on the VM.
- os
Type String - The type of the OS on the VM.
- resume
Progress IntegerPercentage - The resume progress percentage.
- resume
Retry DoubleCount - The resume retry count.
- resync
Progress IntegerPercentage - The resync progress percentage.
- resync
Required String - A value indicating whether resync is required.
- resync
Retry DoubleCount - The resync retry count.
- resync
State String - The resync state.
- snapshot
Run StringAs Account Id - The snapshot run as account Id.
- storage
Account StringId - The replication storage account ARM Id. This is applicable only for the blob based replication test hook.
- target
Generation String - The target generation.
- target
Location String - The target location.
- vmware
Machine StringId - The ARM Id of the VM discovered in VMware.
- confidential
Vm StringKey Vault Id - The confidential VM key vault Id for ADE installation.
- license
Type String - License Type of the VM to be used.
- perform
Auto StringResync - A value indicating whether auto resync is to be done.
- protected
Disks List<VMwareCbt Protected Disk Details Response> - The list of protected disks.
- Map<String,String>
- The tags for the seed disks.
- sql
Server StringLicense Type - The SQL Server license type.
- supported
OSVersions List<String> - List of supported inplace OS Upgrade versions.
- target
Availability StringSet Id - The target availability set Id.
- target
Availability StringZone - The target availability zone.
- target
Boot StringDiagnostics Storage Account Id - The target boot diagnostics storage account ARM Id.
- Map<String,String>
- The tags for the target disks.
- target
Network StringId - The target network Id.
- Map<String,String>
- The tags for the target NICs.
- target
Proximity StringPlacement Group Id - The target proximity placement group Id.
- target
Resource StringGroup Id - The target resource group Id.
- target
Vm StringName - Target VM name.
- target
Vm VMwareSecurity Profile Cbt Security Profile Properties Response - The target VM security profile.
- target
Vm StringSize - The target VM size.
- Map<String,String>
- The target VM tags.
- test
Network StringId - The test network Id.
- vm
Nics List<VMwareCbt Nic Details Response> - The network details.
- data
Mover stringRun As Account Id - The data mover run as account Id.
- firmware
Type string - The firmware type.
- initial
Seeding numberProgress Percentage - The initial seeding progress percentage.
- initial
Seeding numberRetry Count - The initial seeding retry count.
- last
Recovery stringPoint Id - The last recovery point Id.
- last
Recovery stringPoint Received - The last recovery point received time.
- migration
Progress numberPercentage - The migration progress percentage.
- migration
Recovery stringPoint Id - The recovery point Id to which the VM was migrated.
- os
Name string - The name of the OS on the VM.
- os
Type string - The type of the OS on the VM.
- resume
Progress numberPercentage - The resume progress percentage.
- resume
Retry numberCount - The resume retry count.
- resync
Progress numberPercentage - The resync progress percentage.
- resync
Required string - A value indicating whether resync is required.
- resync
Retry numberCount - The resync retry count.
- resync
State string - The resync state.
- snapshot
Run stringAs Account Id - The snapshot run as account Id.
- storage
Account stringId - The replication storage account ARM Id. This is applicable only for the blob based replication test hook.
- target
Generation string - The target generation.
- target
Location string - The target location.
- vmware
Machine stringId - The ARM Id of the VM discovered in VMware.
- confidential
Vm stringKey Vault Id - The confidential VM key vault Id for ADE installation.
- license
Type string - License Type of the VM to be used.
- perform
Auto stringResync - A value indicating whether auto resync is to be done.
- protected
Disks VMwareCbt Protected Disk Details Response[] - The list of protected disks.
- {[key: string]: string}
- The tags for the seed disks.
- sql
Server stringLicense Type - The SQL Server license type.
- supported
OSVersions string[] - List of supported inplace OS Upgrade versions.
- target
Availability stringSet Id - The target availability set Id.
- target
Availability stringZone - The target availability zone.
- target
Boot stringDiagnostics Storage Account Id - The target boot diagnostics storage account ARM Id.
- {[key: string]: string}
- The tags for the target disks.
- target
Network stringId - The target network Id.
- {[key: string]: string}
- The tags for the target NICs.
- target
Proximity stringPlacement Group Id - The target proximity placement group Id.
- target
Resource stringGroup Id - The target resource group Id.
- target
Vm stringName - Target VM name.
- target
Vm VMwareSecurity Profile Cbt Security Profile Properties Response - The target VM security profile.
- target
Vm stringSize - The target VM size.
- {[key: string]: string}
- The target VM tags.
- test
Network stringId - The test network Id.
- vm
Nics VMwareCbt Nic Details Response[] - The network details.
- data_
mover_ strrun_ as_ account_ id - The data mover run as account Id.
- firmware_
type str - The firmware type.
- initial_
seeding_ intprogress_ percentage - The initial seeding progress percentage.
- initial_
seeding_ floatretry_ count - The initial seeding retry count.
- last_
recovery_ strpoint_ id - The last recovery point Id.
- last_
recovery_ strpoint_ received - The last recovery point received time.
- migration_
progress_ intpercentage - The migration progress percentage.
- migration_
recovery_ strpoint_ id - The recovery point Id to which the VM was migrated.
- os_
name str - The name of the OS on the VM.
- os_
type str - The type of the OS on the VM.
- resume_
progress_ intpercentage - The resume progress percentage.
- resume_
retry_ floatcount - The resume retry count.
- resync_
progress_ intpercentage - The resync progress percentage.
- resync_
required str - A value indicating whether resync is required.
- resync_
retry_ floatcount - The resync retry count.
- resync_
state str - The resync state.
- snapshot_
run_ stras_ account_ id - The snapshot run as account Id.
- storage_
account_ strid - The replication storage account ARM Id. This is applicable only for the blob based replication test hook.
- target_
generation str - The target generation.
- target_
location str - The target location.
- vmware_
machine_ strid - The ARM Id of the VM discovered in VMware.
- confidential_
vm_ strkey_ vault_ id - The confidential VM key vault Id for ADE installation.
- license_
type str - License Type of the VM to be used.
- perform_
auto_ strresync - A value indicating whether auto resync is to be done.
- protected_
disks Sequence[VMwareCbt Protected Disk Details Response] - The list of protected disks.
- Mapping[str, str]
- The tags for the seed disks.
- sql_
server_ strlicense_ type - The SQL Server license type.
- supported_
os_ Sequence[str]versions - List of supported inplace OS Upgrade versions.
- target_
availability_ strset_ id - The target availability set Id.
- target_
availability_ strzone - The target availability zone.
- target_
boot_ strdiagnostics_ storage_ account_ id - The target boot diagnostics storage account ARM Id.
- Mapping[str, str]
- The tags for the target disks.
- target_
network_ strid - The target network Id.
- Mapping[str, str]
- The tags for the target NICs.
- target_
proximity_ strplacement_ group_ id - The target proximity placement group Id.
- target_
resource_ strgroup_ id - The target resource group Id.
- target_
vm_ strname - Target VM name.
- target_
vm_ VMwaresecurity_ profile Cbt Security Profile Properties Response - The target VM security profile.
- target_
vm_ strsize - The target VM size.
- Mapping[str, str]
- The target VM tags.
- test_
network_ strid - The test network Id.
- vm_
nics Sequence[VMwareCbt Nic Details Response] - The network details.
- data
Mover StringRun As Account Id - The data mover run as account Id.
- firmware
Type String - The firmware type.
- initial
Seeding NumberProgress Percentage - The initial seeding progress percentage.
- initial
Seeding NumberRetry Count - The initial seeding retry count.
- last
Recovery StringPoint Id - The last recovery point Id.
- last
Recovery StringPoint Received - The last recovery point received time.
- migration
Progress NumberPercentage - The migration progress percentage.
- migration
Recovery StringPoint Id - The recovery point Id to which the VM was migrated.
- os
Name String - The name of the OS on the VM.
- os
Type String - The type of the OS on the VM.
- resume
Progress NumberPercentage - The resume progress percentage.
- resume
Retry NumberCount - The resume retry count.
- resync
Progress NumberPercentage - The resync progress percentage.
- resync
Required String - A value indicating whether resync is required.
- resync
Retry NumberCount - The resync retry count.
- resync
State String - The resync state.
- snapshot
Run StringAs Account Id - The snapshot run as account Id.
- storage
Account StringId - The replication storage account ARM Id. This is applicable only for the blob based replication test hook.
- target
Generation String - The target generation.
- target
Location String - The target location.
- vmware
Machine StringId - The ARM Id of the VM discovered in VMware.
- confidential
Vm StringKey Vault Id - The confidential VM key vault Id for ADE installation.
- license
Type String - License Type of the VM to be used.
- perform
Auto StringResync - A value indicating whether auto resync is to be done.
- protected
Disks List<Property Map> - The list of protected disks.
- Map<String>
- The tags for the seed disks.
- sql
Server StringLicense Type - The SQL Server license type.
- supported
OSVersions List<String> - List of supported inplace OS Upgrade versions.
- target
Availability StringSet Id - The target availability set Id.
- target
Availability StringZone - The target availability zone.
- target
Boot StringDiagnostics Storage Account Id - The target boot diagnostics storage account ARM Id.
- Map<String>
- The tags for the target disks.
- target
Network StringId - The target network Id.
- Map<String>
- The tags for the target NICs.
- target
Proximity StringPlacement Group Id - The target proximity placement group Id.
- target
Resource StringGroup Id - The target resource group Id.
- target
Vm StringName - Target VM name.
- target
Vm Property MapSecurity Profile - The target VM security profile.
- target
Vm StringSize - The target VM size.
- Map<String>
- The target VM tags.
- test
Network StringId - The test network Id.
- vm
Nics List<Property Map> - The network details.
VMwareCbtNicDetailsResponse, VMwareCbtNicDetailsResponseArgs
- Nic
Id string - The NIC Id.
- Source
IPAddress string - The source IP address.
- Source
IPAddress stringType - The source IP address type.
- Source
Network stringId - Source network Id.
- Is
Primary stringNic - A value indicating whether this is the primary NIC.
- Is
Selected stringFor Migration - A value indicating whether this NIC is selected for migration.
- Target
IPAddress string - The target IP address.
- Target
IPAddress stringType - The target IP address type.
- Target
Nic stringName - Target NIC name.
- Target
Subnet stringName - Target subnet name.
- Test
IPAddress string - The test IP address.
- Test
IPAddress stringType - The test IP address type.
- Test
Network stringId - Source network Id.
- Test
Subnet stringName - Test subnet name.
- Nic
Id string - The NIC Id.
- Source
IPAddress string - The source IP address.
- Source
IPAddress stringType - The source IP address type.
- Source
Network stringId - Source network Id.
- Is
Primary stringNic - A value indicating whether this is the primary NIC.
- Is
Selected stringFor Migration - A value indicating whether this NIC is selected for migration.
- Target
IPAddress string - The target IP address.
- Target
IPAddress stringType - The target IP address type.
- Target
Nic stringName - Target NIC name.
- Target
Subnet stringName - Target subnet name.
- Test
IPAddress string - The test IP address.
- Test
IPAddress stringType - The test IP address type.
- Test
Network stringId - Source network Id.
- Test
Subnet stringName - Test subnet name.
- nic
Id String - The NIC Id.
- source
IPAddress String - The source IP address.
- source
IPAddress StringType - The source IP address type.
- source
Network StringId - Source network Id.
- is
Primary StringNic - A value indicating whether this is the primary NIC.
- is
Selected StringFor Migration - A value indicating whether this NIC is selected for migration.
- target
IPAddress String - The target IP address.
- target
IPAddress StringType - The target IP address type.
- target
Nic StringName - Target NIC name.
- target
Subnet StringName - Target subnet name.
- test
IPAddress String - The test IP address.
- test
IPAddress StringType - The test IP address type.
- test
Network StringId - Source network Id.
- test
Subnet StringName - Test subnet name.
- nic
Id string - The NIC Id.
- source
IPAddress string - The source IP address.
- source
IPAddress stringType - The source IP address type.
- source
Network stringId - Source network Id.
- is
Primary stringNic - A value indicating whether this is the primary NIC.
- is
Selected stringFor Migration - A value indicating whether this NIC is selected for migration.
- target
IPAddress string - The target IP address.
- target
IPAddress stringType - The target IP address type.
- target
Nic stringName - Target NIC name.
- target
Subnet stringName - Target subnet name.
- test
IPAddress string - The test IP address.
- test
IPAddress stringType - The test IP address type.
- test
Network stringId - Source network Id.
- test
Subnet stringName - Test subnet name.
- nic_
id str - The NIC Id.
- source_
ip_ straddress - The source IP address.
- source_
ip_ straddress_ type - The source IP address type.
- source_
network_ strid - Source network Id.
- is_
primary_ strnic - A value indicating whether this is the primary NIC.
- is_
selected_ strfor_ migration - A value indicating whether this NIC is selected for migration.
- target_
ip_ straddress - The target IP address.
- target_
ip_ straddress_ type - The target IP address type.
- target_
nic_ strname - Target NIC name.
- target_
subnet_ strname - Target subnet name.
- test_
ip_ straddress - The test IP address.
- test_
ip_ straddress_ type - The test IP address type.
- test_
network_ strid - Source network Id.
- test_
subnet_ strname - Test subnet name.
- nic
Id String - The NIC Id.
- source
IPAddress String - The source IP address.
- source
IPAddress StringType - The source IP address type.
- source
Network StringId - Source network Id.
- is
Primary StringNic - A value indicating whether this is the primary NIC.
- is
Selected StringFor Migration - A value indicating whether this NIC is selected for migration.
- target
IPAddress String - The target IP address.
- target
IPAddress StringType - The target IP address type.
- target
Nic StringName - Target NIC name.
- target
Subnet StringName - Target subnet name.
- test
IPAddress String - The test IP address.
- test
IPAddress StringType - The test IP address type.
- test
Network StringId - Source network Id.
- test
Subnet StringName - Test subnet name.
VMwareCbtProtectedDiskDetailsResponse, VMwareCbtProtectedDiskDetailsResponseArgs
- Capacity
In doubleBytes - The disk capacity in bytes.
- Disk
Encryption stringSet Id - The DiskEncryptionSet ARM Id.
- Disk
Id string - The disk id.
- Disk
Name string - The disk name.
- Disk
Path string - The disk path.
- Is
OSDisk string - A value indicating whether the disk is the OS disk.
- Log
Storage stringAccount Id - The log storage account ARM Id.
- Log
Storage stringAccount Sas Secret Name - The key vault secret name of the log storage account.
- Seed
Blob stringUri - The uri of the seed blob.
- Seed
Managed stringDisk Id - The ARM Id of the seed managed disk.
- Target
Blob stringUri - The uri of the target blob.
- Target
Managed stringDisk Id - The ARM Id of the target managed disk.
- Disk
Type string - The disk type.
- Target
Disk stringName - The name for the target managed disk.
- Capacity
In float64Bytes - The disk capacity in bytes.
- Disk
Encryption stringSet Id - The DiskEncryptionSet ARM Id.
- Disk
Id string - The disk id.
- Disk
Name string - The disk name.
- Disk
Path string - The disk path.
- Is
OSDisk string - A value indicating whether the disk is the OS disk.
- Log
Storage stringAccount Id - The log storage account ARM Id.
- Log
Storage stringAccount Sas Secret Name - The key vault secret name of the log storage account.
- Seed
Blob stringUri - The uri of the seed blob.
- Seed
Managed stringDisk Id - The ARM Id of the seed managed disk.
- Target
Blob stringUri - The uri of the target blob.
- Target
Managed stringDisk Id - The ARM Id of the target managed disk.
- Disk
Type string - The disk type.
- Target
Disk stringName - The name for the target managed disk.
- capacity
In DoubleBytes - The disk capacity in bytes.
- disk
Encryption StringSet Id - The DiskEncryptionSet ARM Id.
- disk
Id String - The disk id.
- disk
Name String - The disk name.
- disk
Path String - The disk path.
- is
OSDisk String - A value indicating whether the disk is the OS disk.
- log
Storage StringAccount Id - The log storage account ARM Id.
- log
Storage StringAccount Sas Secret Name - The key vault secret name of the log storage account.
- seed
Blob StringUri - The uri of the seed blob.
- seed
Managed StringDisk Id - The ARM Id of the seed managed disk.
- target
Blob StringUri - The uri of the target blob.
- target
Managed StringDisk Id - The ARM Id of the target managed disk.
- disk
Type String - The disk type.
- target
Disk StringName - The name for the target managed disk.
- capacity
In numberBytes - The disk capacity in bytes.
- disk
Encryption stringSet Id - The DiskEncryptionSet ARM Id.
- disk
Id string - The disk id.
- disk
Name string - The disk name.
- disk
Path string - The disk path.
- is
OSDisk string - A value indicating whether the disk is the OS disk.
- log
Storage stringAccount Id - The log storage account ARM Id.
- log
Storage stringAccount Sas Secret Name - The key vault secret name of the log storage account.
- seed
Blob stringUri - The uri of the seed blob.
- seed
Managed stringDisk Id - The ARM Id of the seed managed disk.
- target
Blob stringUri - The uri of the target blob.
- target
Managed stringDisk Id - The ARM Id of the target managed disk.
- disk
Type string - The disk type.
- target
Disk stringName - The name for the target managed disk.
- capacity_
in_ floatbytes - The disk capacity in bytes.
- disk_
encryption_ strset_ id - The DiskEncryptionSet ARM Id.
- disk_
id str - The disk id.
- disk_
name str - The disk name.
- disk_
path str - The disk path.
- is_
os_ strdisk - A value indicating whether the disk is the OS disk.
- log_
storage_ straccount_ id - The log storage account ARM Id.
- log_
storage_ straccount_ sas_ secret_ name - The key vault secret name of the log storage account.
- seed_
blob_ struri - The uri of the seed blob.
- seed_
managed_ strdisk_ id - The ARM Id of the seed managed disk.
- target_
blob_ struri - The uri of the target blob.
- target_
managed_ strdisk_ id - The ARM Id of the target managed disk.
- disk_
type str - The disk type.
- target_
disk_ strname - The name for the target managed disk.
- capacity
In NumberBytes - The disk capacity in bytes.
- disk
Encryption StringSet Id - The DiskEncryptionSet ARM Id.
- disk
Id String - The disk id.
- disk
Name String - The disk name.
- disk
Path String - The disk path.
- is
OSDisk String - A value indicating whether the disk is the OS disk.
- log
Storage StringAccount Id - The log storage account ARM Id.
- log
Storage StringAccount Sas Secret Name - The key vault secret name of the log storage account.
- seed
Blob StringUri - The uri of the seed blob.
- seed
Managed StringDisk Id - The ARM Id of the seed managed disk.
- target
Blob StringUri - The uri of the target blob.
- target
Managed StringDisk Id - The ARM Id of the target managed disk.
- disk
Type String - The disk type.
- target
Disk StringName - The name for the target managed disk.
VMwareCbtSecurityProfileProperties, VMwareCbtSecurityProfilePropertiesArgs
- Is
Target stringVm Confidential Encryption Enabled - A value indicating whether confidential compute encryption to be enabled.
- Is
Target stringVm Integrity Monitoring Enabled - A value indicating whether integrity monitoring to be enabled.
- Is
Target stringVm Secure Boot Enabled - A value indicating whether secure boot to be enabled.
- Is
Target stringVm Tpm Enabled - A value indicating whether trusted platform module to be enabled.
- Target
Vm string | Pulumi.Security Type Azure Native. Recovery Services. Security Type - The target VM security type.
- Is
Target stringVm Confidential Encryption Enabled - A value indicating whether confidential compute encryption to be enabled.
- Is
Target stringVm Integrity Monitoring Enabled - A value indicating whether integrity monitoring to be enabled.
- Is
Target stringVm Secure Boot Enabled - A value indicating whether secure boot to be enabled.
- Is
Target stringVm Tpm Enabled - A value indicating whether trusted platform module to be enabled.
- Target
Vm string | SecuritySecurity Type Type - The target VM security type.
- is
Target StringVm Confidential Encryption Enabled - A value indicating whether confidential compute encryption to be enabled.
- is
Target StringVm Integrity Monitoring Enabled - A value indicating whether integrity monitoring to be enabled.
- is
Target StringVm Secure Boot Enabled - A value indicating whether secure boot to be enabled.
- is
Target StringVm Tpm Enabled - A value indicating whether trusted platform module to be enabled.
- target
Vm String | SecuritySecurity Type Type - The target VM security type.
- is
Target stringVm Confidential Encryption Enabled - A value indicating whether confidential compute encryption to be enabled.
- is
Target stringVm Integrity Monitoring Enabled - A value indicating whether integrity monitoring to be enabled.
- is
Target stringVm Secure Boot Enabled - A value indicating whether secure boot to be enabled.
- is
Target stringVm Tpm Enabled - A value indicating whether trusted platform module to be enabled.
- target
Vm string | SecuritySecurity Type Type - The target VM security type.
- is_
target_ strvm_ confidential_ encryption_ enabled - A value indicating whether confidential compute encryption to be enabled.
- is_
target_ strvm_ integrity_ monitoring_ enabled - A value indicating whether integrity monitoring to be enabled.
- is_
target_ strvm_ secure_ boot_ enabled - A value indicating whether secure boot to be enabled.
- is_
target_ strvm_ tpm_ enabled - A value indicating whether trusted platform module to be enabled.
- target_
vm_ str | Securitysecurity_ type Type - The target VM security type.
- is
Target StringVm Confidential Encryption Enabled - A value indicating whether confidential compute encryption to be enabled.
- is
Target StringVm Integrity Monitoring Enabled - A value indicating whether integrity monitoring to be enabled.
- is
Target StringVm Secure Boot Enabled - A value indicating whether secure boot to be enabled.
- is
Target StringVm Tpm Enabled - A value indicating whether trusted platform module to be enabled.
- target
Vm String | "None" | "TrustedSecurity Type Launch" | "Confidential VM" - The target VM security type.
VMwareCbtSecurityProfilePropertiesResponse, VMwareCbtSecurityProfilePropertiesResponseArgs
- Is
Target stringVm Confidential Encryption Enabled - A value indicating whether confidential compute encryption to be enabled.
- Is
Target stringVm Integrity Monitoring Enabled - A value indicating whether integrity monitoring to be enabled.
- Is
Target stringVm Secure Boot Enabled - A value indicating whether secure boot to be enabled.
- Is
Target stringVm Tpm Enabled - A value indicating whether trusted platform module to be enabled.
- Target
Vm stringSecurity Type - The target VM security type.
- Is
Target stringVm Confidential Encryption Enabled - A value indicating whether confidential compute encryption to be enabled.
- Is
Target stringVm Integrity Monitoring Enabled - A value indicating whether integrity monitoring to be enabled.
- Is
Target stringVm Secure Boot Enabled - A value indicating whether secure boot to be enabled.
- Is
Target stringVm Tpm Enabled - A value indicating whether trusted platform module to be enabled.
- Target
Vm stringSecurity Type - The target VM security type.
- is
Target StringVm Confidential Encryption Enabled - A value indicating whether confidential compute encryption to be enabled.
- is
Target StringVm Integrity Monitoring Enabled - A value indicating whether integrity monitoring to be enabled.
- is
Target StringVm Secure Boot Enabled - A value indicating whether secure boot to be enabled.
- is
Target StringVm Tpm Enabled - A value indicating whether trusted platform module to be enabled.
- target
Vm StringSecurity Type - The target VM security type.
- is
Target stringVm Confidential Encryption Enabled - A value indicating whether confidential compute encryption to be enabled.
- is
Target stringVm Integrity Monitoring Enabled - A value indicating whether integrity monitoring to be enabled.
- is
Target stringVm Secure Boot Enabled - A value indicating whether secure boot to be enabled.
- is
Target stringVm Tpm Enabled - A value indicating whether trusted platform module to be enabled.
- target
Vm stringSecurity Type - The target VM security type.
- is_
target_ strvm_ confidential_ encryption_ enabled - A value indicating whether confidential compute encryption to be enabled.
- is_
target_ strvm_ integrity_ monitoring_ enabled - A value indicating whether integrity monitoring to be enabled.
- is_
target_ strvm_ secure_ boot_ enabled - A value indicating whether secure boot to be enabled.
- is_
target_ strvm_ tpm_ enabled - A value indicating whether trusted platform module to be enabled.
- target_
vm_ strsecurity_ type - The target VM security type.
- is
Target StringVm Confidential Encryption Enabled - A value indicating whether confidential compute encryption to be enabled.
- is
Target StringVm Integrity Monitoring Enabled - A value indicating whether integrity monitoring to be enabled.
- is
Target StringVm Secure Boot Enabled - A value indicating whether secure boot to be enabled.
- is
Target StringVm Tpm Enabled - A value indicating whether trusted platform module to be enabled.
- target
Vm StringSecurity Type - The target VM security type.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:recoveryservices:ReplicationMigrationItem virtualmachine1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.RecoveryServices/vaults/{resourceName}/replicationFabrics/{fabricName}/replicationProtectionContainers/{protectionContainerName}/replicationMigrationItems/{migrationItemName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0