File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed
packages/clients/src/api/serverless_sqldb/v1alpha1 Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff 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 ,
Original file line number Diff line number Diff 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. */
You can’t perform that action at this time.
0 commit comments