rhizo-co-terraform-provider-oci
Version:
Prebuilt oci Provider for Terraform CDK (cdktf)
1,168 lines • 157 kB
JavaScript
"use strict";
var _a, _b, _c, _d, _e, _f;
Object.defineProperty(exports, "__esModule", { value: true });
exports.DatabaseMigrationConnection = exports.DatabaseMigrationConnectionTimeoutsOutputReference = exports.databaseMigrationConnectionTimeoutsToHclTerraform = exports.databaseMigrationConnectionTimeoutsToTerraform = exports.DatabaseMigrationConnectionAdditionalAttributesList = exports.DatabaseMigrationConnectionAdditionalAttributesOutputReference = exports.databaseMigrationConnectionAdditionalAttributesToHclTerraform = exports.databaseMigrationConnectionAdditionalAttributesToTerraform = exports.DatabaseMigrationConnectionIngressIpsList = exports.DatabaseMigrationConnectionIngressIpsOutputReference = exports.databaseMigrationConnectionIngressIpsToHclTerraform = exports.databaseMigrationConnectionIngressIpsToTerraform = void 0;
const JSII_RTTI_SYMBOL_1 = Symbol.for("jsii.rtti");
const cdktf = require("cdktf");
function databaseMigrationConnectionIngressIpsToTerraform(struct) {
if (!cdktf.canInspect(struct) || cdktf.Tokenization.isResolvable(struct)) {
return struct;
}
if (cdktf.isComplexElement(struct)) {
throw new Error("A complex element was used as configuration, this is not supported: https://cdk.tf/complex-object-as-configuration");
}
return {};
}
exports.databaseMigrationConnectionIngressIpsToTerraform = databaseMigrationConnectionIngressIpsToTerraform;
function databaseMigrationConnectionIngressIpsToHclTerraform(struct) {
if (!cdktf.canInspect(struct) || cdktf.Tokenization.isResolvable(struct)) {
return struct;
}
if (cdktf.isComplexElement(struct)) {
throw new Error("A complex element was used as configuration, this is not supported: https://cdk.tf/complex-object-as-configuration");
}
const attrs = {};
return attrs;
}
exports.databaseMigrationConnectionIngressIpsToHclTerraform = databaseMigrationConnectionIngressIpsToHclTerraform;
class DatabaseMigrationConnectionIngressIpsOutputReference extends cdktf.ComplexObject {
/**
* @param terraformResource The parent resource
* @param terraformAttribute The attribute on the parent resource this class is referencing
* @param complexObjectIndex the index of this item in the list
* @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
*/
constructor(terraformResource, terraformAttribute, complexObjectIndex, complexObjectIsFromSet) {
super(terraformResource, terraformAttribute, complexObjectIsFromSet, complexObjectIndex);
this.isEmptyObject = false;
}
get internalValue() {
let hasAnyValues = this.isEmptyObject;
const internalValueResult = {};
return hasAnyValues ? internalValueResult : undefined;
}
set internalValue(value) {
if (value === undefined) {
this.isEmptyObject = false;
}
else {
this.isEmptyObject = Object.keys(value).length === 0;
}
}
// ingress_ip - computed: true, optional: false, required: false
get ingressIp() {
return this.getStringAttribute('ingress_ip');
}
}
exports.DatabaseMigrationConnectionIngressIpsOutputReference = DatabaseMigrationConnectionIngressIpsOutputReference;
_a = JSII_RTTI_SYMBOL_1;
DatabaseMigrationConnectionIngressIpsOutputReference[_a] = { fqn: "rhizo-co-terraform-provider-oci.databaseMigrationConnection.DatabaseMigrationConnectionIngressIpsOutputReference", version: "1.0.0" };
class DatabaseMigrationConnectionIngressIpsList extends cdktf.ComplexList {
/**
* @param terraformResource The parent resource
* @param terraformAttribute The attribute on the parent resource this class is referencing
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
*/
constructor(terraformResource, terraformAttribute, wrapsSet) {
super(terraformResource, terraformAttribute, wrapsSet);
this.terraformResource = terraformResource;
this.terraformAttribute = terraformAttribute;
this.wrapsSet = wrapsSet;
}
/**
* @param index the index of the item to return
*/
get(index) {
return new DatabaseMigrationConnectionIngressIpsOutputReference(this.terraformResource, this.terraformAttribute, index, this.wrapsSet);
}
}
exports.DatabaseMigrationConnectionIngressIpsList = DatabaseMigrationConnectionIngressIpsList;
_b = JSII_RTTI_SYMBOL_1;
DatabaseMigrationConnectionIngressIpsList[_b] = { fqn: "rhizo-co-terraform-provider-oci.databaseMigrationConnection.DatabaseMigrationConnectionIngressIpsList", version: "1.0.0" };
function databaseMigrationConnectionAdditionalAttributesToTerraform(struct) {
if (!cdktf.canInspect(struct) || cdktf.Tokenization.isResolvable(struct)) {
return struct;
}
if (cdktf.isComplexElement(struct)) {
throw new Error("A complex element was used as configuration, this is not supported: https://cdk.tf/complex-object-as-configuration");
}
return {
name: cdktf.stringToTerraform(struct.name),
value: cdktf.stringToTerraform(struct.value),
};
}
exports.databaseMigrationConnectionAdditionalAttributesToTerraform = databaseMigrationConnectionAdditionalAttributesToTerraform;
function databaseMigrationConnectionAdditionalAttributesToHclTerraform(struct) {
if (!cdktf.canInspect(struct) || cdktf.Tokenization.isResolvable(struct)) {
return struct;
}
if (cdktf.isComplexElement(struct)) {
throw new Error("A complex element was used as configuration, this is not supported: https://cdk.tf/complex-object-as-configuration");
}
const attrs = {
name: {
value: cdktf.stringToHclTerraform(struct.name),
isBlock: false,
type: "simple",
storageClassType: "string",
},
value: {
value: cdktf.stringToHclTerraform(struct.value),
isBlock: false,
type: "simple",
storageClassType: "string",
},
};
// remove undefined attributes
return Object.fromEntries(Object.entries(attrs).filter(([_, value]) => value !== undefined && value.value !== undefined));
}
exports.databaseMigrationConnectionAdditionalAttributesToHclTerraform = databaseMigrationConnectionAdditionalAttributesToHclTerraform;
class DatabaseMigrationConnectionAdditionalAttributesOutputReference extends cdktf.ComplexObject {
/**
* @param terraformResource The parent resource
* @param terraformAttribute The attribute on the parent resource this class is referencing
* @param complexObjectIndex the index of this item in the list
* @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
*/
constructor(terraformResource, terraformAttribute, complexObjectIndex, complexObjectIsFromSet) {
super(terraformResource, terraformAttribute, complexObjectIsFromSet, complexObjectIndex);
this.isEmptyObject = false;
}
get internalValue() {
if (this.resolvableValue) {
return this.resolvableValue;
}
let hasAnyValues = this.isEmptyObject;
const internalValueResult = {};
if (this._name !== undefined) {
hasAnyValues = true;
internalValueResult.name = this._name;
}
if (this._value !== undefined) {
hasAnyValues = true;
internalValueResult.value = this._value;
}
return hasAnyValues ? internalValueResult : undefined;
}
set internalValue(value) {
if (value === undefined) {
this.isEmptyObject = false;
this.resolvableValue = undefined;
this._name = undefined;
this._value = undefined;
}
else if (cdktf.Tokenization.isResolvable(value)) {
this.isEmptyObject = false;
this.resolvableValue = value;
}
else {
this.isEmptyObject = Object.keys(value).length === 0;
this.resolvableValue = undefined;
this._name = value.name;
this._value = value.value;
}
}
get name() {
return this.getStringAttribute('name');
}
set name(value) {
this._name = value;
}
resetName() {
this._name = undefined;
}
// Temporarily expose input value. Use with caution.
get nameInput() {
return this._name;
}
get value() {
return this.getStringAttribute('value');
}
set value(value) {
this._value = value;
}
resetValue() {
this._value = undefined;
}
// Temporarily expose input value. Use with caution.
get valueInput() {
return this._value;
}
}
exports.DatabaseMigrationConnectionAdditionalAttributesOutputReference = DatabaseMigrationConnectionAdditionalAttributesOutputReference;
_c = JSII_RTTI_SYMBOL_1;
DatabaseMigrationConnectionAdditionalAttributesOutputReference[_c] = { fqn: "rhizo-co-terraform-provider-oci.databaseMigrationConnection.DatabaseMigrationConnectionAdditionalAttributesOutputReference", version: "1.0.0" };
class DatabaseMigrationConnectionAdditionalAttributesList extends cdktf.ComplexList {
/**
* @param terraformResource The parent resource
* @param terraformAttribute The attribute on the parent resource this class is referencing
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
*/
constructor(terraformResource, terraformAttribute, wrapsSet) {
super(terraformResource, terraformAttribute, wrapsSet);
this.terraformResource = terraformResource;
this.terraformAttribute = terraformAttribute;
this.wrapsSet = wrapsSet;
}
/**
* @param index the index of the item to return
*/
get(index) {
return new DatabaseMigrationConnectionAdditionalAttributesOutputReference(this.terraformResource, this.terraformAttribute, index, this.wrapsSet);
}
}
exports.DatabaseMigrationConnectionAdditionalAttributesList = DatabaseMigrationConnectionAdditionalAttributesList;
_d = JSII_RTTI_SYMBOL_1;
DatabaseMigrationConnectionAdditionalAttributesList[_d] = { fqn: "rhizo-co-terraform-provider-oci.databaseMigrationConnection.DatabaseMigrationConnectionAdditionalAttributesList", version: "1.0.0" };
function databaseMigrationConnectionTimeoutsToTerraform(struct) {
if (!cdktf.canInspect(struct) || cdktf.Tokenization.isResolvable(struct)) {
return struct;
}
if (cdktf.isComplexElement(struct)) {
throw new Error("A complex element was used as configuration, this is not supported: https://cdk.tf/complex-object-as-configuration");
}
return {
create: cdktf.stringToTerraform(struct.create),
delete: cdktf.stringToTerraform(struct.delete),
update: cdktf.stringToTerraform(struct.update),
};
}
exports.databaseMigrationConnectionTimeoutsToTerraform = databaseMigrationConnectionTimeoutsToTerraform;
function databaseMigrationConnectionTimeoutsToHclTerraform(struct) {
if (!cdktf.canInspect(struct) || cdktf.Tokenization.isResolvable(struct)) {
return struct;
}
if (cdktf.isComplexElement(struct)) {
throw new Error("A complex element was used as configuration, this is not supported: https://cdk.tf/complex-object-as-configuration");
}
const attrs = {
create: {
value: cdktf.stringToHclTerraform(struct.create),
isBlock: false,
type: "simple",
storageClassType: "string",
},
delete: {
value: cdktf.stringToHclTerraform(struct.delete),
isBlock: false,
type: "simple",
storageClassType: "string",
},
update: {
value: cdktf.stringToHclTerraform(struct.update),
isBlock: false,
type: "simple",
storageClassType: "string",
},
};
// remove undefined attributes
return Object.fromEntries(Object.entries(attrs).filter(([_, value]) => value !== undefined && value.value !== undefined));
}
exports.databaseMigrationConnectionTimeoutsToHclTerraform = databaseMigrationConnectionTimeoutsToHclTerraform;
class DatabaseMigrationConnectionTimeoutsOutputReference extends cdktf.ComplexObject {
/**
* @param terraformResource The parent resource
* @param terraformAttribute The attribute on the parent resource this class is referencing
*/
constructor(terraformResource, terraformAttribute) {
super(terraformResource, terraformAttribute, false);
this.isEmptyObject = false;
}
get internalValue() {
if (this.resolvableValue) {
return this.resolvableValue;
}
let hasAnyValues = this.isEmptyObject;
const internalValueResult = {};
if (this._create !== undefined) {
hasAnyValues = true;
internalValueResult.create = this._create;
}
if (this._delete !== undefined) {
hasAnyValues = true;
internalValueResult.delete = this._delete;
}
if (this._update !== undefined) {
hasAnyValues = true;
internalValueResult.update = this._update;
}
return hasAnyValues ? internalValueResult : undefined;
}
set internalValue(value) {
if (value === undefined) {
this.isEmptyObject = false;
this.resolvableValue = undefined;
this._create = undefined;
this._delete = undefined;
this._update = undefined;
}
else if (cdktf.Tokenization.isResolvable(value)) {
this.isEmptyObject = false;
this.resolvableValue = value;
}
else {
this.isEmptyObject = Object.keys(value).length === 0;
this.resolvableValue = undefined;
this._create = value.create;
this._delete = value.delete;
this._update = value.update;
}
}
get create() {
return this.getStringAttribute('create');
}
set create(value) {
this._create = value;
}
resetCreate() {
this._create = undefined;
}
// Temporarily expose input value. Use with caution.
get createInput() {
return this._create;
}
get delete() {
return this.getStringAttribute('delete');
}
set delete(value) {
this._delete = value;
}
resetDelete() {
this._delete = undefined;
}
// Temporarily expose input value. Use with caution.
get deleteInput() {
return this._delete;
}
get update() {
return this.getStringAttribute('update');
}
set update(value) {
this._update = value;
}
resetUpdate() {
this._update = undefined;
}
// Temporarily expose input value. Use with caution.
get updateInput() {
return this._update;
}
}
exports.DatabaseMigrationConnectionTimeoutsOutputReference = DatabaseMigrationConnectionTimeoutsOutputReference;
_e = JSII_RTTI_SYMBOL_1;
DatabaseMigrationConnectionTimeoutsOutputReference[_e] = { fqn: "rhizo-co-terraform-provider-oci.databaseMigrationConnection.DatabaseMigrationConnectionTimeoutsOutputReference", version: "1.0.0" };
/**
* Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/database_migration_connection oci_database_migration_connection}
*/
class DatabaseMigrationConnection extends cdktf.TerraformResource {
// ==============
// STATIC Methods
// ==============
/**
* Generates CDKTF code for importing a DatabaseMigrationConnection resource upon running "cdktf plan <stack-name>"
* @param scope The scope in which to define this construct
* @param importToId The construct id used in the generated config for the DatabaseMigrationConnection to import
* @param importFromId The id of the existing DatabaseMigrationConnection that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/database_migration_connection#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the DatabaseMigrationConnection to import is found
*/
static generateConfigForImport(scope, importToId, importFromId, provider) {
return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "oci_database_migration_connection", importId: importFromId, provider });
}
// ===========
// INITIALIZER
// ===========
/**
* Create a new {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/database_migration_connection oci_database_migration_connection} Resource
*
* @param scope The scope in which to define this construct
* @param id The scoped construct ID. Must be unique amongst siblings in the same scope
* @param options DatabaseMigrationConnectionConfig
*/
constructor(scope, id, config) {
super(scope, id, {
terraformResourceType: 'oci_database_migration_connection',
terraformGeneratorMetadata: {
providerName: 'oci',
providerVersion: '6.18.0',
providerVersionConstraint: '~> 6.18.0'
},
provider: config.provider,
dependsOn: config.dependsOn,
count: config.count,
lifecycle: config.lifecycle,
provisioners: config.provisioners,
connection: config.connection,
forEach: config.forEach
});
// ingress_ips - computed: true, optional: false, required: false
this._ingressIps = new DatabaseMigrationConnectionIngressIpsList(this, "ingress_ips", false);
// system_tags - computed: true, optional: false, required: false
this._systemTags = new cdktf.StringMap(this, "system_tags");
// additional_attributes - computed: false, optional: true, required: false
this._additionalAttributes = new DatabaseMigrationConnectionAdditionalAttributesList(this, "additional_attributes", false);
// timeouts - computed: false, optional: true, required: false
this._timeouts = new DatabaseMigrationConnectionTimeoutsOutputReference(this, "timeouts");
this._compartmentId = config.compartmentId;
this._connectionString = config.connectionString;
this._connectionType = config.connectionType;
this._databaseId = config.databaseId;
this._databaseName = config.databaseName;
this._dbSystemId = config.dbSystemId;
this._definedTags = config.definedTags;
this._description = config.description;
this._displayName = config.displayName;
this._freeformTags = config.freeformTags;
this._host = config.host;
this._id = config.id;
this._keyId = config.keyId;
this._nsgIds = config.nsgIds;
this._password = config.password;
this._port = config.port;
this._replicationPassword = config.replicationPassword;
this._replicationUsername = config.replicationUsername;
this._securityProtocol = config.securityProtocol;
this._sshHost = config.sshHost;
this._sshKey = config.sshKey;
this._sshSudoLocation = config.sshSudoLocation;
this._sshUser = config.sshUser;
this._sslCa = config.sslCa;
this._sslCert = config.sslCert;
this._sslCrl = config.sslCrl;
this._sslKey = config.sslKey;
this._sslMode = config.sslMode;
this._subnetId = config.subnetId;
this._technologyType = config.technologyType;
this._username = config.username;
this._vaultId = config.vaultId;
this._wallet = config.wallet;
this._additionalAttributes.internalValue = config.additionalAttributes;
this._timeouts.internalValue = config.timeouts;
}
get compartmentId() {
return this.getStringAttribute('compartment_id');
}
set compartmentId(value) {
this._compartmentId = value;
}
// Temporarily expose input value. Use with caution.
get compartmentIdInput() {
return this._compartmentId;
}
get connectionString() {
return this.getStringAttribute('connection_string');
}
set connectionString(value) {
this._connectionString = value;
}
resetConnectionString() {
this._connectionString = undefined;
}
// Temporarily expose input value. Use with caution.
get connectionStringInput() {
return this._connectionString;
}
get connectionType() {
return this.getStringAttribute('connection_type');
}
set connectionType(value) {
this._connectionType = value;
}
// Temporarily expose input value. Use with caution.
get connectionTypeInput() {
return this._connectionType;
}
get databaseId() {
return this.getStringAttribute('database_id');
}
set databaseId(value) {
this._databaseId = value;
}
resetDatabaseId() {
this._databaseId = undefined;
}
// Temporarily expose input value. Use with caution.
get databaseIdInput() {
return this._databaseId;
}
get databaseName() {
return this.getStringAttribute('database_name');
}
set databaseName(value) {
this._databaseName = value;
}
resetDatabaseName() {
this._databaseName = undefined;
}
// Temporarily expose input value. Use with caution.
get databaseNameInput() {
return this._databaseName;
}
get dbSystemId() {
return this.getStringAttribute('db_system_id');
}
set dbSystemId(value) {
this._dbSystemId = value;
}
resetDbSystemId() {
this._dbSystemId = undefined;
}
// Temporarily expose input value. Use with caution.
get dbSystemIdInput() {
return this._dbSystemId;
}
get definedTags() {
return this.getStringMapAttribute('defined_tags');
}
set definedTags(value) {
this._definedTags = value;
}
resetDefinedTags() {
this._definedTags = undefined;
}
// Temporarily expose input value. Use with caution.
get definedTagsInput() {
return this._definedTags;
}
get description() {
return this.getStringAttribute('description');
}
set description(value) {
this._description = value;
}
resetDescription() {
this._description = undefined;
}
// Temporarily expose input value. Use with caution.
get descriptionInput() {
return this._description;
}
get displayName() {
return this.getStringAttribute('display_name');
}
set displayName(value) {
this._displayName = value;
}
// Temporarily expose input value. Use with caution.
get displayNameInput() {
return this._displayName;
}
get freeformTags() {
return this.getStringMapAttribute('freeform_tags');
}
set freeformTags(value) {
this._freeformTags = value;
}
resetFreeformTags() {
this._freeformTags = undefined;
}
// Temporarily expose input value. Use with caution.
get freeformTagsInput() {
return this._freeformTags;
}
get host() {
return this.getStringAttribute('host');
}
set host(value) {
this._host = value;
}
resetHost() {
this._host = undefined;
}
// Temporarily expose input value. Use with caution.
get hostInput() {
return this._host;
}
get id() {
return this.getStringAttribute('id');
}
set id(value) {
this._id = value;
}
resetId() {
this._id = undefined;
}
// Temporarily expose input value. Use with caution.
get idInput() {
return this._id;
}
get ingressIps() {
return this._ingressIps;
}
get keyId() {
return this.getStringAttribute('key_id');
}
set keyId(value) {
this._keyId = value;
}
// Temporarily expose input value. Use with caution.
get keyIdInput() {
return this._keyId;
}
// lifecycle_details - computed: true, optional: false, required: false
get lifecycleDetails() {
return this.getStringAttribute('lifecycle_details');
}
get nsgIds() {
return cdktf.Fn.tolist(this.getListAttribute('nsg_ids'));
}
set nsgIds(value) {
this._nsgIds = value;
}
resetNsgIds() {
this._nsgIds = undefined;
}
// Temporarily expose input value. Use with caution.
get nsgIdsInput() {
return this._nsgIds;
}
get password() {
return this.getStringAttribute('password');
}
set password(value) {
this._password = value;
}
// Temporarily expose input value. Use with caution.
get passwordInput() {
return this._password;
}
get port() {
return this.getNumberAttribute('port');
}
set port(value) {
this._port = value;
}
resetPort() {
this._port = undefined;
}
// Temporarily expose input value. Use with caution.
get portInput() {
return this._port;
}
// private_endpoint_id - computed: true, optional: false, required: false
get privateEndpointId() {
return this.getStringAttribute('private_endpoint_id');
}
get replicationPassword() {
return this.getStringAttribute('replication_password');
}
set replicationPassword(value) {
this._replicationPassword = value;
}
resetReplicationPassword() {
this._replicationPassword = undefined;
}
// Temporarily expose input value. Use with caution.
get replicationPasswordInput() {
return this._replicationPassword;
}
get replicationUsername() {
return this.getStringAttribute('replication_username');
}
set replicationUsername(value) {
this._replicationUsername = value;
}
resetReplicationUsername() {
this._replicationUsername = undefined;
}
// Temporarily expose input value. Use with caution.
get replicationUsernameInput() {
return this._replicationUsername;
}
// secret_id - computed: true, optional: false, required: false
get secretId() {
return this.getStringAttribute('secret_id');
}
get securityProtocol() {
return this.getStringAttribute('security_protocol');
}
set securityProtocol(value) {
this._securityProtocol = value;
}
resetSecurityProtocol() {
this._securityProtocol = undefined;
}
// Temporarily expose input value. Use with caution.
get securityProtocolInput() {
return this._securityProtocol;
}
get sshHost() {
return this.getStringAttribute('ssh_host');
}
set sshHost(value) {
this._sshHost = value;
}
resetSshHost() {
this._sshHost = undefined;
}
// Temporarily expose input value. Use with caution.
get sshHostInput() {
return this._sshHost;
}
get sshKey() {
return this.getStringAttribute('ssh_key');
}
set sshKey(value) {
this._sshKey = value;
}
resetSshKey() {
this._sshKey = undefined;
}
// Temporarily expose input value. Use with caution.
get sshKeyInput() {
return this._sshKey;
}
get sshSudoLocation() {
return this.getStringAttribute('ssh_sudo_location');
}
set sshSudoLocation(value) {
this._sshSudoLocation = value;
}
resetSshSudoLocation() {
this._sshSudoLocation = undefined;
}
// Temporarily expose input value. Use with caution.
get sshSudoLocationInput() {
return this._sshSudoLocation;
}
get sshUser() {
return this.getStringAttribute('ssh_user');
}
set sshUser(value) {
this._sshUser = value;
}
resetSshUser() {
this._sshUser = undefined;
}
// Temporarily expose input value. Use with caution.
get sshUserInput() {
return this._sshUser;
}
get sslCa() {
return this.getStringAttribute('ssl_ca');
}
set sslCa(value) {
this._sslCa = value;
}
resetSslCa() {
this._sslCa = undefined;
}
// Temporarily expose input value. Use with caution.
get sslCaInput() {
return this._sslCa;
}
get sslCert() {
return this.getStringAttribute('ssl_cert');
}
set sslCert(value) {
this._sslCert = value;
}
resetSslCert() {
this._sslCert = undefined;
}
// Temporarily expose input value. Use with caution.
get sslCertInput() {
return this._sslCert;
}
get sslCrl() {
return this.getStringAttribute('ssl_crl');
}
set sslCrl(value) {
this._sslCrl = value;
}
resetSslCrl() {
this._sslCrl = undefined;
}
// Temporarily expose input value. Use with caution.
get sslCrlInput() {
return this._sslCrl;
}
get sslKey() {
return this.getStringAttribute('ssl_key');
}
set sslKey(value) {
this._sslKey = value;
}
resetSslKey() {
this._sslKey = undefined;
}
// Temporarily expose input value. Use with caution.
get sslKeyInput() {
return this._sslKey;
}
get sslMode() {
return this.getStringAttribute('ssl_mode');
}
set sslMode(value) {
this._sslMode = value;
}
resetSslMode() {
this._sslMode = undefined;
}
// Temporarily expose input value. Use with caution.
get sslModeInput() {
return this._sslMode;
}
// state - computed: true, optional: false, required: false
get state() {
return this.getStringAttribute('state');
}
get subnetId() {
return this.getStringAttribute('subnet_id');
}
set subnetId(value) {
this._subnetId = value;
}
resetSubnetId() {
this._subnetId = undefined;
}
// Temporarily expose input value. Use with caution.
get subnetIdInput() {
return this._subnetId;
}
get systemTags() {
return this._systemTags;
}
get technologyType() {
return this.getStringAttribute('technology_type');
}
set technologyType(value) {
this._technologyType = value;
}
// Temporarily expose input value. Use with caution.
get technologyTypeInput() {
return this._technologyType;
}
// time_created - computed: true, optional: false, required: false
get timeCreated() {
return this.getStringAttribute('time_created');
}
// time_updated - computed: true, optional: false, required: false
get timeUpdated() {
return this.getStringAttribute('time_updated');
}
get username() {
return this.getStringAttribute('username');
}
set username(value) {
this._username = value;
}
// Temporarily expose input value. Use with caution.
get usernameInput() {
return this._username;
}
get vaultId() {
return this.getStringAttribute('vault_id');
}
set vaultId(value) {
this._vaultId = value;
}
// Temporarily expose input value. Use with caution.
get vaultIdInput() {
return this._vaultId;
}
get wallet() {
return this.getStringAttribute('wallet');
}
set wallet(value) {
this._wallet = value;
}
resetWallet() {
this._wallet = undefined;
}
// Temporarily expose input value. Use with caution.
get walletInput() {
return this._wallet;
}
get additionalAttributes() {
return this._additionalAttributes;
}
putAdditionalAttributes(value) {
this._additionalAttributes.internalValue = value;
}
resetAdditionalAttributes() {
this._additionalAttributes.internalValue = undefined;
}
// Temporarily expose input value. Use with caution.
get additionalAttributesInput() {
return this._additionalAttributes.internalValue;
}
get timeouts() {
return this._timeouts;
}
putTimeouts(value) {
this._timeouts.internalValue = value;
}
resetTimeouts() {
this._timeouts.internalValue = undefined;
}
// Temporarily expose input value. Use with caution.
get timeoutsInput() {
return this._timeouts.internalValue;
}
// =========
// SYNTHESIS
// =========
synthesizeAttributes() {
return {
compartment_id: cdktf.stringToTerraform(this._compartmentId),
connection_string: cdktf.stringToTerraform(this._connectionString),
connection_type: cdktf.stringToTerraform(this._connectionType),
database_id: cdktf.stringToTerraform(this._databaseId),
database_name: cdktf.stringToTerraform(this._databaseName),
db_system_id: cdktf.stringToTerraform(this._dbSystemId),
defined_tags: cdktf.hashMapper(cdktf.stringToTerraform)(this._definedTags),
description: cdktf.stringToTerraform(this._description),
display_name: cdktf.stringToTerraform(this._displayName),
freeform_tags: cdktf.hashMapper(cdktf.stringToTerraform)(this._freeformTags),
host: cdktf.stringToTerraform(this._host),
id: cdktf.stringToTerraform(this._id),
key_id: cdktf.stringToTerraform(this._keyId),
nsg_ids: cdktf.listMapper(cdktf.stringToTerraform, false)(this._nsgIds),
password: cdktf.stringToTerraform(this._password),
port: cdktf.numberToTerraform(this._port),
replication_password: cdktf.stringToTerraform(this._replicationPassword),
replication_username: cdktf.stringToTerraform(this._replicationUsername),
security_protocol: cdktf.stringToTerraform(this._securityProtocol),
ssh_host: cdktf.stringToTerraform(this._sshHost),
ssh_key: cdktf.stringToTerraform(this._sshKey),
ssh_sudo_location: cdktf.stringToTerraform(this._sshSudoLocation),
ssh_user: cdktf.stringToTerraform(this._sshUser),
ssl_ca: cdktf.stringToTerraform(this._sslCa),
ssl_cert: cdktf.stringToTerraform(this._sslCert),
ssl_crl: cdktf.stringToTerraform(this._sslCrl),
ssl_key: cdktf.stringToTerraform(this._sslKey),
ssl_mode: cdktf.stringToTerraform(this._sslMode),
subnet_id: cdktf.stringToTerraform(this._subnetId),
technology_type: cdktf.stringToTerraform(this._technologyType),
username: cdktf.stringToTerraform(this._username),
vault_id: cdktf.stringToTerraform(this._vaultId),
wallet: cdktf.stringToTerraform(this._wallet),
additional_attributes: cdktf.listMapper(databaseMigrationConnectionAdditionalAttributesToTerraform, true)(this._additionalAttributes.internalValue),
timeouts: databaseMigrationConnectionTimeoutsToTerraform(this._timeouts.internalValue),
};
}
synthesizeHclAttributes() {
const attrs = {
compartment_id: {
value: cdktf.stringToHclTerraform(this._compartmentId),
isBlock: false,
type: "simple",
storageClassType: "string",
},
connection_string: {
value: cdktf.stringToHclTerraform(this._connectionString),
isBlock: false,
type: "simple",
storageClassType: "string",
},
connection_type: {
value: cdktf.stringToHclTerraform(this._connectionType),
isBlock: false,
type: "simple",
storageClassType: "string",
},
database_id: {
value: cdktf.stringToHclTerraform(this._databaseId),
isBlock: false,
type: "simple",
storageClassType: "string",
},
database_name: {
value: cdktf.stringToHclTerraform(this._databaseName),
isBlock: false,
type: "simple",
storageClassType: "string",
},
db_system_id: {
value: cdktf.stringToHclTerraform(this._dbSystemId),
isBlock: false,
type: "simple",
storageClassType: "string",
},
defined_tags: {
value: cdktf.hashMapperHcl(cdktf.stringToHclTerraform)(this._definedTags),
isBlock: false,
type: "map",
storageClassType: "stringMap",
},
description: {
value: cdktf.stringToHclTerraform(this._description),
isBlock: false,
type: "simple",
storageClassType: "string",
},
display_name: {
value: cdktf.stringToHclTerraform(this._displayName),
isBlock: false,
type: "simple",
storageClassType: "string",
},
freeform_tags: {
value: cdktf.hashMapperHcl(cdktf.stringToHclTerraform)(this._freeformTags),
isBlock: false,
type: "map",
storageClassType: "stringMap",
},
host: {
value: cdktf.stringToHclTerraform(this._host),
isBlock: false,
type: "simple",
storageClassType: "string",
},
id: {
value: cdktf.stringToHclTerraform(this._id),
isBlock: false,
type: "simple",
storageClassType: "string",
},
key_id: {
value: cdktf.stringToHclTerraform(this._keyId),
isBlock: false,
type: "simple",
storageClassType: "string",
},
nsg_ids: {
value: cdktf.listMapperHcl(cdktf.stringToHclTerraform, false)(this._nsgIds),
isBlock: false,
type: "set",
storageClassType: "stringList",
},
password: {
value: cdktf.stringToHclTerraform(this._password),
isBlock: false,
type: "simple",
storageClassType: "string",
},
port: {
value: cdktf.numberToHclTerraform(this._port),
isBlock: false,
type: "simple",
storageClassType: "number",
},
replication_password: {
value: cdktf.stringToHclTerraform(this._replicationPassword),
isBlock: false,
type: "simple",
storageClassType: "string",
},
replication_username: {
value: cdktf.stringToHclTerraform(this._replicationUsername),
isBlock: false,
type: "simple",
storageClassType: "string",
},
security_protocol: {
value: cdktf.stringToHclTerraform(this._securityProtocol),
isBlock: false,
type: "simple",
storageClassType: "string",
},
ssh_host: {
value: cdktf.stringToHclTerraform(this._sshHost),
isBlock: false,
type: "simple",
storageClassType: "string",
},
ssh_key: {
value: cdktf.stringToHclTerraform(this._sshKey),
isBlock: false,
type: "simple",
storageClassType: "string",
},
ssh_sudo_location: {
value: cdktf.stringToHclTerraform(this._sshSudoLocation),
isBlock: false,
type: "simple",
storageClassType: "string",
},
ssh_user: {
value: cdktf.stringToHclTerraform(this._sshUser),
isBlock: false,
type: "simple",
storageClassType: "string",
},
ssl_ca: {
value: cdktf.stringToHclTerraform(this._sslCa),
isBlock: false,
type: "simple",
storageClassType: "string",
},
ssl_cert: {
value: cdktf.stringToHclTerraform(this._sslCert),
isBlock: false,
type: "simple",
storageClassType: "string",
},
ssl_crl: {
value: cdktf.stringToHclTerraform(this._sslCrl),
isBlock: false,
type: "simple",
storageClassType: "string",
},
ssl_key: {
value: cdktf.stringToHclTerraform(this._sslKey),
isBlock: false,
type: "simple",
storageClassType: "string",
},
ssl_mode: {
value: cdktf.stringToHclTerraform(this._sslMode),
isBlock: false,
type: "simple",
storageClassType: "string",
},
subnet_id: {
value: cdktf.stringToHclTerraform(this._subnetId),
isBlock: false,
type: "simple",
storageClassType: "string",
},
technology_type: {
value: cdktf.stringToHclTerraform(this._technologyType),
isBlock: false,
type: "simple",
storageClassType: "string",
},
username: {
value: cdktf.stringToHclTerraform(this._username),
isBlock: false,
type: "simple",
storageClassType: "string",
},
vault_id: {
value: cdktf.stringToHclTerraform(this._vaultId),
isBlock: false,
type: "simple",
storageClassType: "string",
},
wallet: {
value: cdktf.stringToHclTerraform(this._wallet),
isBlock: false,
type: "simple",
storageClassType: "string",
},
additional_attributes: {
value: cdktf.listMapperHcl(databaseMigrationConnectionAdditionalAttributesToHclTerraform, true)(this._additionalAttributes.internalValue),
isBlock: true,
type: "list",
storageClassType: "DatabaseMigrationConnectionAdditionalAttributesList",
},
timeouts: {
value: databaseMigrationConnectionTimeoutsToHclTerraform(this._timeouts.internalValue),
isBlock: true,
type: "struct",
storageClassType: "DatabaseMigrationConnectionTimeouts",
},
};
// remove undefined attributes
return Object.fromEntries(Object.entries(attrs).filter(([_, value]) => value !== undefined && value.value !== undefined));
}
}
exports.DatabaseMigrationConnection = DatabaseMigrationConnection;
_f = JSII_RTTI_SYMBOL_1;
DatabaseMigrationConnection[_f] = { fqn: "rhizo-co-terraform-provider-oci.databaseMigrationConnection.DatabaseMigrationConnection", version: "1.0.0" };
// =================
// STATIC PROPERTIES
// =================
DatabaseMigrationConnection.tfResourceType = "oci_database_migration_connection";
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvZGF0YWJhc2UtbWlncmF0aW9uLWNvbm5lY3Rpb24vaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7QUFJQSwrQkFBK0I7QUE0Si9CLFNBQWdCLGdEQUFnRCxDQUFDLE1BQThDO0lBQzdHLElBQUksQ0FBQyxLQUFLLENBQUMsVUFBVSxDQUFDLE1BQU0sQ0FBQyxJQUFJLEtBQUssQ0FBQyxZQUFZLENBQUMsWUFBWSxDQUFDLE1BQU0sQ0FBQyxFQUFFLENBQUM7UUFBQyxPQUFPLE1BQU0sQ0FBQztJQUFDLENBQUM7SUFDNUYsSUFBSSxLQUFLLENBQUMsZ0JBQWdCLENBQUMsTUFBTSxDQUFDLEVBQUUsQ0FBQztRQUNuQyxNQUFNLElBQUksS0FBSyxDQUFDLG9IQUFvSCxDQUFDLENBQUM7SUFDeEksQ0FBQztJQUNELE9BQU8sRUFDTixDQUFBO0FBQ0gsQ0FBQztBQVBELDRHQU9DO0FBR0QsU0FBZ0IsbURBQW1ELENBQUMsTUFBOEM7SUFDaEgsSUFBSSxDQUFDLEtBQUssQ0FBQyxVQUFVLENBQUMsTUFBTSxDQUFDLElBQUksS0FBSyxDQUFDLFlBQVksQ0FBQyxZQUFZLENBQUMsTUFBTSxDQUFDLEVBQUUsQ0FBQztRQUFDLE9BQU8sTUFBTSxDQUFDO0lBQUMsQ0FBQztJQUM1RixJQUFJLEtBQUssQ0FBQyxnQkFBZ0IsQ0FBQyxNQUFNLENBQUMsRUFBRSxDQUFDO1FBQ25DLE1BQU0sSUFBSSxLQUFLLENBQUMsb0hBQW9ILENBQUMsQ0FBQztJQUN4SSxDQUFDO0lBQ0QsTUFBTSxLQUFLLEdBQUcsRUFDYixDQUFDO0lBQ0YsT0FBTyxLQUFLLENBQUM7QUFDZixDQUFDO0FBUkQsa0hBUUM7QUFFRCxNQUFhLG9EQUFxRCxTQUFRLEtBQUssQ0FBQyxhQUFhO0lBRzNGOzs7OztNQUtFO0lBQ0YsWUFBbUIsaUJBQTZDLEVBQUUsa0JBQTBCLEVBQUUsa0JBQTBCLEVBQUUsc0JB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