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 Web Application Acceleration and Security service. * * Gets a list of SSL certificates that can be used in a WAAS policy. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCertificates = oci.waas.getCertificates({ * compartmentId: compartmentId, * displayNames: certificateDisplayNames, * ids: certificateIds, * states: certificateStates, * timeCreatedGreaterThanOrEqualTo: certificateTimeCreatedGreaterThanOrEqualTo, * timeCreatedLessThan: certificateTimeCreatedLessThan, * }); * ``` */ export declare function getCertificates(args: GetCertificatesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCertificates. */ export interface GetCertificatesArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. This number is generated when the compartment is created. */ compartmentId: string; /** * Filter certificates using a list of display names. */ displayNames?: string[]; filters?: inputs.Waas.GetCertificatesFilter[]; /** * Filter certificates using a list of certificates OCIDs. */ ids?: string[]; /** * Filter certificates using a list of lifecycle states. */ states?: string[]; /** * A filter that matches certificates created on or after the specified date-time. */ timeCreatedGreaterThanOrEqualTo?: string; /** * A filter that matches certificates created before the specified date-time. */ timeCreatedLessThan?: string; } /** * A collection of values returned by getCertificates. */ export interface GetCertificatesResult { /** * The list of certificates. */ readonly certificates: outputs.Waas.GetCertificatesCertificate[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the SSL certificate's compartment. */ readonly compartmentId: string; readonly displayNames?: string[]; readonly filters?: outputs.Waas.GetCertificatesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly ids?: string[]; readonly states?: string[]; readonly timeCreatedGreaterThanOrEqualTo?: string; readonly timeCreatedLessThan?: string; } /** * This data source provides the list of Certificates in Oracle Cloud Infrastructure Web Application Acceleration and Security service. * * Gets a list of SSL certificates that can be used in a WAAS policy. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCertificates = oci.waas.getCertificates({ * compartmentId: compartmentId, * displayNames: certificateDisplayNames, * ids: certificateIds, * states: certificateStates, * timeCreatedGreaterThanOrEqualTo: certificateTimeCreatedGreaterThanOrEqualTo, * timeCreatedLessThan: certificateTimeCreatedLessThan, * }); * ``` */ export declare function getCertificatesOutput(args: GetCertificatesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCertificates. */ export interface GetCertificatesOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. This number is generated when the compartment is created. */ compartmentId: pulumi.Input; /** * Filter certificates using a list of display names. */ displayNames?: pulumi.Input[] | undefined>; filters?: pulumi.Input[] | undefined>; /** * Filter certificates using a list of certificates OCIDs. */ ids?: pulumi.Input[] | undefined>; /** * Filter certificates using a list of lifecycle states. */ states?: pulumi.Input[] | undefined>; /** * A filter that matches certificates created on or after the specified date-time. */ timeCreatedGreaterThanOrEqualTo?: pulumi.Input; /** * A filter that matches certificates created before the specified date-time. */ timeCreatedLessThan?: pulumi.Input; } //# sourceMappingURL=getCertificates.d.ts.map