import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Ssl Cipher Suite resource in Oracle Cloud Infrastructure Load Balancer service. * * Gets the specified SSL cipher suite's configuration information. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSslCipherSuite = oci.loadbalancer.getSslCipherSuite({ * loadBalancerId: testLoadBalancer.id, * name: sslCipherSuiteName, * }); * ``` */ export declare function getSslCipherSuite(args: GetSslCipherSuiteArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getSslCipherSuite. */ export interface GetSslCipherSuiteArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the associated load balancer. */ loadBalancerId: string; /** * The name of the SSL cipher suite to retrieve. * * example: `exampleCipherSuite` */ name: string; } /** * A collection of values returned by getSslCipherSuite. */ export interface GetSslCipherSuiteResult { /** * A list of SSL ciphers the load balancer must support for HTTPS or SSL connections. */ readonly ciphers: string[]; readonly id: string; readonly loadBalancerId: string; /** * A friendly name for the SSL cipher suite. It must be unique and it cannot be changed. */ readonly name: string; readonly state: string; } /** * This data source provides details about a specific Ssl Cipher Suite resource in Oracle Cloud Infrastructure Load Balancer service. * * Gets the specified SSL cipher suite's configuration information. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSslCipherSuite = oci.loadbalancer.getSslCipherSuite({ * loadBalancerId: testLoadBalancer.id, * name: sslCipherSuiteName, * }); * ``` */ export declare function getSslCipherSuiteOutput(args: GetSslCipherSuiteOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getSslCipherSuite. */ export interface GetSslCipherSuiteOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the associated load balancer. */ loadBalancerId: pulumi.Input; /** * The name of the SSL cipher suite to retrieve. * * example: `exampleCipherSuite` */ name: pulumi.Input; } //# sourceMappingURL=getSslCipherSuite.d.ts.map