File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed
packages/clients/src/api/instance/v1 Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -1174,12 +1174,22 @@ export type DeleteImageRequest = {
11741174export 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
You can’t perform that action at this time.
0 commit comments