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 Services in Oracle Cloud Infrastructure Limits service. * * Returns the list of supported services. If subscription ID is provided then only services supported by subscription will be returned. * This includes the programmatic service name, along with the friendly service name. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testServices = oci.limits.getServices({ * compartmentId: tenancyOcid, * subscriptionId: subscriptionOcid, * }); * ``` */ export declare function getServices(args: GetServicesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getServices. */ export interface GetServicesArgs { /** * The OCID of the parent compartment (remember that the tenancy is simply the root compartment). */ compartmentId: string; filters?: inputs.Limits.GetServicesFilter[]; /** * The subscription OCID assigned to the tenant. */ subscriptionId?: string; } /** * A collection of values returned by getServices. */ export interface GetServicesResult { readonly compartmentId: string; readonly filters?: outputs.Limits.GetServicesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of services. */ readonly services: outputs.Limits.GetServicesService[]; readonly subscriptionId?: string; } /** * This data source provides the list of Services in Oracle Cloud Infrastructure Limits service. * * Returns the list of supported services. If subscription ID is provided then only services supported by subscription will be returned. * This includes the programmatic service name, along with the friendly service name. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testServices = oci.limits.getServices({ * compartmentId: tenancyOcid, * subscriptionId: subscriptionOcid, * }); * ``` */ export declare function getServicesOutput(args: GetServicesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getServices. */ export interface GetServicesOutputArgs { /** * The OCID of the parent compartment (remember that the tenancy is simply the root compartment). */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The subscription OCID assigned to the tenant. */ subscriptionId?: pulumi.Input; } //# sourceMappingURL=getServices.d.ts.map