UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

60 lines (59 loc) 3.07 kB
import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataOciFleetAppsManagementPropertyConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/fleet_apps_management_property#property_id DataOciFleetAppsManagementProperty#property_id} */ readonly propertyId: string; } /** * Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/fleet_apps_management_property oci_fleet_apps_management_property} */ export declare class DataOciFleetAppsManagementProperty extends cdktf.TerraformDataSource { static readonly tfResourceType = "oci_fleet_apps_management_property"; /** * Generates CDKTF code for importing a DataOciFleetAppsManagementProperty 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 DataOciFleetAppsManagementProperty to import * @param importFromId The id of the existing DataOciFleetAppsManagementProperty that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/fleet_apps_management_property#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataOciFleetAppsManagementProperty 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/fleet_apps_management_property oci_fleet_apps_management_property} 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 DataOciFleetAppsManagementPropertyConfig */ constructor(scope: Construct, id: string, config: DataOciFleetAppsManagementPropertyConfig); get compartmentId(): string; private _definedTags; get definedTags(): cdktf.StringMap; get displayName(): string; private _freeformTags; get freeformTags(): cdktf.StringMap; get id(): string; get lifecycleDetails(): string; private _propertyId?; get propertyId(): string; set propertyId(value: string); get propertyIdInput(): string | undefined; get resourceRegion(): string; get scope(): string; get selection(): string; get state(): string; private _systemTags; get systemTags(): cdktf.StringMap; get timeCreated(): string; get timeUpdated(): string; get type(): string; get valueType(): string; get values(): string[]; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }