UNPKG

@cdktf/provider-upcloud

Version:

Prebuilt upcloud Provider for Terraform CDK (cdktf)

68 lines (67 loc) 3.56 kB
/** * Copyright (c) HashiCorp, Inc. * SPDX-License-Identifier: MPL-2.0 */ import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface LoadbalancerBackendTlsConfigConfig extends cdktf.TerraformMetaArguments { /** * ID of the load balancer backend to which the TLS config is connected. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.23.3/docs/resources/loadbalancer_backend_tls_config#backend LoadbalancerBackendTlsConfig#backend} */ readonly backend: string; /** * Reference to certificate bundle ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.23.3/docs/resources/loadbalancer_backend_tls_config#certificate_bundle LoadbalancerBackendTlsConfig#certificate_bundle} */ readonly certificateBundle: string; /** * The name of the TLS config. Must be unique within customer account. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.23.3/docs/resources/loadbalancer_backend_tls_config#name LoadbalancerBackendTlsConfig#name} */ readonly name: string; } /** * Represents a {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.23.3/docs/resources/loadbalancer_backend_tls_config upcloud_loadbalancer_backend_tls_config} */ export declare class LoadbalancerBackendTlsConfig extends cdktf.TerraformResource { static readonly tfResourceType = "upcloud_loadbalancer_backend_tls_config"; /** * Generates CDKTF code for importing a LoadbalancerBackendTlsConfig 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 LoadbalancerBackendTlsConfig to import * @param importFromId The id of the existing LoadbalancerBackendTlsConfig that should be imported. Refer to the {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.23.3/docs/resources/loadbalancer_backend_tls_config#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the LoadbalancerBackendTlsConfig 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/upcloudltd/upcloud/5.23.3/docs/resources/loadbalancer_backend_tls_config upcloud_loadbalancer_backend_tls_config} Resource * * @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 LoadbalancerBackendTlsConfigConfig */ constructor(scope: Construct, id: string, config: LoadbalancerBackendTlsConfigConfig); private _backend?; get backend(): string; set backend(value: string); get backendInput(): string | undefined; private _certificateBundle?; get certificateBundle(): string; set certificateBundle(value: string); get certificateBundleInput(): string | undefined; get id(): string; private _name?; get name(): string; set name(value: string); get nameInput(): string | undefined; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }