rhizo-co-terraform-provider-oci
Version:
Prebuilt oci Provider for Terraform CDK (cdktf)
114 lines (113 loc) • 6.82 kB
TypeScript
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface OpsiAwrHubSourceAwrhubsourcesManagementConfig extends cdktf.TerraformMetaArguments {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/opsi_awr_hub_source_awrhubsources_management#awr_hub_source_id OpsiAwrHubSourceAwrhubsourcesManagement#awr_hub_source_id}
*/
readonly awrHubSourceId: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/opsi_awr_hub_source_awrhubsources_management#enable_awrhubsource OpsiAwrHubSourceAwrhubsourcesManagement#enable_awrhubsource}
*/
readonly enableAwrhubsource: boolean | cdktf.IResolvable;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/opsi_awr_hub_source_awrhubsources_management#id OpsiAwrHubSourceAwrhubsourcesManagement#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;
/**
* timeouts block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/opsi_awr_hub_source_awrhubsources_management#timeouts OpsiAwrHubSourceAwrhubsourcesManagement#timeouts}
*/
readonly timeouts?: OpsiAwrHubSourceAwrhubsourcesManagementTimeouts;
}
export interface OpsiAwrHubSourceAwrhubsourcesManagementTimeouts {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/opsi_awr_hub_source_awrhubsources_management#create OpsiAwrHubSourceAwrhubsourcesManagement#create}
*/
readonly create?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/opsi_awr_hub_source_awrhubsources_management#delete OpsiAwrHubSourceAwrhubsourcesManagement#delete}
*/
readonly delete?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/opsi_awr_hub_source_awrhubsources_management#update OpsiAwrHubSourceAwrhubsourcesManagement#update}
*/
readonly update?: string;
}
export declare function opsiAwrHubSourceAwrhubsourcesManagementTimeoutsToTerraform(struct?: OpsiAwrHubSourceAwrhubsourcesManagementTimeouts | cdktf.IResolvable): any;
export declare function opsiAwrHubSourceAwrhubsourcesManagementTimeoutsToHclTerraform(struct?: OpsiAwrHubSourceAwrhubsourcesManagementTimeouts | cdktf.IResolvable): any;
export declare class OpsiAwrHubSourceAwrhubsourcesManagementTimeoutsOutputReference 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(): OpsiAwrHubSourceAwrhubsourcesManagementTimeouts | cdktf.IResolvable | undefined;
set internalValue(value: OpsiAwrHubSourceAwrhubsourcesManagementTimeouts | 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/opsi_awr_hub_source_awrhubsources_management oci_opsi_awr_hub_source_awrhubsources_management}
*/
export declare class OpsiAwrHubSourceAwrhubsourcesManagement extends cdktf.TerraformResource {
static readonly tfResourceType = "oci_opsi_awr_hub_source_awrhubsources_management";
/**
* Generates CDKTF code for importing a OpsiAwrHubSourceAwrhubsourcesManagement 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 OpsiAwrHubSourceAwrhubsourcesManagement to import
* @param importFromId The id of the existing OpsiAwrHubSourceAwrhubsourcesManagement that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/opsi_awr_hub_source_awrhubsources_management#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the OpsiAwrHubSourceAwrhubsourcesManagement 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/opsi_awr_hub_source_awrhubsources_management oci_opsi_awr_hub_source_awrhubsources_management} 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 OpsiAwrHubSourceAwrhubsourcesManagementConfig
*/
constructor(scope: Construct, id: string, config: OpsiAwrHubSourceAwrhubsourcesManagementConfig);
private _awrHubSourceId?;
get awrHubSourceId(): string;
set awrHubSourceId(value: string);
get awrHubSourceIdInput(): string | undefined;
private _enableAwrhubsource?;
get enableAwrhubsource(): boolean | cdktf.IResolvable;
set enableAwrhubsource(value: boolean | cdktf.IResolvable);
get enableAwrhubsourceInput(): boolean | cdktf.IResolvable | undefined;
private _id?;
get id(): string;
set id(value: string);
resetId(): void;
get idInput(): string | undefined;
private _timeouts;
get timeouts(): OpsiAwrHubSourceAwrhubsourcesManagementTimeoutsOutputReference;
putTimeouts(value: OpsiAwrHubSourceAwrhubsourcesManagementTimeouts): void;
resetTimeouts(): void;
get timeoutsInput(): cdktf.IResolvable | OpsiAwrHubSourceAwrhubsourcesManagementTimeouts | undefined;
protected synthesizeAttributes(): {
[name: string]: any;
};
protected synthesizeHclAttributes(): {
[name: string]: any;
};
}