azure-native.recoveryservices.ReplicationMigrationItem
Explore with Pulumi AI
Migration item.
Uses Azure REST API version 2024-10-01. In version 2.x of the Azure Native provider, it used API version 2023-04-01.
Other available API versions: 2023-02-01, 2023-04-01, 2023-06-01, 2023-08-01, 2024-01-01, 2024-02-01, 2024-04-01, 2025-01-01. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native recoveryservices [ApiVersion]
. See the version guide for details.
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/v3"
"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: &recoveryservices.VMwareCbtEnableMigrationInputArgs{
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(Map.ofEntries(
Map.entry("dataMoverRunAsAccountId", "/Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1/providers/Microsoft.OffAzure/VMwareSites/vmwaresite1/runasaccounts/dataMoverRunAsAccount1"),
Map.entry("disksToInclude", VMwareCbtDiskInputArgs.builder()
.diskId("disk1")
.isOSDisk("true")
.logStorageAccountId("/Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1/providers/Microsoft.Storage/storageAccounts/logStorageAccount1")
.logStorageAccountSasSecretName("logStorageSas")
.build()),
Map.entry("instanceType", "VMwareCbt"),
Map.entry("snapshotRunAsAccountId", "/Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1/providers/Microsoft.OffAzure/VMwareSites/vmwaresite1/runasaccounts/snapshotRunAsAccount1"),
Map.entry("targetNetworkId", "/Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1/providers/Microsoft.Network/virtualNetworks/virtualNetwork1"),
Map.entry("targetResourceGroupId", "/Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1"),
Map.entry("vmwareMachineId", "/Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1/providers/Microsoft.OffAzure/VMwareSites/vmwaresite1/machines/virtualmachine1")
))
.build())
.protectionContainerName("vmwareContainer1")
.resourceGroupName("resourcegroup1")
.resourceName("migrationvault")
.build());
}
}
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",
});
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={
"policy_id": "/Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1/providers/Microsoft.RecoveryServices/vaults/migrationvault/replicationPolicies/vmwarepolicy1",
"provider_specific_details": {
"data_mover_run_as_account_id": "/Subscriptions/cb53d0c3-bd59-4721-89bc-06916a9147ef/resourceGroups/resourcegroup1/providers/Microsoft.OffAzure/VMwareSites/vmwaresite1/runasaccounts/dataMoverRunAsAccount1",
"disks_to_include": [{
"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")
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",
SectorSizeInBytes = 0,
},
},
InstanceType = "VMwareCbt",
VmwareMachineId = "string",
TargetResourceGroupId = "string",
TargetNetworkId = "string",
TargetDiskTags =
{
{ "string", "string" },
},
LinuxLicenseType = "string",
PerformSqlBulkRegistration = "string",
SqlServerLicenseType = "string",
TargetAvailabilitySetId = "string",
TargetAvailabilityZone = "string",
TargetBootDiagnosticsStorageAccountId = "string",
ConfidentialVmKeyVaultId = "string",
PerformAutoResync = "string",
TargetNicTags =
{
{ "string", "string" },
},
TargetProximityPlacementGroupId = "string",
SeedDiskTags =
{
{ "string", "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",
UserSelectedOSName = "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: &recoveryservices.VMwareCbtEnableMigrationInputArgs{
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"),
SectorSizeInBytes: pulumi.Int(0),
},
},
InstanceType: pulumi.String("VMwareCbt"),
VmwareMachineId: pulumi.String("string"),
TargetResourceGroupId: pulumi.String("string"),
TargetNetworkId: pulumi.String("string"),
TargetDiskTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
LinuxLicenseType: pulumi.String("string"),
PerformSqlBulkRegistration: pulumi.String("string"),
SqlServerLicenseType: pulumi.String("string"),
TargetAvailabilitySetId: pulumi.String("string"),
TargetAvailabilityZone: pulumi.String("string"),
TargetBootDiagnosticsStorageAccountId: pulumi.String("string"),
ConfidentialVmKeyVaultId: pulumi.String("string"),
PerformAutoResync: pulumi.String("string"),
TargetNicTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
TargetProximityPlacementGroupId: pulumi.String("string"),
SeedDiskTags: pulumi.StringMap{
"string": 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"),
UserSelectedOSName: 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")
.sectorSizeInBytes(0)
.build())
.instanceType("VMwareCbt")
.vmwareMachineId("string")
.targetResourceGroupId("string")
.targetNetworkId("string")
.targetDiskTags(Map.of("string", "string"))
.linuxLicenseType("string")
.performSqlBulkRegistration("string")
.sqlServerLicenseType("string")
.targetAvailabilitySetId("string")
.targetAvailabilityZone("string")
.targetBootDiagnosticsStorageAccountId("string")
.confidentialVmKeyVaultId("string")
.performAutoResync("string")
.targetNicTags(Map.of("string", "string"))
.targetProximityPlacementGroupId("string")
.seedDiskTags(Map.of("string", "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")
.userSelectedOSName("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={
"policy_id": "string",
"provider_specific_details": {
"snapshot_run_as_account_id": "string",
"data_mover_run_as_account_id": "string",
"disks_to_include": [{
"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",
"sector_size_in_bytes": 0,
}],
"instance_type": "VMwareCbt",
"vmware_machine_id": "string",
"target_resource_group_id": "string",
"target_network_id": "string",
"target_disk_tags": {
"string": "string",
},
"linux_license_type": "string",
"perform_sql_bulk_registration": "string",
"sql_server_license_type": "string",
"target_availability_set_id": "string",
"target_availability_zone": "string",
"target_boot_diagnostics_storage_account_id": "string",
"confidential_vm_key_vault_id": "string",
"perform_auto_resync": "string",
"target_nic_tags": {
"string": "string",
},
"target_proximity_placement_group_id": "string",
"seed_disk_tags": {
"string": "string",
},
"target_subnet_name": "string",
"target_vm_name": "string",
"target_vm_security_profile": {
"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",
"user_selected_os_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",
sectorSizeInBytes: 0,
}],
instanceType: "VMwareCbt",
vmwareMachineId: "string",
targetResourceGroupId: "string",
targetNetworkId: "string",
targetDiskTags: {
string: "string",
},
linuxLicenseType: "string",
performSqlBulkRegistration: "string",
sqlServerLicenseType: "string",
targetAvailabilitySetId: "string",
targetAvailabilityZone: "string",
targetBootDiagnosticsStorageAccountId: "string",
confidentialVmKeyVaultId: "string",
performAutoResync: "string",
targetNicTags: {
string: "string",
},
targetProximityPlacementGroupId: "string",
seedDiskTags: {
string: "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",
userSelectedOSName: "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
sectorSizeInBytes: 0
instanceType: VMwareCbt
licenseType: string
linuxLicenseType: 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
userSelectedOSName: 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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
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:
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Resource Name
- Type string
- Resource Type
- Location string
- Resource Location
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Resource Name
- Type string
- Resource Type
- Location string
- Resource Location
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Resource Name
- type String
- Resource Type
- location String
- Resource Location
- azure
Api stringVersion - The Azure API version of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Resource Name
- type string
- Resource Type
- location string
- Resource Location
- azure_
api_ strversion - The Azure API version of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Resource Name
- type str
- Resource Type
- location str
- Resource Location
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Resource Name
- type String
- Resource Type
- location String
- Resource Location
Supporting Types
ApplianceMonitoringDetailsResponse, ApplianceMonitoringDetailsResponseArgs
- Cpu
Details Pulumi.Azure Native. Recovery Services. Inputs. Appliance Resource Details Response - The appliance CPU details.
- Datastore
Snapshot List<Pulumi.Azure Native. Recovery Services. Inputs. Data Store Utilization Details Response> - The appliance datastore snapshot details.
- Disks
Replication Pulumi.Details Azure Native. Recovery Services. Inputs. Appliance Resource Details Response - The disk replication details.
- Esxi
Nfc Pulumi.Buffer Azure Native. Recovery Services. Inputs. Appliance Resource Details Response - The ESXi NFC buffer details.
- Network
Bandwidth Pulumi.Azure Native. Recovery Services. Inputs. Appliance Resource Details Response - The appliance network bandwidth details.
- Ram
Details Pulumi.Azure Native. Recovery Services. Inputs. Appliance Resource Details Response - The appliance RAM details.
- Cpu
Details ApplianceResource Details Response - The appliance CPU details.
- Datastore
Snapshot []DataStore Utilization Details Response - The appliance datastore snapshot details.
- Disks
Replication ApplianceDetails Resource Details Response - The disk replication details.
- Esxi
Nfc ApplianceBuffer Resource Details Response - The ESXi NFC buffer details.
- Network
Bandwidth ApplianceResource Details Response - The appliance network bandwidth details.
- Ram
Details ApplianceResource Details Response - The appliance RAM details.
- cpu
Details ApplianceResource Details Response - The appliance CPU details.
- datastore
Snapshot List<DataStore Utilization Details Response> - The appliance datastore snapshot details.
- disks
Replication ApplianceDetails Resource Details Response - The disk replication details.
- esxi
Nfc ApplianceBuffer Resource Details Response - The ESXi NFC buffer details.
- network
Bandwidth ApplianceResource Details Response - The appliance network bandwidth details.
- ram
Details ApplianceResource Details Response - The appliance RAM details.
- cpu
Details ApplianceResource Details Response - The appliance CPU details.
- datastore
Snapshot DataStore Utilization Details Response[] - The appliance datastore snapshot details.
- disks
Replication ApplianceDetails Resource Details Response - The disk replication details.
- esxi
Nfc ApplianceBuffer Resource Details Response - The ESXi NFC buffer details.
- network
Bandwidth ApplianceResource Details Response - The appliance network bandwidth details.
- ram
Details ApplianceResource Details Response - The appliance RAM details.
- cpu_
details ApplianceResource Details Response - The appliance CPU details.
- datastore_
snapshot Sequence[DataStore Utilization Details Response] - The appliance datastore snapshot details.
- disks_
replication_ Appliancedetails Resource Details Response - The disk replication details.
- esxi_
nfc_ Appliancebuffer Resource Details Response - The ESXi NFC buffer details.
- network_
bandwidth ApplianceResource Details Response - The appliance network bandwidth details.
- ram_
details ApplianceResource Details Response - The appliance RAM details.
- cpu
Details Property Map - The appliance CPU details.
- datastore
Snapshot List<Property Map> - The appliance datastore snapshot details.
- disks
Replication Property MapDetails - The disk replication details.
- esxi
Nfc Property MapBuffer - The ESXi NFC buffer details.
- network
Bandwidth Property Map - The appliance network bandwidth details.
- ram
Details Property Map - The appliance RAM details.
ApplianceResourceDetailsResponse, ApplianceResourceDetailsResponseArgs
- Capacity double
- A value indicating the total capacity of appliance resource.
- Process
Utilization double - A value indicating the utilization percentage by gateway agent on appliance.
- Status string
- A value indicating the status of appliance resource.
- Total
Utilization double - A value indicating the total utilization percentage for all processes on the appliance.
- Capacity float64
- A value indicating the total capacity of appliance resource.
- Process
Utilization float64 - A value indicating the utilization percentage by gateway agent on appliance.
- Status string
- A value indicating the status of appliance resource.
- Total
Utilization float64 - A value indicating the total utilization percentage for all processes on the appliance.
- capacity Double
- A value indicating the total capacity of appliance resource.
- process
Utilization Double - A value indicating the utilization percentage by gateway agent on appliance.
- status String
- A value indicating the status of appliance resource.
- total
Utilization Double - A value indicating the total utilization percentage for all processes on the appliance.
- capacity number
- A value indicating the total capacity of appliance resource.
- process
Utilization number - A value indicating the utilization percentage by gateway agent on appliance.
- status string
- A value indicating the status of appliance resource.
- total
Utilization number - A value indicating the total utilization percentage for all processes on the appliance.
- capacity float
- A value indicating the total capacity of appliance resource.
- process_
utilization float - A value indicating the utilization percentage by gateway agent on appliance.
- status str
- A value indicating the status of appliance resource.
- total_
utilization float - A value indicating the total utilization percentage for all processes on the appliance.
- capacity Number
- A value indicating the total capacity of appliance resource.
- process
Utilization Number - A value indicating the utilization percentage by gateway agent on appliance.
- status String
- A value indicating the status of appliance resource.
- total
Utilization Number - A value indicating the total utilization percentage for all processes on the appliance.
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.
DataStoreUtilizationDetailsResponse, DataStoreUtilizationDetailsResponseArgs
- Data
Store stringName - The datastore name.
- Total
Snapshots doubleCreated - The total snapshots created for server migration in the datastore.
- Total
Snapshots doubleSupported - The total count of snapshots supported by the datastore.
- Data
Store stringName - The datastore name.
- Total
Snapshots float64Created - The total snapshots created for server migration in the datastore.
- Total
Snapshots float64Supported - The total count of snapshots supported by the datastore.
- data
Store StringName - The datastore name.
- total
Snapshots DoubleCreated - The total snapshots created for server migration in the datastore.
- total
Snapshots DoubleSupported - The total count of snapshots supported by the datastore.
- data
Store stringName - The datastore name.
- total
Snapshots numberCreated - The total snapshots created for server migration in the datastore.
- total
Snapshots numberSupported - The total count of snapshots supported by the datastore.
- data_
store_ strname - The datastore name.
- total_
snapshots_ floatcreated - The total snapshots created for server migration in the datastore.
- total_
snapshots_ floatsupported - The total count of snapshots supported by the datastore.
- data
Store StringName - The datastore name.
- total
Snapshots NumberCreated - The total snapshots created for server migration in the datastore.
- total
Snapshots NumberSupported - The total count of snapshots supported by the datastore.
DiskAccountType, DiskAccountTypeArgs
- Standard_LRS
- Standard_LRS
- Premium_LRS
- Premium_LRS
- Standard
SSD_LRS - StandardSSD_LRS
- Premium
V2_LRS - PremiumV2_LRS
- Ultra
SSD_LRS - UltraSSD_LRS
- Standard
SSD_ZRS - StandardSSD_ZRS
- Premium_ZRS
- Premium_ZRS
- Disk
Account Type_Standard_LRS - Standard_LRS
- Disk
Account Type_Premium_LRS - Premium_LRS
- Disk
Account Type_Standard SSD_LRS - StandardSSD_LRS
- Disk
Account Type_Premium V2_LRS - PremiumV2_LRS
- Disk
Account Type_Ultra SSD_LRS - UltraSSD_LRS
- Disk
Account Type_Standard SSD_ZRS - StandardSSD_ZRS
- Disk
Account Type_Premium_ZRS - Premium_ZRS
- Standard_LRS
- Standard_LRS
- Premium_LRS
- Premium_LRS
- Standard
SSD_LRS - StandardSSD_LRS
- Premium
V2_LRS - PremiumV2_LRS
- Ultra
SSD_LRS - UltraSSD_LRS
- Standard
SSD_ZRS - StandardSSD_ZRS
- Premium_ZRS
- Premium_ZRS
- Standard_LRS
- Standard_LRS
- Premium_LRS
- Premium_LRS
- Standard
SSD_LRS - StandardSSD_LRS
- Premium
V2_LRS - PremiumV2_LRS
- Ultra
SSD_LRS - UltraSSD_LRS
- Standard
SSD_ZRS - StandardSSD_ZRS
- Premium_ZRS
- Premium_ZRS
- STANDARD_LRS
- Standard_LRS
- PREMIUM_LRS
- Premium_LRS
- STANDARD_SS_D_LRS
- StandardSSD_LRS
- PREMIUM_V2_LRS
- PremiumV2_LRS
- ULTRA_SS_D_LRS
- UltraSSD_LRS
- STANDARD_SS_D_ZRS
- StandardSSD_ZRS
- PREMIUM_ZRS
- Premium_ZRS
- "Standard_LRS"
- Standard_LRS
- "Premium_LRS"
- Premium_LRS
- "Standard
SSD_LRS" - StandardSSD_LRS
- "Premium
V2_LRS" - PremiumV2_LRS
- "Ultra
SSD_LRS" - UltraSSD_LRS
- "Standard
SSD_ZRS" - StandardSSD_ZRS
- "Premium_ZRS"
- Premium_ZRS
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.
GatewayOperationDetailsResponse, GatewayOperationDetailsResponseArgs
- Data
Stores List<string> - A value indicating the datastore collection.
- Host
Name string - A value indicating the ESXi host name.
- Progress
Percentage int - A value indicating the progress percentage of gateway operation.
- State string
- A value indicating the state of gateway operation.
- Time
Elapsed double - A value indicating the time elapsed for the operation in milliseconds.
- Time
Remaining double - A value indicating the time remaining for the operation in milliseconds.
- Upload
Speed double - A value indicating the upload speed in bytes per second.
- Vmware
Read doubleThroughput - A value indicating the VMware read throughput in bytes per second.
- Data
Stores []string - A value indicating the datastore collection.
- Host
Name string - A value indicating the ESXi host name.
- Progress
Percentage int - A value indicating the progress percentage of gateway operation.
- State string
- A value indicating the state of gateway operation.
- Time
Elapsed float64 - A value indicating the time elapsed for the operation in milliseconds.
- Time
Remaining float64 - A value indicating the time remaining for the operation in milliseconds.
- Upload
Speed float64 - A value indicating the upload speed in bytes per second.
- Vmware
Read float64Throughput - A value indicating the VMware read throughput in bytes per second.
- data
Stores List<String> - A value indicating the datastore collection.
- host
Name String - A value indicating the ESXi host name.
- progress
Percentage Integer - A value indicating the progress percentage of gateway operation.
- state String
- A value indicating the state of gateway operation.
- time
Elapsed Double - A value indicating the time elapsed for the operation in milliseconds.
- time
Remaining Double - A value indicating the time remaining for the operation in milliseconds.
- upload
Speed Double - A value indicating the upload speed in bytes per second.
- vmware
Read DoubleThroughput - A value indicating the VMware read throughput in bytes per second.
- data
Stores string[] - A value indicating the datastore collection.
- host
Name string - A value indicating the ESXi host name.
- progress
Percentage number - A value indicating the progress percentage of gateway operation.
- state string
- A value indicating the state of gateway operation.
- time
Elapsed number - A value indicating the time elapsed for the operation in milliseconds.
- time
Remaining number - A value indicating the time remaining for the operation in milliseconds.
- upload
Speed number - A value indicating the upload speed in bytes per second.
- vmware
Read numberThroughput - A value indicating the VMware read throughput in bytes per second.
- data_
stores Sequence[str] - A value indicating the datastore collection.
- host_
name str - A value indicating the ESXi host name.
- progress_
percentage int - A value indicating the progress percentage of gateway operation.
- state str
- A value indicating the state of gateway operation.
- time_
elapsed float - A value indicating the time elapsed for the operation in milliseconds.
- time_
remaining float - A value indicating the time remaining for the operation in milliseconds.
- upload_
speed float - A value indicating the upload speed in bytes per second.
- vmware_
read_ floatthroughput - A value indicating the VMware read throughput in bytes per second.
- data
Stores List<String> - A value indicating the datastore collection.
- host
Name String - A value indicating the ESXi host name.
- progress
Percentage Number - A value indicating the progress percentage of gateway operation.
- state String
- A value indicating the state of gateway operation.
- time
Elapsed Number - A value indicating the time elapsed for the operation in milliseconds.
- time
Remaining Number - A value indicating the time remaining for the operation in milliseconds.
- upload
Speed Number - A value indicating the upload speed in bytes per second.
- vmware
Read NumberThroughput - A value indicating the VMware read throughput in bytes per second.
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
LinuxLicenseType, LinuxLicenseTypeArgs
- Not
Specified - NotSpecified
- No
License Type - NoLicenseType
- Linux
Server - LinuxServer
- Linux
License Type Not Specified - NotSpecified
- Linux
License Type No License Type - NoLicenseType
- Linux
License Type Linux Server - LinuxServer
- Not
Specified - NotSpecified
- No
License Type - NoLicenseType
- Linux
Server - LinuxServer
- Not
Specified - NotSpecified
- No
License Type - NoLicenseType
- Linux
Server - LinuxServer
- NOT_SPECIFIED
- NotSpecified
- NO_LICENSE_TYPE
- NoLicenseType
- LINUX_SERVER
- LinuxServer
- "Not
Specified" - NotSpecified
- "No
License Type" - NoLicenseType
- "Linux
Server" - LinuxServer
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.
- Sector
Size intIn Bytes - The logical sector size (in bytes), 512 by default.
- 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.
- Sector
Size intIn Bytes - The logical sector size (in bytes), 512 by default.
- 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.
- sector
Size IntegerIn Bytes - The logical sector size (in bytes), 512 by default.
- 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.
- sector
Size numberIn Bytes - The logical sector size (in bytes), 512 by default.
- 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.
- sector_
size_ intin_ bytes - The logical sector size (in bytes), 512 by default.
- 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" | "Premium V2_LRS" | "Ultra SSD_LRS" | "Standard SSD_ZRS" | "Premium_ZRS" - The disk type.
- sector
Size NumberIn Bytes - The logical sector size (in bytes), 512 by default.
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.
- Linux
License string | Pulumi.Type Azure Native. Recovery Services. Linux License Type - The license type for Linux VM's.
- 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.
- User
Selected stringOSName - The OS name selected by user.
- 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.
- Linux
License string | LinuxType License Type - The license type for Linux VM's.
- 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.
- User
Selected stringOSName - The OS name selected by user.
- 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.
- linux
License String | LinuxType License Type - The license type for Linux VM's.
- 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.
- user
Selected StringOSName - The OS name selected by user.
- 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.
- linux
License string | LinuxType License Type - The license type for Linux VM's.
- 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.
- user
Selected stringOSName - The OS name selected by user.
- 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.
- linux_
license_ str | Linuxtype License Type - The license type for Linux VM's.
- 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.
- user_
selected_ stros_ name - The OS name selected by user.
- 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.
- linux
License String | "NotType Specified" | "No License Type" | "Linux Server" - The license type for Linux VM's.
- 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.
- user
Selected StringOSName - The OS name selected by user.
VMwareCbtMigrationDetailsResponse, VMwareCbtMigrationDetailsResponseArgs
- Appliance
Monitoring Pulumi.Details Azure Native. Recovery Services. Inputs. Appliance Monitoring Details Response - A value indicating the appliance monitoring details.
- Data
Mover stringRun As Account Id - The data mover run as account Id.
- Delta
Sync intProgress Percentage - The delta sync progress percentage.
- Delta
Sync doubleRetry Count - The delta sync retry count.
- Firmware
Type string - The firmware type.
- Gateway
Operation Pulumi.Details Azure Native. Recovery Services. Inputs. Gateway Operation Details Response - A value indicating the gateway operation details.
- Initial
Seeding intProgress Percentage - The initial seeding progress percentage.
- Initial
Seeding doubleRetry Count - The initial seeding retry count.
- Is
Check stringSum Resync Cycle - A value indicating whether checksum resync cycle is in progress.
- 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.
- Operation
Name string - A value indicating the SRS operation name.
- 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.
- Linux
License stringType - The license type for Linux VM's.
- 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> - A value indicating the inplace OS Upgrade version.
- 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.
- Appliance
Monitoring ApplianceDetails Monitoring Details Response - A value indicating the appliance monitoring details.
- Data
Mover stringRun As Account Id - The data mover run as account Id.
- Delta
Sync intProgress Percentage - The delta sync progress percentage.
- Delta
Sync float64Retry Count - The delta sync retry count.
- Firmware
Type string - The firmware type.
- Gateway
Operation GatewayDetails Operation Details Response - A value indicating the gateway operation details.
- Initial
Seeding intProgress Percentage - The initial seeding progress percentage.
- Initial
Seeding float64Retry Count - The initial seeding retry count.
- Is
Check stringSum Resync Cycle - A value indicating whether checksum resync cycle is in progress.
- 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.
- Operation
Name string - A value indicating the SRS operation name.
- 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.
- Linux
License stringType - The license type for Linux VM's.
- 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 - A value indicating the inplace OS Upgrade version.
- 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.
- appliance
Monitoring ApplianceDetails Monitoring Details Response - A value indicating the appliance monitoring details.
- data
Mover StringRun As Account Id - The data mover run as account Id.
- delta
Sync IntegerProgress Percentage - The delta sync progress percentage.
- delta
Sync DoubleRetry Count - The delta sync retry count.
- firmware
Type String - The firmware type.
- gateway
Operation GatewayDetails Operation Details Response - A value indicating the gateway operation details.
- initial
Seeding IntegerProgress Percentage - The initial seeding progress percentage.
- initial
Seeding DoubleRetry Count - The initial seeding retry count.
- is
Check StringSum Resync Cycle - A value indicating whether checksum resync cycle is in progress.
- 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.
- operation
Name String - A value indicating the SRS operation name.
- 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.
- linux
License StringType - The license type for Linux VM's.
- 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> - A value indicating the inplace OS Upgrade version.
- 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.
- appliance
Monitoring ApplianceDetails Monitoring Details Response - A value indicating the appliance monitoring details.
- data
Mover stringRun As Account Id - The data mover run as account Id.
- delta
Sync numberProgress Percentage - The delta sync progress percentage.
- delta
Sync numberRetry Count - The delta sync retry count.
- firmware
Type string - The firmware type.
- gateway
Operation GatewayDetails Operation Details Response - A value indicating the gateway operation details.
- initial
Seeding numberProgress Percentage - The initial seeding progress percentage.
- initial
Seeding numberRetry Count - The initial seeding retry count.
- is
Check stringSum Resync Cycle - A value indicating whether checksum resync cycle is in progress.
- 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.
- operation
Name string - A value indicating the SRS operation name.
- 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.
- linux
License stringType - The license type for Linux VM's.
- 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[] - A value indicating the inplace OS Upgrade version.
- 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.
- appliance_
monitoring_ Appliancedetails Monitoring Details Response - A value indicating the appliance monitoring details.
- data_
mover_ strrun_ as_ account_ id - The data mover run as account Id.
- delta_
sync_ intprogress_ percentage - The delta sync progress percentage.
- delta_
sync_ floatretry_ count - The delta sync retry count.
- firmware_
type str - The firmware type.
- gateway_
operation_ Gatewaydetails Operation Details Response - A value indicating the gateway operation details.
- initial_
seeding_ intprogress_ percentage - The initial seeding progress percentage.
- initial_
seeding_ floatretry_ count - The initial seeding retry count.
- is_
check_ strsum_ resync_ cycle - A value indicating whether checksum resync cycle is in progress.
- 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.
- operation_
name str - A value indicating the SRS operation name.
- 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.
- linux_
license_ strtype - The license type for Linux VM's.
- 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 - A value indicating the inplace OS Upgrade version.
- 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.
- appliance
Monitoring Property MapDetails - A value indicating the appliance monitoring details.
- data
Mover StringRun As Account Id - The data mover run as account Id.
- delta
Sync NumberProgress Percentage - The delta sync progress percentage.
- delta
Sync NumberRetry Count - The delta sync retry count.
- firmware
Type String - The firmware type.
- gateway
Operation Property MapDetails - A value indicating the gateway operation details.
- initial
Seeding NumberProgress Percentage - The initial seeding progress percentage.
- initial
Seeding NumberRetry Count - The initial seeding retry count.
- is
Check StringSum Resync Cycle - A value indicating whether checksum resync cycle is in progress.
- 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.
- operation
Name String - A value indicating the SRS operation name.
- 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.
- linux
License StringType - The license type for Linux VM's.
- 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> - A value indicating the inplace OS Upgrade version.
- 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.
- Gateway
Operation Pulumi.Details Azure Native. Recovery Services. Inputs. Gateway Operation Details Response - A value indicating the gateway operation details.
- 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.
- Sector
Size intIn Bytes - The logical sector size (in bytes), 512 by default.
- 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.
- Gateway
Operation GatewayDetails Operation Details Response - A value indicating the gateway operation details.
- 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.
- Sector
Size intIn Bytes - The logical sector size (in bytes), 512 by default.
- 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.
- gateway
Operation GatewayDetails Operation Details Response - A value indicating the gateway operation details.
- 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.
- sector
Size IntegerIn Bytes - The logical sector size (in bytes), 512 by default.
- 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.
- gateway
Operation GatewayDetails Operation Details Response - A value indicating the gateway operation details.
- 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.
- sector
Size numberIn Bytes - The logical sector size (in bytes), 512 by default.
- 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.
- gateway_
operation_ Gatewaydetails Operation Details Response - A value indicating the gateway operation details.
- 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.
- sector_
size_ intin_ bytes - The logical sector size (in bytes), 512 by default.
- 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.
- gateway
Operation Property MapDetails - A value indicating the gateway operation details.
- 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.
- sector
Size NumberIn Bytes - The logical sector size (in bytes), 512 by default.
- 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