@cdktf/provider-google
Version:
Prebuilt google Provider for Terraform CDK (cdktf)
222 lines (221 loc) • 11.7 kB
TypeScript
/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface SqlSourceRepresentationInstanceConfig extends cdktf.TerraformMetaArguments {
/**
* The CA certificate on the external server. Include only if SSL/TLS is used on the external server.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/sql_source_representation_instance#ca_certificate SqlSourceRepresentationInstance#ca_certificate}
*/
readonly caCertificate?: string;
/**
* The client certificate on the external server. Required only for server-client authentication. Include only if SSL/TLS is used on the external server.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/sql_source_representation_instance#client_certificate SqlSourceRepresentationInstance#client_certificate}
*/
readonly clientCertificate?: string;
/**
* The private key file for the client certificate on the external server. Required only for server-client authentication. Include only if SSL/TLS is used on the external server.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/sql_source_representation_instance#client_key SqlSourceRepresentationInstance#client_key}
*/
readonly clientKey?: string;
/**
* The MySQL, PostgreSQL or SQL Server (beta) version to use. Supported values include MYSQL_5_6, MYSQL_5_7, MYSQL_8_0, MYSQL_8_4, POSTGRES_9_6, POSTGRES_10, POSTGRES_11, POSTGRES_12, POSTGRES_13, POSTGRES_14, POSTGRES_15, POSTGRES_16, POSTGRES_17. Database Version Policies includes an up-to-date reference of supported versions.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/sql_source_representation_instance#database_version SqlSourceRepresentationInstance#database_version}
*/
readonly databaseVersion: string;
/**
* A file in the bucket that contains the data from the external server.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/sql_source_representation_instance#dump_file_path SqlSourceRepresentationInstance#dump_file_path}
*/
readonly dumpFilePath?: string;
/**
* The IPv4 address and port for the external server, or the the DNS address for the external server. If the external server is hosted on Cloud SQL, the port is 5432.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/sql_source_representation_instance#host SqlSourceRepresentationInstance#host}
*/
readonly host: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/sql_source_representation_instance#id SqlSourceRepresentationInstance#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.
*/
readonly id?: string;
/**
* The name of the source representation instance. Use any valid Cloud SQL instance name.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/sql_source_representation_instance#name SqlSourceRepresentationInstance#name}
*/
readonly name: string;
/**
* The password for the replication user account.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/sql_source_representation_instance#password SqlSourceRepresentationInstance#password}
*/
readonly password?: string;
/**
* The externally accessible port for the source database server.
* Defaults to 3306.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/sql_source_representation_instance#port SqlSourceRepresentationInstance#port}
*/
readonly port?: number;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/sql_source_representation_instance#project SqlSourceRepresentationInstance#project}
*/
readonly project?: string;
/**
* The Region in which the created instance should reside.
* If it is not provided, the provider region is used.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/sql_source_representation_instance#region SqlSourceRepresentationInstance#region}
*/
readonly region?: string;
/**
* The replication user account on the external server.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/sql_source_representation_instance#username SqlSourceRepresentationInstance#username}
*/
readonly username?: string;
/**
* timeouts block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/sql_source_representation_instance#timeouts SqlSourceRepresentationInstance#timeouts}
*/
readonly timeouts?: SqlSourceRepresentationInstanceTimeouts;
}
export interface SqlSourceRepresentationInstanceTimeouts {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/sql_source_representation_instance#create SqlSourceRepresentationInstance#create}
*/
readonly create?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/sql_source_representation_instance#delete SqlSourceRepresentationInstance#delete}
*/
readonly delete?: string;
}
export declare function sqlSourceRepresentationInstanceTimeoutsToTerraform(struct?: SqlSourceRepresentationInstanceTimeouts | cdktf.IResolvable): any;
export declare function sqlSourceRepresentationInstanceTimeoutsToHclTerraform(struct?: SqlSourceRepresentationInstanceTimeouts | cdktf.IResolvable): any;
export declare class SqlSourceRepresentationInstanceTimeoutsOutputReference extends cdktf.ComplexObject {
private isEmptyObject;
private resolvableValue?;
/**
* @param terraformResource The parent resource
* @param terraformAttribute The attribute on the parent resource this class is referencing
*/
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
get internalValue(): SqlSourceRepresentationInstanceTimeouts | cdktf.IResolvable | undefined;
set internalValue(value: SqlSourceRepresentationInstanceTimeouts | cdktf.IResolvable | undefined);
private _create?;
get create(): string;
set create(value: string);
resetCreate(): void;
get createInput(): string | undefined;
private _delete?;
get delete(): string;
set delete(value: string);
resetDelete(): void;
get deleteInput(): string | undefined;
}
/**
* Represents a {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/sql_source_representation_instance google_sql_source_representation_instance}
*/
export declare class SqlSourceRepresentationInstance extends cdktf.TerraformResource {
static readonly tfResourceType = "google_sql_source_representation_instance";
/**
* Generates CDKTF code for importing a SqlSourceRepresentationInstance 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 SqlSourceRepresentationInstance to import
* @param importFromId The id of the existing SqlSourceRepresentationInstance that should be imported. Refer to the {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/sql_source_representation_instance#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the SqlSourceRepresentationInstance to import is found
*/
static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): cdktf.ImportableResource;
/**
* Create a new {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/sql_source_representation_instance google_sql_source_representation_instance} 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 SqlSourceRepresentationInstanceConfig
*/
constructor(scope: Construct, id: string, config: SqlSourceRepresentationInstanceConfig);
private _caCertificate?;
get caCertificate(): string;
set caCertificate(value: string);
resetCaCertificate(): void;
get caCertificateInput(): string | undefined;
private _clientCertificate?;
get clientCertificate(): string;
set clientCertificate(value: string);
resetClientCertificate(): void;
get clientCertificateInput(): string | undefined;
private _clientKey?;
get clientKey(): string;
set clientKey(value: string);
resetClientKey(): void;
get clientKeyInput(): string | undefined;
private _databaseVersion?;
get databaseVersion(): string;
set databaseVersion(value: string);
get databaseVersionInput(): string | undefined;
private _dumpFilePath?;
get dumpFilePath(): string;
set dumpFilePath(value: string);
resetDumpFilePath(): void;
get dumpFilePathInput(): string | undefined;
private _host?;
get host(): string;
set host(value: string);
get hostInput(): string | undefined;
private _id?;
get id(): string;
set id(value: string);
resetId(): void;
get idInput(): string | undefined;
private _name?;
get name(): string;
set name(value: string);
get nameInput(): string | undefined;
private _password?;
get password(): string;
set password(value: string);
resetPassword(): void;
get passwordInput(): string | undefined;
private _port?;
get port(): number;
set port(value: number);
resetPort(): void;
get portInput(): number | undefined;
private _project?;
get project(): string;
set project(value: string);
resetProject(): void;
get projectInput(): string | undefined;
private _region?;
get region(): string;
set region(value: string);
resetRegion(): void;
get regionInput(): string | undefined;
private _username?;
get username(): string;
set username(value: string);
resetUsername(): void;
get usernameInput(): string | undefined;
private _timeouts;
get timeouts(): SqlSourceRepresentationInstanceTimeoutsOutputReference;
putTimeouts(value: SqlSourceRepresentationInstanceTimeouts): void;
resetTimeouts(): void;
get timeoutsInput(): cdktf.IResolvable | SqlSourceRepresentationInstanceTimeouts | undefined;
protected synthesizeAttributes(): {
[name: string]: any;
};
protected synthesizeHclAttributes(): {
[name: string]: any;
};
}