Skip to content

Commit 9891646

Browse files
authored
chore(instance): remove field export_uri on the Instance API (#2554)
1 parent abd8344 commit 9891646

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

packages_generated/instance/src/v1/marshalling.gen.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,6 @@ const unmarshalVolume = (data: unknown): Volume => {
213213

214214
return {
215215
creationDate: unmarshalDate(data.creation_date),
216-
exportUri: data.export_uri,
217216
id: data.id,
218217
modificationDate: unmarshalDate(data.modification_date),
219218
name: data.name,
@@ -2067,7 +2066,6 @@ const marshalVolume = (
20672066
defaults: DefaultValues,
20682067
): Record<string, unknown> => ({
20692068
creation_date: request.creationDate,
2070-
export_uri: request.exportUri,
20712069
id: request.id,
20722070
modification_date: request.modificationDate,
20732071
name: request.name,

packages_generated/instance/src/v1/types.gen.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -171,10 +171,6 @@ export interface Volume {
171171
* Volume name.
172172
*/
173173
name: string
174-
/**
175-
* @deprecated Show the volume NBD export URI.
176-
*/
177-
exportUri?: string
178174
/**
179175
* Volume disk size.
180176
*/

0 commit comments

Comments
 (0)