import * as $dara from '@darabonba/typescript'; export declare class DescribeSnapshotGroupsRequestTag extends $dara.Model { /** * @remarks * The tag key of the snapshot-consistent group. Valid values of N: 1 to 20. * * @example * TestKey */ key?: string; /** * @remarks * The tag value 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 instance ID. * * @example * i-j6ca469urv8ei629**** */ instanceId?: string; /** * @remarks * The maximum number of entries per page in a paging query. * * Maximum value: 100. * * Default value: 10. * * @example * 10 */ maxResults?: number; /** * @remarks * The name of the snapshot-consistent group. * * @example * testName */ name?: string; /** * @remarks * The pagination token. Set this parameter to the NextToken value returned in the previous API call. * * @example * caeba0bbb2be03f84eb48b699f0a4883 */ nextToken?: string; ownerAccount?: string; ownerId?: number; /** * @remarks * The region ID. 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 group to which the snapshot-consistent group belongs. * * @example * rg-bp67acfmxazb4p**** */ resourceGroupId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; /** * @remarks * The ID of the snapshot-consistent group. Valid values of N: 1 to 10. * * @example * ssg-j6ciyh3k52qp7ovm**** */ snapshotGroupId?: string[]; /** * @remarks * The status of the snapshot-consistent group. Valid values of N: 1 to 3. Valid values: * * - progressing: The snapshot-consistent group is being created. * * - accomplished: The snapshot-consistent group is created. * * - failed: The snapshot-consistent group failed to be created. * * @example * accomplished */ status?: string[]; /** * @remarks * The tag key-value pairs of the snapshot-consistent group. */ tag?: DescribeSnapshotGroupsRequestTag[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }