UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

74 lines (73 loc) 3.45 kB
import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataOciOcvpEsxiHostConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/ocvp_esxi_host#esxi_host_id DataOciOcvpEsxiHost#esxi_host_id} */ readonly esxiHostId: string; } /** * Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/ocvp_esxi_host oci_ocvp_esxi_host} */ export declare class DataOciOcvpEsxiHost extends cdktf.TerraformDataSource { static readonly tfResourceType = "oci_ocvp_esxi_host"; /** * Generates CDKTF code for importing a DataOciOcvpEsxiHost 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 DataOciOcvpEsxiHost to import * @param importFromId The id of the existing DataOciOcvpEsxiHost that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/ocvp_esxi_host#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataOciOcvpEsxiHost 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/ocvp_esxi_host oci_ocvp_esxi_host} 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 DataOciOcvpEsxiHostConfig */ constructor(scope: Construct, id: string, config: DataOciOcvpEsxiHostConfig); get billingContractEndDate(): string; get billingDonorHostId(): string; get capacityReservationId(): string; get clusterId(): string; get compartmentId(): string; get computeAvailabilityDomain(): string; get computeInstanceId(): string; get currentCommitment(): string; get currentSku(): string; private _definedTags; get definedTags(): cdktf.StringMap; get displayName(): string; private _esxiHostId?; get esxiHostId(): string; set esxiHostId(value: string); get esxiHostIdInput(): string | undefined; get esxiSoftwareVersion(): string; get failedEsxiHostId(): string; private _freeformTags; get freeformTags(): cdktf.StringMap; get gracePeriodEndDate(): string; get hostOcpuCount(): number; get hostShapeName(): string; get id(): string; get isBillingContinuationInProgress(): cdktf.IResolvable; get isBillingSwappingInProgress(): cdktf.IResolvable; get nextCommitment(): string; get nextSku(): string; get nonUpgradedEsxiHostId(): string; get replacementEsxiHostId(): string; get sddcId(): string; get state(): string; get swapBillingHostId(): string; get timeCreated(): string; get timeUpdated(): string; get upgradedReplacementEsxiHostId(): string; get vmwareSoftwareVersion(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }