UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

86 lines (85 loc) 2.78 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Gets the move collection. * * Uses Azure REST API version 2023-08-01. * * Other available API versions: 2019-10-01-preview, 2021-01-01, 2021-08-01, 2022-08-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native migrate [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getMoveCollection(args: GetMoveCollectionArgs, opts?: pulumi.InvokeOptions): Promise<GetMoveCollectionResult>; export interface GetMoveCollectionArgs { /** * The Move Collection Name. */ moveCollectionName: string; /** * The Resource Group Name. */ resourceGroupName: string; } /** * Define the move collection. */ export interface GetMoveCollectionResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * The etag of the resource. */ readonly etag: string; /** * Fully qualified resource Id for the resource. */ readonly id: string; /** * Defines the MSI properties of the Move Collection. */ readonly identity?: outputs.migrate.IdentityResponse; /** * The geo-location where the resource lives. */ readonly location?: string; /** * The name of the resource */ readonly name: string; /** * Defines the move collection properties. */ readonly properties: outputs.migrate.MoveCollectionPropertiesResponse; /** * Metadata pertaining to creation and last modification of the resource. */ readonly systemData: outputs.migrate.SystemDataResponse; /** * Resource tags. */ readonly tags?: { [key: string]: string; }; /** * The type of the resource. */ readonly type: string; } /** * Gets the move collection. * * Uses Azure REST API version 2023-08-01. * * Other available API versions: 2019-10-01-preview, 2021-01-01, 2021-08-01, 2022-08-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native migrate [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getMoveCollectionOutput(args: GetMoveCollectionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetMoveCollectionResult>; export interface GetMoveCollectionOutputArgs { /** * The Move Collection Name. */ moveCollectionName: pulumi.Input<string>; /** * The Resource Group Name. */ resourceGroupName: pulumi.Input<string>; }