Skip to content

Commit 868b66f

Browse files
authored
docs(instance): add documentation on ListSnapshotsRequest (#878)
1 parent 274332e commit 868b66f

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

packages/clients/src/api/instance/v1/types.gen.ts

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1174,12 +1174,22 @@ export type DeleteImageRequest = {
11741174
export type ListSnapshotsRequest = {
11751175
/** Zone to target. If none is passed will use default zone from the config. */
11761176
zone?: Zone
1177+
/** List snapshots only for this Organization ID. */
11771178
organization?: string
1179+
/** List snapshots only for this Project ID. */
1180+
project?: string
1181+
/**
1182+
* Number of snapshots returned per page (positive integer lower or equal to
1183+
* 100).
1184+
*/
11781185
perPage?: number
1186+
/** Page to be returned. */
11791187
page?: number
1188+
/** List snapshots of the requested name. */
11801189
name?: string
1181-
project?: string
1190+
/** List snapshots that have the requested tag. */
11821191
tags?: string
1192+
/** List snapshots originating only from this volume. */
11831193
baseVolumeId?: string
11841194
}
11851195

0 commit comments

Comments
 (0)