import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataIosxeClassMapConfig 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/class_map#device DataIosxeClassMap#device} */ readonly device?: string; /** * name of the class map * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/class_map#name DataIosxeClassMap#name} */ readonly name: string; } export interface DataIosxeClassMapMatchActivatedServiceTemplates { } export declare function dataIosxeClassMapMatchActivatedServiceTemplatesToTerraform(struct?: DataIosxeClassMapMatchActivatedServiceTemplates): any; export declare function dataIosxeClassMapMatchActivatedServiceTemplatesToHclTerraform(struct?: DataIosxeClassMapMatchActivatedServiceTemplates): any; export declare class DataIosxeClassMapMatchActivatedServiceTemplatesOutputReference 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(): DataIosxeClassMapMatchActivatedServiceTemplates | undefined; set internalValue(value: DataIosxeClassMapMatchActivatedServiceTemplates | undefined); get serviceName(): any; } export declare class DataIosxeClassMapMatchActivatedServiceTemplatesList 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): DataIosxeClassMapMatchActivatedServiceTemplatesOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/class_map iosxe_class_map} */ export declare class DataIosxeClassMap extends cdktf.TerraformDataSource { static readonly tfResourceType = "iosxe_class_map"; /** * Generates CDKTF code for importing a DataIosxeClassMap 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 DataIosxeClassMap to import * @param importFromId The id of the existing DataIosxeClassMap that should be imported. Refer to the {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/class_map#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataIosxeClassMap 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/class_map iosxe_class_map} 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 DataIosxeClassMapConfig */ constructor(scope: Construct, id: string, config: DataIosxeClassMapConfig); get description(): any; private _device?; get device(): string; set device(value: string); resetDevice(): void; get deviceInput(): string; get id(): any; get matchAccessGroupName(): any; private _matchActivatedServiceTemplates; get matchActivatedServiceTemplates(): DataIosxeClassMapMatchActivatedServiceTemplatesList; get matchAuthorizationStatusAuthorized(): any; get matchAuthorizationStatusUnauthorized(): any; get matchAuthorizingMethodPriorityGreaterThan(): any; get matchCos(): any; get matchDscp(): any; get matchIpDscp(): any; get matchIpPrecedence(): any; get matchMethodDot1X(): any; get matchMethodMab(): any; get matchResultTypeAaaTimeout(): any; get matchResultTypeMethodDot1XAgentNotFound(): any; get matchResultTypeMethodDot1XAuthoritative(): any; get matchResultTypeMethodDot1XMethodTimeout(): any; get matchResultTypeMethodMabAuthoritative(): any; private _name?; get name(): string; set name(value: string); get nameInput(): string; get prematch(): any; get subscriber(): any; get type(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }