rhizo-co-terraform-provider-oci
Version:
Prebuilt oci Provider for Terraform CDK (cdktf)
70 lines (69 loc) • 3.66 kB
TypeScript
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DataOciFleetAppsManagementFleetResourceConfig 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_resource#fleet_id DataOciFleetAppsManagementFleetResource#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_resource#fleet_resource_id DataOciFleetAppsManagementFleetResource#fleet_resource_id}
*/
readonly fleetResourceId: string;
}
/**
* Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/fleet_apps_management_fleet_resource oci_fleet_apps_management_fleet_resource}
*/
export declare class DataOciFleetAppsManagementFleetResource extends cdktf.TerraformDataSource {
static readonly tfResourceType = "oci_fleet_apps_management_fleet_resource";
/**
* Generates CDKTF code for importing a DataOciFleetAppsManagementFleetResource 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 DataOciFleetAppsManagementFleetResource to import
* @param importFromId The id of the existing DataOciFleetAppsManagementFleetResource 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_resource#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the DataOciFleetAppsManagementFleetResource 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_resource oci_fleet_apps_management_fleet_resource} 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 DataOciFleetAppsManagementFleetResourceConfig
*/
constructor(scope: Construct, id: string, config: DataOciFleetAppsManagementFleetResourceConfig);
get applicationType(): string;
get compartment(): string;
get compartmentId(): string;
get complianceState(): string;
get displayName(): string;
get environmentType(): string;
private _fleetId?;
get fleetId(): string;
set fleetId(value: string);
get fleetIdInput(): string | undefined;
private _fleetResourceId?;
get fleetResourceId(): string;
set fleetResourceId(value: string);
get fleetResourceIdInput(): string | undefined;
get id(): string;
get lifecycleDetails(): string;
get product(): string;
get productCount(): number;
get resourceId(): string;
get resourceRegion(): string;
get resourceType(): string;
get state(): string;
private _systemTags;
get systemTags(): cdktf.StringMap;
get targetCount(): number;
get tenancyId(): string;
get tenancyName(): string;
get timeCreated(): string;
get timeUpdated(): string;
protected synthesizeAttributes(): {
[name: string]: any;
};
protected synthesizeHclAttributes(): {
[name: string]: any;
};
}