Skip to content

Latest commit

 

History

History
1773 lines (1121 loc) · 91.3 KB

dataOpentelekomcloudCbrBackupV3.typescript.md

File metadata and controls

1773 lines (1121 loc) · 91.3 KB

dataOpentelekomcloudCbrBackupV3 Submodule

Constructs

DataOpentelekomcloudCbrBackupV3

Represents a {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3 opentelekomcloud_cbr_backup_v3}.

Initializers

import { dataOpentelekomcloudCbrBackupV3 } from '@cdktf/provider-opentelekomcloud'

new dataOpentelekomcloudCbrBackupV3.DataOpentelekomcloudCbrBackupV3(scope: Construct, id: string, config?: DataOpentelekomcloudCbrBackupV3Config)
Name Type Description
scope constructs.Construct The scope in which to define this construct.
id string The scoped construct ID.
config DataOpentelekomcloudCbrBackupV3Config No description.

scopeRequired
  • Type: constructs.Construct

The scope in which to define this construct.


idRequired
  • Type: string

The scoped construct ID.

Must be unique amongst siblings in the same scope


configOptional

Methods

Name Description
toString Returns a string representation of this construct.
addOverride No description.
overrideLogicalId Overrides the auto-generated logical ID with a specific ID.
resetOverrideLogicalId Resets a previously passed logical Id to use the auto-generated logical id again.
toHclTerraform Adds this resource to the terraform JSON output.
toMetadata No description.
toTerraform Adds this resource to the terraform JSON output.
getAnyMapAttribute No description.
getBooleanAttribute No description.
getBooleanMapAttribute No description.
getListAttribute No description.
getNumberAttribute No description.
getNumberListAttribute No description.
getNumberMapAttribute No description.
getStringAttribute No description.
getStringMapAttribute No description.
interpolationForAttribute No description.
resetAutoTrigger No description.
resetBootable No description.
resetCheckpointId No description.
resetContainSystemDisk No description.
resetCreatedAt No description.
resetDescription No description.
resetEncrypted No description.
resetExpiredAt No description.
resetId No description.
resetImageType No description.
resetIncremental No description.
resetName No description.
resetParentId No description.
resetProjectId No description.
resetProviderId No description.
resetResourceAz No description.
resetResourceId No description.
resetResourceName No description.
resetResourceSize No description.
resetResourceType No description.
resetSnapshotId No description.
resetStatus No description.
resetSupportedRestoreMode No description.
resetSupportLld No description.
resetSystemDisk No description.
resetUpdatedAt No description.
resetVaultId No description.

toString
public toString(): string

Returns a string representation of this construct.

addOverride
public addOverride(path: string, value: any): void
pathRequired
  • Type: string

valueRequired
  • Type: any

overrideLogicalId
public overrideLogicalId(newLogicalId: string): void

Overrides the auto-generated logical ID with a specific ID.

newLogicalIdRequired
  • Type: string

The new logical ID to use for this stack element.


resetOverrideLogicalId
public resetOverrideLogicalId(): void

Resets a previously passed logical Id to use the auto-generated logical id again.

toHclTerraform
public toHclTerraform(): any

Adds this resource to the terraform JSON output.

toMetadata
public toMetadata(): any
toTerraform
public toTerraform(): any

Adds this resource to the terraform JSON output.

getAnyMapAttribute
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
terraformAttributeRequired
  • Type: string

getBooleanAttribute
public getBooleanAttribute(terraformAttribute: string): IResolvable
terraformAttributeRequired
  • Type: string

getBooleanMapAttribute
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
terraformAttributeRequired
  • Type: string

getListAttribute
public getListAttribute(terraformAttribute: string): string[]
terraformAttributeRequired
  • Type: string

getNumberAttribute
public getNumberAttribute(terraformAttribute: string): number
terraformAttributeRequired
  • Type: string

getNumberListAttribute
public getNumberListAttribute(terraformAttribute: string): number[]
terraformAttributeRequired
  • Type: string

getNumberMapAttribute
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
terraformAttributeRequired
  • Type: string

getStringAttribute
public getStringAttribute(terraformAttribute: string): string
terraformAttributeRequired
  • Type: string

getStringMapAttribute
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
terraformAttributeRequired
  • Type: string

interpolationForAttribute
public interpolationForAttribute(terraformAttribute: string): IResolvable
terraformAttributeRequired
  • Type: string

resetAutoTrigger
public resetAutoTrigger(): void
resetBootable
public resetBootable(): void
resetCheckpointId
public resetCheckpointId(): void
resetContainSystemDisk
public resetContainSystemDisk(): void
resetCreatedAt
public resetCreatedAt(): void
resetDescription
public resetDescription(): void
resetEncrypted
public resetEncrypted(): void
resetExpiredAt
public resetExpiredAt(): void
resetId
public resetId(): void
resetImageType
public resetImageType(): void
resetIncremental
public resetIncremental(): void
resetName
public resetName(): void
resetParentId
public resetParentId(): void
resetProjectId
public resetProjectId(): void
resetProviderId
public resetProviderId(): void
resetResourceAz
public resetResourceAz(): void
resetResourceId
public resetResourceId(): void
resetResourceName
public resetResourceName(): void
resetResourceSize
public resetResourceSize(): void
resetResourceType
public resetResourceType(): void
resetSnapshotId
public resetSnapshotId(): void
resetStatus
public resetStatus(): void
resetSupportedRestoreMode
public resetSupportedRestoreMode(): void
resetSupportLld
public resetSupportLld(): void
resetSystemDisk
public resetSystemDisk(): void
resetUpdatedAt
public resetUpdatedAt(): void
resetVaultId
public resetVaultId(): void

Static Functions

Name Description
isConstruct Checks if x is a construct.
isTerraformElement No description.
isTerraformDataSource No description.
generateConfigForImport Generates CDKTF code for importing a DataOpentelekomcloudCbrBackupV3 resource upon running "cdktf plan ".

isConstruct
import { dataOpentelekomcloudCbrBackupV3 } from '@cdktf/provider-opentelekomcloud'

dataOpentelekomcloudCbrBackupV3.DataOpentelekomcloudCbrBackupV3.isConstruct(x: any)

Checks if x is a construct.

Use this method instead of instanceof to properly detect Construct instances, even when the construct library is symlinked.

Explanation: in JavaScript, multiple copies of the constructs library on disk are seen as independent, completely different libraries. As a consequence, the class Construct in each copy of the constructs library is seen as a different class, and an instance of one class will not test as instanceof the other class. npm install will not create installations like this, but users may manually symlink construct libraries together or use a monorepo tool: in those cases, multiple copies of the constructs library can be accidentally installed, and instanceof will behave unpredictably. It is safest to avoid using instanceof, and using this type-testing method instead.

xRequired
  • Type: any

Any object.


isTerraformElement
import { dataOpentelekomcloudCbrBackupV3 } from '@cdktf/provider-opentelekomcloud'

dataOpentelekomcloudCbrBackupV3.DataOpentelekomcloudCbrBackupV3.isTerraformElement(x: any)
xRequired
  • Type: any

isTerraformDataSource
import { dataOpentelekomcloudCbrBackupV3 } from '@cdktf/provider-opentelekomcloud'

dataOpentelekomcloudCbrBackupV3.DataOpentelekomcloudCbrBackupV3.isTerraformDataSource(x: any)
xRequired
  • Type: any

generateConfigForImport
import { dataOpentelekomcloudCbrBackupV3 } from '@cdktf/provider-opentelekomcloud'

dataOpentelekomcloudCbrBackupV3.DataOpentelekomcloudCbrBackupV3.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider)

Generates CDKTF code for importing a DataOpentelekomcloudCbrBackupV3 resource upon running "cdktf plan ".

scopeRequired
  • Type: constructs.Construct

The scope in which to define this construct.


importToIdRequired
  • Type: string

The construct id used in the generated config for the DataOpentelekomcloudCbrBackupV3 to import.


importFromIdRequired
  • Type: string

The id of the existing DataOpentelekomcloudCbrBackupV3 that should be imported.

Refer to the {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#import import section} in the documentation of this resource for the id to use


providerOptional
  • Type: cdktf.TerraformProvider

? Optional instance of the provider where the DataOpentelekomcloudCbrBackupV3 to import is found.


Properties

Name Type Description
node constructs.Node The tree node.
cdktfStack cdktf.TerraformStack No description.
fqn string No description.
friendlyUniqueId string No description.
terraformMetaArguments {[ key: string ]: any} No description.
terraformResourceType string No description.
terraformGeneratorMetadata cdktf.TerraformProviderGeneratorMetadata No description.
count number | cdktf.TerraformCount No description.
dependsOn string[] No description.
forEach cdktf.ITerraformIterator No description.
lifecycle cdktf.TerraformResourceLifecycle No description.
provider cdktf.TerraformProvider No description.
autoTriggerInput boolean | cdktf.IResolvable No description.
bootableInput boolean | cdktf.IResolvable No description.
checkpointIdInput string No description.
containSystemDiskInput boolean | cdktf.IResolvable No description.
createdAtInput string No description.
descriptionInput string No description.
encryptedInput boolean | cdktf.IResolvable No description.
expiredAtInput string No description.
idInput string No description.
imageTypeInput string No description.
incrementalInput boolean | cdktf.IResolvable No description.
nameInput string No description.
parentIdInput string No description.
projectIdInput string No description.
providerIdInput string No description.
resourceAzInput string No description.
resourceIdInput string No description.
resourceNameInput string No description.
resourceSizeInput number No description.
resourceTypeInput string No description.
snapshotIdInput string No description.
statusInput string No description.
supportedRestoreModeInput string No description.
supportLldInput boolean | cdktf.IResolvable No description.
systemDiskInput boolean | cdktf.IResolvable No description.
updatedAtInput string No description.
vaultIdInput string No description.
autoTrigger boolean | cdktf.IResolvable No description.
bootable boolean | cdktf.IResolvable No description.
checkpointId string No description.
containSystemDisk boolean | cdktf.IResolvable No description.
createdAt string No description.
description string No description.
encrypted boolean | cdktf.IResolvable No description.
expiredAt string No description.
id string No description.
imageType string No description.
incremental boolean | cdktf.IResolvable No description.
name string No description.
parentId string No description.
projectId string No description.
providerId string No description.
resourceAz string No description.
resourceId string No description.
resourceName string No description.
resourceSize number No description.
resourceType string No description.
snapshotId string No description.
status string No description.
supportedRestoreMode string No description.
supportLld boolean | cdktf.IResolvable No description.
systemDisk boolean | cdktf.IResolvable No description.
updatedAt string No description.
vaultId string No description.

nodeRequired
public readonly node: Node;
  • Type: constructs.Node

The tree node.


cdktfStackRequired
public readonly cdktfStack: TerraformStack;
  • Type: cdktf.TerraformStack

fqnRequired
public readonly fqn: string;
  • Type: string

friendlyUniqueIdRequired
public readonly friendlyUniqueId: string;
  • Type: string

terraformMetaArgumentsRequired
public readonly terraformMetaArguments: {[ key: string ]: any};
  • Type: {[ key: string ]: any}

terraformResourceTypeRequired
public readonly terraformResourceType: string;
  • Type: string

terraformGeneratorMetadataOptional
public readonly terraformGeneratorMetadata: TerraformProviderGeneratorMetadata;
  • Type: cdktf.TerraformProviderGeneratorMetadata

countOptional
public readonly count: number | TerraformCount;
  • Type: number | cdktf.TerraformCount

dependsOnOptional
public readonly dependsOn: string[];
  • Type: string[]

forEachOptional
public readonly forEach: ITerraformIterator;
  • Type: cdktf.ITerraformIterator

lifecycleOptional
public readonly lifecycle: TerraformResourceLifecycle;
  • Type: cdktf.TerraformResourceLifecycle

providerOptional
public readonly provider: TerraformProvider;
  • Type: cdktf.TerraformProvider

autoTriggerInputOptional
public readonly autoTriggerInput: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

bootableInputOptional
public readonly bootableInput: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

checkpointIdInputOptional
public readonly checkpointIdInput: string;
  • Type: string

containSystemDiskInputOptional
public readonly containSystemDiskInput: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

createdAtInputOptional
public readonly createdAtInput: string;
  • Type: string

descriptionInputOptional
public readonly descriptionInput: string;
  • Type: string

encryptedInputOptional
public readonly encryptedInput: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

expiredAtInputOptional
public readonly expiredAtInput: string;
  • Type: string

idInputOptional
public readonly idInput: string;
  • Type: string

imageTypeInputOptional
public readonly imageTypeInput: string;
  • Type: string

incrementalInputOptional
public readonly incrementalInput: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

nameInputOptional
public readonly nameInput: string;
  • Type: string

parentIdInputOptional
public readonly parentIdInput: string;
  • Type: string

projectIdInputOptional
public readonly projectIdInput: string;
  • Type: string

providerIdInputOptional
public readonly providerIdInput: string;
  • Type: string

resourceAzInputOptional
public readonly resourceAzInput: string;
  • Type: string

resourceIdInputOptional
public readonly resourceIdInput: string;
  • Type: string

resourceNameInputOptional
public readonly resourceNameInput: string;
  • Type: string

resourceSizeInputOptional
public readonly resourceSizeInput: number;
  • Type: number

resourceTypeInputOptional
public readonly resourceTypeInput: string;
  • Type: string

snapshotIdInputOptional
public readonly snapshotIdInput: string;
  • Type: string

statusInputOptional
public readonly statusInput: string;
  • Type: string

supportedRestoreModeInputOptional
public readonly supportedRestoreModeInput: string;
  • Type: string

supportLldInputOptional
public readonly supportLldInput: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

systemDiskInputOptional
public readonly systemDiskInput: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

updatedAtInputOptional
public readonly updatedAtInput: string;
  • Type: string

vaultIdInputOptional
public readonly vaultIdInput: string;
  • Type: string

autoTriggerRequired
public readonly autoTrigger: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

bootableRequired
public readonly bootable: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

checkpointIdRequired
public readonly checkpointId: string;
  • Type: string

containSystemDiskRequired
public readonly containSystemDisk: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

createdAtRequired
public readonly createdAt: string;
  • Type: string

descriptionRequired
public readonly description: string;
  • Type: string

encryptedRequired
public readonly encrypted: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

expiredAtRequired
public readonly expiredAt: string;
  • Type: string

idRequired
public readonly id: string;
  • Type: string

imageTypeRequired
public readonly imageType: string;
  • Type: string

incrementalRequired
public readonly incremental: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

nameRequired
public readonly name: string;
  • Type: string

parentIdRequired
public readonly parentId: string;
  • Type: string

projectIdRequired
public readonly projectId: string;
  • Type: string

providerIdRequired
public readonly providerId: string;
  • Type: string

resourceAzRequired
public readonly resourceAz: string;
  • Type: string

resourceIdRequired
public readonly resourceId: string;
  • Type: string

resourceNameRequired
public readonly resourceName: string;
  • Type: string

resourceSizeRequired
public readonly resourceSize: number;
  • Type: number

resourceTypeRequired
public readonly resourceType: string;
  • Type: string

snapshotIdRequired
public readonly snapshotId: string;
  • Type: string

statusRequired
public readonly status: string;
  • Type: string

supportedRestoreModeRequired
public readonly supportedRestoreMode: string;
  • Type: string

supportLldRequired
public readonly supportLld: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

systemDiskRequired
public readonly systemDisk: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

updatedAtRequired
public readonly updatedAt: string;
  • Type: string

vaultIdRequired
public readonly vaultId: string;
  • Type: string

Constants

Name Type Description
tfResourceType string No description.

tfResourceTypeRequired
public readonly tfResourceType: string;
  • Type: string

Structs

DataOpentelekomcloudCbrBackupV3Config

Initializer

import { dataOpentelekomcloudCbrBackupV3 } from '@cdktf/provider-opentelekomcloud'

const dataOpentelekomcloudCbrBackupV3Config: dataOpentelekomcloudCbrBackupV3.DataOpentelekomcloudCbrBackupV3Config = { ... }

Properties

Name Type Description
connection cdktf.SSHProvisionerConnection | cdktf.WinrmProvisionerConnection No description.
count number | cdktf.TerraformCount No description.
dependsOn cdktf.ITerraformDependable[] No description.
forEach cdktf.ITerraformIterator No description.
lifecycle cdktf.TerraformResourceLifecycle No description.
provider cdktf.TerraformProvider No description.
provisioners cdktf.FileProvisioner | cdktf.LocalExecProvisioner | cdktf.RemoteExecProvisioner[] No description.
autoTrigger boolean | cdktf.IResolvable Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#auto_trigger DataOpentelekomcloudCbrBackupV3#auto_trigger}.
bootable boolean | cdktf.IResolvable Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#bootable DataOpentelekomcloudCbrBackupV3#bootable}.
checkpointId string Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#checkpoint_id DataOpentelekomcloudCbrBackupV3#checkpoint_id}.
containSystemDisk boolean | cdktf.IResolvable Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#contain_system_disk DataOpentelekomcloudCbrBackupV3#contain_system_disk}.
createdAt string Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#created_at DataOpentelekomcloudCbrBackupV3#created_at}.
description string Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#description DataOpentelekomcloudCbrBackupV3#description}.
encrypted boolean | cdktf.IResolvable Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#encrypted DataOpentelekomcloudCbrBackupV3#encrypted}.
expiredAt string Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#expired_at DataOpentelekomcloudCbrBackupV3#expired_at}.
id string Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#id DataOpentelekomcloudCbrBackupV3#id}.
imageType string Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#image_type DataOpentelekomcloudCbrBackupV3#image_type}.
incremental boolean | cdktf.IResolvable Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#incremental DataOpentelekomcloudCbrBackupV3#incremental}.
name string Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#name DataOpentelekomcloudCbrBackupV3#name}.
parentId string Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#parent_id DataOpentelekomcloudCbrBackupV3#parent_id}.
projectId string Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#project_id DataOpentelekomcloudCbrBackupV3#project_id}.
providerId string Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#provider_id DataOpentelekomcloudCbrBackupV3#provider_id}.
resourceAz string Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#resource_az DataOpentelekomcloudCbrBackupV3#resource_az}.
resourceId string Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#resource_id DataOpentelekomcloudCbrBackupV3#resource_id}.
resourceName string Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#resource_name DataOpentelekomcloudCbrBackupV3#resource_name}.
resourceSize number Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#resource_size DataOpentelekomcloudCbrBackupV3#resource_size}.
resourceType string Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#resource_type DataOpentelekomcloudCbrBackupV3#resource_type}.
snapshotId string Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#snapshot_id DataOpentelekomcloudCbrBackupV3#snapshot_id}.
status string Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#status DataOpentelekomcloudCbrBackupV3#status}.
supportedRestoreMode string Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#supported_restore_mode DataOpentelekomcloudCbrBackupV3#supported_restore_mode}.
supportLld boolean | cdktf.IResolvable Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#support_lld DataOpentelekomcloudCbrBackupV3#support_lld}.
systemDisk boolean | cdktf.IResolvable Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#system_disk DataOpentelekomcloudCbrBackupV3#system_disk}.
updatedAt string Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#updated_at DataOpentelekomcloudCbrBackupV3#updated_at}.
vaultId string Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#vault_id DataOpentelekomcloudCbrBackupV3#vault_id}.

connectionOptional
public readonly connection: SSHProvisionerConnection | WinrmProvisionerConnection;
  • Type: cdktf.SSHProvisionerConnection | cdktf.WinrmProvisionerConnection

countOptional
public readonly count: number | TerraformCount;
  • Type: number | cdktf.TerraformCount

dependsOnOptional
public readonly dependsOn: ITerraformDependable[];
  • Type: cdktf.ITerraformDependable[]

forEachOptional
public readonly forEach: ITerraformIterator;
  • Type: cdktf.ITerraformIterator

lifecycleOptional
public readonly lifecycle: TerraformResourceLifecycle;
  • Type: cdktf.TerraformResourceLifecycle

providerOptional
public readonly provider: TerraformProvider;
  • Type: cdktf.TerraformProvider

provisionersOptional
public readonly provisioners: FileProvisioner | LocalExecProvisioner | RemoteExecProvisioner[];
  • Type: cdktf.FileProvisioner | cdktf.LocalExecProvisioner | cdktf.RemoteExecProvisioner[]

autoTriggerOptional
public readonly autoTrigger: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#auto_trigger DataOpentelekomcloudCbrBackupV3#auto_trigger}.


bootableOptional
public readonly bootable: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#bootable DataOpentelekomcloudCbrBackupV3#bootable}.


checkpointIdOptional
public readonly checkpointId: string;
  • Type: string

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#checkpoint_id DataOpentelekomcloudCbrBackupV3#checkpoint_id}.


containSystemDiskOptional
public readonly containSystemDisk: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#contain_system_disk DataOpentelekomcloudCbrBackupV3#contain_system_disk}.


createdAtOptional
public readonly createdAt: string;
  • Type: string

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#created_at DataOpentelekomcloudCbrBackupV3#created_at}.


descriptionOptional
public readonly description: string;
  • Type: string

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#description DataOpentelekomcloudCbrBackupV3#description}.


encryptedOptional
public readonly encrypted: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#encrypted DataOpentelekomcloudCbrBackupV3#encrypted}.


expiredAtOptional
public readonly expiredAt: string;
  • Type: string

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#expired_at DataOpentelekomcloudCbrBackupV3#expired_at}.


idOptional
public readonly id: string;
  • Type: string

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#id DataOpentelekomcloudCbrBackupV3#id}.

Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.


imageTypeOptional
public readonly imageType: string;
  • Type: string

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#image_type DataOpentelekomcloudCbrBackupV3#image_type}.


incrementalOptional
public readonly incremental: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#incremental DataOpentelekomcloudCbrBackupV3#incremental}.


nameOptional
public readonly name: string;
  • Type: string

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#name DataOpentelekomcloudCbrBackupV3#name}.


parentIdOptional
public readonly parentId: string;
  • Type: string

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#parent_id DataOpentelekomcloudCbrBackupV3#parent_id}.


projectIdOptional
public readonly projectId: string;
  • Type: string

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#project_id DataOpentelekomcloudCbrBackupV3#project_id}.


providerIdOptional
public readonly providerId: string;
  • Type: string

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#provider_id DataOpentelekomcloudCbrBackupV3#provider_id}.


resourceAzOptional
public readonly resourceAz: string;
  • Type: string

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#resource_az DataOpentelekomcloudCbrBackupV3#resource_az}.


resourceIdOptional
public readonly resourceId: string;
  • Type: string

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#resource_id DataOpentelekomcloudCbrBackupV3#resource_id}.


resourceNameOptional
public readonly resourceName: string;
  • Type: string

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#resource_name DataOpentelekomcloudCbrBackupV3#resource_name}.


resourceSizeOptional
public readonly resourceSize: number;
  • Type: number

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#resource_size DataOpentelekomcloudCbrBackupV3#resource_size}.


resourceTypeOptional
public readonly resourceType: string;
  • Type: string

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#resource_type DataOpentelekomcloudCbrBackupV3#resource_type}.


snapshotIdOptional
public readonly snapshotId: string;
  • Type: string

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#snapshot_id DataOpentelekomcloudCbrBackupV3#snapshot_id}.


statusOptional
public readonly status: string;
  • Type: string

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#status DataOpentelekomcloudCbrBackupV3#status}.


supportedRestoreModeOptional
public readonly supportedRestoreMode: string;
  • Type: string

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#supported_restore_mode DataOpentelekomcloudCbrBackupV3#supported_restore_mode}.


supportLldOptional
public readonly supportLld: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#support_lld DataOpentelekomcloudCbrBackupV3#support_lld}.


systemDiskOptional
public readonly systemDisk: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#system_disk DataOpentelekomcloudCbrBackupV3#system_disk}.


updatedAtOptional
public readonly updatedAt: string;
  • Type: string

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#updated_at DataOpentelekomcloudCbrBackupV3#updated_at}.


vaultIdOptional
public readonly vaultId: string;
  • Type: string

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud/1.36.10/docs/data-sources/cbr_backup_v3#vault_id DataOpentelekomcloudCbrBackupV3#vault_id}.