import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific OmHub MultiCloud base compartment in Oracle Cloud Infrastructure Multicloud service. * * Gets information about multicloud base compartment * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOmHubMultiCloudMetadata = oci.oci.getMulticloudOmHubMultiCloudMetadata({ * compartmentId: compartmentId, * subscriptionId: subscriptionId, * }); * ``` */ export declare function getMulticloudOmHubMultiCloudMetadata(args: GetMulticloudOmHubMultiCloudMetadataArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getMulticloudOmHubMultiCloudMetadata. */ export interface GetMulticloudOmHubMultiCloudMetadataArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure subscription. */ subscriptionId: string; } /** * A collection of values returned by getMulticloudOmHubMultiCloudMetadata. */ export interface GetMulticloudOmHubMultiCloudMetadataResult { /** * MultiCloud base compartment OCID associated with subscriptionId. */ readonly baseCompartmentId: string; /** * Oracle Cloud Infrastructure subscriptionId. */ readonly baseSubscriptionId: string; readonly compartmentId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; /** * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly subscriptionId: string; /** * System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The date and time the multicloud compartment was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z` */ readonly timeCreated: string; } /** * This data source provides details about a specific OmHub MultiCloud base compartment in Oracle Cloud Infrastructure Multicloud service. * * Gets information about multicloud base compartment * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOmHubMultiCloudMetadata = oci.oci.getMulticloudOmHubMultiCloudMetadata({ * compartmentId: compartmentId, * subscriptionId: subscriptionId, * }); * ``` */ export declare function getMulticloudOmHubMultiCloudMetadataOutput(args: GetMulticloudOmHubMultiCloudMetadataOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getMulticloudOmHubMultiCloudMetadata. */ export interface GetMulticloudOmHubMultiCloudMetadataOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure subscription. */ subscriptionId: pulumi.Input; } //# sourceMappingURL=getMulticloudOmHubMultiCloudMetadata.d.ts.map