Skip to content

Commit 9951323

Browse files
authored
fix(serverless_sqldb): restore fields in messages (#1095)
1 parent 359c80c commit 9951323

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

packages/clients/src/api/serverless_sqldb/v1alpha1/api.gen.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,7 @@ export class API extends ParentAPI {
142142
urlParams: urlParams(
143143
['name', request.name],
144144
['order_by', request.orderBy],
145+
['organization_id', request.organizationId],
145146
['page', request.page],
146147
['page_size', request.pageSize],
147148
[
@@ -254,8 +255,10 @@ export class API extends ParentAPI {
254255
urlParams: urlParams(
255256
['database_id', request.databaseId],
256257
['order_by', request.orderBy],
258+
['organization_id', request.organizationId],
257259
['page', request.page],
258260
['page_size', request.pageSize],
261+
['project_id', request.projectId],
259262
),
260263
},
261264
unmarshalListDatabaseBackupsResponse,

packages/clients/src/api/serverless_sqldb/v1alpha1/types.gen.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,10 @@ export type ListDatabaseBackupsRequest = {
151151
* config.
152152
*/
153153
region?: Region
154+
/** Filter by the UUID of the Scaleway organization. */
155+
organizationId?: string
156+
/** Filter by the UUID of the Scaleway project. */
157+
projectId?: string
154158
/** Filter by the UUID of the Serverless SQL Database. */
155159
databaseId: string
156160
/** Page number. */
@@ -174,6 +178,8 @@ export type ListDatabasesRequest = {
174178
* config.
175179
*/
176180
region?: Region
181+
/** Filter by the UUID of the Scaleway organization. */
182+
organizationId?: string
177183
/** UUID of the Scaleway project. */
178184
projectId?: string
179185
/** Page number. */

0 commit comments

Comments
 (0)