UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

61 lines (60 loc) 2.88 kB
import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataOciJmsJmsPluginConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/jms_jms_plugin#jms_plugin_id DataOciJmsJmsPlugin#jms_plugin_id} */ readonly jmsPluginId: string; } /** * Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/jms_jms_plugin oci_jms_jms_plugin} */ export declare class DataOciJmsJmsPlugin extends cdktf.TerraformDataSource { static readonly tfResourceType = "oci_jms_jms_plugin"; /** * Generates CDKTF code for importing a DataOciJmsJmsPlugin 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 DataOciJmsJmsPlugin to import * @param importFromId The id of the existing DataOciJmsJmsPlugin that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/jms_jms_plugin#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataOciJmsJmsPlugin 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/jms_jms_plugin oci_jms_jms_plugin} 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 DataOciJmsJmsPluginConfig */ constructor(scope: Construct, id: string, config: DataOciJmsJmsPluginConfig); get agentId(): string; get agentType(): string; get availabilityStatus(): string; get compartmentId(): string; private _definedTags; get definedTags(): cdktf.StringMap; get fleetId(): string; private _freeformTags; get freeformTags(): cdktf.StringMap; get hostname(): string; get id(): string; private _jmsPluginId?; get jmsPluginId(): string; set jmsPluginId(value: string); get jmsPluginIdInput(): string | undefined; get osArchitecture(): string; get osDistribution(): string; get osFamily(): string; get pluginVersion(): string; get state(): string; private _systemTags; get systemTags(): cdktf.StringMap; get timeLastSeen(): string; get timeRegistered(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }