UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

71 lines (70 loc) 3.37 kB
import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataOciOpsiHostInsightConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/opsi_host_insight#host_insight_id DataOciOpsiHostInsight#host_insight_id} */ readonly hostInsightId: string; } /** * Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/opsi_host_insight oci_opsi_host_insight} */ export declare class DataOciOpsiHostInsight extends cdktf.TerraformDataSource { static readonly tfResourceType = "oci_opsi_host_insight"; /** * Generates CDKTF code for importing a DataOciOpsiHostInsight 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 DataOciOpsiHostInsight to import * @param importFromId The id of the existing DataOciOpsiHostInsight that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/opsi_host_insight#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataOciOpsiHostInsight 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/opsi_host_insight oci_opsi_host_insight} 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 DataOciOpsiHostInsightConfig */ constructor(scope: Construct, id: string, config: DataOciOpsiHostInsightConfig); get compartmentId(): string; get computeId(): string; private _definedTags; get definedTags(): cdktf.StringMap; get enterpriseManagerBridgeId(): string; get enterpriseManagerEntityDisplayName(): string; get enterpriseManagerEntityIdentifier(): string; get enterpriseManagerEntityName(): string; get enterpriseManagerEntityType(): string; get enterpriseManagerIdentifier(): string; get entitySource(): string; get exadataInsightId(): string; private _freeformTags; get freeformTags(): cdktf.StringMap; get hostDisplayName(): string; private _hostInsightId?; get hostInsightId(): string; set hostInsightId(value: string); get hostInsightIdInput(): string | undefined; get hostName(): string; get hostType(): string; get id(): string; get lifecycleDetails(): string; get managementAgentId(): string; get platformName(): string; get platformType(): string; get platformVersion(): string; get processorCount(): number; get state(): string; get status(): string; private _systemTags; get systemTags(): cdktf.StringMap; get timeCreated(): string; get timeUpdated(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }