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 Load Balancer service. * * Lists all SSL certificates bundles associated with a given load balancer. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCertificates = oci.loadbalancer.getCertificates({ * loadBalancerId: testLoadBalancer.id, * }); * ``` */ export declare function getCertificates(args: GetCertificatesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCertificates. */ export interface GetCertificatesArgs { filters?: inputs.LoadBalancer.GetCertificatesFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the load balancer associated with the certificate bundles to be listed. */ loadBalancerId: string; } /** * A collection of values returned by getCertificates. */ export interface GetCertificatesResult { /** * The list of certificates. */ readonly certificates: outputs.LoadBalancer.GetCertificatesCertificate[]; readonly filters?: outputs.LoadBalancer.GetCertificatesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly loadBalancerId: string; } /** * This data source provides the list of Certificates in Oracle Cloud Infrastructure Load Balancer service. * * Lists all SSL certificates bundles associated with a given load balancer. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCertificates = oci.loadbalancer.getCertificates({ * loadBalancerId: testLoadBalancer.id, * }); * ``` */ export declare function getCertificatesOutput(args: GetCertificatesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCertificates. */ export interface GetCertificatesOutputArgs { filters?: pulumi.Input[] | undefined>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the load balancer associated with the certificate bundles to be listed. */ loadBalancerId: pulumi.Input; } //# sourceMappingURL=getCertificates.d.ts.map