Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/clients/src/api/block/v1alpha1/api.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,7 @@ export class API extends ParentAPI {
request.pageSize ?? this.client.settings.defaultPageSize,
],
['project_id', request.projectId],
['tags', request.tags],
['volume_id', request.volumeId],
),
},
Expand Down
5 changes: 5 additions & 0 deletions packages/clients/src/api/block/v1alpha1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,11 @@ export type ListSnapshotsRequest = {
volumeId?: string
/** Filter snapshots by their names. */
name?: string
/**
* Filter by tags. Only snapshots with one or more matching tags will be
* returned.
*/
tags?: string[]
}

export interface ListSnapshotsResponse {
Expand Down
Loading