UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

521 lines (520 loc) 25.1 kB
import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface ApmConfigConfigConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_config_config#apm_domain_id ApmConfigConfig#apm_domain_id} */ readonly apmDomainId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_config_config#config_type ApmConfigConfig#config_type} */ readonly configType: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_config_config#defined_tags ApmConfigConfig#defined_tags} */ readonly definedTags?: { [key: string]: string; }; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_config_config#description ApmConfigConfig#description} */ readonly description?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_config_config#display_name ApmConfigConfig#display_name} */ readonly displayName: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_config_config#filter_id ApmConfigConfig#filter_id} */ readonly filterId?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_config_config#filter_text ApmConfigConfig#filter_text} */ readonly filterText?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_config_config#freeform_tags ApmConfigConfig#freeform_tags} */ readonly freeformTags?: { [key: string]: string; }; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_config_config#group ApmConfigConfig#group} */ readonly group?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_config_config#id ApmConfigConfig#id} * * Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. * If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable. */ readonly id?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_config_config#namespace ApmConfigConfig#namespace} */ readonly namespace?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_config_config#opc_dry_run ApmConfigConfig#opc_dry_run} */ readonly opcDryRun?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_config_config#options ApmConfigConfig#options} */ readonly options?: string; /** * dimensions block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_config_config#dimensions ApmConfigConfig#dimensions} */ readonly dimensions?: ApmConfigConfigDimensions[] | cdktf.IResolvable; /** * in_use_by block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_config_config#in_use_by ApmConfigConfig#in_use_by} */ readonly inUseBy?: ApmConfigConfigInUseBy[] | cdktf.IResolvable; /** * metrics block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_config_config#metrics ApmConfigConfig#metrics} */ readonly metrics?: ApmConfigConfigMetrics[] | cdktf.IResolvable; /** * rules block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_config_config#rules ApmConfigConfig#rules} */ readonly rules?: ApmConfigConfigRules[] | cdktf.IResolvable; /** * timeouts block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_config_config#timeouts ApmConfigConfig#timeouts} */ readonly timeouts?: ApmConfigConfigTimeouts; } export interface ApmConfigConfigDimensions { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_config_config#name ApmConfigConfig#name} */ readonly name?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_config_config#value_source ApmConfigConfig#value_source} */ readonly valueSource?: string; } export declare function apmConfigConfigDimensionsToTerraform(struct?: ApmConfigConfigDimensions | cdktf.IResolvable): any; export declare function apmConfigConfigDimensionsToHclTerraform(struct?: ApmConfigConfigDimensions | cdktf.IResolvable): any; export declare class ApmConfigConfigDimensionsOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @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(): ApmConfigConfigDimensions | cdktf.IResolvable | undefined; set internalValue(value: ApmConfigConfigDimensions | cdktf.IResolvable | undefined); private _name?; get name(): string; set name(value: string); resetName(): void; get nameInput(): string | undefined; private _valueSource?; get valueSource(): string; set valueSource(value: string); resetValueSource(): void; get valueSourceInput(): string | undefined; } export declare class ApmConfigConfigDimensionsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: ApmConfigConfigDimensions[] | cdktf.IResolvable; /** * @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): ApmConfigConfigDimensionsOutputReference; } export interface ApmConfigConfigInUseBy { } export declare function apmConfigConfigInUseByToTerraform(struct?: ApmConfigConfigInUseBy | cdktf.IResolvable): any; export declare function apmConfigConfigInUseByToHclTerraform(struct?: ApmConfigConfigInUseBy | cdktf.IResolvable): any; export declare class ApmConfigConfigInUseByOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @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(): ApmConfigConfigInUseBy | cdktf.IResolvable | undefined; set internalValue(value: ApmConfigConfigInUseBy | cdktf.IResolvable | undefined); get configType(): string; get displayName(): string; get id(): string; get optionsGroup(): string; } export declare class ApmConfigConfigInUseByList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: ApmConfigConfigInUseBy[] | cdktf.IResolvable; /** * @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): ApmConfigConfigInUseByOutputReference; } export interface ApmConfigConfigMetrics { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_config_config#description ApmConfigConfig#description} */ readonly description?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_config_config#name ApmConfigConfig#name} */ readonly name?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_config_config#unit ApmConfigConfig#unit} */ readonly unit?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_config_config#value_source ApmConfigConfig#value_source} */ readonly valueSource?: string; } export declare function apmConfigConfigMetricsToTerraform(struct?: ApmConfigConfigMetrics | cdktf.IResolvable): any; export declare function apmConfigConfigMetricsToHclTerraform(struct?: ApmConfigConfigMetrics | cdktf.IResolvable): any; export declare class ApmConfigConfigMetricsOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @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(): ApmConfigConfigMetrics | cdktf.IResolvable | undefined; set internalValue(value: ApmConfigConfigMetrics | cdktf.IResolvable | undefined); private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string | undefined; private _name?; get name(): string; set name(value: string); resetName(): void; get nameInput(): string | undefined; private _unit?; get unit(): string; set unit(value: string); resetUnit(): void; get unitInput(): string | undefined; private _valueSource?; get valueSource(): string; set valueSource(value: string); resetValueSource(): void; get valueSourceInput(): string | undefined; } export declare class ApmConfigConfigMetricsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: ApmConfigConfigMetrics[] | cdktf.IResolvable; /** * @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): ApmConfigConfigMetricsOutputReference; } export interface ApmConfigConfigRules { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_config_config#display_name ApmConfigConfig#display_name} */ readonly displayName?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_config_config#filter_text ApmConfigConfig#filter_text} */ readonly filterText?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_config_config#is_apply_to_error_spans ApmConfigConfig#is_apply_to_error_spans} */ readonly isApplyToErrorSpans?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_config_config#is_enabled ApmConfigConfig#is_enabled} */ readonly isEnabled?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_config_config#priority ApmConfigConfig#priority} */ readonly priority?: number; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_config_config#satisfied_response_time ApmConfigConfig#satisfied_response_time} */ readonly satisfiedResponseTime?: number; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_config_config#tolerating_response_time ApmConfigConfig#tolerating_response_time} */ readonly toleratingResponseTime?: number; } export declare function apmConfigConfigRulesToTerraform(struct?: ApmConfigConfigRules | cdktf.IResolvable): any; export declare function apmConfigConfigRulesToHclTerraform(struct?: ApmConfigConfigRules | cdktf.IResolvable): any; export declare class ApmConfigConfigRulesOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @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(): ApmConfigConfigRules | cdktf.IResolvable | undefined; set internalValue(value: ApmConfigConfigRules | cdktf.IResolvable | undefined); private _displayName?; get displayName(): string; set displayName(value: string); resetDisplayName(): void; get displayNameInput(): string | undefined; private _filterText?; get filterText(): string; set filterText(value: string); resetFilterText(): void; get filterTextInput(): string | undefined; private _isApplyToErrorSpans?; get isApplyToErrorSpans(): boolean | cdktf.IResolvable; set isApplyToErrorSpans(value: boolean | cdktf.IResolvable); resetIsApplyToErrorSpans(): void; get isApplyToErrorSpansInput(): boolean | cdktf.IResolvable | undefined; private _isEnabled?; get isEnabled(): boolean | cdktf.IResolvable; set isEnabled(value: boolean | cdktf.IResolvable); resetIsEnabled(): void; get isEnabledInput(): boolean | cdktf.IResolvable | undefined; private _priority?; get priority(): number; set priority(value: number); resetPriority(): void; get priorityInput(): number | undefined; private _satisfiedResponseTime?; get satisfiedResponseTime(): number; set satisfiedResponseTime(value: number); resetSatisfiedResponseTime(): void; get satisfiedResponseTimeInput(): number | undefined; private _toleratingResponseTime?; get toleratingResponseTime(): number; set toleratingResponseTime(value: number); resetToleratingResponseTime(): void; get toleratingResponseTimeInput(): number | undefined; } export declare class ApmConfigConfigRulesList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: ApmConfigConfigRules[] | cdktf.IResolvable; /** * @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): ApmConfigConfigRulesOutputReference; } export interface ApmConfigConfigTimeouts { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_config_config#create ApmConfigConfig#create} */ readonly create?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_config_config#delete ApmConfigConfig#delete} */ readonly delete?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_config_config#update ApmConfigConfig#update} */ readonly update?: string; } export declare function apmConfigConfigTimeoutsToTerraform(struct?: ApmConfigConfigTimeouts | cdktf.IResolvable): any; export declare function apmConfigConfigTimeoutsToHclTerraform(struct?: ApmConfigConfigTimeouts | cdktf.IResolvable): any; export declare class ApmConfigConfigTimeoutsOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string); get internalValue(): ApmConfigConfigTimeouts | cdktf.IResolvable | undefined; set internalValue(value: ApmConfigConfigTimeouts | cdktf.IResolvable | undefined); private _create?; get create(): string; set create(value: string); resetCreate(): void; get createInput(): string | undefined; private _delete?; get delete(): string; set delete(value: string); resetDelete(): void; get deleteInput(): string | undefined; private _update?; get update(): string; set update(value: string); resetUpdate(): void; get updateInput(): string | undefined; } /** * Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_config_config oci_apm_config_config} */ export declare class ApmConfigConfig extends cdktf.TerraformResource { static readonly tfResourceType = "oci_apm_config_config"; /** * Generates CDKTF code for importing a ApmConfigConfig 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 ApmConfigConfig to import * @param importFromId The id of the existing ApmConfigConfig that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_config_config#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the ApmConfigConfig 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/resources/apm_config_config oci_apm_config_config} Resource * * @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 ApmConfigConfigConfig */ constructor(scope: Construct, id: string, config: ApmConfigConfigConfig); private _apmDomainId?; get apmDomainId(): string; set apmDomainId(value: string); get apmDomainIdInput(): string | undefined; private _configType?; get configType(): string; set configType(value: string); get configTypeInput(): string | undefined; get createdBy(): string; private _definedTags?; get definedTags(): { [key: string]: string; }; set definedTags(value: { [key: string]: string; }); resetDefinedTags(): void; get definedTagsInput(): { [key: string]: string; } | undefined; private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string | undefined; private _displayName?; get displayName(): string; set displayName(value: string); get displayNameInput(): string | undefined; get etag(): string; private _filterId?; get filterId(): string; set filterId(value: string); resetFilterId(): void; get filterIdInput(): string | undefined; private _filterText?; get filterText(): string; set filterText(value: string); resetFilterText(): void; get filterTextInput(): string | undefined; private _freeformTags?; get freeformTags(): { [key: string]: string; }; set freeformTags(value: { [key: string]: string; }); resetFreeformTags(): void; get freeformTagsInput(): { [key: string]: string; } | undefined; private _group?; get group(): string; set group(value: string); resetGroup(): void; get groupInput(): string | undefined; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string | undefined; private _namespace?; get namespace(): string; set namespace(value: string); resetNamespace(): void; get namespaceInput(): string | undefined; private _opcDryRun?; get opcDryRun(): string; set opcDryRun(value: string); resetOpcDryRun(): void; get opcDryRunInput(): string | undefined; private _options?; get options(): string; set options(value: string); resetOptions(): void; get optionsInput(): string | undefined; get timeCreated(): string; get timeUpdated(): string; get updatedBy(): string; private _dimensions; get dimensions(): ApmConfigConfigDimensionsList; putDimensions(value: ApmConfigConfigDimensions[] | cdktf.IResolvable): void; resetDimensions(): void; get dimensionsInput(): cdktf.IResolvable | ApmConfigConfigDimensions[] | undefined; private _inUseBy; get inUseBy(): ApmConfigConfigInUseByList; putInUseBy(value: ApmConfigConfigInUseBy[] | cdktf.IResolvable): void; resetInUseBy(): void; get inUseByInput(): cdktf.IResolvable | ApmConfigConfigInUseBy[] | undefined; private _metrics; get metrics(): ApmConfigConfigMetricsList; putMetrics(value: ApmConfigConfigMetrics[] | cdktf.IResolvable): void; resetMetrics(): void; get metricsInput(): cdktf.IResolvable | ApmConfigConfigMetrics[] | undefined; private _rules; get rules(): ApmConfigConfigRulesList; putRules(value: ApmConfigConfigRules[] | cdktf.IResolvable): void; resetRules(): void; get rulesInput(): cdktf.IResolvable | ApmConfigConfigRules[] | undefined; private _timeouts; get timeouts(): ApmConfigConfigTimeoutsOutputReference; putTimeouts(value: ApmConfigConfigTimeouts): void; resetTimeouts(): void; get timeoutsInput(): cdktf.IResolvable | ApmConfigConfigTimeouts | undefined; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }