import * as $dara from '@darabonba/typescript'; export declare class DescribeCommandsResponseBodyCommandsCommandParameterDefinitionsParameterDefinitionPossibleValues extends $dara.Model { possibleValue?: string[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeCommandsResponseBodyCommandsCommandParameterDefinitionsParameterDefinition extends $dara.Model { defaultValue?: string; description?: string; parameterName?: string; patternRegex?: string; possibleValues?: DescribeCommandsResponseBodyCommandsCommandParameterDefinitionsParameterDefinitionPossibleValues; required?: boolean; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeCommandsResponseBodyCommandsCommandParameterDefinitions extends $dara.Model { parameterDefinition?: DescribeCommandsResponseBodyCommandsCommandParameterDefinitionsParameterDefinition[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeCommandsResponseBodyCommandsCommandParameterNames extends $dara.Model { parameterName?: string[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeCommandsResponseBodyCommandsCommandTagsTag extends $dara.Model { tagKey?: string; tagValue?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeCommandsResponseBodyCommandsCommandTags extends $dara.Model { tag?: DescribeCommandsResponseBodyCommandsCommandTagsTag[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeCommandsResponseBodyCommandsCommand extends $dara.Model { category?: string; commandContent?: string; commandId?: string; creationTime?: string; description?: string; enableParameter?: boolean; invokeTimes?: number; latest?: boolean; launcher?: string; name?: string; parameterDefinitions?: DescribeCommandsResponseBodyCommandsCommandParameterDefinitions; parameterNames?: DescribeCommandsResponseBodyCommandsCommandParameterNames; provider?: string; resourceGroupId?: string; tags?: DescribeCommandsResponseBodyCommandsCommandTags; timeout?: number; type?: string; version?: number; workingDir?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeCommandsResponseBodyCommands extends $dara.Model { command?: DescribeCommandsResponseBodyCommandsCommand[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeCommandsResponseBody extends $dara.Model { commands?: DescribeCommandsResponseBodyCommands; /** * @remarks * A pagination token. It can be used in the next request to retrieve a new page of results. * * @example * AAAAAdDWBF2 */ nextToken?: string; /** * @remarks * The page number. * * @example * 1 */ pageNumber?: number; /** * @remarks * The number of entries per page. * * @example * 10 */ pageSize?: number; /** * @remarks * The ID of the request. * * @example * 473469C7-AA6F-4DC5-B3DB-A3DC0DE3**** */ requestId?: string; /** * @remarks * The total number of commands. * * @example * 5 */ totalCount?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }