@cdktf/provider-dnsimple
Version:
Prebuilt dnsimple Provider for Terraform CDK (cdktf)
92 lines (91 loc) • 4.06 kB
TypeScript
/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DsRecordConfig extends cdktf.TerraformMetaArguments {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/dnsimple/dnsimple/1.10.0/docs/resources/ds_record#algorithm DsRecord#algorithm}
*/
readonly algorithm: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/dnsimple/dnsimple/1.10.0/docs/resources/ds_record#digest DsRecord#digest}
*/
readonly digest?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/dnsimple/dnsimple/1.10.0/docs/resources/ds_record#digest_type DsRecord#digest_type}
*/
readonly digestType?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/dnsimple/dnsimple/1.10.0/docs/resources/ds_record#domain DsRecord#domain}
*/
readonly domain: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/dnsimple/dnsimple/1.10.0/docs/resources/ds_record#keytag DsRecord#keytag}
*/
readonly keytag?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/dnsimple/dnsimple/1.10.0/docs/resources/ds_record#public_key DsRecord#public_key}
*/
readonly publicKey?: string;
}
/**
* Represents a {@link https://registry.terraform.io/providers/dnsimple/dnsimple/1.10.0/docs/resources/ds_record dnsimple_ds_record}
*/
export declare class DsRecord extends cdktf.TerraformResource {
static readonly tfResourceType = "dnsimple_ds_record";
/**
* Generates CDKTF code for importing a DsRecord 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 DsRecord to import
* @param importFromId The id of the existing DsRecord that should be imported. Refer to the {@link https://registry.terraform.io/providers/dnsimple/dnsimple/1.10.0/docs/resources/ds_record#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the DsRecord 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/dnsimple/dnsimple/1.10.0/docs/resources/ds_record dnsimple_ds_record} 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 DsRecordConfig
*/
constructor(scope: Construct, id: string, config: DsRecordConfig);
private _algorithm?;
get algorithm(): string;
set algorithm(value: string);
get algorithmInput(): string | undefined;
get createdAt(): string;
private _digest?;
get digest(): string;
set digest(value: string);
resetDigest(): void;
get digestInput(): string | undefined;
private _digestType?;
get digestType(): string;
set digestType(value: string);
resetDigestType(): void;
get digestTypeInput(): string | undefined;
private _domain?;
get domain(): string;
set domain(value: string);
get domainInput(): string | undefined;
get id(): number;
private _keytag?;
get keytag(): string;
set keytag(value: string);
resetKeytag(): void;
get keytagInput(): string | undefined;
private _publicKey?;
get publicKey(): string;
set publicKey(value: string);
resetPublicKey(): void;
get publicKeyInput(): string | undefined;
get updatedAt(): string;
protected synthesizeAttributes(): {
[name: string]: any;
};
protected synthesizeHclAttributes(): {
[name: string]: any;
};
}