import * as pulumi from "@pulumi/pulumi"; /** * This resource provides the Ssl Cipher Suite resource in Oracle Cloud Infrastructure Load Balancer service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/loadbalancer/latest/SslCipherSuite * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/load_balancer * * Creates a custom SSL cipher suite. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSslCipherSuite = new oci.loadbalancer.SslCipherSuite("test_ssl_cipher_suite", { * ciphers: sslCipherSuiteCiphers, * loadBalancerId: testLoadBalancer.id, * name: sslCipherSuiteName, * }); * ``` * * ## Import * * SslCipherSuites can be imported using the `id`, e.g. * * ```sh * $ pulumi import oci:LoadBalancer/sslCipherSuite:SslCipherSuite test_ssl_cipher_suite "loadBalancers/{loadBalancerId}/sslCipherSuites/{name}" * ``` */ export declare class SslCipherSuite extends pulumi.CustomResource { /** * Get an existing SslCipherSuite resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: SslCipherSuiteState, opts?: pulumi.CustomResourceOptions): SslCipherSuite; /** * Returns true if the given object is an instance of SslCipherSuite. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is SslCipherSuite; readonly ciphers: pulumi.Output; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the associated load balancer. */ readonly loadBalancerId: pulumi.Output; /** * A friendly name for the SSL cipher suite. It must be unique and it cannot be changed. * * **Note:** The name of your user-defined cipher suite must not be the same as any of Oracle's predefined or reserved SSL cipher suite names: * * oci-default-ssl-cipher-suite-v1 * * oci-modern-ssl-cipher-suite-v1 * * oci-compatible-ssl-cipher-suite-v1 * * oci-wider-compatible-ssl-cipher-suite-v1 * * oci-customized-ssl-cipher-suite * * oci-default-http2-ssl-cipher-suite-v1 * * oci-default-http2-tls-13-ssl-cipher-suite-v1 * * oci-default-http2-tls-12-13-ssl-cipher-suite-v1 * * oci-tls-13-recommended-ssl-cipher-suite-v1 * * oci-tls-12-13-wider-ssl-cipher-suite-v1 * * oci-tls-11-12-13-wider-ssl-cipher-suite-v1 * * example: `exampleCipherSuite` * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ readonly name: pulumi.Output; readonly state: pulumi.Output; /** * Create a SslCipherSuite resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: SslCipherSuiteArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering SslCipherSuite resources. */ export interface SslCipherSuiteState { ciphers?: pulumi.Input[] | undefined>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the associated load balancer. */ loadBalancerId?: pulumi.Input; /** * A friendly name for the SSL cipher suite. It must be unique and it cannot be changed. * * **Note:** The name of your user-defined cipher suite must not be the same as any of Oracle's predefined or reserved SSL cipher suite names: * * oci-default-ssl-cipher-suite-v1 * * oci-modern-ssl-cipher-suite-v1 * * oci-compatible-ssl-cipher-suite-v1 * * oci-wider-compatible-ssl-cipher-suite-v1 * * oci-customized-ssl-cipher-suite * * oci-default-http2-ssl-cipher-suite-v1 * * oci-default-http2-tls-13-ssl-cipher-suite-v1 * * oci-default-http2-tls-12-13-ssl-cipher-suite-v1 * * oci-tls-13-recommended-ssl-cipher-suite-v1 * * oci-tls-12-13-wider-ssl-cipher-suite-v1 * * oci-tls-11-12-13-wider-ssl-cipher-suite-v1 * * example: `exampleCipherSuite` * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ name?: pulumi.Input; state?: pulumi.Input; } /** * The set of arguments for constructing a SslCipherSuite resource. */ export interface SslCipherSuiteArgs { ciphers: pulumi.Input[]>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the associated load balancer. */ loadBalancerId: pulumi.Input; /** * A friendly name for the SSL cipher suite. It must be unique and it cannot be changed. * * **Note:** The name of your user-defined cipher suite must not be the same as any of Oracle's predefined or reserved SSL cipher suite names: * * oci-default-ssl-cipher-suite-v1 * * oci-modern-ssl-cipher-suite-v1 * * oci-compatible-ssl-cipher-suite-v1 * * oci-wider-compatible-ssl-cipher-suite-v1 * * oci-customized-ssl-cipher-suite * * oci-default-http2-ssl-cipher-suite-v1 * * oci-default-http2-tls-13-ssl-cipher-suite-v1 * * oci-default-http2-tls-12-13-ssl-cipher-suite-v1 * * oci-tls-13-recommended-ssl-cipher-suite-v1 * * oci-tls-12-13-wider-ssl-cipher-suite-v1 * * oci-tls-11-12-13-wider-ssl-cipher-suite-v1 * * example: `exampleCipherSuite` * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ name?: pulumi.Input; } //# sourceMappingURL=sslCipherSuite.d.ts.map