UNPKG

@pulumi/gcp

Version:

A Pulumi package for creating and managing Google Cloud Platform resources.

68 lines 2.36 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Get information about a Google Backup DR Management server. * * > **Warning:** This resource is in beta, and should be used with the terraform-provider-google-beta provider. * See Provider Versions for more details on beta resources. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as gcp from "@pulumi/gcp"; * * const my_backup_dr_management_server = gcp.backupdisasterrecovery.getManagementServer({ * location: "us-central1", * }); * ``` */ export declare function getManagementServer(args: GetManagementServerArgs, opts?: pulumi.InvokeOptions): Promise<GetManagementServerResult>; /** * A collection of arguments for invoking getManagementServer. */ export interface GetManagementServerArgs { location: string; } /** * A collection of values returned by getManagementServer. */ export interface GetManagementServerResult { readonly deletionPolicy: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly location: string; readonly managementUris: outputs.backupdisasterrecovery.GetManagementServerManagementUri[]; readonly name: string; readonly networks: outputs.backupdisasterrecovery.GetManagementServerNetwork[]; readonly oauth2ClientId: string; readonly project: string; readonly type: string; } /** * Get information about a Google Backup DR Management server. * * > **Warning:** This resource is in beta, and should be used with the terraform-provider-google-beta provider. * See Provider Versions for more details on beta resources. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as gcp from "@pulumi/gcp"; * * const my_backup_dr_management_server = gcp.backupdisasterrecovery.getManagementServer({ * location: "us-central1", * }); * ``` */ export declare function getManagementServerOutput(args: GetManagementServerOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetManagementServerResult>; /** * A collection of arguments for invoking getManagementServer. */ export interface GetManagementServerOutputArgs { location: pulumi.Input<string>; } //# sourceMappingURL=getManagementServer.d.ts.map