rhizo-co-terraform-provider-oci
Version:
Prebuilt oci Provider for Terraform CDK (cdktf)
537 lines (536 loc) • 27.2 kB
TypeScript
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DnsSteeringPolicyConfig extends cdktf.TerraformMetaArguments {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dns_steering_policy#compartment_id DnsSteeringPolicy#compartment_id}
*/
readonly compartmentId: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dns_steering_policy#defined_tags DnsSteeringPolicy#defined_tags}
*/
readonly definedTags?: {
[key: string]: string;
};
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dns_steering_policy#display_name DnsSteeringPolicy#display_name}
*/
readonly displayName: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dns_steering_policy#freeform_tags DnsSteeringPolicy#freeform_tags}
*/
readonly freeformTags?: {
[key: string]: string;
};
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dns_steering_policy#health_check_monitor_id DnsSteeringPolicy#health_check_monitor_id}
*/
readonly healthCheckMonitorId?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dns_steering_policy#id DnsSteeringPolicy#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/dns_steering_policy#template DnsSteeringPolicy#template}
*/
readonly template: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dns_steering_policy#ttl DnsSteeringPolicy#ttl}
*/
readonly ttl?: number;
/**
* answers block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dns_steering_policy#answers DnsSteeringPolicy#answers}
*/
readonly answers?: DnsSteeringPolicyAnswers[] | cdktf.IResolvable;
/**
* rules block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dns_steering_policy#rules DnsSteeringPolicy#rules}
*/
readonly rules?: DnsSteeringPolicyRules[] | cdktf.IResolvable;
/**
* timeouts block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dns_steering_policy#timeouts DnsSteeringPolicy#timeouts}
*/
readonly timeouts?: DnsSteeringPolicyTimeouts;
}
export interface DnsSteeringPolicyAnswers {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dns_steering_policy#is_disabled DnsSteeringPolicy#is_disabled}
*/
readonly isDisabled?: boolean | cdktf.IResolvable;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dns_steering_policy#name DnsSteeringPolicy#name}
*/
readonly name: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dns_steering_policy#pool DnsSteeringPolicy#pool}
*/
readonly pool?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dns_steering_policy#rdata DnsSteeringPolicy#rdata}
*/
readonly rdata: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dns_steering_policy#rtype DnsSteeringPolicy#rtype}
*/
readonly rtype: string;
}
export declare function dnsSteeringPolicyAnswersToTerraform(struct?: DnsSteeringPolicyAnswers | cdktf.IResolvable): any;
export declare function dnsSteeringPolicyAnswersToHclTerraform(struct?: DnsSteeringPolicyAnswers | cdktf.IResolvable): any;
export declare class DnsSteeringPolicyAnswersOutputReference 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(): DnsSteeringPolicyAnswers | cdktf.IResolvable | undefined;
set internalValue(value: DnsSteeringPolicyAnswers | cdktf.IResolvable | undefined);
private _isDisabled?;
get isDisabled(): boolean | cdktf.IResolvable;
set isDisabled(value: boolean | cdktf.IResolvable);
resetIsDisabled(): void;
get isDisabledInput(): boolean | cdktf.IResolvable | undefined;
private _name?;
get name(): string;
set name(value: string);
get nameInput(): string | undefined;
private _pool?;
get pool(): string;
set pool(value: string);
resetPool(): void;
get poolInput(): string | undefined;
private _rdata?;
get rdata(): string;
set rdata(value: string);
get rdataInput(): string | undefined;
private _rtype?;
get rtype(): string;
set rtype(value: string);
get rtypeInput(): string | undefined;
}
export declare class DnsSteeringPolicyAnswersList extends cdktf.ComplexList {
protected terraformResource: cdktf.IInterpolatingParent;
protected terraformAttribute: string;
protected wrapsSet: boolean;
internalValue?: DnsSteeringPolicyAnswers[] | 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): DnsSteeringPolicyAnswersOutputReference;
}
export interface DnsSteeringPolicyRulesCasesAnswerData {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dns_steering_policy#answer_condition DnsSteeringPolicy#answer_condition}
*/
readonly answerCondition?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dns_steering_policy#should_keep DnsSteeringPolicy#should_keep}
*/
readonly shouldKeep?: boolean | cdktf.IResolvable;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dns_steering_policy#value DnsSteeringPolicy#value}
*/
readonly value?: number;
}
export declare function dnsSteeringPolicyRulesCasesAnswerDataToTerraform(struct?: DnsSteeringPolicyRulesCasesAnswerData | cdktf.IResolvable): any;
export declare function dnsSteeringPolicyRulesCasesAnswerDataToHclTerraform(struct?: DnsSteeringPolicyRulesCasesAnswerData | cdktf.IResolvable): any;
export declare class DnsSteeringPolicyRulesCasesAnswerDataOutputReference 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(): DnsSteeringPolicyRulesCasesAnswerData | cdktf.IResolvable | undefined;
set internalValue(value: DnsSteeringPolicyRulesCasesAnswerData | cdktf.IResolvable | undefined);
private _answerCondition?;
get answerCondition(): string;
set answerCondition(value: string);
resetAnswerCondition(): void;
get answerConditionInput(): string | undefined;
private _shouldKeep?;
get shouldKeep(): boolean | cdktf.IResolvable;
set shouldKeep(value: boolean | cdktf.IResolvable);
resetShouldKeep(): void;
get shouldKeepInput(): boolean | cdktf.IResolvable | undefined;
private _value?;
get value(): number;
set value(value: number);
resetValue(): void;
get valueInput(): number | undefined;
}
export declare class DnsSteeringPolicyRulesCasesAnswerDataList extends cdktf.ComplexList {
protected terraformResource: cdktf.IInterpolatingParent;
protected terraformAttribute: string;
protected wrapsSet: boolean;
internalValue?: DnsSteeringPolicyRulesCasesAnswerData[] | 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): DnsSteeringPolicyRulesCasesAnswerDataOutputReference;
}
export interface DnsSteeringPolicyRulesCases {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dns_steering_policy#case_condition DnsSteeringPolicy#case_condition}
*/
readonly caseCondition?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dns_steering_policy#count DnsSteeringPolicy#count}
*/
readonly count?: number;
/**
* answer_data block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dns_steering_policy#answer_data DnsSteeringPolicy#answer_data}
*/
readonly answerData?: DnsSteeringPolicyRulesCasesAnswerData[] | cdktf.IResolvable;
}
export declare function dnsSteeringPolicyRulesCasesToTerraform(struct?: DnsSteeringPolicyRulesCases | cdktf.IResolvable): any;
export declare function dnsSteeringPolicyRulesCasesToHclTerraform(struct?: DnsSteeringPolicyRulesCases | cdktf.IResolvable): any;
export declare class DnsSteeringPolicyRulesCasesOutputReference 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(): DnsSteeringPolicyRulesCases | cdktf.IResolvable | undefined;
set internalValue(value: DnsSteeringPolicyRulesCases | cdktf.IResolvable | undefined);
private _caseCondition?;
get caseCondition(): string;
set caseCondition(value: string);
resetCaseCondition(): void;
get caseConditionInput(): string | undefined;
private _count?;
get count(): number;
set count(value: number);
resetCount(): void;
get countInput(): number | undefined;
private _answerData;
get answerData(): DnsSteeringPolicyRulesCasesAnswerDataList;
putAnswerData(value: DnsSteeringPolicyRulesCasesAnswerData[] | cdktf.IResolvable): void;
resetAnswerData(): void;
get answerDataInput(): cdktf.IResolvable | DnsSteeringPolicyRulesCasesAnswerData[] | undefined;
}
export declare class DnsSteeringPolicyRulesCasesList extends cdktf.ComplexList {
protected terraformResource: cdktf.IInterpolatingParent;
protected terraformAttribute: string;
protected wrapsSet: boolean;
internalValue?: DnsSteeringPolicyRulesCases[] | 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): DnsSteeringPolicyRulesCasesOutputReference;
}
export interface DnsSteeringPolicyRulesDefaultAnswerData {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dns_steering_policy#answer_condition DnsSteeringPolicy#answer_condition}
*/
readonly answerCondition?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dns_steering_policy#should_keep DnsSteeringPolicy#should_keep}
*/
readonly shouldKeep?: boolean | cdktf.IResolvable;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dns_steering_policy#value DnsSteeringPolicy#value}
*/
readonly value?: number;
}
export declare function dnsSteeringPolicyRulesDefaultAnswerDataToTerraform(struct?: DnsSteeringPolicyRulesDefaultAnswerData | cdktf.IResolvable): any;
export declare function dnsSteeringPolicyRulesDefaultAnswerDataToHclTerraform(struct?: DnsSteeringPolicyRulesDefaultAnswerData | cdktf.IResolvable): any;
export declare class DnsSteeringPolicyRulesDefaultAnswerDataOutputReference 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(): DnsSteeringPolicyRulesDefaultAnswerData | cdktf.IResolvable | undefined;
set internalValue(value: DnsSteeringPolicyRulesDefaultAnswerData | cdktf.IResolvable | undefined);
private _answerCondition?;
get answerCondition(): string;
set answerCondition(value: string);
resetAnswerCondition(): void;
get answerConditionInput(): string | undefined;
private _shouldKeep?;
get shouldKeep(): boolean | cdktf.IResolvable;
set shouldKeep(value: boolean | cdktf.IResolvable);
resetShouldKeep(): void;
get shouldKeepInput(): boolean | cdktf.IResolvable | undefined;
private _value?;
get value(): number;
set value(value: number);
resetValue(): void;
get valueInput(): number | undefined;
}
export declare class DnsSteeringPolicyRulesDefaultAnswerDataList extends cdktf.ComplexList {
protected terraformResource: cdktf.IInterpolatingParent;
protected terraformAttribute: string;
protected wrapsSet: boolean;
internalValue?: DnsSteeringPolicyRulesDefaultAnswerData[] | 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): DnsSteeringPolicyRulesDefaultAnswerDataOutputReference;
}
export interface DnsSteeringPolicyRules {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dns_steering_policy#default_count DnsSteeringPolicy#default_count}
*/
readonly defaultCount?: number;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dns_steering_policy#description DnsSteeringPolicy#description}
*/
readonly description?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dns_steering_policy#rule_type DnsSteeringPolicy#rule_type}
*/
readonly ruleType: string;
/**
* cases block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dns_steering_policy#cases DnsSteeringPolicy#cases}
*/
readonly cases?: DnsSteeringPolicyRulesCases[] | cdktf.IResolvable;
/**
* default_answer_data block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dns_steering_policy#default_answer_data DnsSteeringPolicy#default_answer_data}
*/
readonly defaultAnswerData?: DnsSteeringPolicyRulesDefaultAnswerData[] | cdktf.IResolvable;
}
export declare function dnsSteeringPolicyRulesToTerraform(struct?: DnsSteeringPolicyRules | cdktf.IResolvable): any;
export declare function dnsSteeringPolicyRulesToHclTerraform(struct?: DnsSteeringPolicyRules | cdktf.IResolvable): any;
export declare class DnsSteeringPolicyRulesOutputReference 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(): DnsSteeringPolicyRules | cdktf.IResolvable | undefined;
set internalValue(value: DnsSteeringPolicyRules | cdktf.IResolvable | undefined);
private _defaultCount?;
get defaultCount(): number;
set defaultCount(value: number);
resetDefaultCount(): void;
get defaultCountInput(): number | undefined;
private _description?;
get description(): string;
set description(value: string);
resetDescription(): void;
get descriptionInput(): string | undefined;
private _ruleType?;
get ruleType(): string;
set ruleType(value: string);
get ruleTypeInput(): string | undefined;
private _cases;
get cases(): DnsSteeringPolicyRulesCasesList;
putCases(value: DnsSteeringPolicyRulesCases[] | cdktf.IResolvable): void;
resetCases(): void;
get casesInput(): cdktf.IResolvable | DnsSteeringPolicyRulesCases[] | undefined;
private _defaultAnswerData;
get defaultAnswerData(): DnsSteeringPolicyRulesDefaultAnswerDataList;
putDefaultAnswerData(value: DnsSteeringPolicyRulesDefaultAnswerData[] | cdktf.IResolvable): void;
resetDefaultAnswerData(): void;
get defaultAnswerDataInput(): cdktf.IResolvable | DnsSteeringPolicyRulesDefaultAnswerData[] | undefined;
}
export declare class DnsSteeringPolicyRulesList extends cdktf.ComplexList {
protected terraformResource: cdktf.IInterpolatingParent;
protected terraformAttribute: string;
protected wrapsSet: boolean;
internalValue?: DnsSteeringPolicyRules[] | 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): DnsSteeringPolicyRulesOutputReference;
}
export interface DnsSteeringPolicyTimeouts {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dns_steering_policy#create DnsSteeringPolicy#create}
*/
readonly create?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dns_steering_policy#delete DnsSteeringPolicy#delete}
*/
readonly delete?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dns_steering_policy#update DnsSteeringPolicy#update}
*/
readonly update?: string;
}
export declare function dnsSteeringPolicyTimeoutsToTerraform(struct?: DnsSteeringPolicyTimeouts | cdktf.IResolvable): any;
export declare function dnsSteeringPolicyTimeoutsToHclTerraform(struct?: DnsSteeringPolicyTimeouts | cdktf.IResolvable): any;
export declare class DnsSteeringPolicyTimeoutsOutputReference 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(): DnsSteeringPolicyTimeouts | cdktf.IResolvable | undefined;
set internalValue(value: DnsSteeringPolicyTimeouts | 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/dns_steering_policy oci_dns_steering_policy}
*/
export declare class DnsSteeringPolicy extends cdktf.TerraformResource {
static readonly tfResourceType = "oci_dns_steering_policy";
/**
* Generates CDKTF code for importing a DnsSteeringPolicy 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 DnsSteeringPolicy to import
* @param importFromId The id of the existing DnsSteeringPolicy that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dns_steering_policy#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the DnsSteeringPolicy 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/dns_steering_policy oci_dns_steering_policy} 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 DnsSteeringPolicyConfig
*/
constructor(scope: Construct, id: string, config: DnsSteeringPolicyConfig);
private _compartmentId?;
get compartmentId(): string;
set compartmentId(value: string);
get compartmentIdInput(): string | undefined;
private _definedTags?;
get definedTags(): {
[key: string]: string;
};
set definedTags(value: {
[key: string]: string;
});
resetDefinedTags(): void;
get definedTagsInput(): {
[key: string]: string;
} | undefined;
private _displayName?;
get displayName(): string;
set displayName(value: string);
get displayNameInput(): string | undefined;
private _freeformTags?;
get freeformTags(): {
[key: string]: string;
};
set freeformTags(value: {
[key: string]: string;
});
resetFreeformTags(): void;
get freeformTagsInput(): {
[key: string]: string;
} | undefined;
private _healthCheckMonitorId?;
get healthCheckMonitorId(): string;
set healthCheckMonitorId(value: string);
resetHealthCheckMonitorId(): void;
get healthCheckMonitorIdInput(): string | undefined;
private _id?;
get id(): string;
set id(value: string);
resetId(): void;
get idInput(): string | undefined;
get selfAttribute(): string;
get state(): string;
private _template?;
get template(): string;
set template(value: string);
get templateInput(): string | undefined;
get timeCreated(): string;
private _ttl?;
get ttl(): number;
set ttl(value: number);
resetTtl(): void;
get ttlInput(): number | undefined;
private _answers;
get answers(): DnsSteeringPolicyAnswersList;
putAnswers(value: DnsSteeringPolicyAnswers[] | cdktf.IResolvable): void;
resetAnswers(): void;
get answersInput(): cdktf.IResolvable | DnsSteeringPolicyAnswers[] | undefined;
private _rules;
get rules(): DnsSteeringPolicyRulesList;
putRules(value: DnsSteeringPolicyRules[] | cdktf.IResolvable): void;
resetRules(): void;
get rulesInput(): cdktf.IResolvable | DnsSteeringPolicyRules[] | undefined;
private _timeouts;
get timeouts(): DnsSteeringPolicyTimeoutsOutputReference;
putTimeouts(value: DnsSteeringPolicyTimeouts): void;
resetTimeouts(): void;
get timeoutsInput(): cdktf.IResolvable | DnsSteeringPolicyTimeouts | undefined;
protected synthesizeAttributes(): {
[name: string]: any;
};
protected synthesizeHclAttributes(): {
[name: string]: any;
};
}