UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

57 lines (56 loc) 2.86 kB
import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataOciCloudGuardWlpAgentConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/cloud_guard_wlp_agent#wlp_agent_id DataOciCloudGuardWlpAgent#wlp_agent_id} */ readonly wlpAgentId: string; } /** * Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/cloud_guard_wlp_agent oci_cloud_guard_wlp_agent} */ export declare class DataOciCloudGuardWlpAgent extends cdktf.TerraformDataSource { static readonly tfResourceType = "oci_cloud_guard_wlp_agent"; /** * Generates CDKTF code for importing a DataOciCloudGuardWlpAgent 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 DataOciCloudGuardWlpAgent to import * @param importFromId The id of the existing DataOciCloudGuardWlpAgent that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/cloud_guard_wlp_agent#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataOciCloudGuardWlpAgent 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/cloud_guard_wlp_agent oci_cloud_guard_wlp_agent} 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 DataOciCloudGuardWlpAgentConfig */ constructor(scope: Construct, id: string, config: DataOciCloudGuardWlpAgentConfig); get agentVersion(): string; get certificateId(): string; get certificateSignedRequest(): string; get compartmentId(): string; private _definedTags; get definedTags(): cdktf.StringMap; private _freeformTags; get freeformTags(): cdktf.StringMap; get hostId(): string; get id(): string; get osInfo(): string; private _systemTags; get systemTags(): cdktf.StringMap; get tenantId(): string; get timeCreated(): string; get timeUpdated(): string; private _wlpAgentId?; get wlpAgentId(): string; set wlpAgentId(value: string); get wlpAgentIdInput(): string | undefined; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }