import * as $dara from '@darabonba/typescript'; export declare class DescribeSendFileResultsRequestTag extends $dara.Model { /** * @remarks * The key of tag N of the file sending task. Valid values of N: 1 to 20. The tag key cannot be an empty string. * * If a single tag is specified to query resources, up to 1,000 resources that have this tag added can be displayed in the response. If multiple tags are specified to query resources, up to 1,000 resources that have all the tags added can be displayed in the response. To query more than 1,000 resources that have specified tags, call the [ListTagResources](https://help.aliyun.com/document_detail/110425.html) operation. * * The tag key can be up to 64 characters in length and cannot contain `http://` or `https://`. The tag key cannot start with `acs:` or `aliyun`. * * @example * TestKey */ key?: string; /** * @remarks * The value of tag N of the file sending task. 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 contain `http://` or `https://`. * * @example * TestValue */ value?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeSendFileResultsRequest extends $dara.Model { /** * @remarks * The ID of the instance for which you want to query file sending records. * * @example * i-hz0jdfwd9f**** */ instanceId?: string; /** * @remarks * The overall sending status of the file. The overall sending status of the file varies based on the sending status of the file on all destination instances. Valid values: * * * Pending: The file is being verified or sent. If the sending state of the file on at least one instance is Pending, the overall sending state of the file is Pending. * * Running: The file is being sent to the instances. If the sending state of the file on at least one instance is Running, the overall sending state of the file is Running. * * Success: The file is sent. If the sending state of the file on all instances is Success, the overall sending state of the file is Success. * * Failed: The file fails to be sent. If the sending state of the file on all instances is Failed, the overall sending state of the file is Failed. * * PartialFailed: The file sending task succeeds on some instances and fails on other instances. If the sending state of the file is Success on some instances and is Failed on other instances, the overall sending state of the file is PartialFailed. * * @example * Success */ invocationStatus?: string; /** * @remarks * The ID of the file sending task. * * @example * f-hz0jdfwd9f**** */ invokeId?: string; /** * @remarks * The maximum number of entries per page. * * Valid values: 1 to 50. * * Default value: 10. * * @example * 10 */ maxResults?: number; /** * @remarks * The name of the file whose sending records you want to query. * * @example * test.txt */ name?: string; /** * @remarks * The pagination token that is used in the next request to retrieve a new page of results. You must specify the token that is obtained from the previous query as the value of NextToken. * * @example * AAAAAdDWBF2 */ nextToken?: string; ownerAccount?: string; ownerId?: number; /** * @remarks * > This parameter will be removed in the future. We recommend that you use NextToken and MaxResults for a paged query. * * @example * 1 */ pageNumber?: number; /** * @remarks * > This parameter will be removed in the future. We recommend that you use NextToken and MaxResults for a paged query. * * @example * 10 */ pageSize?: number; /** * @remarks * The region ID of the ECS instance. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation to query the most recent region list. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; /** * @remarks * The ID of the resource group. After you set this parameter, file sending results in the specified resource group are queried. * * @example * rg-bp67acfmxazb4p**** */ resourceGroupId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; /** * @remarks * The tags of the file sending task. */ tag?: DescribeSendFileResultsRequestTag[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }