import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of External Location Mapping Metadata in Oracle Cloud Infrastructure Multicloud service. * * List mapped partner cloud regions and zones across cloud service providers * for the specified Multicloud base compartment and subscription service name. * Each mapping includes the Oracle Cloud Infrastructure region, logical availability domain, and physical availability domain, * along with mapped partner cloud details that depend on the partner cloud. * For example, Azure includes a logical zone while AWS doesn't. * For more information, see * [Cross-Cloud Region-Zone Mapping](https://docs.cloud.oracle.com/iaas/Content/multicloud-hub/view-cloud-mapping.htm). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testExternalLocationMappingMetadata = oci.oci.getMulticloudExternalLocationMappingMetadata({ * compartmentId: compartmentId, * subscriptionServiceNames: subscriptionServiceNameList, * subscriptionId: subscriptionId, * }); * ``` */ export declare function getMulticloudExternalLocationMappingMetadata(args: GetMulticloudExternalLocationMappingMetadataArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getMulticloudExternalLocationMappingMetadata. */ export interface GetMulticloudExternalLocationMappingMetadataArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId: string; filters?: inputs.oci.GetMulticloudExternalLocationMappingMetadataFilter[]; limit?: number; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription in which to list resources. */ subscriptionId?: string; /** * The subscription type values from [ORACLEDBATAZURE, ORACLEDBATGOOGLE, ORACLEDBATAWS] */ subscriptionServiceNames: string[]; } /** * A collection of values returned by getMulticloudExternalLocationMappingMetadata. */ export interface GetMulticloudExternalLocationMappingMetadataResult { readonly compartmentId: string; /** * The list of ExternalLocationMappingMetadata. */ readonly externalLocationMappingMetadatumSummaryCollections: outputs.oci.GetMulticloudExternalLocationMappingMetadataExternalLocationMappingMetadatumSummaryCollection[]; readonly filters?: outputs.oci.GetMulticloudExternalLocationMappingMetadataFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly limit?: number; readonly subscriptionId?: string; readonly subscriptionServiceNames: string[]; } /** * This data source provides the list of External Location Mapping Metadata in Oracle Cloud Infrastructure Multicloud service. * * List mapped partner cloud regions and zones across cloud service providers * for the specified Multicloud base compartment and subscription service name. * Each mapping includes the Oracle Cloud Infrastructure region, logical availability domain, and physical availability domain, * along with mapped partner cloud details that depend on the partner cloud. * For example, Azure includes a logical zone while AWS doesn't. * For more information, see * [Cross-Cloud Region-Zone Mapping](https://docs.cloud.oracle.com/iaas/Content/multicloud-hub/view-cloud-mapping.htm). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testExternalLocationMappingMetadata = oci.oci.getMulticloudExternalLocationMappingMetadata({ * compartmentId: compartmentId, * subscriptionServiceNames: subscriptionServiceNameList, * subscriptionId: subscriptionId, * }); * ``` */ export declare function getMulticloudExternalLocationMappingMetadataOutput(args: GetMulticloudExternalLocationMappingMetadataOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getMulticloudExternalLocationMappingMetadata. */ export interface GetMulticloudExternalLocationMappingMetadataOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; limit?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription in which to list resources. */ subscriptionId?: pulumi.Input; /** * The subscription type values from [ORACLEDBATAZURE, ORACLEDBATGOOGLE, ORACLEDBATAWS] */ subscriptionServiceNames: pulumi.Input[]>; } //# sourceMappingURL=getMulticloudExternalLocationMappingMetadata.d.ts.map