UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

318 lines (317 loc) 16.2 kB
import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface CloudBridgeAssetSourceConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_bridge_asset_source#are_historical_metrics_collected CloudBridgeAssetSource#are_historical_metrics_collected} */ readonly areHistoricalMetricsCollected?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_bridge_asset_source#are_realtime_metrics_collected CloudBridgeAssetSource#are_realtime_metrics_collected} */ readonly areRealtimeMetricsCollected?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_bridge_asset_source#assets_compartment_id CloudBridgeAssetSource#assets_compartment_id} */ readonly assetsCompartmentId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_bridge_asset_source#compartment_id CloudBridgeAssetSource#compartment_id} */ readonly compartmentId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_bridge_asset_source#defined_tags CloudBridgeAssetSource#defined_tags} */ readonly definedTags?: { [key: string]: string; }; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_bridge_asset_source#discovery_schedule_id CloudBridgeAssetSource#discovery_schedule_id} */ readonly discoveryScheduleId?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_bridge_asset_source#display_name CloudBridgeAssetSource#display_name} */ readonly displayName?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_bridge_asset_source#environment_id CloudBridgeAssetSource#environment_id} */ readonly environmentId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_bridge_asset_source#freeform_tags CloudBridgeAssetSource#freeform_tags} */ readonly freeformTags?: { [key: string]: string; }; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_bridge_asset_source#id CloudBridgeAssetSource#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; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_bridge_asset_source#inventory_id CloudBridgeAssetSource#inventory_id} */ readonly inventoryId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_bridge_asset_source#system_tags CloudBridgeAssetSource#system_tags} */ readonly systemTags?: { [key: string]: string; }; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_bridge_asset_source#type CloudBridgeAssetSource#type} */ readonly type: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_bridge_asset_source#vcenter_endpoint CloudBridgeAssetSource#vcenter_endpoint} */ readonly vcenterEndpoint: string; /** * discovery_credentials block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_bridge_asset_source#discovery_credentials CloudBridgeAssetSource#discovery_credentials} */ readonly discoveryCredentials: CloudBridgeAssetSourceDiscoveryCredentials; /** * replication_credentials block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_bridge_asset_source#replication_credentials CloudBridgeAssetSource#replication_credentials} */ readonly replicationCredentials?: CloudBridgeAssetSourceReplicationCredentials; /** * timeouts block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_bridge_asset_source#timeouts CloudBridgeAssetSource#timeouts} */ readonly timeouts?: CloudBridgeAssetSourceTimeouts; } export interface CloudBridgeAssetSourceDiscoveryCredentials { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_bridge_asset_source#secret_id CloudBridgeAssetSource#secret_id} */ readonly secretId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_bridge_asset_source#type CloudBridgeAssetSource#type} */ readonly type: string; } export declare function cloudBridgeAssetSourceDiscoveryCredentialsToTerraform(struct?: CloudBridgeAssetSourceDiscoveryCredentialsOutputReference | CloudBridgeAssetSourceDiscoveryCredentials): any; export declare function cloudBridgeAssetSourceDiscoveryCredentialsToHclTerraform(struct?: CloudBridgeAssetSourceDiscoveryCredentialsOutputReference | CloudBridgeAssetSourceDiscoveryCredentials): any; export declare class CloudBridgeAssetSourceDiscoveryCredentialsOutputReference 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(): CloudBridgeAssetSourceDiscoveryCredentials | undefined; set internalValue(value: CloudBridgeAssetSourceDiscoveryCredentials | undefined); private _secretId?; get secretId(): string; set secretId(value: string); get secretIdInput(): string | undefined; private _type?; get type(): string; set type(value: string); get typeInput(): string | undefined; } export interface CloudBridgeAssetSourceReplicationCredentials { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_bridge_asset_source#secret_id CloudBridgeAssetSource#secret_id} */ readonly secretId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_bridge_asset_source#type CloudBridgeAssetSource#type} */ readonly type: string; } export declare function cloudBridgeAssetSourceReplicationCredentialsToTerraform(struct?: CloudBridgeAssetSourceReplicationCredentialsOutputReference | CloudBridgeAssetSourceReplicationCredentials): any; export declare function cloudBridgeAssetSourceReplicationCredentialsToHclTerraform(struct?: CloudBridgeAssetSourceReplicationCredentialsOutputReference | CloudBridgeAssetSourceReplicationCredentials): any; export declare class CloudBridgeAssetSourceReplicationCredentialsOutputReference 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(): CloudBridgeAssetSourceReplicationCredentials | undefined; set internalValue(value: CloudBridgeAssetSourceReplicationCredentials | undefined); private _secretId?; get secretId(): string; set secretId(value: string); get secretIdInput(): string | undefined; private _type?; get type(): string; set type(value: string); get typeInput(): string | undefined; } export interface CloudBridgeAssetSourceTimeouts { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_bridge_asset_source#create CloudBridgeAssetSource#create} */ readonly create?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_bridge_asset_source#delete CloudBridgeAssetSource#delete} */ readonly delete?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_bridge_asset_source#update CloudBridgeAssetSource#update} */ readonly update?: string; } export declare function cloudBridgeAssetSourceTimeoutsToTerraform(struct?: CloudBridgeAssetSourceTimeouts | cdktf.IResolvable): any; export declare function cloudBridgeAssetSourceTimeoutsToHclTerraform(struct?: CloudBridgeAssetSourceTimeouts | cdktf.IResolvable): any; export declare class CloudBridgeAssetSourceTimeoutsOutputReference 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(): CloudBridgeAssetSourceTimeouts | cdktf.IResolvable | undefined; set internalValue(value: CloudBridgeAssetSourceTimeouts | 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/oracle/oci/6.18.0/docs/resources/cloud_bridge_asset_source oci_cloud_bridge_asset_source} */ export declare class CloudBridgeAssetSource extends cdktf.TerraformResource { static readonly tfResourceType = "oci_cloud_bridge_asset_source"; /** * Generates CDKTF code for importing a CloudBridgeAssetSource 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 CloudBridgeAssetSource to import * @param importFromId The id of the existing CloudBridgeAssetSource that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_bridge_asset_source#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the CloudBridgeAssetSource 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/oracle/oci/6.18.0/docs/resources/cloud_bridge_asset_source oci_cloud_bridge_asset_source} 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 CloudBridgeAssetSourceConfig */ constructor(scope: Construct, id: string, config: CloudBridgeAssetSourceConfig); private _areHistoricalMetricsCollected?; get areHistoricalMetricsCollected(): boolean | cdktf.IResolvable; set areHistoricalMetricsCollected(value: boolean | cdktf.IResolvable); resetAreHistoricalMetricsCollected(): void; get areHistoricalMetricsCollectedInput(): boolean | cdktf.IResolvable | undefined; private _areRealtimeMetricsCollected?; get areRealtimeMetricsCollected(): boolean | cdktf.IResolvable; set areRealtimeMetricsCollected(value: boolean | cdktf.IResolvable); resetAreRealtimeMetricsCollected(): void; get areRealtimeMetricsCollectedInput(): boolean | cdktf.IResolvable | undefined; private _assetsCompartmentId?; get assetsCompartmentId(): string; set assetsCompartmentId(value: string); get assetsCompartmentIdInput(): string | undefined; private _compartmentId?; get compartmentId(): string; set compartmentId(value: string); get compartmentIdInput(): string | undefined; private _definedTags?; get definedTags(): { [key: string]: string; }; set definedTags(value: { [key: string]: string; }); resetDefinedTags(): void; get definedTagsInput(): { [key: string]: string; } | undefined; private _discoveryScheduleId?; get discoveryScheduleId(): string; set discoveryScheduleId(value: string); resetDiscoveryScheduleId(): void; get discoveryScheduleIdInput(): string | undefined; private _displayName?; get displayName(): string; set displayName(value: string); resetDisplayName(): void; get displayNameInput(): string | undefined; private _environmentId?; get environmentId(): string; set environmentId(value: string); get environmentIdInput(): string | undefined; private _freeformTags?; get freeformTags(): { [key: string]: string; }; set freeformTags(value: { [key: string]: string; }); resetFreeformTags(): void; get freeformTagsInput(): { [key: string]: string; } | undefined; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string | undefined; private _inventoryId?; get inventoryId(): string; set inventoryId(value: string); get inventoryIdInput(): string | undefined; get lifecycleDetails(): string; get state(): string; private _systemTags?; get systemTags(): { [key: string]: string; }; set systemTags(value: { [key: string]: string; }); resetSystemTags(): void; get systemTagsInput(): { [key: string]: string; } | undefined; get timeCreated(): string; get timeUpdated(): string; private _type?; get type(): string; set type(value: string); get typeInput(): string | undefined; private _vcenterEndpoint?; get vcenterEndpoint(): string; set vcenterEndpoint(value: string); get vcenterEndpointInput(): string | undefined; private _discoveryCredentials; get discoveryCredentials(): CloudBridgeAssetSourceDiscoveryCredentialsOutputReference; putDiscoveryCredentials(value: CloudBridgeAssetSourceDiscoveryCredentials): void; get discoveryCredentialsInput(): CloudBridgeAssetSourceDiscoveryCredentials | undefined; private _replicationCredentials; get replicationCredentials(): CloudBridgeAssetSourceReplicationCredentialsOutputReference; putReplicationCredentials(value: CloudBridgeAssetSourceReplicationCredentials): void; resetReplicationCredentials(): void; get replicationCredentialsInput(): CloudBridgeAssetSourceReplicationCredentials | undefined; private _timeouts; get timeouts(): CloudBridgeAssetSourceTimeoutsOutputReference; putTimeouts(value: CloudBridgeAssetSourceTimeouts): void; resetTimeouts(): void; get timeoutsInput(): cdktf.IResolvable | CloudBridgeAssetSourceTimeouts | undefined; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }