// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; /** */ export class AddTagsRequestTag extends $dara.Model { /** * @remarks * The tag key of the resource. Valid values of N: 1 to 20. The tag key cannot be an empty string. The tag key can be up to 128 characters in length and cannot start with aliyun or acs:. The tag key cannot contain http:// or https://. * * @example * TestKey */ key?: string; /** * @remarks * The tag value of the resource. Valid values of N: 1 to 20. The tag value can be an empty string. The tag value can be up to 128 characters in length and cannot start with aliyun or acs:. The tag value cannot contain http:// or https://. * * @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 AddTagsRequest extends $dara.Model { ownerId?: number; /** * @remarks * The region ID of the resource. You can call [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) to query the most recent region list. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; /** * @remarks * The ID of the resource to which you want to add tags. For example, when ResourceType is set to instance, ResourceId is the instance ID. * * This parameter is required. * * @example * i-bp1gtjxuuvwj17zr**** */ resourceId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; /** * @remarks * The type of the resource. Valid values: * * - instance: ECS instance * - disk: cloud disk * - snapshot: snapshot * - image: image * - securitygroup: security group * - volume: storage volume * - eni: Elastic Network Interface (ENI) * - ddh: dedicated host * - keypair: SSH key pair * - launchtemplate: launch template * - reservedinstance: reserved instance * - snapshotpolicy: automatic snapshot policy * * All valid values are in lowercase. * * This parameter is required. * * @example * instance */ resourceType?: string; /** * @remarks * The tags. * * This parameter is required. */ tag?: AddTagsRequestTag[]; static names(): { [key: string]: string } { return { ownerId: 'OwnerId', regionId: 'RegionId', resourceId: 'ResourceId', resourceOwnerAccount: 'ResourceOwnerAccount', resourceOwnerId: 'ResourceOwnerId', resourceType: 'ResourceType', tag: 'Tag', }; } static types(): { [key: string]: any } { return { ownerId: 'number', regionId: 'string', resourceId: 'string', resourceOwnerAccount: 'string', resourceOwnerId: 'number', resourceType: 'string', tag: { 'type': 'array', 'itemType': AddTagsRequestTag }, }; } validate() { if(Array.isArray(this.tag)) { $dara.Model.validateArray(this.tag); } super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }