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 Namespace Occ Overviews in Oracle Cloud Infrastructure Capacity Management service. * * Lists an overview of all resources in that namespace in a given time interval. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testNamespaceOccOverviews = oci.capacitymanagement.getNamespaceOccOverviews({ * compartmentId: compartmentId, * namespace: namespaceOccOverviewNamespace, * from: namespaceOccOverviewFrom, * to: namespaceOccOverviewTo, * workloadType: namespaceOccOverviewWorkloadType, * }); * ``` */ export declare function getNamespaceOccOverviews(args: GetNamespaceOccOverviewsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getNamespaceOccOverviews. */ export interface GetNamespaceOccOverviewsArgs { /** * The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes. */ compartmentId: string; filters?: inputs.CapacityManagement.GetNamespaceOccOverviewsFilter[]; /** * The month corresponding to this date would be considered as the starting point of the time period against which we would like to perform an aggregation. */ from?: string; /** * The namespace by which we would filter the list. */ namespace: string; /** * The month corresponding to this date would be considered as the ending point of the time period against which we would like to perform an aggregation. */ to?: string; /** * Workload type using the resources in an availability catalog can be filtered. */ workloadType?: string; } /** * A collection of values returned by getNamespaceOccOverviews. */ export interface GetNamespaceOccOverviewsResult { /** * The OCID of the compartment from which the api call is made. This will be used for authorizing the request. */ readonly compartmentId: string; readonly filters?: outputs.CapacityManagement.GetNamespaceOccOverviewsFilter[]; readonly from?: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly namespace: string; /** * The list of occ_overview_collection. */ readonly occOverviewCollections: outputs.CapacityManagement.GetNamespaceOccOverviewsOccOverviewCollection[]; readonly to?: string; readonly workloadType?: string; } /** * This data source provides the list of Namespace Occ Overviews in Oracle Cloud Infrastructure Capacity Management service. * * Lists an overview of all resources in that namespace in a given time interval. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testNamespaceOccOverviews = oci.capacitymanagement.getNamespaceOccOverviews({ * compartmentId: compartmentId, * namespace: namespaceOccOverviewNamespace, * from: namespaceOccOverviewFrom, * to: namespaceOccOverviewTo, * workloadType: namespaceOccOverviewWorkloadType, * }); * ``` */ export declare function getNamespaceOccOverviewsOutput(args: GetNamespaceOccOverviewsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getNamespaceOccOverviews. */ export interface GetNamespaceOccOverviewsOutputArgs { /** * The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes. */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The month corresponding to this date would be considered as the starting point of the time period against which we would like to perform an aggregation. */ from?: pulumi.Input; /** * The namespace by which we would filter the list. */ namespace: pulumi.Input; /** * The month corresponding to this date would be considered as the ending point of the time period against which we would like to perform an aggregation. */ to?: pulumi.Input; /** * Workload type using the resources in an availability catalog can be filtered. */ workloadType?: pulumi.Input; } //# sourceMappingURL=getNamespaceOccOverviews.d.ts.map