UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

168 lines (167 loc) 10.6 kB
import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataOciDatabaseExternalPluggableDatabaseConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/database_external_pluggable_database#external_pluggable_database_id DataOciDatabaseExternalPluggableDatabase#external_pluggable_database_id} */ readonly externalPluggableDatabaseId: string; } export interface DataOciDatabaseExternalPluggableDatabaseDatabaseManagementConfig { } export declare function dataOciDatabaseExternalPluggableDatabaseDatabaseManagementConfigToTerraform(struct?: DataOciDatabaseExternalPluggableDatabaseDatabaseManagementConfig): any; export declare function dataOciDatabaseExternalPluggableDatabaseDatabaseManagementConfigToHclTerraform(struct?: DataOciDatabaseExternalPluggableDatabaseDatabaseManagementConfig): any; export declare class DataOciDatabaseExternalPluggableDatabaseDatabaseManagementConfigOutputReference 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(): DataOciDatabaseExternalPluggableDatabaseDatabaseManagementConfig | undefined; set internalValue(value: DataOciDatabaseExternalPluggableDatabaseDatabaseManagementConfig | undefined); get databaseManagementConnectionId(): string; get databaseManagementStatus(): string; get licenseModel(): string; } export declare class DataOciDatabaseExternalPluggableDatabaseDatabaseManagementConfigList 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): DataOciDatabaseExternalPluggableDatabaseDatabaseManagementConfigOutputReference; } export interface DataOciDatabaseExternalPluggableDatabaseOperationsInsightsConfig { } export declare function dataOciDatabaseExternalPluggableDatabaseOperationsInsightsConfigToTerraform(struct?: DataOciDatabaseExternalPluggableDatabaseOperationsInsightsConfig): any; export declare function dataOciDatabaseExternalPluggableDatabaseOperationsInsightsConfigToHclTerraform(struct?: DataOciDatabaseExternalPluggableDatabaseOperationsInsightsConfig): any; export declare class DataOciDatabaseExternalPluggableDatabaseOperationsInsightsConfigOutputReference 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(): DataOciDatabaseExternalPluggableDatabaseOperationsInsightsConfig | undefined; set internalValue(value: DataOciDatabaseExternalPluggableDatabaseOperationsInsightsConfig | undefined); get operationsInsightsConnectorId(): string; get operationsInsightsStatus(): string; } export declare class DataOciDatabaseExternalPluggableDatabaseOperationsInsightsConfigList 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): DataOciDatabaseExternalPluggableDatabaseOperationsInsightsConfigOutputReference; } export interface DataOciDatabaseExternalPluggableDatabaseStackMonitoringConfig { } export declare function dataOciDatabaseExternalPluggableDatabaseStackMonitoringConfigToTerraform(struct?: DataOciDatabaseExternalPluggableDatabaseStackMonitoringConfig): any; export declare function dataOciDatabaseExternalPluggableDatabaseStackMonitoringConfigToHclTerraform(struct?: DataOciDatabaseExternalPluggableDatabaseStackMonitoringConfig): any; export declare class DataOciDatabaseExternalPluggableDatabaseStackMonitoringConfigOutputReference 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(): DataOciDatabaseExternalPluggableDatabaseStackMonitoringConfig | undefined; set internalValue(value: DataOciDatabaseExternalPluggableDatabaseStackMonitoringConfig | undefined); get stackMonitoringConnectorId(): string; get stackMonitoringStatus(): string; } export declare class DataOciDatabaseExternalPluggableDatabaseStackMonitoringConfigList 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): DataOciDatabaseExternalPluggableDatabaseStackMonitoringConfigOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/database_external_pluggable_database oci_database_external_pluggable_database} */ export declare class DataOciDatabaseExternalPluggableDatabase extends cdktf.TerraformDataSource { static readonly tfResourceType = "oci_database_external_pluggable_database"; /** * Generates CDKTF code for importing a DataOciDatabaseExternalPluggableDatabase 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 DataOciDatabaseExternalPluggableDatabase to import * @param importFromId The id of the existing DataOciDatabaseExternalPluggableDatabase that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/database_external_pluggable_database#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataOciDatabaseExternalPluggableDatabase 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/database_external_pluggable_database oci_database_external_pluggable_database} 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 DataOciDatabaseExternalPluggableDatabaseConfig */ constructor(scope: Construct, id: string, config: DataOciDatabaseExternalPluggableDatabaseConfig); get characterSet(): string; get compartmentId(): string; get databaseConfiguration(): string; get databaseEdition(): string; private _databaseManagementConfig; get databaseManagementConfig(): DataOciDatabaseExternalPluggableDatabaseDatabaseManagementConfigList; get databaseVersion(): string; get dbId(): string; get dbPacks(): string; get dbUniqueName(): string; private _definedTags; get definedTags(): cdktf.StringMap; get displayName(): string; get externalContainerDatabaseId(): string; private _externalPluggableDatabaseId?; get externalPluggableDatabaseId(): string; set externalPluggableDatabaseId(value: string); get externalPluggableDatabaseIdInput(): string | undefined; private _freeformTags; get freeformTags(): cdktf.StringMap; get id(): string; get lifecycleDetails(): string; get ncharacterSet(): string; private _operationsInsightsConfig; get operationsInsightsConfig(): DataOciDatabaseExternalPluggableDatabaseOperationsInsightsConfigList; get sourceId(): string; private _stackMonitoringConfig; get stackMonitoringConfig(): DataOciDatabaseExternalPluggableDatabaseStackMonitoringConfigList; get state(): string; get timeCreated(): string; get timeZone(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }