import * as $dara from '@darabonba/typescript'; export declare class DescribeSnapshotLinksResponseBodySnapshotLinksSnapshotLink extends $dara.Model { category?: string; instanceId?: string; instanceName?: string; instantAccess?: boolean; regionId?: string; snapshotLinkId?: string; sourceDiskId?: string; sourceDiskName?: string; sourceDiskSize?: number; sourceDiskType?: string; totalCount?: number; totalSize?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeSnapshotLinksResponseBodySnapshotLinks extends $dara.Model { snapshotLink?: DescribeSnapshotLinksResponseBodySnapshotLinksSnapshotLink[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeSnapshotLinksResponseBody extends $dara.Model { /** * @remarks * A pagination token. It can be used in the next request to retrieve a new page of results. * * @example * caeba0bbb2be03f84eb48b699f0a**** */ nextToken?: string; /** * @remarks * The page number. * * @example * 1 */ pageNumber?: number; /** * @remarks * The number of entries per page. * * @example * 50 */ pageSize?: number; /** * @remarks * The request ID. * * @example * 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E */ requestId?: string; snapshotLinks?: DescribeSnapshotLinksResponseBodySnapshotLinks; /** * @remarks * The total number of snapshot chains. * * > When using the `MaxResults` and `NextToken` parameters for a paginated query, the returned `TotalCount` parameter value is invalid. * * @example * 9 */ totalCount?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }