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 Certificates in Oracle Cloud Infrastructure API Gateway service. * * Returns a list of certificates. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCertificates = oci.apigateway.getCertificates({ * compartmentId: compartmentId, * displayName: certificateDisplayName, * state: certificateState, * }); * ``` */ export declare function getCertificates(args: GetCertificatesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCertificates. */ export interface GetCertificatesArgs { /** * 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.GetCertificatesFilter[]; /** * A filter to return only resources that match the given lifecycle state. Example: `ACTIVE` or `DELETED` */ state?: string; } /** * A collection of values returned by getCertificates. */ export interface GetCertificatesResult { /** * The list of certificate_collection. */ readonly certificateCollections: outputs.ApiGateway.GetCertificatesCertificateCollection[]; /** * 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.GetCertificatesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The current state of the certificate. */ readonly state?: string; } /** * This data source provides the list of Certificates in Oracle Cloud Infrastructure API Gateway service. * * Returns a list of certificates. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCertificates = oci.apigateway.getCertificates({ * compartmentId: compartmentId, * displayName: certificateDisplayName, * state: certificateState, * }); * ``` */ export declare function getCertificatesOutput(args: GetCertificatesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCertificates. */ export interface GetCertificatesOutputArgs { /** * 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` or `DELETED` */ state?: pulumi.Input; } //# sourceMappingURL=getCertificates.d.ts.map