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 Apis in Oracle Cloud Infrastructure API Gateway service. * * Returns a list of APIs. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testApis = oci.apigateway.getApis({ * compartmentId: compartmentId, * displayName: apiDisplayName, * state: apiState, * }); * ``` */ export declare function getApis(args: GetApisArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getApis. */ export interface GetApisArgs { /** * The ocid of the compartment in which to list resources. */ compartmentId: string; /** * A user-friendly name. Does not have to be unique, and it's changeable. Example: `My new resource` */ displayName?: string; filters?: inputs.ApiGateway.GetApisFilter[]; /** * A filter to return only resources that match the given lifecycle state. Example: `ACTIVE` */ state?: string; } /** * A collection of values returned by getApis. */ export interface GetApisResult { /** * The list of api_collection. */ readonly apiCollections: outputs.ApiGateway.GetApisApiCollection[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which the resource is created. */ readonly compartmentId: string; /** * A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource` */ readonly displayName?: string; readonly filters?: outputs.ApiGateway.GetApisFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The current state of the API. */ readonly state?: string; } /** * This data source provides the list of Apis in Oracle Cloud Infrastructure API Gateway service. * * Returns a list of APIs. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testApis = oci.apigateway.getApis({ * compartmentId: compartmentId, * displayName: apiDisplayName, * state: apiState, * }); * ``` */ export declare function getApisOutput(args: GetApisOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getApis. */ export interface GetApisOutputArgs { /** * The ocid of the compartment in which to list resources. */ compartmentId: pulumi.Input; /** * A user-friendly name. Does not have to be unique, and it's changeable. Example: `My new resource` */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return only resources that match the given lifecycle state. Example: `ACTIVE` */ state?: pulumi.Input; } //# sourceMappingURL=getApis.d.ts.map