UNPKG

@cdktf/provider-upcloud

Version:

Prebuilt upcloud Provider for Terraform CDK (cdktf)

71 lines (70 loc) 3.72 kB
/** * Copyright (c) HashiCorp, Inc. * SPDX-License-Identifier: MPL-2.0 */ import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface LoadbalancerDynamicCertificateBundleConfig extends cdktf.TerraformMetaArguments { /** * Certificate hostnames. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.32.0/docs/resources/loadbalancer_dynamic_certificate_bundle#hostnames LoadbalancerDynamicCertificateBundle#hostnames} */ readonly hostnames: string[]; /** * Private key type (`rsa` / `ecdsa`). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.32.0/docs/resources/loadbalancer_dynamic_certificate_bundle#key_type LoadbalancerDynamicCertificateBundle#key_type} */ readonly keyType: string; /** * The name of the certificate bundle. Must be unique within customer account. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.32.0/docs/resources/loadbalancer_dynamic_certificate_bundle#name LoadbalancerDynamicCertificateBundle#name} */ readonly name: string; } /** * Represents a {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.32.0/docs/resources/loadbalancer_dynamic_certificate_bundle upcloud_loadbalancer_dynamic_certificate_bundle} */ export declare class LoadbalancerDynamicCertificateBundle extends cdktf.TerraformResource { static readonly tfResourceType = "upcloud_loadbalancer_dynamic_certificate_bundle"; /** * Generates CDKTF code for importing a LoadbalancerDynamicCertificateBundle 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 LoadbalancerDynamicCertificateBundle to import * @param importFromId The id of the existing LoadbalancerDynamicCertificateBundle that should be imported. Refer to the {@link https://registry.terraform.io/providers/upcloudltd/upcloud/5.32.0/docs/resources/loadbalancer_dynamic_certificate_bundle#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the LoadbalancerDynamicCertificateBundle 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.32.0/docs/resources/loadbalancer_dynamic_certificate_bundle upcloud_loadbalancer_dynamic_certificate_bundle} 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 LoadbalancerDynamicCertificateBundleConfig */ constructor(scope: Construct, id: string, config: LoadbalancerDynamicCertificateBundleConfig); private _hostnames?; get hostnames(): string[]; set hostnames(value: string[]); get hostnamesInput(): string[] | undefined; get id(): string; private _keyType?; get keyType(): string; set keyType(value: string); get keyTypeInput(): string | undefined; private _name?; get name(): string; set name(value: string); get nameInput(): string | undefined; get notAfter(): string; get notBefore(): string; get operationalState(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }