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 Om Hub Multicloud Resources in Oracle Cloud Infrastructure Multicloud service. * * Lists Multicloud resources in the specified Multicloud subscription. * Details for each resource include Multicloud base compartment, name, state, resource type, and network anchor. * For more information, see * [Multicloud Resources](https://docs.cloud.oracle.com/iaas/Content/multicloud-hub/list-resources.htm). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOmHubMulticloudResources = oci.oci.getMulticloudOmHubMulticloudResources({ * subscriptionId: subscriptionId, * subscriptionServiceName: subscriptionServiceName, * compartmentId: compartmentId, * externalLocation: externalLocation, * resourceAnchorId: resourceAnchorId, * }); * ``` */ export declare function getMulticloudOmHubMulticloudResources(args?: GetMulticloudOmHubMulticloudResourcesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getMulticloudOmHubMulticloudResources. */ export interface GetMulticloudOmHubMulticloudResourcesArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId?: string; /** * The cloud service provider region. */ externalLocation?: string; filters?: inputs.oci.GetMulticloudOmHubMulticloudResourcesFilter[]; limit?: number; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the resource anchor. */ resourceAnchorId?: string; /** * Filter alerts by resource type (e.g. ADBD, VMCluster). */ resourceType?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Multicloud subscription in which to list resources. */ subscriptionId?: string; /** * The cloud service provider. */ subscriptionServiceName?: string; } /** * A collection of values returned by getMulticloudOmHubMulticloudResources. */ export interface GetMulticloudOmHubMulticloudResourcesResult { /** * Id of the compartment associated with the resource. */ readonly compartmentId?: string; readonly externalLocation?: string; readonly filters?: outputs.oci.GetMulticloudOmHubMulticloudResourcesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly limit?: number; /** * The list of OmHubMulticloudResource. */ readonly multicloudResourceCollections: outputs.oci.GetMulticloudOmHubMulticloudResourcesMulticloudResourceCollection[]; readonly resourceAnchorId?: string; /** * Type of resource, such as `VMCluster` or `ExaInfra`, */ readonly resourceType?: string; readonly subscriptionId?: string; readonly subscriptionServiceName?: string; } /** * This data source provides the list of Om Hub Multicloud Resources in Oracle Cloud Infrastructure Multicloud service. * * Lists Multicloud resources in the specified Multicloud subscription. * Details for each resource include Multicloud base compartment, name, state, resource type, and network anchor. * For more information, see * [Multicloud Resources](https://docs.cloud.oracle.com/iaas/Content/multicloud-hub/list-resources.htm). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOmHubMulticloudResources = oci.oci.getMulticloudOmHubMulticloudResources({ * subscriptionId: subscriptionId, * subscriptionServiceName: subscriptionServiceName, * compartmentId: compartmentId, * externalLocation: externalLocation, * resourceAnchorId: resourceAnchorId, * }); * ``` */ export declare function getMulticloudOmHubMulticloudResourcesOutput(args?: GetMulticloudOmHubMulticloudResourcesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getMulticloudOmHubMulticloudResources. */ export interface GetMulticloudOmHubMulticloudResourcesOutputArgs { /** * 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 cloud service provider region. */ externalLocation?: pulumi.Input; filters?: pulumi.Input[] | undefined>; limit?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the resource anchor. */ resourceAnchorId?: pulumi.Input; /** * Filter alerts by resource type (e.g. ADBD, VMCluster). */ resourceType?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Multicloud subscription in which to list resources. */ subscriptionId?: pulumi.Input; /** * The cloud service provider. */ subscriptionServiceName?: pulumi.Input; } //# sourceMappingURL=getMulticloudOmHubMulticloudResources.d.ts.map