Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

AzureSourceDetails

import type { AzureSourceDetails } from "https://googleapis.deno.dev/v1/vmmigration:v1.ts";

AzureSourceDetails message describes a specific source details for the Azure source type.

interface AzureSourceDetails {
azureLocation?: string;
clientSecretCreds?: ClientSecretCredentials;
readonly error?: Status;
migrationResourcesUserTags?: {
[key: string]: string;
}
;
readonly resourceGroupId?: string;
readonly state?:
| "STATE_UNSPECIFIED"
| "PENDING"
| "FAILED"
| "ACTIVE";
subscriptionId?: string;
}

§Properties

§
azureLocation?: string
[src]

Immutable. The Azure location (region) that the source VMs will be migrated from.

§
clientSecretCreds?: ClientSecretCredentials
[src]

Azure Credentials using tenant ID, client ID and secret.

§
readonly error?: Status
[src]

Output only. Provides details on the state of the Source in case of an error.

§
migrationResourcesUserTags?: {
[key: string]: string;
}
[src]

User specified tags to add to every M2VM generated resource in Azure. These tags will be set in addition to the default tags that are set as part of the migration process. The tags must not begin with the reserved prefix m4ce or m2vm.

§
readonly resourceGroupId?: string
[src]

Output only. The ID of the Azure resource group that contains all resources related to the migration process of this source.

§
readonly state?: "STATE_UNSPECIFIED" | "PENDING" | "FAILED" | "ACTIVE"
[src]

Output only. State of the source as determined by the health check.

§
subscriptionId?: string
[src]

Immutable. Azure subscription ID.