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 Deployment Certificates in Oracle Cloud Infrastructure Golden Gate service. * * Returns a list of certificates from truststore. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDeploymentCertificates = oci.goldengate.getDeploymentCertificates({ * deploymentId: testDeployment.id, * state: deploymentCertificateState, * }); * ``` */ export declare function getDeploymentCertificates(args: GetDeploymentCertificatesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDeploymentCertificates. */ export interface GetDeploymentCertificatesArgs { /** * A unique Deployment identifier. */ deploymentId: string; filters?: inputs.GoldenGate.GetDeploymentCertificatesFilter[]; /** * A filter to return only connections having the 'lifecycleState' given. */ state?: string; } /** * A collection of values returned by getDeploymentCertificates. */ export interface GetDeploymentCertificatesResult { /** * The list of certificate_collection. */ readonly certificateCollections: outputs.GoldenGate.GetDeploymentCertificatesCertificateCollection[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the deployment being referenced. */ readonly deploymentId: string; readonly filters?: outputs.GoldenGate.GetDeploymentCertificatesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Possible certificate lifecycle states. */ readonly state?: string; } /** * This data source provides the list of Deployment Certificates in Oracle Cloud Infrastructure Golden Gate service. * * Returns a list of certificates from truststore. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDeploymentCertificates = oci.goldengate.getDeploymentCertificates({ * deploymentId: testDeployment.id, * state: deploymentCertificateState, * }); * ``` */ export declare function getDeploymentCertificatesOutput(args: GetDeploymentCertificatesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDeploymentCertificates. */ export interface GetDeploymentCertificatesOutputArgs { /** * A unique Deployment identifier. */ deploymentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return only connections having the 'lifecycleState' given. */ state?: pulumi.Input; } //# sourceMappingURL=getDeploymentCertificates.d.ts.map