rhizo-co-terraform-provider-oci
Version:
Prebuilt oci Provider for Terraform CDK (cdktf)
133 lines (132 loc) • 8.28 kB
TypeScript
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DataOciApmSyntheticsOnPremiseVantagePointConfig extends cdktf.TerraformMetaArguments {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/apm_synthetics_on_premise_vantage_point#apm_domain_id DataOciApmSyntheticsOnPremiseVantagePoint#apm_domain_id}
*/
readonly apmDomainId: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/apm_synthetics_on_premise_vantage_point#on_premise_vantage_point_id DataOciApmSyntheticsOnPremiseVantagePoint#on_premise_vantage_point_id}
*/
readonly onPremiseVantagePointId: string;
}
export interface DataOciApmSyntheticsOnPremiseVantagePointWorkersSummaryAvailableCapabilities {
}
export declare function dataOciApmSyntheticsOnPremiseVantagePointWorkersSummaryAvailableCapabilitiesToTerraform(struct?: DataOciApmSyntheticsOnPremiseVantagePointWorkersSummaryAvailableCapabilities): any;
export declare function dataOciApmSyntheticsOnPremiseVantagePointWorkersSummaryAvailableCapabilitiesToHclTerraform(struct?: DataOciApmSyntheticsOnPremiseVantagePointWorkersSummaryAvailableCapabilities): any;
export declare class DataOciApmSyntheticsOnPremiseVantagePointWorkersSummaryAvailableCapabilitiesOutputReference extends cdktf.ComplexObject {
private isEmptyObject;
/**
* @param terraformResource The parent resource
* @param terraformAttribute The attribute on the parent resource this class is referencing
* @param complexObjectIndex the index of this item in the list
* @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
*/
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
get internalValue(): DataOciApmSyntheticsOnPremiseVantagePointWorkersSummaryAvailableCapabilities | undefined;
set internalValue(value: DataOciApmSyntheticsOnPremiseVantagePointWorkersSummaryAvailableCapabilities | undefined);
get capability(): string;
get onPremiseVantagePointCount(): number;
}
export declare class DataOciApmSyntheticsOnPremiseVantagePointWorkersSummaryAvailableCapabilitiesList extends cdktf.ComplexList {
protected terraformResource: cdktf.IInterpolatingParent;
protected terraformAttribute: string;
protected wrapsSet: boolean;
/**
* @param terraformResource The parent resource
* @param terraformAttribute The attribute on the parent resource this class is referencing
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
*/
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
/**
* @param index the index of the item to return
*/
get(index: number): DataOciApmSyntheticsOnPremiseVantagePointWorkersSummaryAvailableCapabilitiesOutputReference;
}
export interface DataOciApmSyntheticsOnPremiseVantagePointWorkersSummary {
}
export declare function dataOciApmSyntheticsOnPremiseVantagePointWorkersSummaryToTerraform(struct?: DataOciApmSyntheticsOnPremiseVantagePointWorkersSummary): any;
export declare function dataOciApmSyntheticsOnPremiseVantagePointWorkersSummaryToHclTerraform(struct?: DataOciApmSyntheticsOnPremiseVantagePointWorkersSummary): any;
export declare class DataOciApmSyntheticsOnPremiseVantagePointWorkersSummaryOutputReference extends cdktf.ComplexObject {
private isEmptyObject;
/**
* @param terraformResource The parent resource
* @param terraformAttribute The attribute on the parent resource this class is referencing
* @param complexObjectIndex the index of this item in the list
* @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
*/
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
get internalValue(): DataOciApmSyntheticsOnPremiseVantagePointWorkersSummary | undefined;
set internalValue(value: DataOciApmSyntheticsOnPremiseVantagePointWorkersSummary | undefined);
get available(): number;
private _availableCapabilities;
get availableCapabilities(): DataOciApmSyntheticsOnPremiseVantagePointWorkersSummaryAvailableCapabilitiesList;
get disabled(): number;
get minVersion(): string;
get total(): number;
get used(): number;
}
export declare class DataOciApmSyntheticsOnPremiseVantagePointWorkersSummaryList extends cdktf.ComplexList {
protected terraformResource: cdktf.IInterpolatingParent;
protected terraformAttribute: string;
protected wrapsSet: boolean;
/**
* @param terraformResource The parent resource
* @param terraformAttribute The attribute on the parent resource this class is referencing
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
*/
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
/**
* @param index the index of the item to return
*/
get(index: number): DataOciApmSyntheticsOnPremiseVantagePointWorkersSummaryOutputReference;
}
/**
* Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/apm_synthetics_on_premise_vantage_point oci_apm_synthetics_on_premise_vantage_point}
*/
export declare class DataOciApmSyntheticsOnPremiseVantagePoint extends cdktf.TerraformDataSource {
static readonly tfResourceType = "oci_apm_synthetics_on_premise_vantage_point";
/**
* Generates CDKTF code for importing a DataOciApmSyntheticsOnPremiseVantagePoint 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 DataOciApmSyntheticsOnPremiseVantagePoint to import
* @param importFromId The id of the existing DataOciApmSyntheticsOnPremiseVantagePoint that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/apm_synthetics_on_premise_vantage_point#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the DataOciApmSyntheticsOnPremiseVantagePoint 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/apm_synthetics_on_premise_vantage_point oci_apm_synthetics_on_premise_vantage_point} 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 DataOciApmSyntheticsOnPremiseVantagePointConfig
*/
constructor(scope: Construct, id: string, config: DataOciApmSyntheticsOnPremiseVantagePointConfig);
private _apmDomainId?;
get apmDomainId(): string;
set apmDomainId(value: string);
get apmDomainIdInput(): string | undefined;
private _definedTags;
get definedTags(): cdktf.StringMap;
get description(): string;
get displayName(): string;
private _freeformTags;
get freeformTags(): cdktf.StringMap;
get id(): string;
get name(): string;
private _onPremiseVantagePointId?;
get onPremiseVantagePointId(): string;
set onPremiseVantagePointId(value: string);
get onPremiseVantagePointIdInput(): string | undefined;
get timeCreated(): string;
get timeUpdated(): string;
get type(): string;
private _workersSummary;
get workersSummary(): DataOciApmSyntheticsOnPremiseVantagePointWorkersSummaryList;
protected synthesizeAttributes(): {
[name: string]: any;
};
protected synthesizeHclAttributes(): {
[name: string]: any;
};
}