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 Limit Values in Oracle Cloud Infrastructure Limits service. * * Includes a full list of resource limits belonging to a given service. * If the subscription ID is provided, the limit value for the subscription will be returned. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testLimitValues = oci.limits.getLimitValues({ * compartmentId: tenancyOcid, * serviceName: testService.name, * availabilityDomain: limitValueAvailabilityDomain, * externalLocation: limitValueExternalLocation, * name: limitValueName, * scopeType: limitValueScopeType, * subscriptionId: subscriptionOcid, * }); * ``` */ export declare function getLimitValues(args: GetLimitValuesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getLimitValues. */ export interface GetLimitValuesArgs { /** * Filter entries by availability domain. This implies that only AD-specific values are returned. */ availabilityDomain?: string; /** * The OCID of the parent compartment (remember that the tenancy is simply the root compartment). */ compartmentId: string; /** * External cloud provider location */ externalLocation?: string; filters?: inputs.Limits.GetLimitValuesFilter[]; /** * Optional field, can be used to see a specific resource limit value. */ name?: string; /** * Filter entries by scope type. */ scopeType?: string; /** * The target service name. */ serviceName: string; /** * The subscription OCID assigned to the tenant. */ subscriptionId?: string; } /** * A collection of values returned by getLimitValues. */ export interface GetLimitValuesResult { /** * If present, the returned value is only specific to this availability domain. */ readonly availabilityDomain?: string; readonly compartmentId: string; readonly externalLocation?: string; readonly filters?: outputs.Limits.GetLimitValuesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of limit_values. */ readonly limitValues: outputs.Limits.GetLimitValuesLimitValue[]; /** * The resource limit name. To be used for writing policies (in case of quotas) or other programmatic calls. */ readonly name?: string; /** * The scope type of the limit. */ readonly scopeType?: string; readonly serviceName: string; readonly subscriptionId?: string; } /** * This data source provides the list of Limit Values in Oracle Cloud Infrastructure Limits service. * * Includes a full list of resource limits belonging to a given service. * If the subscription ID is provided, the limit value for the subscription will be returned. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testLimitValues = oci.limits.getLimitValues({ * compartmentId: tenancyOcid, * serviceName: testService.name, * availabilityDomain: limitValueAvailabilityDomain, * externalLocation: limitValueExternalLocation, * name: limitValueName, * scopeType: limitValueScopeType, * subscriptionId: subscriptionOcid, * }); * ``` */ export declare function getLimitValuesOutput(args: GetLimitValuesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getLimitValues. */ export interface GetLimitValuesOutputArgs { /** * Filter entries by availability domain. This implies that only AD-specific values are returned. */ availabilityDomain?: pulumi.Input; /** * The OCID of the parent compartment (remember that the tenancy is simply the root compartment). */ compartmentId: pulumi.Input; /** * External cloud provider location */ externalLocation?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * Optional field, can be used to see a specific resource limit value. */ name?: pulumi.Input; /** * Filter entries by scope type. */ scopeType?: pulumi.Input; /** * The target service name. */ serviceName: pulumi.Input; /** * The subscription OCID assigned to the tenant. */ subscriptionId?: pulumi.Input; } //# sourceMappingURL=getLimitValues.d.ts.map