import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataIosxeServiceTemplateConfig 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/service_template#device DataIosxeServiceTemplate#device} */ readonly device?: string; /** * Specify a template name (maximum 48 characters) * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/service_template#name DataIosxeServiceTemplate#name} */ readonly name: string; } export interface DataIosxeServiceTemplateAccessGroups { } export declare function dataIosxeServiceTemplateAccessGroupsToTerraform(struct?: DataIosxeServiceTemplateAccessGroups): any; export declare function dataIosxeServiceTemplateAccessGroupsToHclTerraform(struct?: DataIosxeServiceTemplateAccessGroups): any; export declare class DataIosxeServiceTemplateAccessGroupsOutputReference 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(): DataIosxeServiceTemplateAccessGroups | undefined; set internalValue(value: DataIosxeServiceTemplateAccessGroups | undefined); get name(): any; } export declare class DataIosxeServiceTemplateAccessGroupsList 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): DataIosxeServiceTemplateAccessGroupsOutputReference; } export interface DataIosxeServiceTemplateInterfaceTemplates { } export declare function dataIosxeServiceTemplateInterfaceTemplatesToTerraform(struct?: DataIosxeServiceTemplateInterfaceTemplates): any; export declare function dataIosxeServiceTemplateInterfaceTemplatesToHclTerraform(struct?: DataIosxeServiceTemplateInterfaceTemplates): any; export declare class DataIosxeServiceTemplateInterfaceTemplatesOutputReference 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(): DataIosxeServiceTemplateInterfaceTemplates | undefined; set internalValue(value: DataIosxeServiceTemplateInterfaceTemplates | undefined); get name(): any; } export declare class DataIosxeServiceTemplateInterfaceTemplatesList 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): DataIosxeServiceTemplateInterfaceTemplatesOutputReference; } export interface DataIosxeServiceTemplateTags { } export declare function dataIosxeServiceTemplateTagsToTerraform(struct?: DataIosxeServiceTemplateTags): any; export declare function dataIosxeServiceTemplateTagsToHclTerraform(struct?: DataIosxeServiceTemplateTags): any; export declare class DataIosxeServiceTemplateTagsOutputReference 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(): DataIosxeServiceTemplateTags | undefined; set internalValue(value: DataIosxeServiceTemplateTags | undefined); get name(): any; } export declare class DataIosxeServiceTemplateTagsList 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): DataIosxeServiceTemplateTagsOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/service_template iosxe_service_template} */ export declare class DataIosxeServiceTemplate extends cdktf.TerraformDataSource { static readonly tfResourceType = "iosxe_service_template"; /** * Generates CDKTF code for importing a DataIosxeServiceTemplate 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 DataIosxeServiceTemplate to import * @param importFromId The id of the existing DataIosxeServiceTemplate that should be imported. Refer to the {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/service_template#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataIosxeServiceTemplate 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/service_template iosxe_service_template} 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 DataIosxeServiceTemplateConfig */ constructor(scope: Construct, id: string, config: DataIosxeServiceTemplateConfig); get absoluteTimer(): any; private _accessGroups; get accessGroups(): DataIosxeServiceTemplateAccessGroupsList; get description(): any; private _device?; get device(): string; set device(value: string); resetDevice(): void; get deviceInput(): string; get dnsAclPreauth(): any; get id(): any; get inactivityTimer(): any; get inactivityTimerProbe(): any; private _interfaceTemplates; get interfaceTemplates(): DataIosxeServiceTemplateInterfaceTemplatesList; get linksecPolicy(): any; get mdnsServicePolicy(): any; private _name?; get name(): string; set name(value: string); get nameInput(): string; get redirectAppendClientMac(): any; get redirectAppendSwitchMac(): any; get redirectUrl(): any; get redirectUrlMatchAcl(): any; get redirectUrlMatchAction(): any; get servicePolicyQosInput(): any; get servicePolicyQosOutput(): any; get sgt(): any; private _tags; get tags(): DataIosxeServiceTemplateTagsList; get tunnelCapwapName(): any; get vlan(): any; get vnid(): any; get voiceVlan(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }