UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

62 lines (61 loc) 3.39 kB
import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataOciFleetAppsManagementFleetPropertyConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/fleet_apps_management_fleet_property#fleet_id DataOciFleetAppsManagementFleetProperty#fleet_id} */ readonly fleetId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/fleet_apps_management_fleet_property#fleet_property_id DataOciFleetAppsManagementFleetProperty#fleet_property_id} */ readonly fleetPropertyId: string; } /** * Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/fleet_apps_management_fleet_property oci_fleet_apps_management_fleet_property} */ export declare class DataOciFleetAppsManagementFleetProperty extends cdktf.TerraformDataSource { static readonly tfResourceType = "oci_fleet_apps_management_fleet_property"; /** * Generates CDKTF code for importing a DataOciFleetAppsManagementFleetProperty 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 DataOciFleetAppsManagementFleetProperty to import * @param importFromId The id of the existing DataOciFleetAppsManagementFleetProperty that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/fleet_apps_management_fleet_property#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataOciFleetAppsManagementFleetProperty 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_fleet_property oci_fleet_apps_management_fleet_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 DataOciFleetAppsManagementFleetPropertyConfig */ constructor(scope: Construct, id: string, config: DataOciFleetAppsManagementFleetPropertyConfig); get allowedValues(): string[]; get compartmentId(): string; get displayName(): string; private _fleetId?; get fleetId(): string; set fleetId(value: string); get fleetIdInput(): string | undefined; private _fleetPropertyId?; get fleetPropertyId(): string; set fleetPropertyId(value: string); get fleetPropertyIdInput(): string | undefined; get id(): string; get propertyId(): string; get selectionType(): string; get state(): string; private _systemTags; get systemTags(): cdktf.StringMap; get timeCreated(): string; get timeUpdated(): string; get value(): string; get valueType(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }