import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface CryptoIkev2PolicyConfig extends cdktf.TerraformMetaArguments { /** * A device name from the provider configuration. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/crypto_ikev2_policy#device CryptoIkev2Policy#device} */ readonly device?: string; /** * Local address * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/crypto_ikev2_policy#match_address_local_ip CryptoIkev2Policy#match_address_local_ip} */ readonly matchAddressLocalIp?: string[]; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/crypto_ikev2_policy#match_fvrf CryptoIkev2Policy#match_fvrf} */ readonly matchFvrf?: string; /** * Any fvrf * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/crypto_ikev2_policy#match_fvrf_any CryptoIkev2Policy#match_fvrf_any} */ readonly matchFvrfAny?: boolean | cdktf.IResolvable; /** * inbound only for controller * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/crypto_ikev2_policy#match_inbound_only CryptoIkev2Policy#match_inbound_only} */ readonly matchInboundOnly?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/crypto_ikev2_policy#name CryptoIkev2Policy#name} */ readonly name: string; /** * Specify Proposal * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/crypto_ikev2_policy#proposals CryptoIkev2Policy#proposals} */ readonly proposals: CryptoIkev2PolicyProposals[] | cdktf.IResolvable; } export interface CryptoIkev2PolicyProposals { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/crypto_ikev2_policy#proposals CryptoIkev2Policy#proposals} */ readonly proposals: string; } export declare function cryptoIkev2PolicyProposalsToTerraform(struct?: CryptoIkev2PolicyProposals | cdktf.IResolvable): any; export declare function cryptoIkev2PolicyProposalsToHclTerraform(struct?: CryptoIkev2PolicyProposals | cdktf.IResolvable): any; export declare class CryptoIkev2PolicyProposalsOutputReference 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(): CryptoIkev2PolicyProposals | cdktf.IResolvable | undefined; set internalValue(value: CryptoIkev2PolicyProposals | cdktf.IResolvable | undefined); private _proposals?; get proposals(): string; set proposals(value: string); get proposalsInput(): string; } export declare class CryptoIkev2PolicyProposalsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: CryptoIkev2PolicyProposals[] | 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): CryptoIkev2PolicyProposalsOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/crypto_ikev2_policy iosxe_crypto_ikev2_policy} */ export declare class CryptoIkev2Policy extends cdktf.TerraformResource { static readonly tfResourceType = "iosxe_crypto_ikev2_policy"; /** * Generates CDKTF code for importing a CryptoIkev2Policy resource upon running "cdktf plan " * @param scope The scope in which to define this construct * @param importToId The construct id used in the generated config for the CryptoIkev2Policy to import * @param importFromId The id of the existing CryptoIkev2Policy that should be imported. Refer to the {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/crypto_ikev2_policy#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the CryptoIkev2Policy to import is found */ static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any; /** * Create a new {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/crypto_ikev2_policy iosxe_crypto_ikev2_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 CryptoIkev2PolicyConfig */ constructor(scope: Construct, id: string, config: CryptoIkev2PolicyConfig); private _device?; get device(): string; set device(value: string); resetDevice(): void; get deviceInput(): string; get id(): any; private _matchAddressLocalIp?; get matchAddressLocalIp(): string[]; set matchAddressLocalIp(value: string[]); resetMatchAddressLocalIp(): void; get matchAddressLocalIpInput(): string[]; private _matchFvrf?; get matchFvrf(): string; set matchFvrf(value: string); resetMatchFvrf(): void; get matchFvrfInput(): string; private _matchFvrfAny?; get matchFvrfAny(): boolean | cdktf.IResolvable; set matchFvrfAny(value: boolean | cdktf.IResolvable); resetMatchFvrfAny(): void; get matchFvrfAnyInput(): any; private _matchInboundOnly?; get matchInboundOnly(): boolean | cdktf.IResolvable; set matchInboundOnly(value: boolean | cdktf.IResolvable); resetMatchInboundOnly(): void; get matchInboundOnlyInput(): any; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _proposals; get proposals(): CryptoIkev2PolicyProposalsList; putProposals(value: CryptoIkev2PolicyProposals[] | cdktf.IResolvable): void; get proposalsInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }