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 Computed Usages in Oracle Cloud Infrastructure Osub Usage service. * * This is a collection API which returns a list of Computed Usages for given filters. */ export declare function getComputedUsages(args: GetComputedUsagesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getComputedUsages. */ export interface GetComputedUsagesArgs { /** * The OCID of the root compartment. */ compartmentId: string; /** * Product part number for Computed Usage . */ computedProduct?: string; filters?: inputs.OsubUsage.GetComputedUsagesFilter[]; /** * Product part number for subscribed service line, called parent product. */ parentProduct?: string; /** * Subscription Id is an identifier associated to the service used for filter the Computed Usage in SPM. */ subscriptionId: string; /** * Initial date to filter Computed Usage data in SPM. In the case of non aggregated data the time period between of fromDate and toDate , expressed in RFC 3339 timestamp format. */ timeFrom: string; /** * Final date to filter Computed Usage data in SPM, expressed in RFC 3339 timestamp format. */ timeTo: string; /** * The Oracle Cloud Infrastructure home region name in case home region is not us-ashburn-1 (IAD), e.g. ap-mumbai-1, us-phoenix-1 etc. */ xOneOriginRegion?: string; } /** * A collection of values returned by getComputedUsages. */ export interface GetComputedUsagesResult { readonly compartmentId: string; readonly computedProduct?: string; /** * The list of computed_usages. */ readonly computedUsages: outputs.OsubUsage.GetComputedUsagesComputedUsage[]; readonly filters?: outputs.OsubUsage.GetComputedUsagesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Product description */ readonly parentProduct?: string; readonly subscriptionId: string; readonly timeFrom: string; readonly timeTo: string; readonly xOneOriginRegion?: string; } /** * This data source provides the list of Computed Usages in Oracle Cloud Infrastructure Osub Usage service. * * This is a collection API which returns a list of Computed Usages for given filters. */ export declare function getComputedUsagesOutput(args: GetComputedUsagesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getComputedUsages. */ export interface GetComputedUsagesOutputArgs { /** * The OCID of the root compartment. */ compartmentId: pulumi.Input; /** * Product part number for Computed Usage . */ computedProduct?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * Product part number for subscribed service line, called parent product. */ parentProduct?: pulumi.Input; /** * Subscription Id is an identifier associated to the service used for filter the Computed Usage in SPM. */ subscriptionId: pulumi.Input; /** * Initial date to filter Computed Usage data in SPM. In the case of non aggregated data the time period between of fromDate and toDate , expressed in RFC 3339 timestamp format. */ timeFrom: pulumi.Input; /** * Final date to filter Computed Usage data in SPM, expressed in RFC 3339 timestamp format. */ timeTo: pulumi.Input; /** * The Oracle Cloud Infrastructure home region name in case home region is not us-ashburn-1 (IAD), e.g. ap-mumbai-1, us-phoenix-1 etc. */ xOneOriginRegion?: pulumi.Input; } //# sourceMappingURL=getComputedUsages.d.ts.map