import * as $dara from '@darabonba/typescript'; export declare class DescribeSnapshotGroupsRequestTag extends $dara.Model { /** * @remarks * The key of tag N of the snapshot-consistent group. Valid values of N: 1 to 20. * * @example * TestKey */ key?: string; /** * @remarks * The value of tag N of the snapshot-consistent group. Valid values of N: 1 to 20. * * @example * TestValue */ value?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeSnapshotGroupsRequest extends $dara.Model { /** * @remarks * This parameter is not publicly available. * * @example * hide */ additionalAttributes?: string[]; /** * @remarks * The ID of the instance. * * @example * i-j6ca469urv8ei629**** */ instanceId?: string; /** * @remarks * The maximum number of entries per page. * * Valid values: 1 to 100. * * Default value: 10. * * @example * 10 */ maxResults?: number; /** * @remarks * The name of the snapshot-consistent group. * * @example * testName */ name?: string; /** * @remarks * The token that determines the start point of the next query. Set the value to the NextToken value that is returned from the last call. * * @example * caeba0bbb2be03f84eb48b699f0a4883 */ nextToken?: string; ownerAccount?: string; ownerId?: number; /** * @remarks * The region ID of the snapshot-consistent group. 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 to which the snapshot-consistent group belongs. * * @example * rg-bp67acfmxazb4p**** */ resourceGroupId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; /** * @remarks * The ID of snapshot-consistent group N. Valid values of N: 1 to 10. * * @example * ssg-j6ciyh3k52qp7ovm**** */ snapshotGroupId?: string[]; /** * @remarks * The state of snapshot-consistent group N. Valid values of the second N: 1, 2, and 3. Valid values: * * * progressing: The snapshot-consistent group is being created. * * accomplished: The snapshot-consistent group is created. * * failed: The snapshot-consistent group fails to be created. * * @example * accomplished */ status?: string[]; /** * @remarks * The tags of the snapshot-consistent group. */ tag?: DescribeSnapshotGroupsRequestTag[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }