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 Resource Quotas in Oracle Cloud Infrastructure Usage Proxy service. * * Returns the resource quota details under a tenancy * > **Important**: Calls to this API will only succeed against the endpoint in the home region. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testResourceQuotas = oci.usageproxy.getResourceQuotas({ * compartmentId: compartmentId, * serviceName: testService.name, * serviceEntitlement: resourceQuotaServiceEntitlement, * }); * ``` */ export declare function getResourceQuotas(args: GetResourceQuotasArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getResourceQuotas. */ export interface GetResourceQuotasArgs { /** * The OCID of the root compartment. */ compartmentId: string; filters?: inputs.UsageProxy.GetResourceQuotasFilter[]; /** * Service entitlement Id. */ serviceEntitlement?: string; /** * Service Name. */ serviceName: string; } /** * A collection of values returned by getResourceQuotas. */ export interface GetResourceQuotasResult { readonly compartmentId: string; readonly filters?: outputs.UsageProxy.GetResourceQuotasFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of resource_quotum_collection. */ readonly resourceQuotumCollections: outputs.UsageProxy.GetResourceQuotasResourceQuotumCollection[]; readonly serviceEntitlement?: string; readonly serviceName: string; } /** * This data source provides the list of Resource Quotas in Oracle Cloud Infrastructure Usage Proxy service. * * Returns the resource quota details under a tenancy * > **Important**: Calls to this API will only succeed against the endpoint in the home region. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testResourceQuotas = oci.usageproxy.getResourceQuotas({ * compartmentId: compartmentId, * serviceName: testService.name, * serviceEntitlement: resourceQuotaServiceEntitlement, * }); * ``` */ export declare function getResourceQuotasOutput(args: GetResourceQuotasOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getResourceQuotas. */ export interface GetResourceQuotasOutputArgs { /** * The OCID of the root compartment. */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * Service entitlement Id. */ serviceEntitlement?: pulumi.Input; /** * Service Name. */ serviceName: pulumi.Input; } //# sourceMappingURL=getResourceQuotas.d.ts.map