UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

253 lines (252 loc) 14.3 kB
import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface MeteringComputationCustomTableConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/metering_computation_custom_table#compartment_id MeteringComputationCustomTable#compartment_id} */ readonly compartmentId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/metering_computation_custom_table#id MeteringComputationCustomTable#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/metering_computation_custom_table#saved_report_id MeteringComputationCustomTable#saved_report_id} */ readonly savedReportId: string; /** * saved_custom_table block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/metering_computation_custom_table#saved_custom_table MeteringComputationCustomTable#saved_custom_table} */ readonly savedCustomTable: MeteringComputationCustomTableSavedCustomTable; /** * timeouts block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/metering_computation_custom_table#timeouts MeteringComputationCustomTable#timeouts} */ readonly timeouts?: MeteringComputationCustomTableTimeouts; } export interface MeteringComputationCustomTableSavedCustomTableGroupByTag { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/metering_computation_custom_table#key MeteringComputationCustomTable#key} */ readonly key?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/metering_computation_custom_table#namespace MeteringComputationCustomTable#namespace} */ readonly namespace?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/metering_computation_custom_table#value MeteringComputationCustomTable#value} */ readonly value?: string; } export declare function meteringComputationCustomTableSavedCustomTableGroupByTagToTerraform(struct?: MeteringComputationCustomTableSavedCustomTableGroupByTag | cdktf.IResolvable): any; export declare function meteringComputationCustomTableSavedCustomTableGroupByTagToHclTerraform(struct?: MeteringComputationCustomTableSavedCustomTableGroupByTag | cdktf.IResolvable): any; export declare class MeteringComputationCustomTableSavedCustomTableGroupByTagOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @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(): MeteringComputationCustomTableSavedCustomTableGroupByTag | cdktf.IResolvable | undefined; set internalValue(value: MeteringComputationCustomTableSavedCustomTableGroupByTag | cdktf.IResolvable | undefined); private _key?; get key(): string; set key(value: string); resetKey(): void; get keyInput(): string | undefined; private _namespace?; get namespace(): string; set namespace(value: string); resetNamespace(): void; get namespaceInput(): string | undefined; private _value?; get value(): string; set value(value: string); resetValue(): void; get valueInput(): string | undefined; } export declare class MeteringComputationCustomTableSavedCustomTableGroupByTagList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: MeteringComputationCustomTableSavedCustomTableGroupByTag[] | cdktf.IResolvable; /** * @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): MeteringComputationCustomTableSavedCustomTableGroupByTagOutputReference; } export interface MeteringComputationCustomTableSavedCustomTable { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/metering_computation_custom_table#column_group_by MeteringComputationCustomTable#column_group_by} */ readonly columnGroupBy?: string[]; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/metering_computation_custom_table#compartment_depth MeteringComputationCustomTable#compartment_depth} */ readonly compartmentDepth?: number; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/metering_computation_custom_table#display_name MeteringComputationCustomTable#display_name} */ readonly displayName: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/metering_computation_custom_table#row_group_by MeteringComputationCustomTable#row_group_by} */ readonly rowGroupBy?: string[]; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/metering_computation_custom_table#version MeteringComputationCustomTable#version} */ readonly version?: number; /** * group_by_tag block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/metering_computation_custom_table#group_by_tag MeteringComputationCustomTable#group_by_tag} */ readonly groupByTag?: MeteringComputationCustomTableSavedCustomTableGroupByTag[] | cdktf.IResolvable; } export declare function meteringComputationCustomTableSavedCustomTableToTerraform(struct?: MeteringComputationCustomTableSavedCustomTableOutputReference | MeteringComputationCustomTableSavedCustomTable): any; export declare function meteringComputationCustomTableSavedCustomTableToHclTerraform(struct?: MeteringComputationCustomTableSavedCustomTableOutputReference | MeteringComputationCustomTableSavedCustomTable): any; export declare class MeteringComputationCustomTableSavedCustomTableOutputReference 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(): MeteringComputationCustomTableSavedCustomTable | undefined; set internalValue(value: MeteringComputationCustomTableSavedCustomTable | undefined); private _columnGroupBy?; get columnGroupBy(): string[]; set columnGroupBy(value: string[]); resetColumnGroupBy(): void; get columnGroupByInput(): string[] | undefined; private _compartmentDepth?; get compartmentDepth(): number; set compartmentDepth(value: number); resetCompartmentDepth(): void; get compartmentDepthInput(): number | undefined; private _displayName?; get displayName(): string; set displayName(value: string); get displayNameInput(): string | undefined; private _rowGroupBy?; get rowGroupBy(): string[]; set rowGroupBy(value: string[]); resetRowGroupBy(): void; get rowGroupByInput(): string[] | undefined; private _version?; get version(): number; set version(value: number); resetVersion(): void; get versionInput(): number | undefined; private _groupByTag; get groupByTag(): MeteringComputationCustomTableSavedCustomTableGroupByTagList; putGroupByTag(value: MeteringComputationCustomTableSavedCustomTableGroupByTag[] | cdktf.IResolvable): void; resetGroupByTag(): void; get groupByTagInput(): cdktf.IResolvable | MeteringComputationCustomTableSavedCustomTableGroupByTag[] | undefined; } export interface MeteringComputationCustomTableTimeouts { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/metering_computation_custom_table#create MeteringComputationCustomTable#create} */ readonly create?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/metering_computation_custom_table#delete MeteringComputationCustomTable#delete} */ readonly delete?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/metering_computation_custom_table#update MeteringComputationCustomTable#update} */ readonly update?: string; } export declare function meteringComputationCustomTableTimeoutsToTerraform(struct?: MeteringComputationCustomTableTimeouts | cdktf.IResolvable): any; export declare function meteringComputationCustomTableTimeoutsToHclTerraform(struct?: MeteringComputationCustomTableTimeouts | cdktf.IResolvable): any; export declare class MeteringComputationCustomTableTimeoutsOutputReference 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(): MeteringComputationCustomTableTimeouts | cdktf.IResolvable | undefined; set internalValue(value: MeteringComputationCustomTableTimeouts | 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/metering_computation_custom_table oci_metering_computation_custom_table} */ export declare class MeteringComputationCustomTable extends cdktf.TerraformResource { static readonly tfResourceType = "oci_metering_computation_custom_table"; /** * Generates CDKTF code for importing a MeteringComputationCustomTable 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 MeteringComputationCustomTable to import * @param importFromId The id of the existing MeteringComputationCustomTable that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/metering_computation_custom_table#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the MeteringComputationCustomTable 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/metering_computation_custom_table oci_metering_computation_custom_table} 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 MeteringComputationCustomTableConfig */ constructor(scope: Construct, id: string, config: MeteringComputationCustomTableConfig); private _compartmentId?; get compartmentId(): string; set compartmentId(value: string); get compartmentIdInput(): string | undefined; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string | undefined; private _savedReportId?; get savedReportId(): string; set savedReportId(value: string); get savedReportIdInput(): string | undefined; private _savedCustomTable; get savedCustomTable(): MeteringComputationCustomTableSavedCustomTableOutputReference; putSavedCustomTable(value: MeteringComputationCustomTableSavedCustomTable): void; get savedCustomTableInput(): MeteringComputationCustomTableSavedCustomTable | undefined; private _timeouts; get timeouts(): MeteringComputationCustomTableTimeoutsOutputReference; putTimeouts(value: MeteringComputationCustomTableTimeouts): void; resetTimeouts(): void; get timeoutsInput(): cdktf.IResolvable | MeteringComputationCustomTableTimeouts | undefined; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }