We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfaaaf0 commit a699f05Copy full SHA for a699f05
packages/clients/src/api/block/v1alpha1/api.gen.ts
@@ -243,6 +243,7 @@ export class API extends ParentAPI {
243
request.pageSize ?? this.client.settings.defaultPageSize,
244
],
245
['project_id', request.projectId],
246
+ ['tags', request.tags],
247
['volume_id', request.volumeId],
248
),
249
},
packages/clients/src/api/block/v1alpha1/types.gen.ts
@@ -321,6 +321,11 @@ export type ListSnapshotsRequest = {
321
volumeId?: string
322
/** Filter snapshots by their names. */
323
name?: string
324
+ /**
325
+ * Filter by tags. Only snapshots with one or more matching tags will be
326
+ * returned.
327
+ */
328
+ tags?: string[]
329
}
330
331
export interface ListSnapshotsResponse {
0 commit comments