UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

52 lines (51 loc) 2.94 kB
import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataOciLoadBalancerSslCipherSuiteConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/load_balancer_ssl_cipher_suite#load_balancer_id DataOciLoadBalancerSslCipherSuite#load_balancer_id} */ readonly loadBalancerId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/load_balancer_ssl_cipher_suite#name DataOciLoadBalancerSslCipherSuite#name} */ readonly name: string; } /** * Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/load_balancer_ssl_cipher_suite oci_load_balancer_ssl_cipher_suite} */ export declare class DataOciLoadBalancerSslCipherSuite extends cdktf.TerraformDataSource { static readonly tfResourceType = "oci_load_balancer_ssl_cipher_suite"; /** * Generates CDKTF code for importing a DataOciLoadBalancerSslCipherSuite resource upon running "cdktf plan <stack-name>" * @param scope The scope in which to define this construct * @param importToId The construct id used in the generated config for the DataOciLoadBalancerSslCipherSuite to import * @param importFromId The id of the existing DataOciLoadBalancerSslCipherSuite that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/load_balancer_ssl_cipher_suite#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataOciLoadBalancerSslCipherSuite to import is found */ static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): cdktf.ImportableResource; /** * Create a new {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/load_balancer_ssl_cipher_suite oci_load_balancer_ssl_cipher_suite} Data Source * * @param scope The scope in which to define this construct * @param id The scoped construct ID. Must be unique amongst siblings in the same scope * @param options DataOciLoadBalancerSslCipherSuiteConfig */ constructor(scope: Construct, id: string, config: DataOciLoadBalancerSslCipherSuiteConfig); get ciphers(): string[]; get id(): string; private _loadBalancerId?; get loadBalancerId(): string; set loadBalancerId(value: string); get loadBalancerIdInput(): string | undefined; private _name?; get name(): string; set name(value: string); get nameInput(): string | undefined; get state(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }