@cdktf/provider-google
Version:
Prebuilt google Provider for Terraform CDK (cdktf)
593 lines (592 loc) • 31.1 kB
TypeScript
/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface NetworkManagementConnectivityTestConfig extends cdktf.TerraformMetaArguments {
/**
* Whether the analysis should skip firewall checking. Default value is false.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.1/docs/resources/network_management_connectivity_test#bypass_firewall_checks NetworkManagementConnectivityTest#bypass_firewall_checks}
*/
readonly bypassFirewallChecks?: boolean | cdktf.IResolvable;
/**
* The user-supplied description of the Connectivity Test.
* Maximum of 512 characters.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.1/docs/resources/network_management_connectivity_test#description NetworkManagementConnectivityTest#description}
*/
readonly description?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.1/docs/resources/network_management_connectivity_test#id NetworkManagementConnectivityTest#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;
/**
* Resource labels to represent user-provided metadata.
*
*
* **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.1/docs/resources/network_management_connectivity_test#labels NetworkManagementConnectivityTest#labels}
*/
readonly labels?: {
[key: string]: string;
};
/**
* Unique name for the connectivity test.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.1/docs/resources/network_management_connectivity_test#name NetworkManagementConnectivityTest#name}
*/
readonly name: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.1/docs/resources/network_management_connectivity_test#project NetworkManagementConnectivityTest#project}
*/
readonly project?: string;
/**
* IP Protocol of the test. When not provided, "TCP" is assumed.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.1/docs/resources/network_management_connectivity_test#protocol NetworkManagementConnectivityTest#protocol}
*/
readonly protocol?: string;
/**
* Other projects that may be relevant for reachability analysis.
* This is applicable to scenarios where a test can cross project
* boundaries.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.1/docs/resources/network_management_connectivity_test#related_projects NetworkManagementConnectivityTest#related_projects}
*/
readonly relatedProjects?: string[];
/**
* Whether run analysis for the return path from destination to source.
* Default value is false.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.1/docs/resources/network_management_connectivity_test#round_trip NetworkManagementConnectivityTest#round_trip}
*/
readonly roundTrip?: boolean | cdktf.IResolvable;
/**
* destination block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.1/docs/resources/network_management_connectivity_test#destination NetworkManagementConnectivityTest#destination}
*/
readonly destination: NetworkManagementConnectivityTestDestination;
/**
* source block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.1/docs/resources/network_management_connectivity_test#source NetworkManagementConnectivityTest#source}
*/
readonly source: NetworkManagementConnectivityTestSource;
/**
* timeouts block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.1/docs/resources/network_management_connectivity_test#timeouts NetworkManagementConnectivityTest#timeouts}
*/
readonly timeouts?: NetworkManagementConnectivityTestTimeouts;
}
export interface NetworkManagementConnectivityTestDestination {
/**
* A Cloud SQL instance URI.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.1/docs/resources/network_management_connectivity_test#cloud_sql_instance NetworkManagementConnectivityTest#cloud_sql_instance}
*/
readonly cloudSqlInstance?: string;
/**
* Forwarding rule URI. Forwarding rules are frontends for load balancers,
* PSC endpoints, and Protocol Forwarding.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.1/docs/resources/network_management_connectivity_test#forwarding_rule NetworkManagementConnectivityTest#forwarding_rule}
*/
readonly forwardingRule?: string;
/**
* A DNS endpoint of Google Kubernetes Engine cluster control plane.
* Requires gke_master_cluster to be set, can't be used simultaneoulsly with
* ip_address or network. Applicable only to destination endpoint.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.1/docs/resources/network_management_connectivity_test#fqdn NetworkManagementConnectivityTest#fqdn}
*/
readonly fqdn?: string;
/**
* A cluster URI for Google Kubernetes Engine cluster control plane.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.1/docs/resources/network_management_connectivity_test#gke_master_cluster NetworkManagementConnectivityTest#gke_master_cluster}
*/
readonly gkeMasterCluster?: string;
/**
* A Compute Engine instance URI.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.1/docs/resources/network_management_connectivity_test#instance NetworkManagementConnectivityTest#instance}
*/
readonly instance?: string;
/**
* The IP address of the endpoint, which can be an external or internal IP.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.1/docs/resources/network_management_connectivity_test#ip_address NetworkManagementConnectivityTest#ip_address}
*/
readonly ipAddress?: string;
/**
* A VPC network URI.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.1/docs/resources/network_management_connectivity_test#network NetworkManagementConnectivityTest#network}
*/
readonly network?: string;
/**
* The IP protocol port of the endpoint. Only applicable when protocol is
* TCP or UDP.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.1/docs/resources/network_management_connectivity_test#port NetworkManagementConnectivityTest#port}
*/
readonly port?: number;
/**
* Project ID where the endpoint is located.
* The project ID can be derived from the URI if you provide a endpoint or
* network URI.
* The following are two cases where you may need to provide the project ID:
* 1. Only the IP address is specified, and the IP address is within a Google
* Cloud project.
* 2. When you are using Shared VPC and the IP address that you provide is
* from the service project. In this case, the network that the IP address
* resides in is defined in the host project.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.1/docs/resources/network_management_connectivity_test#project_id NetworkManagementConnectivityTest#project_id}
*/
readonly projectId?: string;
/**
* A Redis Cluster URI.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.1/docs/resources/network_management_connectivity_test#redis_cluster NetworkManagementConnectivityTest#redis_cluster}
*/
readonly redisCluster?: string;
/**
* A Redis Instance URI.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.1/docs/resources/network_management_connectivity_test#redis_instance NetworkManagementConnectivityTest#redis_instance}
*/
readonly redisInstance?: string;
}
export declare function networkManagementConnectivityTestDestinationToTerraform(struct?: NetworkManagementConnectivityTestDestinationOutputReference | NetworkManagementConnectivityTestDestination): any;
export declare function networkManagementConnectivityTestDestinationToHclTerraform(struct?: NetworkManagementConnectivityTestDestinationOutputReference | NetworkManagementConnectivityTestDestination): any;
export declare class NetworkManagementConnectivityTestDestinationOutputReference extends cdktf.ComplexObject {
private isEmptyObject;
/**
* @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(): NetworkManagementConnectivityTestDestination | undefined;
set internalValue(value: NetworkManagementConnectivityTestDestination | undefined);
private _cloudSqlInstance?;
get cloudSqlInstance(): string;
set cloudSqlInstance(value: string);
resetCloudSqlInstance(): void;
get cloudSqlInstanceInput(): string | undefined;
private _forwardingRule?;
get forwardingRule(): string;
set forwardingRule(value: string);
resetForwardingRule(): void;
get forwardingRuleInput(): string | undefined;
private _fqdn?;
get fqdn(): string;
set fqdn(value: string);
resetFqdn(): void;
get fqdnInput(): string | undefined;
private _gkeMasterCluster?;
get gkeMasterCluster(): string;
set gkeMasterCluster(value: string);
resetGkeMasterCluster(): void;
get gkeMasterClusterInput(): string | undefined;
private _instance?;
get instance(): string;
set instance(value: string);
resetInstance(): void;
get instanceInput(): string | undefined;
private _ipAddress?;
get ipAddress(): string;
set ipAddress(value: string);
resetIpAddress(): void;
get ipAddressInput(): string | undefined;
private _network?;
get network(): string;
set network(value: string);
resetNetwork(): void;
get networkInput(): string | undefined;
private _port?;
get port(): number;
set port(value: number);
resetPort(): void;
get portInput(): number | undefined;
private _projectId?;
get projectId(): string;
set projectId(value: string);
resetProjectId(): void;
get projectIdInput(): string | undefined;
private _redisCluster?;
get redisCluster(): string;
set redisCluster(value: string);
resetRedisCluster(): void;
get redisClusterInput(): string | undefined;
private _redisInstance?;
get redisInstance(): string;
set redisInstance(value: string);
resetRedisInstance(): void;
get redisInstanceInput(): string | undefined;
}
export interface NetworkManagementConnectivityTestSourceAppEngineVersion {
/**
* An App Engine service version name.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.1/docs/resources/network_management_connectivity_test#uri NetworkManagementConnectivityTest#uri}
*/
readonly uri?: string;
}
export declare function networkManagementConnectivityTestSourceAppEngineVersionToTerraform(struct?: NetworkManagementConnectivityTestSourceAppEngineVersionOutputReference | NetworkManagementConnectivityTestSourceAppEngineVersion): any;
export declare function networkManagementConnectivityTestSourceAppEngineVersionToHclTerraform(struct?: NetworkManagementConnectivityTestSourceAppEngineVersionOutputReference | NetworkManagementConnectivityTestSourceAppEngineVersion): any;
export declare class NetworkManagementConnectivityTestSourceAppEngineVersionOutputReference extends cdktf.ComplexObject {
private isEmptyObject;
/**
* @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(): NetworkManagementConnectivityTestSourceAppEngineVersion | undefined;
set internalValue(value: NetworkManagementConnectivityTestSourceAppEngineVersion | undefined);
private _uri?;
get uri(): string;
set uri(value: string);
resetUri(): void;
get uriInput(): string | undefined;
}
export interface NetworkManagementConnectivityTestSourceCloudFunction {
/**
* A Cloud Function name.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.1/docs/resources/network_management_connectivity_test#uri NetworkManagementConnectivityTest#uri}
*/
readonly uri?: string;
}
export declare function networkManagementConnectivityTestSourceCloudFunctionToTerraform(struct?: NetworkManagementConnectivityTestSourceCloudFunctionOutputReference | NetworkManagementConnectivityTestSourceCloudFunction): any;
export declare function networkManagementConnectivityTestSourceCloudFunctionToHclTerraform(struct?: NetworkManagementConnectivityTestSourceCloudFunctionOutputReference | NetworkManagementConnectivityTestSourceCloudFunction): any;
export declare class NetworkManagementConnectivityTestSourceCloudFunctionOutputReference extends cdktf.ComplexObject {
private isEmptyObject;
/**
* @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(): NetworkManagementConnectivityTestSourceCloudFunction | undefined;
set internalValue(value: NetworkManagementConnectivityTestSourceCloudFunction | undefined);
private _uri?;
get uri(): string;
set uri(value: string);
resetUri(): void;
get uriInput(): string | undefined;
}
export interface NetworkManagementConnectivityTestSourceCloudRunRevision {
/**
* A Cloud Run revision URI.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.1/docs/resources/network_management_connectivity_test#uri NetworkManagementConnectivityTest#uri}
*/
readonly uri?: string;
}
export declare function networkManagementConnectivityTestSourceCloudRunRevisionToTerraform(struct?: NetworkManagementConnectivityTestSourceCloudRunRevisionOutputReference | NetworkManagementConnectivityTestSourceCloudRunRevision): any;
export declare function networkManagementConnectivityTestSourceCloudRunRevisionToHclTerraform(struct?: NetworkManagementConnectivityTestSourceCloudRunRevisionOutputReference | NetworkManagementConnectivityTestSourceCloudRunRevision): any;
export declare class NetworkManagementConnectivityTestSourceCloudRunRevisionOutputReference extends cdktf.ComplexObject {
private isEmptyObject;
/**
* @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(): NetworkManagementConnectivityTestSourceCloudRunRevision | undefined;
set internalValue(value: NetworkManagementConnectivityTestSourceCloudRunRevision | undefined);
private _uri?;
get uri(): string;
set uri(value: string);
resetUri(): void;
get uriInput(): string | undefined;
}
export interface NetworkManagementConnectivityTestSource {
/**
* A Cloud SQL instance URI.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.1/docs/resources/network_management_connectivity_test#cloud_sql_instance NetworkManagementConnectivityTest#cloud_sql_instance}
*/
readonly cloudSqlInstance?: string;
/**
* A cluster URI for Google Kubernetes Engine cluster control plane.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.1/docs/resources/network_management_connectivity_test#gke_master_cluster NetworkManagementConnectivityTest#gke_master_cluster}
*/
readonly gkeMasterCluster?: string;
/**
* A Compute Engine instance URI.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.1/docs/resources/network_management_connectivity_test#instance NetworkManagementConnectivityTest#instance}
*/
readonly instance?: string;
/**
* The IP address of the endpoint, which can be an external or internal IP.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.1/docs/resources/network_management_connectivity_test#ip_address NetworkManagementConnectivityTest#ip_address}
*/
readonly ipAddress?: string;
/**
* A VPC network URI.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.1/docs/resources/network_management_connectivity_test#network NetworkManagementConnectivityTest#network}
*/
readonly network?: string;
/**
* Type of the network where the endpoint is located. Possible values: ["GCP_NETWORK", "NON_GCP_NETWORK"]
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.1/docs/resources/network_management_connectivity_test#network_type NetworkManagementConnectivityTest#network_type}
*/
readonly networkType?: string;
/**
* The IP protocol port of the endpoint. Only applicable when protocol is
* TCP or UDP.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.1/docs/resources/network_management_connectivity_test#port NetworkManagementConnectivityTest#port}
*/
readonly port?: number;
/**
* Project ID where the endpoint is located.
* The project ID can be derived from the URI if you provide a endpoint or
* network URI.
* The following are two cases where you may need to provide the project ID:
* 1. Only the IP address is specified, and the IP address is within a Google
* Cloud project.
* 2. When you are using Shared VPC and the IP address that you provide is
* from the service project. In this case, the network that the IP address
* resides in is defined in the host project.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.1/docs/resources/network_management_connectivity_test#project_id NetworkManagementConnectivityTest#project_id}
*/
readonly projectId?: string;
/**
* app_engine_version block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.1/docs/resources/network_management_connectivity_test#app_engine_version NetworkManagementConnectivityTest#app_engine_version}
*/
readonly appEngineVersion?: NetworkManagementConnectivityTestSourceAppEngineVersion;
/**
* cloud_function block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.1/docs/resources/network_management_connectivity_test#cloud_function NetworkManagementConnectivityTest#cloud_function}
*/
readonly cloudFunction?: NetworkManagementConnectivityTestSourceCloudFunction;
/**
* cloud_run_revision block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.1/docs/resources/network_management_connectivity_test#cloud_run_revision NetworkManagementConnectivityTest#cloud_run_revision}
*/
readonly cloudRunRevision?: NetworkManagementConnectivityTestSourceCloudRunRevision;
}
export declare function networkManagementConnectivityTestSourceToTerraform(struct?: NetworkManagementConnectivityTestSourceOutputReference | NetworkManagementConnectivityTestSource): any;
export declare function networkManagementConnectivityTestSourceToHclTerraform(struct?: NetworkManagementConnectivityTestSourceOutputReference | NetworkManagementConnectivityTestSource): any;
export declare class NetworkManagementConnectivityTestSourceOutputReference extends cdktf.ComplexObject {
private isEmptyObject;
/**
* @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(): NetworkManagementConnectivityTestSource | undefined;
set internalValue(value: NetworkManagementConnectivityTestSource | undefined);
private _cloudSqlInstance?;
get cloudSqlInstance(): string;
set cloudSqlInstance(value: string);
resetCloudSqlInstance(): void;
get cloudSqlInstanceInput(): string | undefined;
private _gkeMasterCluster?;
get gkeMasterCluster(): string;
set gkeMasterCluster(value: string);
resetGkeMasterCluster(): void;
get gkeMasterClusterInput(): string | undefined;
private _instance?;
get instance(): string;
set instance(value: string);
resetInstance(): void;
get instanceInput(): string | undefined;
private _ipAddress?;
get ipAddress(): string;
set ipAddress(value: string);
resetIpAddress(): void;
get ipAddressInput(): string | undefined;
private _network?;
get network(): string;
set network(value: string);
resetNetwork(): void;
get networkInput(): string | undefined;
private _networkType?;
get networkType(): string;
set networkType(value: string);
resetNetworkType(): void;
get networkTypeInput(): string | undefined;
private _port?;
get port(): number;
set port(value: number);
resetPort(): void;
get portInput(): number | undefined;
private _projectId?;
get projectId(): string;
set projectId(value: string);
resetProjectId(): void;
get projectIdInput(): string | undefined;
private _appEngineVersion;
get appEngineVersion(): NetworkManagementConnectivityTestSourceAppEngineVersionOutputReference;
putAppEngineVersion(value: NetworkManagementConnectivityTestSourceAppEngineVersion): void;
resetAppEngineVersion(): void;
get appEngineVersionInput(): NetworkManagementConnectivityTestSourceAppEngineVersion | undefined;
private _cloudFunction;
get cloudFunction(): NetworkManagementConnectivityTestSourceCloudFunctionOutputReference;
putCloudFunction(value: NetworkManagementConnectivityTestSourceCloudFunction): void;
resetCloudFunction(): void;
get cloudFunctionInput(): NetworkManagementConnectivityTestSourceCloudFunction | undefined;
private _cloudRunRevision;
get cloudRunRevision(): NetworkManagementConnectivityTestSourceCloudRunRevisionOutputReference;
putCloudRunRevision(value: NetworkManagementConnectivityTestSourceCloudRunRevision): void;
resetCloudRunRevision(): void;
get cloudRunRevisionInput(): NetworkManagementConnectivityTestSourceCloudRunRevision | undefined;
}
export interface NetworkManagementConnectivityTestTimeouts {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.1/docs/resources/network_management_connectivity_test#create NetworkManagementConnectivityTest#create}
*/
readonly create?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.1/docs/resources/network_management_connectivity_test#delete NetworkManagementConnectivityTest#delete}
*/
readonly delete?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.1/docs/resources/network_management_connectivity_test#update NetworkManagementConnectivityTest#update}
*/
readonly update?: string;
}
export declare function networkManagementConnectivityTestTimeoutsToTerraform(struct?: NetworkManagementConnectivityTestTimeouts | cdktf.IResolvable): any;
export declare function networkManagementConnectivityTestTimeoutsToHclTerraform(struct?: NetworkManagementConnectivityTestTimeouts | cdktf.IResolvable): any;
export declare class NetworkManagementConnectivityTestTimeoutsOutputReference 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(): NetworkManagementConnectivityTestTimeouts | cdktf.IResolvable | undefined;
set internalValue(value: NetworkManagementConnectivityTestTimeouts | 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;
private _update?;
get update(): string;
set update(value: string);
resetUpdate(): void;
get updateInput(): string | undefined;
}
/**
* Represents a {@link https://registry.terraform.io/providers/hashicorp/google/6.36.1/docs/resources/network_management_connectivity_test google_network_management_connectivity_test}
*/
export declare class NetworkManagementConnectivityTest extends cdktf.TerraformResource {
static readonly tfResourceType = "google_network_management_connectivity_test";
/**
* Generates CDKTF code for importing a NetworkManagementConnectivityTest 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 NetworkManagementConnectivityTest to import
* @param importFromId The id of the existing NetworkManagementConnectivityTest that should be imported. Refer to the {@link https://registry.terraform.io/providers/hashicorp/google/6.36.1/docs/resources/network_management_connectivity_test#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the NetworkManagementConnectivityTest 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.1/docs/resources/network_management_connectivity_test google_network_management_connectivity_test} 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 NetworkManagementConnectivityTestConfig
*/
constructor(scope: Construct, id: string, config: NetworkManagementConnectivityTestConfig);
private _bypassFirewallChecks?;
get bypassFirewallChecks(): boolean | cdktf.IResolvable;
set bypassFirewallChecks(value: boolean | cdktf.IResolvable);
resetBypassFirewallChecks(): void;
get bypassFirewallChecksInput(): boolean | cdktf.IResolvable | undefined;
private _description?;
get description(): string;
set description(value: string);
resetDescription(): void;
get descriptionInput(): string | undefined;
private _effectiveLabels;
get effectiveLabels(): cdktf.StringMap;
private _id?;
get id(): string;
set id(value: string);
resetId(): void;
get idInput(): string | undefined;
private _labels?;
get labels(): {
[key: string]: string;
};
set labels(value: {
[key: string]: string;
});
resetLabels(): void;
get labelsInput(): {
[key: string]: string;
} | undefined;
private _name?;
get name(): string;
set name(value: string);
get nameInput(): string | undefined;
private _project?;
get project(): string;
set project(value: string);
resetProject(): void;
get projectInput(): string | undefined;
private _protocol?;
get protocol(): string;
set protocol(value: string);
resetProtocol(): void;
get protocolInput(): string | undefined;
private _relatedProjects?;
get relatedProjects(): string[];
set relatedProjects(value: string[]);
resetRelatedProjects(): void;
get relatedProjectsInput(): string[] | undefined;
private _roundTrip?;
get roundTrip(): boolean | cdktf.IResolvable;
set roundTrip(value: boolean | cdktf.IResolvable);
resetRoundTrip(): void;
get roundTripInput(): boolean | cdktf.IResolvable | undefined;
private _terraformLabels;
get terraformLabels(): cdktf.StringMap;
private _destination;
get destination(): NetworkManagementConnectivityTestDestinationOutputReference;
putDestination(value: NetworkManagementConnectivityTestDestination): void;
get destinationInput(): NetworkManagementConnectivityTestDestination | undefined;
private _source;
get source(): NetworkManagementConnectivityTestSourceOutputReference;
putSource(value: NetworkManagementConnectivityTestSource): void;
get sourceInput(): NetworkManagementConnectivityTestSource | undefined;
private _timeouts;
get timeouts(): NetworkManagementConnectivityTestTimeoutsOutputReference;
putTimeouts(value: NetworkManagementConnectivityTestTimeouts): void;
resetTimeouts(): void;
get timeoutsInput(): cdktf.IResolvable | NetworkManagementConnectivityTestTimeouts | undefined;
protected synthesizeAttributes(): {
[name: string]: any;
};
protected synthesizeHclAttributes(): {
[name: string]: any;
};
}