@scaleway/sdk 2.63.0 → 2.64.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/dist/api/applesilicon/v1alpha1/api.gen.d.ts +3 -3
  2. package/dist/api/applesilicon/v1alpha1/types.gen.d.ts +20 -20
  3. package/dist/api/edge_services/v1alpha1/types.gen.d.ts +3 -3
  4. package/dist/api/iam/v1alpha1/index.gen.d.ts +1 -1
  5. package/dist/api/iam/v1alpha1/marshalling.gen.cjs +16 -0
  6. package/dist/api/iam/v1alpha1/marshalling.gen.js +16 -0
  7. package/dist/api/iam/v1alpha1/types.gen.d.ts +48 -4
  8. package/dist/api/iam/v1alpha1/validation-rules.gen.cjs +7 -3
  9. package/dist/api/iam/v1alpha1/validation-rules.gen.d.ts +6 -3
  10. package/dist/api/iam/v1alpha1/validation-rules.gen.js +7 -3
  11. package/dist/api/inference/v1beta1/api.gen.d.ts +2 -2
  12. package/dist/api/inference/v1beta1/types.gen.d.ts +21 -21
  13. package/dist/api/instance/v1/api.gen.d.ts +2 -2
  14. package/dist/api/instance/v1/types.gen.d.ts +87 -87
  15. package/dist/api/instance/v1/types.private.gen.d.ts +5 -5
  16. package/dist/api/interlink/v1beta1/api.gen.cjs +5 -1
  17. package/dist/api/interlink/v1beta1/api.gen.d.ts +2 -2
  18. package/dist/api/interlink/v1beta1/api.gen.js +5 -1
  19. package/dist/api/interlink/v1beta1/marshalling.gen.cjs +1 -0
  20. package/dist/api/interlink/v1beta1/marshalling.gen.js +1 -0
  21. package/dist/api/interlink/v1beta1/types.gen.d.ts +29 -24
  22. package/dist/api/vpc/v2/api.gen.cjs +5 -21
  23. package/dist/api/vpc/v2/api.gen.d.ts +3 -13
  24. package/dist/api/vpc/v2/api.gen.js +6 -22
  25. package/dist/api/vpc/v2/index.gen.d.ts +1 -1
  26. package/dist/api/vpc/v2/marshalling.gen.cjs +0 -16
  27. package/dist/api/vpc/v2/marshalling.gen.d.ts +1 -2
  28. package/dist/api/vpc/v2/marshalling.gen.js +1 -17
  29. package/dist/api/vpc/v2/types.gen.d.ts +24 -49
  30. package/dist/api/webhosting/v1/api.gen.cjs +40 -8
  31. package/dist/api/webhosting/v1/api.gen.d.ts +9 -9
  32. package/dist/api/webhosting/v1/api.gen.js +40 -8
  33. package/dist/api/webhosting/v1/types.gen.d.ts +36 -36
  34. package/dist/api/webhosting/v1alpha1/api.gen.cjs +5 -1
  35. package/dist/api/webhosting/v1alpha1/api.gen.d.ts +3 -3
  36. package/dist/api/webhosting/v1alpha1/api.gen.js +5 -1
  37. package/dist/api/webhosting/v1alpha1/types.gen.d.ts +19 -19
  38. package/dist/scw/constants.cjs +1 -1
  39. package/dist/scw/constants.d.ts +2 -2
  40. package/dist/scw/constants.js +1 -1
  41. package/package.json +2 -2
@@ -1,4 +1,4 @@
1
- import type { Money, Region } from '../../../bridge';
1
+ import type { Money, Region as ScwRegion } from '../../../bridge';
2
2
  import type { LanguageCode as StdLanguageCode } from '../../std/types.gen';
3
3
  export type DnsRecordStatus = 'unknown_status' | 'valid' | 'invalid';
4
4
  export type DnsRecordType = 'unknown_type' | 'a' | 'cname' | 'mx' | 'txt' | 'ns' | 'aaaa';
@@ -195,7 +195,7 @@ export interface HostingSummary {
195
195
  /** Name of the active offer for the Web Hosting plan. */
196
196
  offerName: string;
197
197
  /** Region where the Web Hosting plan is hosted. */
198
- region: Region;
198
+ region: ScwRegion;
199
199
  }
200
200
  export interface MailAccount {
201
201
  /** Domain part of the mail account address. */
@@ -220,7 +220,7 @@ export type ControlPanelApiListControlPanelsRequest = {
220
220
  * Region to target. If none is passed will use default region from the
221
221
  * config.
222
222
  */
223
- region?: Region;
223
+ region?: ScwRegion;
224
224
  /** Page number (must be a positive integer). */
225
225
  page?: number;
226
226
  /**
@@ -234,7 +234,7 @@ export type DatabaseApiAssignDatabaseUserRequest = {
234
234
  * Region to target. If none is passed will use default region from the
235
235
  * config.
236
236
  */
237
- region?: Region;
237
+ region?: ScwRegion;
238
238
  /** UUID of the hosting plan. */
239
239
  hostingId: string;
240
240
  /** Name of the database to be assigned. */
@@ -247,7 +247,7 @@ export type DatabaseApiChangeDatabaseUserPasswordRequest = {
247
247
  * Region to target. If none is passed will use default region from the
248
248
  * config.
249
249
  */
250
- region?: Region;
250
+ region?: ScwRegion;
251
251
  /** UUID of the hosting plan. */
252
252
  hostingId: string;
253
253
  /** Name of the user to update. */
@@ -260,7 +260,7 @@ export type DatabaseApiCreateDatabaseRequest = {
260
260
  * Region to target. If none is passed will use default region from the
261
261
  * config.
262
262
  */
263
- region?: Region;
263
+ region?: ScwRegion;
264
264
  /** UUID of the hosting plan where the database will be created. */
265
265
  hostingId: string;
266
266
  /** Name of the database to be created. */
@@ -283,7 +283,7 @@ export type DatabaseApiCreateDatabaseUserRequest = {
283
283
  * Region to target. If none is passed will use default region from the
284
284
  * config.
285
285
  */
286
- region?: Region;
286
+ region?: ScwRegion;
287
287
  /** UUID of the hosting plan. */
288
288
  hostingId: string;
289
289
  /** Name of the user to create. */
@@ -296,7 +296,7 @@ export type DatabaseApiDeleteDatabaseRequest = {
296
296
  * Region to target. If none is passed will use default region from the
297
297
  * config.
298
298
  */
299
- region?: Region;
299
+ region?: ScwRegion;
300
300
  /** UUID of the hosting plan. */
301
301
  hostingId: string;
302
302
  /** Name of the database to delete. */
@@ -307,7 +307,7 @@ export type DatabaseApiDeleteDatabaseUserRequest = {
307
307
  * Region to target. If none is passed will use default region from the
308
308
  * config.
309
309
  */
310
- region?: Region;
310
+ region?: ScwRegion;
311
311
  /** UUID of the hosting plan. */
312
312
  hostingId: string;
313
313
  /** Name of the database user to delete. */
@@ -318,7 +318,7 @@ export type DatabaseApiGetDatabaseRequest = {
318
318
  * Region to target. If none is passed will use default region from the
319
319
  * config.
320
320
  */
321
- region?: Region;
321
+ region?: ScwRegion;
322
322
  /** UUID of the hosting plan. */
323
323
  hostingId: string;
324
324
  /** Name of the database. */
@@ -329,7 +329,7 @@ export type DatabaseApiGetDatabaseUserRequest = {
329
329
  * Region to target. If none is passed will use default region from the
330
330
  * config.
331
331
  */
332
- region?: Region;
332
+ region?: ScwRegion;
333
333
  /** UUID of the hosting plan. */
334
334
  hostingId: string;
335
335
  /** Name of the database user to retrieve details. */
@@ -340,7 +340,7 @@ export type DatabaseApiListDatabaseUsersRequest = {
340
340
  * Region to target. If none is passed will use default region from the
341
341
  * config.
342
342
  */
343
- region?: Region;
343
+ region?: ScwRegion;
344
344
  /** UUID of the hosting plan. */
345
345
  hostingId: string;
346
346
  /** Page number (must be a positive integer). */
@@ -358,7 +358,7 @@ export type DatabaseApiListDatabasesRequest = {
358
358
  * Region to target. If none is passed will use default region from the
359
359
  * config.
360
360
  */
361
- region?: Region;
361
+ region?: ScwRegion;
362
362
  /** UUID of the hosting plan. */
363
363
  hostingId: string;
364
364
  /** Page number (must be a positive integer). */
@@ -376,7 +376,7 @@ export type DatabaseApiUnassignDatabaseUserRequest = {
376
376
  * Region to target. If none is passed will use default region from the
377
377
  * config.
378
378
  */
379
- region?: Region;
379
+ region?: ScwRegion;
380
380
  /** UUID of the hosting plan. */
381
381
  hostingId: string;
382
382
  /** Name of the database to be unassigned. */
@@ -389,7 +389,7 @@ export type DnsApiCheckUserOwnsDomainRequest = {
389
389
  * Region to target. If none is passed will use default region from the
390
390
  * config.
391
391
  */
392
- region?: Region;
392
+ region?: ScwRegion;
393
393
  /** Domain for which ownership is to be verified. */
394
394
  domain: string;
395
395
  /** ID of the project currently in use. */
@@ -400,7 +400,7 @@ export type DnsApiGetDomainDnsRecordsRequest = {
400
400
  * Region to target. If none is passed will use default region from the
401
401
  * config.
402
402
  */
403
- region?: Region;
403
+ region?: ScwRegion;
404
404
  /** Domain associated with the DNS records. */
405
405
  domain: string;
406
406
  };
@@ -409,7 +409,7 @@ export type DnsApiSyncDomainDnsRecordsRequest = {
409
409
  * Region to target. If none is passed will use default region from the
410
410
  * config.
411
411
  */
412
- region?: Region;
412
+ region?: ScwRegion;
413
413
  /** Domain for which the DNS records will be synchronized. */
414
414
  domain: string;
415
415
  /** Whether or not to synchronize the web records. */
@@ -434,7 +434,7 @@ export type FtpAccountApiChangeFtpAccountPasswordRequest = {
434
434
  * Region to target. If none is passed will use default region from the
435
435
  * config.
436
436
  */
437
- region?: Region;
437
+ region?: ScwRegion;
438
438
  /** UUID of the hosting plan. */
439
439
  hostingId: string;
440
440
  /** Username of the FTP account. */
@@ -447,7 +447,7 @@ export type FtpAccountApiCreateFtpAccountRequest = {
447
447
  * Region to target. If none is passed will use default region from the
448
448
  * config.
449
449
  */
450
- region?: Region;
450
+ region?: ScwRegion;
451
451
  /** UUID of the hosting plan. */
452
452
  hostingId: string;
453
453
  /** Username for the new FTP account. */
@@ -462,7 +462,7 @@ export type FtpAccountApiListFtpAccountsRequest = {
462
462
  * Region to target. If none is passed will use default region from the
463
463
  * config.
464
464
  */
465
- region?: Region;
465
+ region?: ScwRegion;
466
466
  /** UUID of the hosting plan. */
467
467
  hostingId: string;
468
468
  /** Page number (must be a positive integer). */
@@ -482,7 +482,7 @@ export type FtpAccountApiRemoveFtpAccountRequest = {
482
482
  * Region to target. If none is passed will use default region from the
483
483
  * config.
484
484
  */
485
- region?: Region;
485
+ region?: ScwRegion;
486
486
  /** UUID of the hosting plan. */
487
487
  hostingId: string;
488
488
  /** Username of the FTP account to be deleted. */
@@ -516,14 +516,14 @@ export interface Hosting {
516
516
  /** Details of the hosting user. */
517
517
  user?: HostingUser;
518
518
  /** Region where the Web Hosting plan is hosted. */
519
- region: Region;
519
+ region: ScwRegion;
520
520
  }
521
521
  export type HostingApiCreateHostingRequest = {
522
522
  /**
523
523
  * Region to target. If none is passed will use default region from the
524
524
  * config.
525
525
  */
526
- region?: Region;
526
+ region?: ScwRegion;
527
527
  /** ID of the selected offer for the Web Hosting plan. */
528
528
  offerId: string;
529
529
  /** ID of the Scaleway Project in which to create the Web Hosting plan. */
@@ -557,7 +557,7 @@ export type HostingApiCreateSessionRequest = {
557
557
  * Region to target. If none is passed will use default region from the
558
558
  * config.
559
559
  */
560
- region?: Region;
560
+ region?: ScwRegion;
561
561
  /** Hosting ID. */
562
562
  hostingId: string;
563
563
  };
@@ -566,7 +566,7 @@ export type HostingApiDeleteHostingRequest = {
566
566
  * Region to target. If none is passed will use default region from the
567
567
  * config.
568
568
  */
569
- region?: Region;
569
+ region?: ScwRegion;
570
570
  /** Hosting ID. */
571
571
  hostingId: string;
572
572
  };
@@ -575,7 +575,7 @@ export type HostingApiGetHostingRequest = {
575
575
  * Region to target. If none is passed will use default region from the
576
576
  * config.
577
577
  */
578
- region?: Region;
578
+ region?: ScwRegion;
579
579
  /** Hosting ID. */
580
580
  hostingId: string;
581
581
  };
@@ -584,7 +584,7 @@ export type HostingApiGetResourceSummaryRequest = {
584
584
  * Region to target. If none is passed will use default region from the
585
585
  * config.
586
586
  */
587
- region?: Region;
587
+ region?: ScwRegion;
588
588
  /** Hosting ID. */
589
589
  hostingId: string;
590
590
  };
@@ -593,7 +593,7 @@ export type HostingApiListHostingsRequest = {
593
593
  * Region to target. If none is passed will use default region from the
594
594
  * config.
595
595
  */
596
- region?: Region;
596
+ region?: ScwRegion;
597
597
  /**
598
598
  * Page number to return, from the paginated results (must be a positive
599
599
  * integer).
@@ -642,7 +642,7 @@ export type HostingApiResetHostingPasswordRequest = {
642
642
  * Region to target. If none is passed will use default region from the
643
643
  * config.
644
644
  */
645
- region?: Region;
645
+ region?: ScwRegion;
646
646
  /** UUID of the hosting. */
647
647
  hostingId: string;
648
648
  };
@@ -651,7 +651,7 @@ export type HostingApiUpdateHostingRequest = {
651
651
  * Region to target. If none is passed will use default region from the
652
652
  * config.
653
653
  */
654
- region?: Region;
654
+ region?: ScwRegion;
655
655
  /** Hosting ID. */
656
656
  hostingId: string;
657
657
  /** New contact email for the Web Hosting plan. */
@@ -718,7 +718,7 @@ export type MailAccountApiChangeMailAccountPasswordRequest = {
718
718
  * Region to target. If none is passed will use default region from the
719
719
  * config.
720
720
  */
721
- region?: Region;
721
+ region?: ScwRegion;
722
722
  /** UUID of the hosting plan. */
723
723
  hostingId: string;
724
724
  /** Domain part of the mail account address. */
@@ -733,7 +733,7 @@ export type MailAccountApiCreateMailAccountRequest = {
733
733
  * Region to target. If none is passed will use default region from the
734
734
  * config.
735
735
  */
736
- region?: Region;
736
+ region?: ScwRegion;
737
737
  /** UUID of the hosting plan. */
738
738
  hostingId: string;
739
739
  /** Domain part of the mail account address. */
@@ -748,7 +748,7 @@ export type MailAccountApiListMailAccountsRequest = {
748
748
  * Region to target. If none is passed will use default region from the
749
749
  * config.
750
750
  */
751
- region?: Region;
751
+ region?: ScwRegion;
752
752
  /** UUID of the hosting plan. */
753
753
  hostingId: string;
754
754
  /** Page number (must be a positive integer). */
@@ -768,7 +768,7 @@ export type MailAccountApiRemoveMailAccountRequest = {
768
768
  * Region to target. If none is passed will use default region from the
769
769
  * config.
770
770
  */
771
- region?: Region;
771
+ region?: ScwRegion;
772
772
  /** UUID of the hosting plan. */
773
773
  hostingId: string;
774
774
  /** Domain part of the mail account address. */
@@ -781,7 +781,7 @@ export type OfferApiListOffersRequest = {
781
781
  * Region to target. If none is passed will use default region from the
782
782
  * config.
783
783
  */
784
- region?: Region;
784
+ region?: ScwRegion;
785
785
  /** Page number (must be a positive integer). */
786
786
  page?: number;
787
787
  /**
@@ -819,7 +819,7 @@ export type WebsiteApiListWebsitesRequest = {
819
819
  * Region to target. If none is passed will use default region from the
820
820
  * config.
821
821
  */
822
- region?: Region;
822
+ region?: ScwRegion;
823
823
  /** UUID of the hosting plan. */
824
824
  hostingId: string;
825
825
  /** Page number (must be a positive integer). */
@@ -243,7 +243,11 @@ class API extends api.API {
243
243
  }
244
244
  class ClassicMailAPI extends api.API {
245
245
  /** Lists the available regions of the API. */
246
- static LOCALITIES = ["fr-par", "nl-ams", "pl-waw"];
246
+ static LOCALITIES = [
247
+ "fr-par",
248
+ "nl-ams",
249
+ "pl-waw"
250
+ ];
247
251
  /**
248
252
  * Create a new mailbox within your hosting plan.. Create a new mailbox within
249
253
  * your hosting plan.
@@ -1,5 +1,5 @@
1
1
  import { API as ParentAPI } from '../../../bridge';
2
- import type { Region, WaitForOptions } from '../../../bridge';
2
+ import type { Region as ScwRegion, WaitForOptions } from '../../../bridge';
3
3
  import type { CheckUserOwnsDomainRequest, CheckUserOwnsDomainResponse, ClassicMailApiCreateMailboxRequest, ClassicMailApiDeleteMailboxRequest, ClassicMailApiGetMailboxRequest, ClassicMailApiListMailboxesRequest, ClassicMailApiUpdateMailboxRequest, CreateHostingRequest, CreateSessionRequest, DeleteHostingRequest, DnsRecords, GetDomainDnsRecordsRequest, GetHostingRequest, Hosting, ListControlPanelsRequest, ListControlPanelsResponse, ListHostingsRequest, ListHostingsResponse, ListMailboxesResponse, ListOffersRequest, ListOffersResponse, Mailbox, ResetHostingPasswordRequest, ResetHostingPasswordResponse, RestoreHostingRequest, Session, UpdateHostingRequest } from './types.gen';
4
4
  /**
5
5
  * Web Hosting API.
@@ -8,7 +8,7 @@ import type { CheckUserOwnsDomainRequest, CheckUserOwnsDomainResponse, ClassicMa
8
8
  */
9
9
  export declare class API extends ParentAPI {
10
10
  /** Lists the available regions of the API. */
11
- static readonly LOCALITIES: Region[];
11
+ static readonly LOCALITIES: ScwRegion[];
12
12
  /**
13
13
  * Order a Web Hosting plan. Order a Web Hosting plan, specifying the offer
14
14
  * type required via the `offer_id` parameter.
@@ -127,7 +127,7 @@ export declare class API extends ParentAPI {
127
127
  */
128
128
  export declare class ClassicMailAPI extends ParentAPI {
129
129
  /** Lists the available regions of the API. */
130
- static readonly LOCALITIES: Region[];
130
+ static readonly LOCALITIES: ScwRegion[];
131
131
  /**
132
132
  * Create a new mailbox within your hosting plan.. Create a new mailbox within
133
133
  * your hosting plan.
@@ -241,7 +241,11 @@ class API extends API$1 {
241
241
  }
242
242
  class ClassicMailAPI extends API$1 {
243
243
  /** Lists the available regions of the API. */
244
- static LOCALITIES = ["fr-par", "nl-ams", "pl-waw"];
244
+ static LOCALITIES = [
245
+ "fr-par",
246
+ "nl-ams",
247
+ "pl-waw"
248
+ ];
245
249
  /**
246
250
  * Create a new mailbox within your hosting plan.. Create a new mailbox within
247
251
  * your hosting plan.
@@ -1,4 +1,4 @@
1
- import type { Money, Region } from '../../../bridge';
1
+ import type { Money, Region as ScwRegion } from '../../../bridge';
2
2
  import type { LanguageCode as StdLanguageCode } from '../../std/types.gen';
3
3
  export type DnsRecordStatus = 'unknown_status' | 'valid' | 'invalid';
4
4
  export type DnsRecordType = 'unknown_type' | 'a' | 'cname' | 'mx' | 'txt' | 'ns' | 'aaaa';
@@ -136,7 +136,7 @@ export interface Hosting {
136
136
  */
137
137
  oneTimePassword: string;
138
138
  /** Region where the Web Hosting plan is hosted. */
139
- region: Region;
139
+ region: ScwRegion;
140
140
  }
141
141
  export interface Mailbox {
142
142
  /** The ID of the mailbox. */
@@ -170,7 +170,7 @@ export type CheckUserOwnsDomainRequest = {
170
170
  * Region to target. If none is passed will use default region from the
171
171
  * config.
172
172
  */
173
- region?: Region;
173
+ region?: ScwRegion;
174
174
  /** Domain for which ownership is to be verified. */
175
175
  domain: string;
176
176
  /** ID of the project currently in use. */
@@ -185,7 +185,7 @@ export type ClassicMailApiCreateMailboxRequest = {
185
185
  * Region to target. If none is passed will use default region from the
186
186
  * config.
187
187
  */
188
- region?: Region;
188
+ region?: ScwRegion;
189
189
  /** The Online hosting ID. */
190
190
  onlineId: number;
191
191
  /** The email address of the mailbox. */
@@ -198,7 +198,7 @@ export type ClassicMailApiDeleteMailboxRequest = {
198
198
  * Region to target. If none is passed will use default region from the
199
199
  * config.
200
200
  */
201
- region?: Region;
201
+ region?: ScwRegion;
202
202
  /** The Online hosting ID. */
203
203
  onlineId: number;
204
204
  /** The ID of the mailbox to delete. */
@@ -209,7 +209,7 @@ export type ClassicMailApiGetMailboxRequest = {
209
209
  * Region to target. If none is passed will use default region from the
210
210
  * config.
211
211
  */
212
- region?: Region;
212
+ region?: ScwRegion;
213
213
  /** The Online hosting ID. */
214
214
  onlineId: number;
215
215
  /** The ID of the mailbox to get. */
@@ -220,7 +220,7 @@ export type ClassicMailApiListMailboxesRequest = {
220
220
  * Region to target. If none is passed will use default region from the
221
221
  * config.
222
222
  */
223
- region?: Region;
223
+ region?: ScwRegion;
224
224
  /** The Online hosting ID. */
225
225
  onlineId: number;
226
226
  /** Page number (must be a positive integer). */
@@ -238,7 +238,7 @@ export type ClassicMailApiUpdateMailboxRequest = {
238
238
  * Region to target. If none is passed will use default region from the
239
239
  * config.
240
240
  */
241
- region?: Region;
241
+ region?: ScwRegion;
242
242
  /** The Online hosting ID. */
243
243
  onlineId: number;
244
244
  /** The ID of the mailbox to update. */
@@ -251,7 +251,7 @@ export type CreateHostingRequest = {
251
251
  * Region to target. If none is passed will use default region from the
252
252
  * config.
253
253
  */
254
- region?: Region;
254
+ region?: ScwRegion;
255
255
  /** ID of the selected offer for the Web Hosting plan. */
256
256
  offerId: string;
257
257
  /** ID of the Scaleway Project in which to create the Web Hosting plan. */
@@ -280,7 +280,7 @@ export type CreateSessionRequest = {
280
280
  * Region to target. If none is passed will use default region from the
281
281
  * config.
282
282
  */
283
- region?: Region;
283
+ region?: ScwRegion;
284
284
  /** Hosting ID. */
285
285
  hostingId: string;
286
286
  };
@@ -289,7 +289,7 @@ export type DeleteHostingRequest = {
289
289
  * Region to target. If none is passed will use default region from the
290
290
  * config.
291
291
  */
292
- region?: Region;
292
+ region?: ScwRegion;
293
293
  /** Hosting ID. */
294
294
  hostingId: string;
295
295
  };
@@ -306,7 +306,7 @@ export type GetDomainDnsRecordsRequest = {
306
306
  * Region to target. If none is passed will use default region from the
307
307
  * config.
308
308
  */
309
- region?: Region;
309
+ region?: ScwRegion;
310
310
  /** Domain associated with the DNS records. */
311
311
  domain: string;
312
312
  };
@@ -315,7 +315,7 @@ export type GetHostingRequest = {
315
315
  * Region to target. If none is passed will use default region from the
316
316
  * config.
317
317
  */
318
- region?: Region;
318
+ region?: ScwRegion;
319
319
  /** Hosting ID. */
320
320
  hostingId: string;
321
321
  };
@@ -324,7 +324,7 @@ export type ListControlPanelsRequest = {
324
324
  * Region to target. If none is passed will use default region from the
325
325
  * config.
326
326
  */
327
- region?: Region;
327
+ region?: ScwRegion;
328
328
  /**
329
329
  * Page number to return, from the paginated results (must be a positive
330
330
  * integer).
@@ -347,7 +347,7 @@ export type ListHostingsRequest = {
347
347
  * Region to target. If none is passed will use default region from the
348
348
  * config.
349
349
  */
350
- region?: Region;
350
+ region?: ScwRegion;
351
351
  /**
352
352
  * Page number to return, from the paginated results (must be a positive
353
353
  * integer).
@@ -408,7 +408,7 @@ export type ListOffersRequest = {
408
408
  * Region to target. If none is passed will use default region from the
409
409
  * config.
410
410
  */
411
- region?: Region;
411
+ region?: ScwRegion;
412
412
  /** Sort order of offers in the response. */
413
413
  orderBy?: ListOffersRequestOrderBy;
414
414
  /**
@@ -438,7 +438,7 @@ export type ResetHostingPasswordRequest = {
438
438
  * Region to target. If none is passed will use default region from the
439
439
  * config.
440
440
  */
441
- region?: Region;
441
+ region?: ScwRegion;
442
442
  /** UUID of the hosting. */
443
443
  hostingId: string;
444
444
  };
@@ -451,7 +451,7 @@ export type RestoreHostingRequest = {
451
451
  * Region to target. If none is passed will use default region from the
452
452
  * config.
453
453
  */
454
- region?: Region;
454
+ region?: ScwRegion;
455
455
  /** Hosting ID. */
456
456
  hostingId: string;
457
457
  };
@@ -464,7 +464,7 @@ export type UpdateHostingRequest = {
464
464
  * Region to target. If none is passed will use default region from the
465
465
  * config.
466
466
  */
467
- region?: Region;
467
+ region?: ScwRegion;
468
468
  /** Hosting ID. */
469
469
  hostingId: string;
470
470
  /** New contact email for the Web Hosting plan. */
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
- const version = "v2.62.0";
3
+ const version = "v2.63.0";
4
4
  const userAgent = `scaleway-sdk-js/${version}`;
5
5
  exports.userAgent = userAgent;
6
6
  exports.version = version;
@@ -1,2 +1,2 @@
1
- export declare const version = "v2.62.0";
2
- export declare const userAgent = "scaleway-sdk-js/v2.62.0";
1
+ export declare const version = "v2.63.0";
2
+ export declare const userAgent = "scaleway-sdk-js/v2.63.0";
@@ -1,4 +1,4 @@
1
- const version = "v2.62.0";
1
+ const version = "v2.63.0";
2
2
  const userAgent = `scaleway-sdk-js/${version}`;
3
3
  export {
4
4
  userAgent,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scaleway/sdk",
3
- "version": "2.63.0",
3
+ "version": "2.64.0",
4
4
  "license": "Apache-2.0",
5
5
  "description": "Scaleway SDK.",
6
6
  "keywords": [
@@ -39,5 +39,5 @@
39
39
  "bundledDependencies": [
40
40
  "@scaleway/random-name"
41
41
  ],
42
- "gitHead": "0da03067b97486773c77346f11664b532adda8fc"
42
+ "gitHead": "0760dee5b9f7b0e475b69e4b5c8986232d758abe"
43
43
  }