UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

127 lines (126 loc) 6.94 kB
import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataOciDataflowRunStatementConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/dataflow_run_statement#run_id DataOciDataflowRunStatement#run_id} */ readonly runId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/dataflow_run_statement#statement_id DataOciDataflowRunStatement#statement_id} */ readonly statementId: string; } export interface DataOciDataflowRunStatementOutputData { } export declare function dataOciDataflowRunStatementOutputDataToTerraform(struct?: DataOciDataflowRunStatementOutputData): any; export declare function dataOciDataflowRunStatementOutputDataToHclTerraform(struct?: DataOciDataflowRunStatementOutputData): any; export declare class DataOciDataflowRunStatementOutputDataOutputReference 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(): DataOciDataflowRunStatementOutputData | undefined; set internalValue(value: DataOciDataflowRunStatementOutputData | undefined); get type(): string; get value(): string; } export declare class DataOciDataflowRunStatementOutputDataList 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): DataOciDataflowRunStatementOutputDataOutputReference; } export interface DataOciDataflowRunStatementOutput { } export declare function dataOciDataflowRunStatementOutputToTerraform(struct?: DataOciDataflowRunStatementOutput): any; export declare function dataOciDataflowRunStatementOutputToHclTerraform(struct?: DataOciDataflowRunStatementOutput): any; export declare class DataOciDataflowRunStatementOutputOutputReference 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(): DataOciDataflowRunStatementOutput | undefined; set internalValue(value: DataOciDataflowRunStatementOutput | undefined); private _data; get data(): DataOciDataflowRunStatementOutputDataList; get errorName(): string; get errorValue(): string; get status(): string; get traceback(): string[]; } export declare class DataOciDataflowRunStatementOutputList 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): DataOciDataflowRunStatementOutputOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/dataflow_run_statement oci_dataflow_run_statement} */ export declare class DataOciDataflowRunStatement extends cdktf.TerraformDataSource { static readonly tfResourceType = "oci_dataflow_run_statement"; /** * Generates CDKTF code for importing a DataOciDataflowRunStatement 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 DataOciDataflowRunStatement to import * @param importFromId The id of the existing DataOciDataflowRunStatement that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/dataflow_run_statement#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataOciDataflowRunStatement 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/dataflow_run_statement oci_dataflow_run_statement} 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 DataOciDataflowRunStatementConfig */ constructor(scope: Construct, id: string, config: DataOciDataflowRunStatementConfig); get code(): string; get id(): string; private _output; get output(): DataOciDataflowRunStatementOutputList; get progress(): number; private _runId?; get runId(): string; set runId(value: string); get runIdInput(): string | undefined; get state(): string; private _statementId?; get statementId(): string; set statementId(value: string); get statementIdInput(): string | undefined; get timeCompleted(): string; get timeCreated(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }