rhizo-co-terraform-provider-oci
Version:
Prebuilt oci Provider for Terraform CDK (cdktf)
126 lines (125 loc) • 7.22 kB
TypeScript
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DataOciApmTracesTraceSnapshotDataConfig extends cdktf.TerraformMetaArguments {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/apm_traces_trace_snapshot_data#apm_domain_id DataOciApmTracesTraceSnapshotData#apm_domain_id}
*/
readonly apmDomainId: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/apm_traces_trace_snapshot_data#id DataOciApmTracesTraceSnapshotData#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/data-sources/apm_traces_trace_snapshot_data#is_summarized DataOciApmTracesTraceSnapshotData#is_summarized}
*/
readonly isSummarized?: boolean | cdktf.IResolvable;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/apm_traces_trace_snapshot_data#snapshot_time DataOciApmTracesTraceSnapshotData#snapshot_time}
*/
readonly snapshotTime?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/apm_traces_trace_snapshot_data#thread_id DataOciApmTracesTraceSnapshotData#thread_id}
*/
readonly threadId?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/apm_traces_trace_snapshot_data#trace_key DataOciApmTracesTraceSnapshotData#trace_key}
*/
readonly traceKey: string;
}
export interface DataOciApmTracesTraceSnapshotDataTraceSnapshotDetails {
}
export declare function dataOciApmTracesTraceSnapshotDataTraceSnapshotDetailsToTerraform(struct?: DataOciApmTracesTraceSnapshotDataTraceSnapshotDetails): any;
export declare function dataOciApmTracesTraceSnapshotDataTraceSnapshotDetailsToHclTerraform(struct?: DataOciApmTracesTraceSnapshotDataTraceSnapshotDetails): any;
export declare class DataOciApmTracesTraceSnapshotDataTraceSnapshotDetailsOutputReference extends cdktf.ComplexObject {
private isEmptyObject;
/**
* @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: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
get internalValue(): DataOciApmTracesTraceSnapshotDataTraceSnapshotDetails | undefined;
set internalValue(value: DataOciApmTracesTraceSnapshotDataTraceSnapshotDetails | undefined);
get key(): string;
get value(): string;
}
export declare class DataOciApmTracesTraceSnapshotDataTraceSnapshotDetailsList extends cdktf.ComplexList {
protected terraformResource: cdktf.IInterpolatingParent;
protected terraformAttribute: string;
protected wrapsSet: boolean;
/**
* @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: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
/**
* @param index the index of the item to return
*/
get(index: number): DataOciApmTracesTraceSnapshotDataTraceSnapshotDetailsOutputReference;
}
/**
* Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/apm_traces_trace_snapshot_data oci_apm_traces_trace_snapshot_data}
*/
export declare class DataOciApmTracesTraceSnapshotData extends cdktf.TerraformDataSource {
static readonly tfResourceType = "oci_apm_traces_trace_snapshot_data";
/**
* Generates CDKTF code for importing a DataOciApmTracesTraceSnapshotData 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 DataOciApmTracesTraceSnapshotData to import
* @param importFromId The id of the existing DataOciApmTracesTraceSnapshotData that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/apm_traces_trace_snapshot_data#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the DataOciApmTracesTraceSnapshotData 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/data-sources/apm_traces_trace_snapshot_data oci_apm_traces_trace_snapshot_data} Data Source
*
* @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 DataOciApmTracesTraceSnapshotDataConfig
*/
constructor(scope: Construct, id: string, config: DataOciApmTracesTraceSnapshotDataConfig);
private _apmDomainId?;
get apmDomainId(): string;
set apmDomainId(value: string);
get apmDomainIdInput(): string | undefined;
private _id?;
get id(): string;
set id(value: string);
resetId(): void;
get idInput(): string | undefined;
private _isSummarized?;
get isSummarized(): boolean | cdktf.IResolvable;
set isSummarized(value: boolean | cdktf.IResolvable);
resetIsSummarized(): void;
get isSummarizedInput(): boolean | cdktf.IResolvable | undefined;
get key(): string;
private _snapshotTime?;
get snapshotTime(): string;
set snapshotTime(value: string);
resetSnapshotTime(): void;
get snapshotTimeInput(): string | undefined;
private _threadId?;
get threadId(): string;
set threadId(value: string);
resetThreadId(): void;
get threadIdInput(): string | undefined;
get timeEnded(): string;
get timeStarted(): string;
private _traceKey?;
get traceKey(): string;
set traceKey(value: string);
get traceKeyInput(): string | undefined;
private _traceSnapshotDetails;
get traceSnapshotDetails(): DataOciApmTracesTraceSnapshotDataTraceSnapshotDetailsList;
protected synthesizeAttributes(): {
[name: string]: any;
};
protected synthesizeHclAttributes(): {
[name: string]: any;
};
}