// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class DescribeVscsRequestTag extends $dara.Model { /** * @example * Environment */ key?: string; /** * @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 DescribeVscsRequest extends $dara.Model { /** * @example * i-bp67acfmxazb4ph**** */ instanceId?: string; /** * @example * 10 */ maxResults?: number; /** * @example * AAAAAdDWBF2 */ nextToken?: string; ownerAccount?: string; ownerId?: number; /** * @remarks * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; /** * @example * rg-bp67acfmxazb4p**** */ resourceGroupId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; /** * @example * Successful */ status?: string; tag?: DescribeVscsRequestTag[]; vscIds?: string[]; static names(): { [key: string]: string } { return { instanceId: 'InstanceId', maxResults: 'MaxResults', nextToken: 'NextToken', ownerAccount: 'OwnerAccount', ownerId: 'OwnerId', regionId: 'RegionId', resourceGroupId: 'ResourceGroupId', resourceOwnerAccount: 'ResourceOwnerAccount', resourceOwnerId: 'ResourceOwnerId', status: 'Status', tag: 'Tag', vscIds: 'VscIds', }; } static types(): { [key: string]: any } { return { instanceId: 'string', maxResults: 'number', nextToken: 'string', ownerAccount: 'string', ownerId: 'number', regionId: 'string', resourceGroupId: 'string', resourceOwnerAccount: 'string', resourceOwnerId: 'number', status: 'string', tag: { 'type': 'array', 'itemType': DescribeVscsRequestTag }, vscIds: { 'type': 'array', 'itemType': 'string' }, }; } validate() { if(Array.isArray(this.tag)) { $dara.Model.validateArray(this.tag); } if(Array.isArray(this.vscIds)) { $dara.Model.validateArray(this.vscIds); } super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }