// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class DescribeTemplatesRequest extends $dara.Model { /** * @remarks * The page number to return when paginating query results. * * Default value: 1. * * @example * 1 */ pageNum?: number; /** * @remarks * The number of entries per page when paginating query results. * * Default value: 10. * * @example * 10 */ pageSize?: number; /** * @remarks * The templatetype. * * - If the value is set to `kubernetes`, the template is displayed on the Orchestration Templates page in the console. * * - If this parameter is left empty or set to other values, the template is not displayed on the Orchestration Templates page in the console. * * Set this parameter to `kubernetes`. * * @example * kubernetes */ templateType?: string; static names(): { [key: string]: string } { return { pageNum: 'page_num', pageSize: 'page_size', templateType: 'template_type', }; } static types(): { [key: string]: any } { return { pageNum: 'number', pageSize: 'number', templateType: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }