import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataIosxePolicyMapEventConfig 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/data-sources/policy_map_event#device DataIosxePolicyMapEvent#device} */ readonly device?: string; /** * The event this control class-map triggers upon * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/policy_map_event#event_type DataIosxePolicyMapEvent#event_type} */ readonly eventType: string; /** * Name of the policy map * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/policy_map_event#name DataIosxePolicyMapEvent#name} */ readonly name: string; } export interface DataIosxePolicyMapEventClassNumbersActionNumbers { } export declare function dataIosxePolicyMapEventClassNumbersActionNumbersToTerraform(struct?: DataIosxePolicyMapEventClassNumbersActionNumbers): any; export declare function dataIosxePolicyMapEventClassNumbersActionNumbersToHclTerraform(struct?: DataIosxePolicyMapEventClassNumbersActionNumbers): any; export declare class DataIosxePolicyMapEventClassNumbersActionNumbersOutputReference 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(): DataIosxePolicyMapEventClassNumbersActionNumbers | undefined; set internalValue(value: DataIosxePolicyMapEventClassNumbersActionNumbers | undefined); get activateInterfaceTemplate(): any; get activatePolicyTypeControlSubscriber(): any; get activateServiceTemplateConfigAaaList(): any; get activateServiceTemplateConfigPrecedence(): any; get activateServiceTemplateConfigReplaceAll(): any; get activateServiceTemplateConfigServiceTemplate(): any; get authenticateUsingAaaAuthcList(): any; get authenticateUsingAaaAuthzList(): any; get authenticateUsingBoth(): any; get authenticateUsingMethod(): any; get authenticateUsingParameterMap(): any; get authenticateUsingPriority(): any; get authenticateUsingRetries(): any; get authenticateUsingRetryTime(): any; get authenticationRestart(): any; get authorize(): any; get clearAuthenticatedDataHostsOnPort(): any; get clearSession(): any; get deactivateInterfaceTemplate(): any; get deactivatePolicyTypeControlSubscriber(): any; get deactivateServiceTemplate(): any; get errDisable(): any; get mapAttributeToServiceTable(): any; get notify(): any; get number(): any; get pauseReauthentication(): any; get protect(): any; get replace(): any; get restrict(): any; get resumeReauthentication(): any; get setDomain(): any; get setTimerName(): any; get setTimerValue(): any; get terminateConfig(): any; get unauthorize(): any; } export declare class DataIosxePolicyMapEventClassNumbersActionNumbersList 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): DataIosxePolicyMapEventClassNumbersActionNumbersOutputReference; } export interface DataIosxePolicyMapEventClassNumbers { } export declare function dataIosxePolicyMapEventClassNumbersToTerraform(struct?: DataIosxePolicyMapEventClassNumbers): any; export declare function dataIosxePolicyMapEventClassNumbersToHclTerraform(struct?: DataIosxePolicyMapEventClassNumbers): any; export declare class DataIosxePolicyMapEventClassNumbersOutputReference 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(): DataIosxePolicyMapEventClassNumbers | undefined; set internalValue(value: DataIosxePolicyMapEventClassNumbers | undefined); private _actionNumbers; get actionNumbers(): DataIosxePolicyMapEventClassNumbersActionNumbersList; get class(): any; get executionType(): any; get number(): any; } export declare class DataIosxePolicyMapEventClassNumbersList 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): DataIosxePolicyMapEventClassNumbersOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/policy_map_event iosxe_policy_map_event} */ export declare class DataIosxePolicyMapEvent extends cdktf.TerraformDataSource { static readonly tfResourceType = "iosxe_policy_map_event"; /** * Generates CDKTF code for importing a DataIosxePolicyMapEvent 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 DataIosxePolicyMapEvent to import * @param importFromId The id of the existing DataIosxePolicyMapEvent that should be imported. Refer to the {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/policy_map_event#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataIosxePolicyMapEvent 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/data-sources/policy_map_event iosxe_policy_map_event} 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 DataIosxePolicyMapEventConfig */ constructor(scope: Construct, id: string, config: DataIosxePolicyMapEventConfig); private _classNumbers; get classNumbers(): DataIosxePolicyMapEventClassNumbersList; private _device?; get device(): string; set device(value: string); resetDevice(): void; get deviceInput(): string; private _eventType?; get eventType(): string; set eventType(value: string); get eventTypeInput(): string; get id(): any; get matchType(): any; private _name?; get name(): string; set name(value: string); get nameInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }