Represents a {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/oracle_database_autonomous_database google_oracle_database_autonomous_database}.
import { oracleDatabaseAutonomousDatabase } from '@cdktf/provider-google'
new oracleDatabaseAutonomousDatabase.OracleDatabaseAutonomousDatabase(scope: Construct, id: string, config: OracleDatabaseAutonomousDatabaseConfig)
Name | Type | Description |
---|---|---|
scope |
constructs.Construct |
The scope in which to define this construct. |
id |
string |
The scoped construct ID. |
config |
OracleDatabaseAutonomousDatabaseConfig |
No description. |
- Type: constructs.Construct
The scope in which to define this construct.
- Type: string
The scoped construct ID.
Must be unique amongst siblings in the same scope
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 |
No description. |
toMetadata |
No description. |
toTerraform |
Adds this resource to the terraform JSON output. |
addMoveTarget |
Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
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. |
hasResourceMove |
No description. |
importFrom |
No description. |
interpolationForAttribute |
No description. |
moveFromId |
Move the resource corresponding to "id" to this resource. |
moveTo |
Moves this resource to the target resource given by moveTarget. |
moveToId |
Moves this resource to the resource corresponding to "id". |
putProperties |
No description. |
putTimeouts |
No description. |
resetAdminPassword |
No description. |
resetDeletionProtection |
No description. |
resetDisplayName |
No description. |
resetId |
No description. |
resetLabels |
No description. |
resetProject |
No description. |
resetTimeouts |
No description. |
public toString(): string
Returns a string representation of this construct.
public addOverride(path: string, value: any): void
- Type: string
- Type: any
public overrideLogicalId(newLogicalId: string): void
Overrides the auto-generated logical ID with a specific ID.
- Type: string
The new logical ID to use for this stack element.
public resetOverrideLogicalId(): void
Resets a previously passed logical Id to use the auto-generated logical id again.
public toHclTerraform(): any
public toMetadata(): any
public toTerraform(): any
Adds this resource to the terraform JSON output.
public addMoveTarget(moveTarget: string): void
Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
- Type: string
The string move target that will correspond to this resource.
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById
public importFrom(id: string, provider?: TerraformProvider): void
- Type: string
- Type: cdktf.TerraformProvider
public interpolationForAttribute(terraformAttribute: string): IResolvable
- Type: string
public moveFromId(id: string): void
Move the resource corresponding to "id" to this resource.
Note that the resource being moved from must be marked as moved using it's instance function.
- Type: string
Full id of resource being moved from, e.g. "aws_s3_bucket.example".
public moveTo(moveTarget: string, index?: string | number): void
Moves this resource to the target resource given by moveTarget.
- Type: string
The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
- Type: string | number
Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
public moveToId(id: string): void
Moves this resource to the resource corresponding to "id".
- Type: string
Full id of resource to move to, e.g. "aws_s3_bucket.example".
public putProperties(value: OracleDatabaseAutonomousDatabaseProperties): void
public putTimeouts(value: OracleDatabaseAutonomousDatabaseTimeouts): void
public resetAdminPassword(): void
public resetDeletionProtection(): void
public resetDisplayName(): void
public resetId(): void
public resetLabels(): void
public resetProject(): void
public resetTimeouts(): void
Name | Description |
---|---|
isConstruct |
Checks if x is a construct. |
isTerraformElement |
No description. |
isTerraformResource |
No description. |
generateConfigForImport |
Generates CDKTF code for importing a OracleDatabaseAutonomousDatabase resource upon running "cdktf plan ". |
import { oracleDatabaseAutonomousDatabase } from '@cdktf/provider-google'
oracleDatabaseAutonomousDatabase.OracleDatabaseAutonomousDatabase.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.
- Type: any
Any object.
import { oracleDatabaseAutonomousDatabase } from '@cdktf/provider-google'
oracleDatabaseAutonomousDatabase.OracleDatabaseAutonomousDatabase.isTerraformElement(x: any)
- Type: any
import { oracleDatabaseAutonomousDatabase } from '@cdktf/provider-google'
oracleDatabaseAutonomousDatabase.OracleDatabaseAutonomousDatabase.isTerraformResource(x: any)
- Type: any
import { oracleDatabaseAutonomousDatabase } from '@cdktf/provider-google'
oracleDatabaseAutonomousDatabase.OracleDatabaseAutonomousDatabase.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider)
Generates CDKTF code for importing a OracleDatabaseAutonomousDatabase resource upon running "cdktf plan ".
- Type: constructs.Construct
The scope in which to define this construct.
- Type: string
The construct id used in the generated config for the OracleDatabaseAutonomousDatabase to import.
- Type: string
The id of the existing OracleDatabaseAutonomousDatabase that should be imported.
Refer to the {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/oracle_database_autonomous_database#import import section} in the documentation of this resource for the id to use
- Type: cdktf.TerraformProvider
? Optional instance of the provider where the OracleDatabaseAutonomousDatabase to import is found.
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. |
connection |
cdktf.SSHProvisionerConnection | cdktf.WinrmProvisionerConnection |
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. |
provisioners |
cdktf.FileProvisioner | cdktf.LocalExecProvisioner | cdktf.RemoteExecProvisioner[] |
No description. |
createTime |
string |
No description. |
effectiveLabels |
cdktf.StringMap |
No description. |
entitlementId |
string |
No description. |
name |
string |
No description. |
properties |
OracleDatabaseAutonomousDatabasePropertiesOutputReference |
No description. |
terraformLabels |
cdktf.StringMap |
No description. |
timeouts |
OracleDatabaseAutonomousDatabaseTimeoutsOutputReference |
No description. |
adminPasswordInput |
string |
No description. |
autonomousDatabaseIdInput |
string |
No description. |
cidrInput |
string |
No description. |
databaseInput |
string |
No description. |
deletionProtectionInput |
boolean | cdktf.IResolvable |
No description. |
displayNameInput |
string |
No description. |
idInput |
string |
No description. |
labelsInput |
{[ key: string ]: string} |
No description. |
locationInput |
string |
No description. |
networkInput |
string |
No description. |
projectInput |
string |
No description. |
propertiesInput |
OracleDatabaseAutonomousDatabaseProperties |
No description. |
timeoutsInput |
cdktf.IResolvable | OracleDatabaseAutonomousDatabaseTimeouts |
No description. |
adminPassword |
string |
No description. |
autonomousDatabaseId |
string |
No description. |
cidr |
string |
No description. |
database |
string |
No description. |
deletionProtection |
boolean | cdktf.IResolvable |
No description. |
displayName |
string |
No description. |
id |
string |
No description. |
labels |
{[ key: string ]: string} |
No description. |
location |
string |
No description. |
network |
string |
No description. |
project |
string |
No description. |
public readonly node: Node;
- Type: constructs.Node
The tree node.
public readonly cdktfStack: TerraformStack;
- Type: cdktf.TerraformStack
public readonly fqn: string;
- Type: string
public readonly friendlyUniqueId: string;
- Type: string
public readonly terraformMetaArguments: {[ key: string ]: any};
- Type: {[ key: string ]: any}
public readonly terraformResourceType: string;
- Type: string
public readonly terraformGeneratorMetadata: TerraformProviderGeneratorMetadata;
- Type: cdktf.TerraformProviderGeneratorMetadata
public readonly connection: SSHProvisionerConnection | WinrmProvisionerConnection;
- Type: cdktf.SSHProvisionerConnection | cdktf.WinrmProvisionerConnection
public readonly count: number | TerraformCount;
- Type: number | cdktf.TerraformCount
public readonly dependsOn: string[];
- Type: string[]
public readonly forEach: ITerraformIterator;
- Type: cdktf.ITerraformIterator
public readonly lifecycle: TerraformResourceLifecycle;
- Type: cdktf.TerraformResourceLifecycle
public readonly provider: TerraformProvider;
- Type: cdktf.TerraformProvider
public readonly provisioners: FileProvisioner | LocalExecProvisioner | RemoteExecProvisioner[];
- Type: cdktf.FileProvisioner | cdktf.LocalExecProvisioner | cdktf.RemoteExecProvisioner[]
public readonly createTime: string;
- Type: string
public readonly effectiveLabels: StringMap;
- Type: cdktf.StringMap
public readonly entitlementId: string;
- Type: string
public readonly name: string;
- Type: string
public readonly properties: OracleDatabaseAutonomousDatabasePropertiesOutputReference;
public readonly terraformLabels: StringMap;
- Type: cdktf.StringMap
public readonly timeouts: OracleDatabaseAutonomousDatabaseTimeoutsOutputReference;
public readonly adminPasswordInput: string;
- Type: string
public readonly autonomousDatabaseIdInput: string;
- Type: string
public readonly cidrInput: string;
- Type: string
public readonly databaseInput: string;
- Type: string
public readonly deletionProtectionInput: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly displayNameInput: string;
- Type: string
public readonly idInput: string;
- Type: string
public readonly labelsInput: {[ key: string ]: string};
- Type: {[ key: string ]: string}
public readonly locationInput: string;
- Type: string
public readonly networkInput: string;
- Type: string
public readonly projectInput: string;
- Type: string
public readonly propertiesInput: OracleDatabaseAutonomousDatabaseProperties;
public readonly timeoutsInput: IResolvable | OracleDatabaseAutonomousDatabaseTimeouts;
- Type: cdktf.IResolvable | OracleDatabaseAutonomousDatabaseTimeouts
public readonly adminPassword: string;
- Type: string
public readonly autonomousDatabaseId: string;
- Type: string
public readonly cidr: string;
- Type: string
public readonly database: string;
- Type: string
public readonly deletionProtection: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly displayName: string;
- Type: string
public readonly id: string;
- Type: string
public readonly labels: {[ key: string ]: string};
- Type: {[ key: string ]: string}
public readonly location: string;
- Type: string
public readonly network: string;
- Type: string
public readonly project: string;
- Type: string
Name | Type | Description |
---|---|---|
tfResourceType |
string |
No description. |
public readonly tfResourceType: string;
- Type: string
import { oracleDatabaseAutonomousDatabase } from '@cdktf/provider-google'
const oracleDatabaseAutonomousDatabaseConfig: oracleDatabaseAutonomousDatabase.OracleDatabaseAutonomousDatabaseConfig = { ... }
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. |
autonomousDatabaseId |
string |
The ID of the Autonomous Database to create. |
cidr |
string |
The subnet CIDR range for the Autonmous Database. |
database |
string |
The name of the Autonomous Database. |
location |
string |
Resource ID segment making up resource 'name'. See documentation for resource type 'oracledatabase.googleapis.com/AutonomousDatabaseBackup'. |
network |
string |
The name of the VPC network used by the Autonomous Database. Format: projects/{project}/global/networks/{network}. |
properties |
OracleDatabaseAutonomousDatabaseProperties |
properties block. |
adminPassword |
string |
The password for the default ADMIN user. |
deletionProtection |
boolean | cdktf.IResolvable |
Whether or not to allow Terraform to destroy the instance. |
displayName |
string |
The display name for the Autonomous Database. The name does not have to be unique within your project. |
id |
string |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/oracle_database_autonomous_database#id OracleDatabaseAutonomousDatabase#id}. |
labels |
{[ key: string ]: string} |
The labels or tags associated with the Autonomous Database. |
project |
string |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/oracle_database_autonomous_database#project OracleDatabaseAutonomousDatabase#project}. |
timeouts |
OracleDatabaseAutonomousDatabaseTimeouts |
timeouts block. |
public readonly connection: SSHProvisionerConnection | WinrmProvisionerConnection;
- Type: cdktf.SSHProvisionerConnection | cdktf.WinrmProvisionerConnection
public readonly count: number | TerraformCount;
- Type: number | cdktf.TerraformCount
public readonly dependsOn: ITerraformDependable[];
- Type: cdktf.ITerraformDependable[]
public readonly forEach: ITerraformIterator;
- Type: cdktf.ITerraformIterator
public readonly lifecycle: TerraformResourceLifecycle;
- Type: cdktf.TerraformResourceLifecycle
public readonly provider: TerraformProvider;
- Type: cdktf.TerraformProvider
public readonly provisioners: FileProvisioner | LocalExecProvisioner | RemoteExecProvisioner[];
- Type: cdktf.FileProvisioner | cdktf.LocalExecProvisioner | cdktf.RemoteExecProvisioner[]
public readonly autonomousDatabaseId: string;
- Type: string
The ID of the Autonomous Database to create.
This value is restricted to (^a-z?$) and must be a maximum of 63 characters in length. The value must start with a letter and end with a letter or a number.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/oracle_database_autonomous_database#autonomous_database_id OracleDatabaseAutonomousDatabase#autonomous_database_id}
public readonly cidr: string;
- Type: string
The subnet CIDR range for the Autonmous Database.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/oracle_database_autonomous_database#cidr OracleDatabaseAutonomousDatabase#cidr}
public readonly database: string;
- Type: string
The name of the Autonomous Database.
The database name must be unique in the project. The name must begin with a letter and can contain a maximum of 30 alphanumeric characters.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/oracle_database_autonomous_database#database OracleDatabaseAutonomousDatabase#database}
public readonly location: string;
- Type: string
Resource ID segment making up resource 'name'. See documentation for resource type 'oracledatabase.googleapis.com/AutonomousDatabaseBackup'.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/oracle_database_autonomous_database#location OracleDatabaseAutonomousDatabase#location}
public readonly network: string;
- Type: string
The name of the VPC network used by the Autonomous Database. Format: projects/{project}/global/networks/{network}.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/oracle_database_autonomous_database#network OracleDatabaseAutonomousDatabase#network}
public readonly properties: OracleDatabaseAutonomousDatabaseProperties;
properties block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/oracle_database_autonomous_database#properties OracleDatabaseAutonomousDatabase#properties}
public readonly adminPassword: string;
- Type: string
The password for the default ADMIN user.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/oracle_database_autonomous_database#admin_password OracleDatabaseAutonomousDatabase#admin_password}
public readonly deletionProtection: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
Whether or not to allow Terraform to destroy the instance.
Unless this field is set to false in Terraform state, a terraform destroy or terraform apply that would delete the instance will fail.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/oracle_database_autonomous_database#deletion_protection OracleDatabaseAutonomousDatabase#deletion_protection}
public readonly displayName: string;
- Type: string
The display name for the Autonomous Database. The name does not have to be unique within your project.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/oracle_database_autonomous_database#display_name OracleDatabaseAutonomousDatabase#display_name}
public readonly id: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/oracle_database_autonomous_database#id OracleDatabaseAutonomousDatabase#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.
public readonly labels: {[ key: string ]: string};
- Type: {[ key: string ]: string}
The labels or tags associated with the Autonomous Database.
Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels present on the resource.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/oracle_database_autonomous_database#labels OracleDatabaseAutonomousDatabase#labels}
public readonly project: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/oracle_database_autonomous_database#project OracleDatabaseAutonomousDatabase#project}.
public readonly timeouts: OracleDatabaseAutonomousDatabaseTimeouts;
timeouts block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/oracle_database_autonomous_database#timeouts OracleDatabaseAutonomousDatabase#timeouts}
import { oracleDatabaseAutonomousDatabase } from '@cdktf/provider-google'
const oracleDatabaseAutonomousDatabaseProperties: oracleDatabaseAutonomousDatabase.OracleDatabaseAutonomousDatabaseProperties = { ... }
Name | Type | Description |
---|---|---|
dbWorkload |
string |
Possible values: DB_WORKLOAD_UNSPECIFIED OLTP DW AJD APEX. |
licenseType |
string |
The license type used for the Autonomous Database. Possible values: LICENSE_TYPE_UNSPECIFIED LICENSE_INCLUDED BRING_YOUR_OWN_LICENSE. |
backupRetentionPeriodDays |
number |
The retention period for the Autonomous Database. |
characterSet |
string |
The character set for the Autonomous Database. The default is AL32UTF8. |
computeCount |
number |
The number of compute servers for the Autonomous Database. |
customerContacts |
cdktf.IResolvable | OracleDatabaseAutonomousDatabasePropertiesCustomerContacts[] |
customer_contacts block. |
dataStorageSizeGb |
number |
The size of the data stored in the database, in gigabytes. |
dataStorageSizeTb |
number |
The size of the data stored in the database, in terabytes. |
dbEdition |
string |
The edition of the Autonomous Databases. Possible values: DATABASE_EDITION_UNSPECIFIED STANDARD_EDITION ENTERPRISE_EDITION. |
dbVersion |
string |
The Oracle Database version for the Autonomous Database. |
isAutoScalingEnabled |
boolean | cdktf.IResolvable |
This field indicates if auto scaling is enabled for the Autonomous Database CPU core count. |
isStorageAutoScalingEnabled |
boolean | cdktf.IResolvable |
This field indicates if auto scaling is enabled for the Autonomous Database storage. |
maintenanceScheduleType |
string |
The maintenance schedule of the Autonomous Database. Possible values: MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED EARLY REGULAR. |
mtlsConnectionRequired |
boolean | cdktf.IResolvable |
This field specifies if the Autonomous Database requires mTLS connections. |
nCharacterSet |
string |
The national character set for the Autonomous Database. The default is AL16UTF16. |
operationsInsightsState |
string |
Possible values: OPERATIONS_INSIGHTS_STATE_UNSPECIFIED ENABLING ENABLED DISABLING NOT_ENABLED FAILED_ENABLING FAILED_DISABLING. |
privateEndpointIp |
string |
The private endpoint IP address for the Autonomous Database. |
privateEndpointLabel |
string |
The private endpoint label for the Autonomous Database. |
public readonly dbWorkload: string;
- Type: string
Possible values: DB_WORKLOAD_UNSPECIFIED OLTP DW AJD APEX.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/oracle_database_autonomous_database#db_workload OracleDatabaseAutonomousDatabase#db_workload}
public readonly licenseType: string;
- Type: string
The license type used for the Autonomous Database. Possible values: LICENSE_TYPE_UNSPECIFIED LICENSE_INCLUDED BRING_YOUR_OWN_LICENSE.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/oracle_database_autonomous_database#license_type OracleDatabaseAutonomousDatabase#license_type}
public readonly backupRetentionPeriodDays: number;
- Type: number
The retention period for the Autonomous Database.
This field is specified in days, can range from 1 day to 60 days, and has a default value of 60 days.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/oracle_database_autonomous_database#backup_retention_period_days OracleDatabaseAutonomousDatabase#backup_retention_period_days}
public readonly characterSet: string;
- Type: string
The character set for the Autonomous Database. The default is AL32UTF8.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/oracle_database_autonomous_database#character_set OracleDatabaseAutonomousDatabase#character_set}
public readonly computeCount: number;
- Type: number
The number of compute servers for the Autonomous Database.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/oracle_database_autonomous_database#compute_count OracleDatabaseAutonomousDatabase#compute_count}
public readonly customerContacts: IResolvable | OracleDatabaseAutonomousDatabasePropertiesCustomerContacts[];
- Type: cdktf.IResolvable | OracleDatabaseAutonomousDatabasePropertiesCustomerContacts[]
customer_contacts block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/oracle_database_autonomous_database#customer_contacts OracleDatabaseAutonomousDatabase#customer_contacts}
public readonly dataStorageSizeGb: number;
- Type: number
The size of the data stored in the database, in gigabytes.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/oracle_database_autonomous_database#data_storage_size_gb OracleDatabaseAutonomousDatabase#data_storage_size_gb}
public readonly dataStorageSizeTb: number;
- Type: number
The size of the data stored in the database, in terabytes.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/oracle_database_autonomous_database#data_storage_size_tb OracleDatabaseAutonomousDatabase#data_storage_size_tb}
public readonly dbEdition: string;
- Type: string
The edition of the Autonomous Databases. Possible values: DATABASE_EDITION_UNSPECIFIED STANDARD_EDITION ENTERPRISE_EDITION.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/oracle_database_autonomous_database#db_edition OracleDatabaseAutonomousDatabase#db_edition}
public readonly dbVersion: string;
- Type: string
The Oracle Database version for the Autonomous Database.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/oracle_database_autonomous_database#db_version OracleDatabaseAutonomousDatabase#db_version}
public readonly isAutoScalingEnabled: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
This field indicates if auto scaling is enabled for the Autonomous Database CPU core count.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/oracle_database_autonomous_database#is_auto_scaling_enabled OracleDatabaseAutonomousDatabase#is_auto_scaling_enabled}
public readonly isStorageAutoScalingEnabled: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
This field indicates if auto scaling is enabled for the Autonomous Database storage.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/oracle_database_autonomous_database#is_storage_auto_scaling_enabled OracleDatabaseAutonomousDatabase#is_storage_auto_scaling_enabled}
public readonly maintenanceScheduleType: string;
- Type: string
The maintenance schedule of the Autonomous Database. Possible values: MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED EARLY REGULAR.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/oracle_database_autonomous_database#maintenance_schedule_type OracleDatabaseAutonomousDatabase#maintenance_schedule_type}
public readonly mtlsConnectionRequired: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
This field specifies if the Autonomous Database requires mTLS connections.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/oracle_database_autonomous_database#mtls_connection_required OracleDatabaseAutonomousDatabase#mtls_connection_required}
public readonly nCharacterSet: string;
- Type: string
The national character set for the Autonomous Database. The default is AL16UTF16.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/oracle_database_autonomous_database#n_character_set OracleDatabaseAutonomousDatabase#n_character_set}
public readonly operationsInsightsState: string;
- Type: string
Possible values: OPERATIONS_INSIGHTS_STATE_UNSPECIFIED ENABLING ENABLED DISABLING NOT_ENABLED FAILED_ENABLING FAILED_DISABLING.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/oracle_database_autonomous_database#operations_insights_state OracleDatabaseAutonomousDatabase#operations_insights_state}
public readonly privateEndpointIp: string;
- Type: string
The private endpoint IP address for the Autonomous Database.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/oracle_database_autonomous_database#private_endpoint_ip OracleDatabaseAutonomousDatabase#private_endpoint_ip}
public readonly privateEndpointLabel: string;
- Type: string
The private endpoint label for the Autonomous Database.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/oracle_database_autonomous_database#private_endpoint_label OracleDatabaseAutonomousDatabase#private_endpoint_label}
import { oracleDatabaseAutonomousDatabase } from '@cdktf/provider-google'
const oracleDatabaseAutonomousDatabasePropertiesApexDetails: oracleDatabaseAutonomousDatabase.OracleDatabaseAutonomousDatabasePropertiesApexDetails = { ... }
import { oracleDatabaseAutonomousDatabase } from '@cdktf/provider-google'
const oracleDatabaseAutonomousDatabasePropertiesConnectionStrings: oracleDatabaseAutonomousDatabase.OracleDatabaseAutonomousDatabasePropertiesConnectionStrings = { ... }
import { oracleDatabaseAutonomousDatabase } from '@cdktf/provider-google'
const oracleDatabaseAutonomousDatabasePropertiesConnectionStringsAllConnectionStrings: oracleDatabaseAutonomousDatabase.OracleDatabaseAutonomousDatabasePropertiesConnectionStringsAllConnectionStrings = { ... }
import { oracleDatabaseAutonomousDatabase } from '@cdktf/provider-google'
const oracleDatabaseAutonomousDatabasePropertiesConnectionStringsProfiles: oracleDatabaseAutonomousDatabase.OracleDatabaseAutonomousDatabasePropertiesConnectionStringsProfiles = { ... }
import { oracleDatabaseAutonomousDatabase } from '@cdktf/provider-google'
const oracleDatabaseAutonomousDatabasePropertiesConnectionUrls: oracleDatabaseAutonomousDatabase.OracleDatabaseAutonomousDatabasePropertiesConnectionUrls = { ... }
import { oracleDatabaseAutonomousDatabase } from '@cdktf/provider-google'
const oracleDatabaseAutonomousDatabasePropertiesCustomerContacts: oracleDatabaseAutonomousDatabase.OracleDatabaseAutonomousDatabasePropertiesCustomerContacts = { ... }
Name | Type | Description |
---|---|---|
email |
string |
The email address used by Oracle to send notifications regarding databases and infrastructure. |
public readonly email: string;
- Type: string
The email address used by Oracle to send notifications regarding databases and infrastructure.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/oracle_database_autonomous_database#email OracleDatabaseAutonomousDatabase#email}
import { oracleDatabaseAutonomousDatabase } from '@cdktf/provider-google'
const oracleDatabaseAutonomousDatabasePropertiesLocalStandbyDb: oracleDatabaseAutonomousDatabase.OracleDatabaseAutonomousDatabasePropertiesLocalStandbyDb = { ... }
import { oracleDatabaseAutonomousDatabase } from '@cdktf/provider-google'
const oracleDatabaseAutonomousDatabasePropertiesScheduledOperationDetails: oracleDatabaseAutonomousDatabase.OracleDatabaseAutonomousDatabasePropertiesScheduledOperationDetails = { ... }
import { oracleDatabaseAutonomousDatabase } from '@cdktf/provider-google'
const oracleDatabaseAutonomousDatabasePropertiesScheduledOperationDetailsStartTime: oracleDatabaseAutonomousDatabase.OracleDatabaseAutonomousDatabasePropertiesScheduledOperationDetailsStartTime = { ... }
import { oracleDatabaseAutonomousDatabase } from '@cdktf/provider-google'
const oracleDatabaseAutonomousDatabasePropertiesScheduledOperationDetailsStopTime: oracleDatabaseAutonomousDatabase.OracleDatabaseAutonomousDatabasePropertiesScheduledOperationDetailsStopTime = { ... }
import { oracleDatabaseAutonomousDatabase } from '@cdktf/provider-google'
const oracleDatabaseAutonomousDatabaseTimeouts: oracleDatabaseAutonomousDatabase.OracleDatabaseAutonomousDatabaseTimeouts = { ... }
Name | Type | Description |
---|---|---|
create |
string |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/oracle_database_autonomous_database#create OracleDatabaseAutonomousDatabase#create}. |
delete |
string |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/oracle_database_autonomous_database#delete OracleDatabaseAutonomousDatabase#delete}. |
update |
string |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/oracle_database_autonomous_database#update OracleDatabaseAutonomousDatabase#update}. |
public readonly create: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/oracle_database_autonomous_database#create OracleDatabaseAutonomousDatabase#create}.
public readonly delete: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/oracle_database_autonomous_database#delete OracleDatabaseAutonomousDatabase#delete}.
public readonly update: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/oracle_database_autonomous_database#update OracleDatabaseAutonomousDatabase#update}.
import { oracleDatabaseAutonomousDatabase } from '@cdktf/provider-google'
new oracleDatabaseAutonomousDatabase.OracleDatabaseAutonomousDatabasePropertiesApexDetailsList(terraformResource: IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
wrapsSet |
boolean |
whether the list is wrapping a set (will add tolist() to be able to access an item via an index). |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
- Type: boolean
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
Name | Description |
---|---|
allWithMapKey |
Creating an iterator for this complex list. |
computeFqn |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
get |
No description. |
public allWithMapKey(mapKeyAttributeName: string): DynamicListTerraformIterator
Creating an iterator for this complex list.
The list will be converted into a map with the mapKeyAttributeName as the key.
- Type: string
public computeFqn(): string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public get(index: number): OracleDatabaseAutonomousDatabasePropertiesApexDetailsOutputReference
- Type: number
the index of the item to return.
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
import { oracleDatabaseAutonomousDatabase } from '@cdktf/provider-google'
new oracleDatabaseAutonomousDatabase.OracleDatabaseAutonomousDatabasePropertiesApexDetailsOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
complexObjectIndex |
number |
the index of this item in the list. |
complexObjectIsFromSet |
boolean |
whether the list is wrapping a set (will add tolist() to be able to access an item via an index). |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
- Type: number
the index of this item in the list.
- Type: boolean
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
Name | Description |
---|---|
computeFqn |
No description. |
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. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
apexVersion |
string |
No description. |
ordsVersion |
string |
No description. |
internalValue |
OracleDatabaseAutonomousDatabasePropertiesApexDetails |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly apexVersion: string;
- Type: string
public readonly ordsVersion: string;
- Type: string
public readonly internalValue: OracleDatabaseAutonomousDatabasePropertiesApexDetails;
import { oracleDatabaseAutonomousDatabase } from '@cdktf/provider-google'
new oracleDatabaseAutonomousDatabase.OracleDatabaseAutonomousDatabasePropertiesConnectionStringsAllConnectionStringsList(terraformResource: IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
wrapsSet |
boolean |
whether the list is wrapping a set (will add tolist() to be able to access an item via an index). |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
- Type: boolean
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
Name | Description |
---|---|
allWithMapKey |
Creating an iterator for this complex list. |
computeFqn |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
get |
No description. |
public allWithMapKey(mapKeyAttributeName: string): DynamicListTerraformIterator
Creating an iterator for this complex list.
The list will be converted into a map with the mapKeyAttributeName as the key.
- Type: string
public computeFqn(): string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public get(index: number): OracleDatabaseAutonomousDatabasePropertiesConnectionStringsAllConnectionStringsOutputReference
- Type: number
the index of the item to return.
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
import { oracleDatabaseAutonomousDatabase } from '@cdktf/provider-google'
new oracleDatabaseAutonomousDatabase.OracleDatabaseAutonomousDatabasePropertiesConnectionStringsAllConnectionStringsOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
complexObjectIndex |
number |
the index of this item in the list. |
complexObjectIsFromSet |
boolean |
whether the list is wrapping a set (will add tolist() to be able to access an item via an index). |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
- Type: number
the index of this item in the list.
- Type: boolean
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
Name | Description |
---|---|
computeFqn |
No description. |
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. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
high |
string |
No description. |
low |
string |
No description. |
medium |
string |
No description. |
internalValue |
OracleDatabaseAutonomousDatabasePropertiesConnectionStringsAllConnectionStrings |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly high: string;
- Type: string
public readonly low: string;
- Type: string
public readonly medium: string;
- Type: string
public readonly internalValue: OracleDatabaseAutonomousDatabasePropertiesConnectionStringsAllConnectionStrings;
import { oracleDatabaseAutonomousDatabase } from '@cdktf/provider-google'
new oracleDatabaseAutonomousDatabase.OracleDatabaseAutonomousDatabasePropertiesConnectionStringsList(terraformResource: IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
wrapsSet |
boolean |
whether the list is wrapping a set (will add tolist() to be able to access an item via an index). |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
- Type: boolean
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
Name | Description |
---|---|
allWithMapKey |
Creating an iterator for this complex list. |
computeFqn |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
get |
No description. |
public allWithMapKey(mapKeyAttributeName: string): DynamicListTerraformIterator
Creating an iterator for this complex list.
The list will be converted into a map with the mapKeyAttributeName as the key.
- Type: string
public computeFqn(): string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public get(index: number): OracleDatabaseAutonomousDatabasePropertiesConnectionStringsOutputReference
- Type: number
the index of the item to return.
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
import { oracleDatabaseAutonomousDatabase } from '@cdktf/provider-google'
new oracleDatabaseAutonomousDatabase.OracleDatabaseAutonomousDatabasePropertiesConnectionStringsOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
complexObjectIndex |
number |
the index of this item in the list. |
complexObjectIsFromSet |
boolean |
whether the list is wrapping a set (will add tolist() to be able to access an item via an index). |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
- Type: number
the index of this item in the list.
- Type: boolean
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
Name | Description |
---|---|
computeFqn |
No description. |
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. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
allConnectionStrings |
OracleDatabaseAutonomousDatabasePropertiesConnectionStringsAllConnectionStringsList |
No description. |
dedicated |
string |
No description. |
high |
string |
No description. |
low |
string |
No description. |
medium |
string |
No description. |
profiles |
OracleDatabaseAutonomousDatabasePropertiesConnectionStringsProfilesList |
No description. |
internalValue |
OracleDatabaseAutonomousDatabasePropertiesConnectionStrings |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly allConnectionStrings: OracleDatabaseAutonomousDatabasePropertiesConnectionStringsAllConnectionStringsList;
public readonly dedicated: string;
- Type: string
public readonly high: string;
- Type: string
public readonly low: string;
- Type: string
public readonly medium: string;
- Type: string
public readonly profiles: OracleDatabaseAutonomousDatabasePropertiesConnectionStringsProfilesList;
public readonly internalValue: OracleDatabaseAutonomousDatabasePropertiesConnectionStrings;
import { oracleDatabaseAutonomousDatabase } from '@cdktf/provider-google'
new oracleDatabaseAutonomousDatabase.OracleDatabaseAutonomousDatabasePropertiesConnectionStringsProfilesList(terraformResource: IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
wrapsSet |
boolean |
whether the list is wrapping a set (will add tolist() to be able to access an item via an index). |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
- Type: boolean
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
Name | Description |
---|---|
allWithMapKey |
Creating an iterator for this complex list. |
computeFqn |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
get |
No description. |
public allWithMapKey(mapKeyAttributeName: string): DynamicListTerraformIterator
Creating an iterator for this complex list.
The list will be converted into a map with the mapKeyAttributeName as the key.
- Type: string
public computeFqn(): string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public get(index: number): OracleDatabaseAutonomousDatabasePropertiesConnectionStringsProfilesOutputReference
- Type: number
the index of the item to return.
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
import { oracleDatabaseAutonomousDatabase } from '@cdktf/provider-google'
new oracleDatabaseAutonomousDatabase.OracleDatabaseAutonomousDatabasePropertiesConnectionStringsProfilesOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
complexObjectIndex |
number |
the index of this item in the list. |
complexObjectIsFromSet |
boolean |
whether the list is wrapping a set (will add tolist() to be able to access an item via an index). |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
- Type: number
the index of this item in the list.
- Type: boolean
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
Name | Description |
---|---|
computeFqn |
No description. |
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. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
consumerGroup |
string |
No description. |
displayName |
string |
No description. |
hostFormat |
string |
No description. |
isRegional |
cdktf.IResolvable |
No description. |
protocol |
string |
No description. |
sessionMode |
string |
No description. |
syntaxFormat |
string |
No description. |
tlsAuthentication |
string |
No description. |
value |
string |
No description. |
internalValue |
OracleDatabaseAutonomousDatabasePropertiesConnectionStringsProfiles |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly consumerGroup: string;
- Type: string
public readonly displayName: string;
- Type: string
public readonly hostFormat: string;
- Type: string
public readonly isRegional: IResolvable;
- Type: cdktf.IResolvable
public readonly protocol: string;
- Type: string
public readonly sessionMode: string;
- Type: string
public readonly syntaxFormat: string;
- Type: string
public readonly tlsAuthentication: string;
- Type: string
public readonly value: string;
- Type: string
public readonly internalValue: OracleDatabaseAutonomousDatabasePropertiesConnectionStringsProfiles;
import { oracleDatabaseAutonomousDatabase } from '@cdktf/provider-google'
new oracleDatabaseAutonomousDatabase.OracleDatabaseAutonomousDatabasePropertiesConnectionUrlsList(terraformResource: IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
wrapsSet |
boolean |
whether the list is wrapping a set (will add tolist() to be able to access an item via an index). |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
- Type: boolean
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
Name | Description |
---|---|
allWithMapKey |
Creating an iterator for this complex list. |
computeFqn |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
get |
No description. |
public allWithMapKey(mapKeyAttributeName: string): DynamicListTerraformIterator
Creating an iterator for this complex list.
The list will be converted into a map with the mapKeyAttributeName as the key.
- Type: string
public computeFqn(): string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public get(index: number): OracleDatabaseAutonomousDatabasePropertiesConnectionUrlsOutputReference
- Type: number
the index of the item to return.
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
import { oracleDatabaseAutonomousDatabase } from '@cdktf/provider-google'
new oracleDatabaseAutonomousDatabase.OracleDatabaseAutonomousDatabasePropertiesConnectionUrlsOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
complexObjectIndex |
number |
the index of this item in the list. |
complexObjectIsFromSet |
boolean |
whether the list is wrapping a set (will add tolist() to be able to access an item via an index). |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
- Type: number
the index of this item in the list.
- Type: boolean
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
Name | Description |
---|---|
computeFqn |
No description. |
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. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
apexUri |
string |
No description. |
databaseTransformsUri |
string |
No description. |
graphStudioUri |
string |
No description. |
machineLearningNotebookUri |
string |
No description. |
machineLearningUserManagementUri |
string |
No description. |
mongoDbUri |
string |
No description. |
ordsUri |
string |
No description. |
sqlDevWebUri |
string |
No description. |
internalValue |
OracleDatabaseAutonomousDatabasePropertiesConnectionUrls |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly apexUri: string;
- Type: string
public readonly databaseTransformsUri: string;
- Type: string
public readonly graphStudioUri: string;
- Type: string
public readonly machineLearningNotebookUri: string;
- Type: string
public readonly machineLearningUserManagementUri: string;
- Type: string
public readonly mongoDbUri: string;
- Type: string
public readonly ordsUri: string;
- Type: string
public readonly sqlDevWebUri: string;
- Type: string
public readonly internalValue: OracleDatabaseAutonomousDatabasePropertiesConnectionUrls;
import { oracleDatabaseAutonomousDatabase } from '@cdktf/provider-google'
new oracleDatabaseAutonomousDatabase.OracleDatabaseAutonomousDatabasePropertiesCustomerContactsList(terraformResource: IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
wrapsSet |
boolean |
whether the list is wrapping a set (will add tolist() to be able to access an item via an index). |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
- Type: boolean
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
Name | Description |
---|---|
allWithMapKey |
Creating an iterator for this complex list. |
computeFqn |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
get |
No description. |
public allWithMapKey(mapKeyAttributeName: string): DynamicListTerraformIterator
Creating an iterator for this complex list.
The list will be converted into a map with the mapKeyAttributeName as the key.
- Type: string
public computeFqn(): string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public get(index: number): OracleDatabaseAutonomousDatabasePropertiesCustomerContactsOutputReference
- Type: number
the index of the item to return.
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
internalValue |
cdktf.IResolvable | OracleDatabaseAutonomousDatabasePropertiesCustomerContacts[] |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly internalValue: IResolvable | OracleDatabaseAutonomousDatabasePropertiesCustomerContacts[];
- Type: cdktf.IResolvable | OracleDatabaseAutonomousDatabasePropertiesCustomerContacts[]
import { oracleDatabaseAutonomousDatabase } from '@cdktf/provider-google'
new oracleDatabaseAutonomousDatabase.OracleDatabaseAutonomousDatabasePropertiesCustomerContactsOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
complexObjectIndex |
number |
the index of this item in the list. |
complexObjectIsFromSet |
boolean |
whether the list is wrapping a set (will add tolist() to be able to access an item via an index). |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
- Type: number
the index of this item in the list.
- Type: boolean
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
Name | Description |
---|---|
computeFqn |
No description. |
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. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
emailInput |
string |
No description. |
email |
string |
No description. |
internalValue |
cdktf.IResolvable | OracleDatabaseAutonomousDatabasePropertiesCustomerContacts |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly emailInput: string;
- Type: string
public readonly email: string;
- Type: string
public readonly internalValue: IResolvable | OracleDatabaseAutonomousDatabasePropertiesCustomerContacts;
- Type: cdktf.IResolvable | OracleDatabaseAutonomousDatabasePropertiesCustomerContacts
import { oracleDatabaseAutonomousDatabase } from '@cdktf/provider-google'
new oracleDatabaseAutonomousDatabase.OracleDatabaseAutonomousDatabasePropertiesLocalStandbyDbList(terraformResource: IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
wrapsSet |
boolean |
whether the list is wrapping a set (will add tolist() to be able to access an item via an index). |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
- Type: boolean
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
Name | Description |
---|---|
allWithMapKey |
Creating an iterator for this complex list. |
computeFqn |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
get |
No description. |
public allWithMapKey(mapKeyAttributeName: string): DynamicListTerraformIterator
Creating an iterator for this complex list.
The list will be converted into a map with the mapKeyAttributeName as the key.
- Type: string
public computeFqn(): string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public get(index: number): OracleDatabaseAutonomousDatabasePropertiesLocalStandbyDbOutputReference
- Type: number
the index of the item to return.
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
import { oracleDatabaseAutonomousDatabase } from '@cdktf/provider-google'
new oracleDatabaseAutonomousDatabase.OracleDatabaseAutonomousDatabasePropertiesLocalStandbyDbOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
complexObjectIndex |
number |
the index of this item in the list. |
complexObjectIsFromSet |
boolean |
whether the list is wrapping a set (will add tolist() to be able to access an item via an index). |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
- Type: number
the index of this item in the list.
- Type: boolean
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
Name | Description |
---|---|
computeFqn |
No description. |
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. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
dataGuardRoleChangedTime |
string |
No description. |
disasterRecoveryRoleChangedTime |
string |
No description. |
lagTimeDuration |
string |
No description. |
lifecycleDetails |
string |
No description. |
state |
string |
No description. |
internalValue |
OracleDatabaseAutonomousDatabasePropertiesLocalStandbyDb |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly dataGuardRoleChangedTime: string;
- Type: string
public readonly disasterRecoveryRoleChangedTime: string;
- Type: string
public readonly lagTimeDuration: string;
- Type: string
public readonly lifecycleDetails: string;
- Type: string
public readonly state: string;
- Type: string
public readonly internalValue: OracleDatabaseAutonomousDatabasePropertiesLocalStandbyDb;
import { oracleDatabaseAutonomousDatabase } from '@cdktf/provider-google'
new oracleDatabaseAutonomousDatabase.OracleDatabaseAutonomousDatabasePropertiesOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public putCustomerContacts(value: IResolvable | OracleDatabaseAutonomousDatabasePropertiesCustomerContacts[]): void
- Type: cdktf.IResolvable | OracleDatabaseAutonomousDatabasePropertiesCustomerContacts[]
public resetBackupRetentionPeriodDays(): void
public resetCharacterSet(): void
public resetComputeCount(): void
public resetCustomerContacts(): void
public resetDataStorageSizeGb(): void
public resetDataStorageSizeTb(): void
public resetDbEdition(): void
public resetDbVersion(): void
public resetIsAutoScalingEnabled(): void
public resetIsStorageAutoScalingEnabled(): void
public resetMaintenanceScheduleType(): void
public resetMtlsConnectionRequired(): void
public resetNCharacterSet(): void
public resetOperationsInsightsState(): void
public resetPrivateEndpointIp(): void
public resetPrivateEndpointLabel(): void
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
actualUsedDataStorageSizeTb |
number |
No description. |
allocatedStorageSizeTb |
number |
No description. |
apexDetails |
OracleDatabaseAutonomousDatabasePropertiesApexDetailsList |
No description. |
arePrimaryAllowlistedIpsUsed |
cdktf.IResolvable |
No description. |
autonomousContainerDatabaseId |
string |
No description. |
availableUpgradeVersions |
string[] |
No description. |
connectionStrings |
OracleDatabaseAutonomousDatabasePropertiesConnectionStringsList |
No description. |
connectionUrls |
OracleDatabaseAutonomousDatabasePropertiesConnectionUrlsList |
No description. |
customerContacts |
OracleDatabaseAutonomousDatabasePropertiesCustomerContactsList |
No description. |
databaseManagementState |
string |
No description. |
dataSafeState |
string |
No description. |
failedDataRecoveryDuration |
string |
No description. |
isLocalDataGuardEnabled |
cdktf.IResolvable |
No description. |
lifecycleDetails |
string |
No description. |
localAdgAutoFailoverMaxDataLossLimit |
number |
No description. |
localDisasterRecoveryType |
string |
No description. |
localStandbyDb |
OracleDatabaseAutonomousDatabasePropertiesLocalStandbyDbList |
No description. |
maintenanceBeginTime |
string |
No description. |
maintenanceEndTime |
string |
No description. |
memoryPerOracleComputeUnitGbs |
number |
No description. |
memoryTableGbs |
number |
No description. |
nextLongTermBackupTime |
string |
No description. |
ocid |
string |
No description. |
ociUrl |
string |
No description. |
openMode |
string |
No description. |
peerDbIds |
string[] |
No description. |
permissionLevel |
string |
No description. |
privateEndpoint |
string |
No description. |
refreshableMode |
string |
No description. |
refreshableState |
string |
No description. |
role |
string |
No description. |
scheduledOperationDetails |
OracleDatabaseAutonomousDatabasePropertiesScheduledOperationDetailsList |
No description. |
sqlWebDeveloperUrl |
string |
No description. |
state |
string |
No description. |
supportedCloneRegions |
string[] |
No description. |
totalAutoBackupStorageSizeGbs |
number |
No description. |
usedDataStorageSizeTbs |
number |
No description. |
backupRetentionPeriodDaysInput |
number |
No description. |
characterSetInput |
string |
No description. |
computeCountInput |
number |
No description. |
customerContactsInput |
cdktf.IResolvable | OracleDatabaseAutonomousDatabasePropertiesCustomerContacts[] |
No description. |
dataStorageSizeGbInput |
number |
No description. |
dataStorageSizeTbInput |
number |
No description. |
dbEditionInput |
string |
No description. |
dbVersionInput |
string |
No description. |
dbWorkloadInput |
string |
No description. |
isAutoScalingEnabledInput |
boolean | cdktf.IResolvable |
No description. |
isStorageAutoScalingEnabledInput |
boolean | cdktf.IResolvable |
No description. |
licenseTypeInput |
string |
No description. |
maintenanceScheduleTypeInput |
string |
No description. |
mtlsConnectionRequiredInput |
boolean | cdktf.IResolvable |
No description. |
nCharacterSetInput |
string |
No description. |
operationsInsightsStateInput |
string |
No description. |
privateEndpointIpInput |
string |
No description. |
privateEndpointLabelInput |
string |
No description. |
backupRetentionPeriodDays |
number |
No description. |
characterSet |
string |
No description. |
computeCount |
number |
No description. |
dataStorageSizeGb |
number |
No description. |
dataStorageSizeTb |
number |
No description. |
dbEdition |
string |
No description. |
dbVersion |
string |
No description. |
dbWorkload |
string |
No description. |
isAutoScalingEnabled |
boolean | cdktf.IResolvable |
No description. |
isStorageAutoScalingEnabled |
boolean | cdktf.IResolvable |
No description. |
licenseType |
string |
No description. |
maintenanceScheduleType |
string |
No description. |
mtlsConnectionRequired |
boolean | cdktf.IResolvable |
No description. |
nCharacterSet |
string |
No description. |
operationsInsightsState |
string |
No description. |
privateEndpointIp |
string |
No description. |
privateEndpointLabel |
string |
No description. |
internalValue |
OracleDatabaseAutonomousDatabaseProperties |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly actualUsedDataStorageSizeTb: number;
- Type: number
public readonly allocatedStorageSizeTb: number;
- Type: number
public readonly apexDetails: OracleDatabaseAutonomousDatabasePropertiesApexDetailsList;
public readonly arePrimaryAllowlistedIpsUsed: IResolvable;
- Type: cdktf.IResolvable
public readonly autonomousContainerDatabaseId: string;
- Type: string
public readonly availableUpgradeVersions: string[];
- Type: string[]
public readonly connectionStrings: OracleDatabaseAutonomousDatabasePropertiesConnectionStringsList;
public readonly connectionUrls: OracleDatabaseAutonomousDatabasePropertiesConnectionUrlsList;
public readonly customerContacts: OracleDatabaseAutonomousDatabasePropertiesCustomerContactsList;
public readonly databaseManagementState: string;
- Type: string
public readonly dataSafeState: string;
- Type: string
public readonly failedDataRecoveryDuration: string;
- Type: string
public readonly isLocalDataGuardEnabled: IResolvable;
- Type: cdktf.IResolvable
public readonly lifecycleDetails: string;
- Type: string
public readonly localAdgAutoFailoverMaxDataLossLimit: number;
- Type: number
public readonly localDisasterRecoveryType: string;
- Type: string
public readonly localStandbyDb: OracleDatabaseAutonomousDatabasePropertiesLocalStandbyDbList;
public readonly maintenanceBeginTime: string;
- Type: string
public readonly maintenanceEndTime: string;
- Type: string
public readonly memoryPerOracleComputeUnitGbs: number;
- Type: number
public readonly memoryTableGbs: number;
- Type: number
public readonly nextLongTermBackupTime: string;
- Type: string
public readonly ocid: string;
- Type: string
public readonly ociUrl: string;
- Type: string
public readonly openMode: string;
- Type: string
public readonly peerDbIds: string[];
- Type: string[]
public readonly permissionLevel: string;
- Type: string
public readonly privateEndpoint: string;
- Type: string
public readonly refreshableMode: string;
- Type: string
public readonly refreshableState: string;
- Type: string
public readonly role: string;
- Type: string
public readonly scheduledOperationDetails: OracleDatabaseAutonomousDatabasePropertiesScheduledOperationDetailsList;
public readonly sqlWebDeveloperUrl: string;
- Type: string
public readonly state: string;
- Type: string
public readonly supportedCloneRegions: string[];
- Type: string[]
public readonly totalAutoBackupStorageSizeGbs: number;
- Type: number
public readonly usedDataStorageSizeTbs: number;
- Type: number
public readonly backupRetentionPeriodDaysInput: number;
- Type: number
public readonly characterSetInput: string;
- Type: string
public readonly computeCountInput: number;
- Type: number
public readonly customerContactsInput: IResolvable | OracleDatabaseAutonomousDatabasePropertiesCustomerContacts[];
- Type: cdktf.IResolvable | OracleDatabaseAutonomousDatabasePropertiesCustomerContacts[]
public readonly dataStorageSizeGbInput: number;
- Type: number
public readonly dataStorageSizeTbInput: number;
- Type: number
public readonly dbEditionInput: string;
- Type: string
public readonly dbVersionInput: string;
- Type: string
public readonly dbWorkloadInput: string;
- Type: string
public readonly isAutoScalingEnabledInput: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly isStorageAutoScalingEnabledInput: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly licenseTypeInput: string;
- Type: string
public readonly maintenanceScheduleTypeInput: string;
- Type: string
public readonly mtlsConnectionRequiredInput: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly nCharacterSetInput: string;
- Type: string
public readonly operationsInsightsStateInput: string;
- Type: string
public readonly privateEndpointIpInput: string;
- Type: string
public readonly privateEndpointLabelInput: string;
- Type: string
public readonly backupRetentionPeriodDays: number;
- Type: number
public readonly characterSet: string;
- Type: string
public readonly computeCount: number;
- Type: number
public readonly dataStorageSizeGb: number;
- Type: number
public readonly dataStorageSizeTb: number;
- Type: number
public readonly dbEdition: string;
- Type: string
public readonly dbVersion: string;
- Type: string
public readonly dbWorkload: string;
- Type: string
public readonly isAutoScalingEnabled: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly isStorageAutoScalingEnabled: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly licenseType: string;
- Type: string
public readonly maintenanceScheduleType: string;
- Type: string
public readonly mtlsConnectionRequired: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly nCharacterSet: string;
- Type: string
public readonly operationsInsightsState: string;
- Type: string
public readonly privateEndpointIp: string;
- Type: string
public readonly privateEndpointLabel: string;
- Type: string
public readonly internalValue: OracleDatabaseAutonomousDatabaseProperties;
import { oracleDatabaseAutonomousDatabase } from '@cdktf/provider-google'
new oracleDatabaseAutonomousDatabase.OracleDatabaseAutonomousDatabasePropertiesScheduledOperationDetailsList(terraformResource: IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
wrapsSet |
boolean |
whether the list is wrapping a set (will add tolist() to be able to access an item via an index). |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
- Type: boolean
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
Name | Description |
---|---|
allWithMapKey |
Creating an iterator for this complex list. |
computeFqn |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
get |
No description. |
public allWithMapKey(mapKeyAttributeName: string): DynamicListTerraformIterator
Creating an iterator for this complex list.
The list will be converted into a map with the mapKeyAttributeName as the key.
- Type: string
public computeFqn(): string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public get(index: number): OracleDatabaseAutonomousDatabasePropertiesScheduledOperationDetailsOutputReference
- Type: number
the index of the item to return.
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
import { oracleDatabaseAutonomousDatabase } from '@cdktf/provider-google'
new oracleDatabaseAutonomousDatabase.OracleDatabaseAutonomousDatabasePropertiesScheduledOperationDetailsOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
complexObjectIndex |
number |
the index of this item in the list. |
complexObjectIsFromSet |
boolean |
whether the list is wrapping a set (will add tolist() to be able to access an item via an index). |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
- Type: number
the index of this item in the list.
- Type: boolean
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
Name | Description |
---|---|
computeFqn |
No description. |
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. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
dayOfWeek |
string |
No description. |
startTime |
OracleDatabaseAutonomousDatabasePropertiesScheduledOperationDetailsStartTimeList |
No description. |
stopTime |
OracleDatabaseAutonomousDatabasePropertiesScheduledOperationDetailsStopTimeList |
No description. |
internalValue |
OracleDatabaseAutonomousDatabasePropertiesScheduledOperationDetails |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly dayOfWeek: string;
- Type: string
public readonly startTime: OracleDatabaseAutonomousDatabasePropertiesScheduledOperationDetailsStartTimeList;
public readonly stopTime: OracleDatabaseAutonomousDatabasePropertiesScheduledOperationDetailsStopTimeList;
public readonly internalValue: OracleDatabaseAutonomousDatabasePropertiesScheduledOperationDetails;
import { oracleDatabaseAutonomousDatabase } from '@cdktf/provider-google'
new oracleDatabaseAutonomousDatabase.OracleDatabaseAutonomousDatabasePropertiesScheduledOperationDetailsStartTimeList(terraformResource: IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
wrapsSet |
boolean |
whether the list is wrapping a set (will add tolist() to be able to access an item via an index). |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
- Type: boolean
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
Name | Description |
---|---|
allWithMapKey |
Creating an iterator for this complex list. |
computeFqn |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
get |
No description. |
public allWithMapKey(mapKeyAttributeName: string): DynamicListTerraformIterator
Creating an iterator for this complex list.
The list will be converted into a map with the mapKeyAttributeName as the key.
- Type: string
public computeFqn(): string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public get(index: number): OracleDatabaseAutonomousDatabasePropertiesScheduledOperationDetailsStartTimeOutputReference
- Type: number
the index of the item to return.
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
import { oracleDatabaseAutonomousDatabase } from '@cdktf/provider-google'
new oracleDatabaseAutonomousDatabase.OracleDatabaseAutonomousDatabasePropertiesScheduledOperationDetailsStartTimeOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
complexObjectIndex |
number |
the index of this item in the list. |
complexObjectIsFromSet |
boolean |
whether the list is wrapping a set (will add tolist() to be able to access an item via an index). |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
- Type: number
the index of this item in the list.
- Type: boolean
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
Name | Description |
---|---|
computeFqn |
No description. |
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. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
hours |
number |
No description. |
minutes |
number |
No description. |
nanos |
number |
No description. |
seconds |
number |
No description. |
internalValue |
OracleDatabaseAutonomousDatabasePropertiesScheduledOperationDetailsStartTime |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly hours: number;
- Type: number
public readonly minutes: number;
- Type: number
public readonly nanos: number;
- Type: number
public readonly seconds: number;
- Type: number
public readonly internalValue: OracleDatabaseAutonomousDatabasePropertiesScheduledOperationDetailsStartTime;
import { oracleDatabaseAutonomousDatabase } from '@cdktf/provider-google'
new oracleDatabaseAutonomousDatabase.OracleDatabaseAutonomousDatabasePropertiesScheduledOperationDetailsStopTimeList(terraformResource: IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
wrapsSet |
boolean |
whether the list is wrapping a set (will add tolist() to be able to access an item via an index). |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
- Type: boolean
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
Name | Description |
---|---|
allWithMapKey |
Creating an iterator for this complex list. |
computeFqn |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
get |
No description. |
public allWithMapKey(mapKeyAttributeName: string): DynamicListTerraformIterator
Creating an iterator for this complex list.
The list will be converted into a map with the mapKeyAttributeName as the key.
- Type: string
public computeFqn(): string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public get(index: number): OracleDatabaseAutonomousDatabasePropertiesScheduledOperationDetailsStopTimeOutputReference
- Type: number
the index of the item to return.
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
import { oracleDatabaseAutonomousDatabase } from '@cdktf/provider-google'
new oracleDatabaseAutonomousDatabase.OracleDatabaseAutonomousDatabasePropertiesScheduledOperationDetailsStopTimeOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
complexObjectIndex |
number |
the index of this item in the list. |
complexObjectIsFromSet |
boolean |
whether the list is wrapping a set (will add tolist() to be able to access an item via an index). |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
- Type: number
the index of this item in the list.
- Type: boolean
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
Name | Description |
---|---|
computeFqn |
No description. |
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. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
hours |
number |
No description. |
minutes |
number |
No description. |
nanos |
number |
No description. |
seconds |
number |
No description. |
internalValue |
OracleDatabaseAutonomousDatabasePropertiesScheduledOperationDetailsStopTime |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly hours: number;
- Type: number
public readonly minutes: number;
- Type: number
public readonly nanos: number;
- Type: number
public readonly seconds: number;
- Type: number
public readonly internalValue: OracleDatabaseAutonomousDatabasePropertiesScheduledOperationDetailsStopTime;
import { oracleDatabaseAutonomousDatabase } from '@cdktf/provider-google'
new oracleDatabaseAutonomousDatabase.OracleDatabaseAutonomousDatabaseTimeoutsOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
Name | Description |
---|---|
computeFqn |
No description. |
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. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
resetCreate |
No description. |
resetDelete |
No description. |
resetUpdate |
No description. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public resetCreate(): void
public resetDelete(): void
public resetUpdate(): void
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
createInput |
string |
No description. |
deleteInput |
string |
No description. |
updateInput |
string |
No description. |
create |
string |
No description. |
delete |
string |
No description. |
update |
string |
No description. |
internalValue |
cdktf.IResolvable | OracleDatabaseAutonomousDatabaseTimeouts |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly createInput: string;
- Type: string
public readonly deleteInput: string;
- Type: string
public readonly updateInput: string;
- Type: string
public readonly create: string;
- Type: string
public readonly delete: string;
- Type: string
public readonly update: string;
- Type: string
public readonly internalValue: IResolvable | OracleDatabaseAutonomousDatabaseTimeouts;
- Type: cdktf.IResolvable | OracleDatabaseAutonomousDatabaseTimeouts