// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class GetTraceAppRequestTags extends $dara.Model { /** * @remarks * The tag key. * * @example * TestKey */ key?: string; /** * @remarks * The tag value. * * @example * TestValue */ value?: string; static names(): { [key: string]: string } { return { key: 'Key', value: 'Value', }; } static types(): { [key: string]: any } { return { key: 'string', value: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } } export class GetTraceAppRequest extends $dara.Model { /** * @remarks * The process identifier (PID) of the application. For more information about how to obtain the PID, see [Obtain the PID of an application](https://www.alibabacloud.com/help/zh/doc-detail/186100.htm?spm=a2cdw.13409063.0.0.7a72281f0bkTfx#title-imy-7gj-qhr). * * This parameter is required. * * @example * b590lhguqs@d8deedfa9bf**** */ pid?: string; /** * @remarks * The region ID. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; /** * @remarks * The list of tags. */ tags?: GetTraceAppRequestTags[]; static names(): { [key: string]: string } { return { pid: 'Pid', regionId: 'RegionId', tags: 'Tags', }; } static types(): { [key: string]: any } { return { pid: 'string', regionId: 'string', tags: { 'type': 'array', 'itemType': GetTraceAppRequestTags }, }; } validate() { if(Array.isArray(this.tags)) { $dara.Model.validateArray(this.tags); } super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }