@scaleway/sdk 2.56.0 → 2.58.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.
- package/dist/api/audit_trail/index.gen.cjs +4 -0
- package/dist/api/audit_trail/index.gen.d.ts +5 -0
- package/dist/api/audit_trail/index.gen.js +4 -0
- package/dist/api/audit_trail/v1alpha1/api.gen.cjs +59 -0
- package/dist/api/audit_trail/v1alpha1/api.gen.d.ts +30 -0
- package/dist/api/audit_trail/v1alpha1/api.gen.js +59 -0
- package/dist/api/audit_trail/v1alpha1/index.gen.cjs +6 -0
- package/dist/api/audit_trail/v1alpha1/index.gen.d.ts +3 -0
- package/dist/api/audit_trail/v1alpha1/index.gen.js +6 -0
- package/dist/api/audit_trail/v1alpha1/marshalling.gen.cjs +155 -0
- package/dist/api/audit_trail/v1alpha1/marshalling.gen.d.ts +5 -0
- package/dist/api/audit_trail/v1alpha1/marshalling.gen.js +155 -0
- package/dist/api/audit_trail/v1alpha1/types.gen.d.ts +161 -0
- package/dist/api/audit_trail/v1alpha1/validation-rules.gen.cjs +19 -0
- package/dist/api/audit_trail/v1alpha1/validation-rules.gen.d.ts +16 -0
- package/dist/api/audit_trail/v1alpha1/validation-rules.gen.js +19 -0
- package/dist/api/billing/v2beta1/types.gen.d.ts +1 -1
- package/dist/api/edge_services/v1alpha1/types.gen.d.ts +5 -1
- package/dist/api/iam/v1alpha1/api.gen.cjs +9 -7
- package/dist/api/iam/v1alpha1/api.gen.d.ts +9 -7
- package/dist/api/iam/v1alpha1/api.gen.js +9 -7
- package/dist/api/iam/v1alpha1/types.gen.d.ts +2 -2
- package/dist/api/index.gen.d.ts +2 -1
- package/dist/api/instance/v1/api.gen.cjs +11 -0
- package/dist/api/instance/v1/api.gen.d.ts +2 -1
- package/dist/api/instance/v1/api.gen.js +12 -1
- package/dist/api/instance/v1/index.gen.d.ts +1 -1
- package/dist/api/instance/v1/marshalling.gen.cjs +5 -1
- package/dist/api/instance/v1/marshalling.gen.d.ts +2 -1
- package/dist/api/instance/v1/marshalling.gen.js +5 -1
- package/dist/api/instance/v1/types.gen.d.ts +10 -5
- package/dist/api/ipam/v1/api.gen.cjs +1 -0
- package/dist/api/ipam/v1/api.gen.js +1 -0
- package/dist/api/ipam/v1/types.gen.d.ts +6 -1
- package/dist/api/jobs/v1alpha1/validation-rules.gen.cjs +6 -0
- package/dist/api/jobs/v1alpha1/validation-rules.gen.d.ts +6 -0
- package/dist/api/jobs/v1alpha1/validation-rules.gen.js +6 -0
- package/dist/api/k8s/v1/marshalling.gen.cjs +1 -2
- package/dist/api/k8s/v1/marshalling.gen.js +1 -2
- package/dist/api/k8s/v1/types.gen.d.ts +2 -7
- package/dist/api/mnq/v1beta1/api.gen.cjs +47 -42
- package/dist/api/mnq/v1beta1/api.gen.d.ts +51 -49
- package/dist/api/mnq/v1beta1/api.gen.js +47 -42
- package/dist/api/mnq/v1beta1/types.gen.d.ts +37 -32
- package/dist/api/rdb/v1/types.gen.d.ts +15 -3
- package/dist/api/tem/v1alpha1/types.gen.d.ts +1 -1
- package/dist/api/webhosting/v1/api.gen.cjs +41 -2
- package/dist/api/webhosting/v1/api.gen.d.ts +26 -2
- package/dist/api/webhosting/v1/api.gen.js +42 -3
- package/dist/api/webhosting/v1/index.gen.cjs +1 -0
- package/dist/api/webhosting/v1/index.gen.d.ts +2 -2
- package/dist/api/webhosting/v1/index.gen.js +2 -1
- package/dist/api/webhosting/v1/marshalling.gen.cjs +123 -50
- package/dist/api/webhosting/v1/marshalling.gen.d.ts +4 -1
- package/dist/api/webhosting/v1/marshalling.gen.js +124 -51
- package/dist/api/webhosting/v1/types.gen.d.ts +124 -60
- package/dist/index.cjs +46 -44
- package/dist/index.js +46 -44
- package/dist/scw/constants.cjs +1 -1
- package/dist/scw/constants.d.ts +2 -2
- package/dist/scw/constants.js +1 -1
- package/package.json +2 -2
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import type { Money, Region } from '../../../bridge';
|
|
2
2
|
import type { LanguageCode as StdLanguageCode } from '../../std/types.gen';
|
|
3
|
-
export type
|
|
3
|
+
export type DnsRecordStatus = 'unknown_status' | 'valid' | 'invalid';
|
|
4
|
+
export type DnsRecordType = 'unknown_type' | 'a' | 'cname' | 'mx' | 'txt' | 'ns' | 'aaaa';
|
|
5
|
+
export type DnsRecordsStatus = 'unknown_status' | 'valid' | 'invalid';
|
|
4
6
|
export type HostingStatus = 'unknown_status' | 'delivering' | 'ready' | 'deleting' | 'error' | 'locked' | 'migrating';
|
|
5
7
|
export type HostingSummaryStatus = 'unknown_status' | 'delivering' | 'ready' | 'deleting' | 'error' | 'locked' | 'migrating';
|
|
6
8
|
export type ListDatabaseUsersRequestOrderBy = 'username_asc' | 'username_desc';
|
|
@@ -10,8 +12,16 @@ export type ListHostingsRequestOrderBy = 'created_at_asc' | 'created_at_desc';
|
|
|
10
12
|
export type ListMailAccountsRequestOrderBy = 'username_asc' | 'username_desc' | 'domain_asc' | 'domain_desc';
|
|
11
13
|
export type ListOffersRequestOrderBy = 'price_asc';
|
|
12
14
|
export type ListWebsitesRequestOrderBy = 'domain_asc' | 'domain_desc';
|
|
15
|
+
export type NameserverStatus = 'unknown_status' | 'valid' | 'invalid';
|
|
13
16
|
export type OfferOptionName = 'unknown_name' | 'domain_count' | 'email_count' | 'storage_gb' | 'vcpu_count' | 'ram_gb' | 'backup' | 'dedicated_ip';
|
|
14
17
|
export type OfferOptionWarning = 'unknown_warning' | 'quota_exceeded_warning';
|
|
18
|
+
export type PlatformPlatformGroup = 'unknown_group' | 'default' | 'premium';
|
|
19
|
+
export interface PlatformControlPanelUrls {
|
|
20
|
+
/** URL to connect to the hosting control panel dashboard. */
|
|
21
|
+
dashboard: string;
|
|
22
|
+
/** URL to connect to the hosting Webmail interface. */
|
|
23
|
+
webmail: string;
|
|
24
|
+
}
|
|
15
25
|
export interface OfferOption {
|
|
16
26
|
/** Option ID. */
|
|
17
27
|
id: string;
|
|
@@ -30,6 +40,14 @@ export interface OfferOption {
|
|
|
30
40
|
maxValue: number;
|
|
31
41
|
/** Defines a warning if the maximum value for the option has been reached. */
|
|
32
42
|
quotaWarning: OfferOptionWarning;
|
|
43
|
+
/** Price of the option for 1 value. */
|
|
44
|
+
price?: Money;
|
|
45
|
+
}
|
|
46
|
+
export interface PlatformControlPanel {
|
|
47
|
+
/** Name of the control panel. */
|
|
48
|
+
name: string;
|
|
49
|
+
/** URL to connect to cPanel dashboard and to Webmail interface. */
|
|
50
|
+
urls?: PlatformControlPanelUrls;
|
|
33
51
|
}
|
|
34
52
|
export interface CreateHostingRequestDomainConfiguration {
|
|
35
53
|
updateNameservers: boolean;
|
|
@@ -43,17 +61,71 @@ export interface OfferOptionRequest {
|
|
|
43
61
|
/** The option requested quantity to set for the Web Hosting plan. */
|
|
44
62
|
quantity: number;
|
|
45
63
|
}
|
|
46
|
-
export interface
|
|
47
|
-
|
|
48
|
-
|
|
64
|
+
export interface DnsRecord {
|
|
65
|
+
/** Record name. */
|
|
66
|
+
name: string;
|
|
67
|
+
/** Record type. */
|
|
68
|
+
type: DnsRecordType;
|
|
69
|
+
/** Record time-to-live. */
|
|
70
|
+
ttl: number;
|
|
71
|
+
/** Record value. */
|
|
72
|
+
value: string;
|
|
73
|
+
/** Record priority level. */
|
|
74
|
+
priority?: number;
|
|
75
|
+
/** Record status. */
|
|
76
|
+
status: DnsRecordStatus;
|
|
49
77
|
}
|
|
50
|
-
export interface
|
|
51
|
-
/**
|
|
78
|
+
export interface Nameserver {
|
|
79
|
+
/** Hostname of the nameserver. */
|
|
80
|
+
hostname: string;
|
|
81
|
+
/** Status of the nameserver. */
|
|
82
|
+
status: NameserverStatus;
|
|
83
|
+
/** Defines whether the nameserver is the default one. */
|
|
84
|
+
isDefault: boolean;
|
|
85
|
+
}
|
|
86
|
+
export interface HostingUser {
|
|
87
|
+
/** Main Web Hosting cPanel username. */
|
|
88
|
+
username: string;
|
|
89
|
+
/**
|
|
90
|
+
* One-time-password used for the first login or reset password, empty after
|
|
91
|
+
* first use.
|
|
92
|
+
*/
|
|
93
|
+
oneTimePassword?: string;
|
|
94
|
+
/** Contact email used for the hosting. */
|
|
95
|
+
contactEmail: string;
|
|
96
|
+
}
|
|
97
|
+
export interface Offer {
|
|
98
|
+
/** Offer ID. */
|
|
52
99
|
id: string;
|
|
53
|
-
/**
|
|
54
|
-
|
|
55
|
-
/**
|
|
56
|
-
|
|
100
|
+
/** Unique identifier used for billing. */
|
|
101
|
+
billingOperationPath: string;
|
|
102
|
+
/** Options available for the offer. */
|
|
103
|
+
options: OfferOption[];
|
|
104
|
+
/** Price of the offer. */
|
|
105
|
+
price?: Money;
|
|
106
|
+
/**
|
|
107
|
+
* If a hosting_id was specified in the call, defines whether the offer is
|
|
108
|
+
* available for a specified hosting plan to migrate (update) to.
|
|
109
|
+
*/
|
|
110
|
+
available: boolean;
|
|
111
|
+
/** Name of the control panel. */
|
|
112
|
+
controlPanelName: string;
|
|
113
|
+
/** Indicates if the offer has reached its end of life. */
|
|
114
|
+
endOfLife: boolean;
|
|
115
|
+
}
|
|
116
|
+
export interface Platform {
|
|
117
|
+
/** Hostname of the host platform. */
|
|
118
|
+
hostname: string;
|
|
119
|
+
/** Number of the host platform. */
|
|
120
|
+
number: number;
|
|
121
|
+
/** Group name of the hosting's host platform. */
|
|
122
|
+
groupName: PlatformPlatformGroup;
|
|
123
|
+
/** IPv4 address of the hosting's host platform. */
|
|
124
|
+
ipv4: string;
|
|
125
|
+
/** IPv6 address of the hosting's host platform. */
|
|
126
|
+
ipv6: string;
|
|
127
|
+
/** Details of the platform control panel. */
|
|
128
|
+
controlPanel?: PlatformControlPanel;
|
|
57
129
|
}
|
|
58
130
|
export interface ControlPanel {
|
|
59
131
|
/** Control panel name. */
|
|
@@ -88,6 +160,8 @@ export interface HostingSummary {
|
|
|
88
160
|
id: string;
|
|
89
161
|
/** ID of the Scaleway Project the Web Hosting plan belongs to. */
|
|
90
162
|
projectId: string;
|
|
163
|
+
/** Date on which the Web Hosting plan was created. */
|
|
164
|
+
createdAt?: Date;
|
|
91
165
|
/** Date on which the Web Hosting plan was last updated. */
|
|
92
166
|
updatedAt?: Date;
|
|
93
167
|
/** Status of the Web Hosting plan. */
|
|
@@ -105,25 +179,6 @@ export interface MailAccount {
|
|
|
105
179
|
/** Username part address of the mail account address. */
|
|
106
180
|
username: string;
|
|
107
181
|
}
|
|
108
|
-
export interface Offer {
|
|
109
|
-
/** Offer ID. */
|
|
110
|
-
id: string;
|
|
111
|
-
/** Unique identifier used for billing. */
|
|
112
|
-
billingOperationPath: string;
|
|
113
|
-
/** Options available for the offer. */
|
|
114
|
-
options: OfferOption[];
|
|
115
|
-
/** Price of the offer. */
|
|
116
|
-
price?: Money;
|
|
117
|
-
/**
|
|
118
|
-
* If a hosting_id was specified in the call, defines whether the offer is
|
|
119
|
-
* available for a specified hosting plan to migrate (update) to.
|
|
120
|
-
*/
|
|
121
|
-
available: boolean;
|
|
122
|
-
/** Name of the control panel. */
|
|
123
|
-
controlPanelName: string;
|
|
124
|
-
/** Indicates if the offer has reached its end of life. */
|
|
125
|
-
endOfLife: boolean;
|
|
126
|
-
}
|
|
127
182
|
export interface Website {
|
|
128
183
|
/** The domain of the website. */
|
|
129
184
|
domain: string;
|
|
@@ -132,6 +187,10 @@ export interface Website {
|
|
|
132
187
|
/** The SSL status of the website. */
|
|
133
188
|
sslStatus: boolean;
|
|
134
189
|
}
|
|
190
|
+
export interface CheckUserOwnsDomainResponse {
|
|
191
|
+
/** Indicates whether the specified project owns the domain. */
|
|
192
|
+
ownsDomain: boolean;
|
|
193
|
+
}
|
|
135
194
|
export type ControlPanelApiListControlPanelsRequest = {
|
|
136
195
|
/**
|
|
137
196
|
* Region to target. If none is passed will use default region from the
|
|
@@ -289,6 +348,34 @@ export type DatabaseApiUnassignDatabaseUserRequest = {
|
|
|
289
348
|
/** Name of the user to unassign. */
|
|
290
349
|
username: string;
|
|
291
350
|
};
|
|
351
|
+
export type DnsApiCheckUserOwnsDomainRequest = {
|
|
352
|
+
/**
|
|
353
|
+
* Region to target. If none is passed will use default region from the
|
|
354
|
+
* config.
|
|
355
|
+
*/
|
|
356
|
+
region?: Region;
|
|
357
|
+
/** Domain for which ownership is to be verified. */
|
|
358
|
+
domain: string;
|
|
359
|
+
/** ID of the project currently in use. */
|
|
360
|
+
projectId?: string;
|
|
361
|
+
};
|
|
362
|
+
export type DnsApiGetDomainDnsRecordsRequest = {
|
|
363
|
+
/**
|
|
364
|
+
* Region to target. If none is passed will use default region from the
|
|
365
|
+
* config.
|
|
366
|
+
*/
|
|
367
|
+
region?: Region;
|
|
368
|
+
/** Domain associated with the DNS records. */
|
|
369
|
+
domain: string;
|
|
370
|
+
};
|
|
371
|
+
export interface DnsRecords {
|
|
372
|
+
/** List of DNS records. */
|
|
373
|
+
records: DnsRecord[];
|
|
374
|
+
/** List of nameservers. */
|
|
375
|
+
nameServers: Nameserver[];
|
|
376
|
+
/** Status of the records. */
|
|
377
|
+
status: DnsRecordsStatus;
|
|
378
|
+
}
|
|
292
379
|
export type FtpAccountApiChangeFtpAccountPasswordRequest = {
|
|
293
380
|
/**
|
|
294
381
|
* Region to target. If none is passed will use default region from the
|
|
@@ -359,45 +446,22 @@ export interface Hosting {
|
|
|
359
446
|
createdAt?: Date;
|
|
360
447
|
/** Status of the Web Hosting plan. */
|
|
361
448
|
status: HostingStatus;
|
|
362
|
-
/** Hostname of the host platform. */
|
|
363
|
-
platformHostname: string;
|
|
364
|
-
/** Number of the host platform. */
|
|
365
|
-
platformNumber: number;
|
|
366
|
-
/** ID of the active offer for the Web Hosting plan. */
|
|
367
|
-
offerId: string;
|
|
368
|
-
/** Name of the active offer for the Web Hosting plan. */
|
|
369
|
-
offerName: string;
|
|
370
449
|
/** Main domain associated with the Web Hosting plan. */
|
|
371
450
|
domain: string;
|
|
451
|
+
/** Details of the Web Hosting plan offer and options. */
|
|
452
|
+
offer?: Offer;
|
|
453
|
+
/** Details of the hosting platform. */
|
|
454
|
+
platform?: Platform;
|
|
372
455
|
/** List of tags associated with the Web Hosting plan. */
|
|
373
456
|
tags: string[];
|
|
374
|
-
/** List of the Web Hosting plan options. */
|
|
375
|
-
options: HostingOption[];
|
|
376
457
|
/** DNS status of the Web Hosting plan. */
|
|
377
|
-
dnsStatus:
|
|
378
|
-
/**
|
|
379
|
-
cpanelUrls?: HostingCpanelUrls;
|
|
380
|
-
/** Main Web Hosting cPanel username. */
|
|
381
|
-
username: string;
|
|
382
|
-
/** Indicates if the hosting offer has reached its end of life. */
|
|
383
|
-
offerEndOfLife: boolean;
|
|
384
|
-
/** Name of the control panel. */
|
|
385
|
-
controlPanelName: string;
|
|
386
|
-
/** Group of the hosting's host server/platform. */
|
|
387
|
-
platformGroup: string;
|
|
388
|
-
/** IPv4 address of the hosting's host server. */
|
|
458
|
+
dnsStatus: DnsRecordsStatus;
|
|
459
|
+
/** Current IPv4 address of the hosting. */
|
|
389
460
|
ipv4: string;
|
|
390
|
-
/** IPv6 address of the hosting's host server. */
|
|
391
|
-
ipv6: string;
|
|
392
461
|
/** Whether the hosting is protected or not. */
|
|
393
462
|
protected: boolean;
|
|
394
|
-
/**
|
|
395
|
-
|
|
396
|
-
* first use.
|
|
397
|
-
*/
|
|
398
|
-
oneTimePassword: string;
|
|
399
|
-
/** Contact email used for the hosting. */
|
|
400
|
-
contactEmail: string;
|
|
463
|
+
/** Details of the hosting user. */
|
|
464
|
+
user?: HostingUser;
|
|
401
465
|
/** Region where the Web Hosting plan is hosted. */
|
|
402
466
|
region: Region;
|
|
403
467
|
}
|
package/dist/index.cjs
CHANGED
|
@@ -15,43 +15,44 @@ const marshalling = require("./helpers/marshalling.cjs");
|
|
|
15
15
|
const resourcePaginator = require("./scw/fetch/resource-paginator.cjs");
|
|
16
16
|
const index_gen$g = require("./api/account/index.gen.cjs");
|
|
17
17
|
const index_gen = require("./api/applesilicon/index.gen.cjs");
|
|
18
|
+
const index_gen$h = require("./api/audit_trail/index.gen.cjs");
|
|
18
19
|
const index_gen$1 = require("./api/baremetal/index.gen.cjs");
|
|
19
|
-
const index_gen$
|
|
20
|
-
const index_gen$
|
|
21
|
-
const index_gen$
|
|
22
|
-
const index_gen$
|
|
23
|
-
const index_gen$
|
|
20
|
+
const index_gen$i = require("./api/billing/index.gen.cjs");
|
|
21
|
+
const index_gen$j = require("./api/block/index.gen.cjs");
|
|
22
|
+
const index_gen$k = require("./api/cockpit/index.gen.cjs");
|
|
23
|
+
const index_gen$l = require("./api/container/index.gen.cjs");
|
|
24
|
+
const index_gen$m = require("./api/dedibox/index.gen.cjs");
|
|
24
25
|
const index_gen$2 = require("./api/document_db/index.gen.cjs");
|
|
25
|
-
const index_gen$
|
|
26
|
-
const index_gen$
|
|
26
|
+
const index_gen$n = require("./api/domain/index.gen.cjs");
|
|
27
|
+
const index_gen$o = require("./api/edge_services/index.gen.cjs");
|
|
27
28
|
const index_gen$3 = require("./api/flexibleip/index.gen.cjs");
|
|
28
|
-
const index_gen$
|
|
29
|
+
const index_gen$p = require("./api/function/index.gen.cjs");
|
|
29
30
|
const index_gen$4 = require("./api/iam/index.gen.cjs");
|
|
30
|
-
const index_gen$
|
|
31
|
-
const index_gen$
|
|
31
|
+
const index_gen$q = require("./api/inference/index.gen.cjs");
|
|
32
|
+
const index_gen$r = require("./api/instance/index.gen.cjs");
|
|
32
33
|
const index_gen$5 = require("./api/iot/index.gen.cjs");
|
|
33
34
|
const index_gen$6 = require("./api/ipam/index.gen.cjs");
|
|
34
35
|
const index_gen$7 = require("./api/ipfs/index.gen.cjs");
|
|
35
|
-
const index_gen$
|
|
36
|
-
const index_gen$
|
|
37
|
-
const index_gen$
|
|
36
|
+
const index_gen$s = require("./api/jobs/index.gen.cjs");
|
|
37
|
+
const index_gen$t = require("./api/k8s/index.gen.cjs");
|
|
38
|
+
const index_gen$u = require("./api/key_manager/index.gen.cjs");
|
|
38
39
|
const index_gen$8 = require("./api/lb/index.gen.cjs");
|
|
39
40
|
const index_gen$9 = require("./api/llm_inference/index.gen.cjs");
|
|
40
|
-
const index_gen$
|
|
41
|
+
const index_gen$v = require("./api/marketplace/index.gen.cjs");
|
|
41
42
|
const index_gen$a = require("./api/mnq/index.gen.cjs");
|
|
42
|
-
const index_gen$
|
|
43
|
-
const index_gen$
|
|
43
|
+
const index_gen$w = require("./api/mongodb/index.gen.cjs");
|
|
44
|
+
const index_gen$x = require("./api/qaas/index.gen.cjs");
|
|
44
45
|
const index_gen$b = require("./api/rdb/index.gen.cjs");
|
|
45
|
-
const index_gen$
|
|
46
|
-
const index_gen$
|
|
47
|
-
const index_gen$
|
|
46
|
+
const index_gen$y = require("./api/redis/index.gen.cjs");
|
|
47
|
+
const index_gen$z = require("./api/registry/index.gen.cjs");
|
|
48
|
+
const index_gen$A = require("./api/secret/index.gen.cjs");
|
|
48
49
|
const index_gen$c = require("./api/serverless_sqldb/index.gen.cjs");
|
|
49
|
-
const index_gen$
|
|
50
|
+
const index_gen$B = require("./api/std/index.gen.cjs");
|
|
50
51
|
const index_gen$d = require("./api/tem/index.gen.cjs");
|
|
51
|
-
const index_gen$
|
|
52
|
+
const index_gen$C = require("./api/test/index.gen.cjs");
|
|
52
53
|
const index_gen$e = require("./api/vpc/index.gen.cjs");
|
|
53
54
|
const index_gen$f = require("./api/vpcgw/index.gen.cjs");
|
|
54
|
-
const index_gen$
|
|
55
|
+
const index_gen$D = require("./api/webhosting/index.gen.cjs");
|
|
55
56
|
exports.enableConsoleLogger = index.enableConsoleLogger;
|
|
56
57
|
exports.setLogger = index.setLogger;
|
|
57
58
|
exports.createAdvancedClient = client.createAdvancedClient;
|
|
@@ -92,55 +93,56 @@ exports.enrichForPagination = resourcePaginator.enrichForPagination;
|
|
|
92
93
|
exports.Account = index_gen$g;
|
|
93
94
|
exports.AppleSilicon = index_gen;
|
|
94
95
|
exports.Applesilicon = index_gen;
|
|
96
|
+
exports.AuditTrail = index_gen$h;
|
|
95
97
|
exports.BareMetal = index_gen$1;
|
|
96
98
|
exports.Baremetal = index_gen$1;
|
|
97
|
-
exports.Billing = index_gen$
|
|
98
|
-
exports.Block = index_gen$
|
|
99
|
-
exports.Cockpit = index_gen$
|
|
100
|
-
exports.Container = index_gen$
|
|
101
|
-
exports.Dedibox = index_gen$
|
|
99
|
+
exports.Billing = index_gen$i;
|
|
100
|
+
exports.Block = index_gen$j;
|
|
101
|
+
exports.Cockpit = index_gen$k;
|
|
102
|
+
exports.Container = index_gen$l;
|
|
103
|
+
exports.Dedibox = index_gen$m;
|
|
102
104
|
exports.DocumentDB = index_gen$2;
|
|
103
105
|
exports.DocumentDb = index_gen$2;
|
|
104
|
-
exports.Domain = index_gen$
|
|
105
|
-
exports.EdgeServices = index_gen$
|
|
106
|
+
exports.Domain = index_gen$n;
|
|
107
|
+
exports.EdgeServices = index_gen$o;
|
|
106
108
|
exports.FlexibleIP = index_gen$3;
|
|
107
109
|
exports.Flexibleip = index_gen$3;
|
|
108
|
-
exports.Function = index_gen$
|
|
110
|
+
exports.Function = index_gen$p;
|
|
109
111
|
exports.IAM = index_gen$4;
|
|
110
112
|
exports.Iam = index_gen$4;
|
|
111
|
-
exports.Inference = index_gen$
|
|
112
|
-
exports.Instance = index_gen$
|
|
113
|
+
exports.Inference = index_gen$q;
|
|
114
|
+
exports.Instance = index_gen$r;
|
|
113
115
|
exports.IOT = index_gen$5;
|
|
114
116
|
exports.Iot = index_gen$5;
|
|
115
117
|
exports.IPAM = index_gen$6;
|
|
116
118
|
exports.Ipam = index_gen$6;
|
|
117
119
|
exports.IPFS = index_gen$7;
|
|
118
120
|
exports.Ipfs = index_gen$7;
|
|
119
|
-
exports.Jobs = index_gen$
|
|
120
|
-
exports.K8s = index_gen$
|
|
121
|
-
exports.KeyManager = index_gen$
|
|
121
|
+
exports.Jobs = index_gen$s;
|
|
122
|
+
exports.K8s = index_gen$t;
|
|
123
|
+
exports.KeyManager = index_gen$u;
|
|
122
124
|
exports.LB = index_gen$8;
|
|
123
125
|
exports.Lb = index_gen$8;
|
|
124
126
|
exports.LLMInference = index_gen$9;
|
|
125
127
|
exports.LlmInference = index_gen$9;
|
|
126
|
-
exports.Marketplace = index_gen$
|
|
128
|
+
exports.Marketplace = index_gen$v;
|
|
127
129
|
exports.MNQ = index_gen$a;
|
|
128
130
|
exports.Mnq = index_gen$a;
|
|
129
|
-
exports.Mongodb = index_gen$
|
|
130
|
-
exports.Qaas = index_gen$
|
|
131
|
+
exports.Mongodb = index_gen$w;
|
|
132
|
+
exports.Qaas = index_gen$x;
|
|
131
133
|
exports.RDB = index_gen$b;
|
|
132
134
|
exports.Rdb = index_gen$b;
|
|
133
|
-
exports.Redis = index_gen$
|
|
134
|
-
exports.Registry = index_gen$
|
|
135
|
-
exports.Secret = index_gen$
|
|
135
|
+
exports.Redis = index_gen$y;
|
|
136
|
+
exports.Registry = index_gen$z;
|
|
137
|
+
exports.Secret = index_gen$A;
|
|
136
138
|
exports.ServerlessSQLDB = index_gen$c;
|
|
137
139
|
exports.ServerlessSqldb = index_gen$c;
|
|
138
|
-
exports.Std = index_gen$
|
|
140
|
+
exports.Std = index_gen$B;
|
|
139
141
|
exports.Tem = index_gen$d;
|
|
140
142
|
exports.TransactionalEmail = index_gen$d;
|
|
141
|
-
exports.Test = index_gen$
|
|
143
|
+
exports.Test = index_gen$C;
|
|
142
144
|
exports.VPC = index_gen$e;
|
|
143
145
|
exports.Vpc = index_gen$e;
|
|
144
146
|
exports.VPCGW = index_gen$f;
|
|
145
147
|
exports.Vpcgw = index_gen$f;
|
|
146
|
-
exports.Webhosting = index_gen$
|
|
148
|
+
exports.Webhosting = index_gen$D;
|
package/dist/index.js
CHANGED
|
@@ -13,102 +13,104 @@ import { resolveOneOf, unmarshalArrayOfObject, unmarshalDate, unmarshalMapOfObje
|
|
|
13
13
|
import { enrichForPagination } from "./scw/fetch/resource-paginator.js";
|
|
14
14
|
import * as index_gen$g from "./api/account/index.gen.js";
|
|
15
15
|
import * as index_gen from "./api/applesilicon/index.gen.js";
|
|
16
|
+
import * as index_gen$h from "./api/audit_trail/index.gen.js";
|
|
16
17
|
import * as index_gen$1 from "./api/baremetal/index.gen.js";
|
|
17
|
-
import * as index_gen$
|
|
18
|
-
import * as index_gen$
|
|
19
|
-
import * as index_gen$
|
|
20
|
-
import * as index_gen$
|
|
21
|
-
import * as index_gen$
|
|
18
|
+
import * as index_gen$i from "./api/billing/index.gen.js";
|
|
19
|
+
import * as index_gen$j from "./api/block/index.gen.js";
|
|
20
|
+
import * as index_gen$k from "./api/cockpit/index.gen.js";
|
|
21
|
+
import * as index_gen$l from "./api/container/index.gen.js";
|
|
22
|
+
import * as index_gen$m from "./api/dedibox/index.gen.js";
|
|
22
23
|
import * as index_gen$2 from "./api/document_db/index.gen.js";
|
|
23
|
-
import * as index_gen$
|
|
24
|
-
import * as index_gen$
|
|
24
|
+
import * as index_gen$n from "./api/domain/index.gen.js";
|
|
25
|
+
import * as index_gen$o from "./api/edge_services/index.gen.js";
|
|
25
26
|
import * as index_gen$3 from "./api/flexibleip/index.gen.js";
|
|
26
|
-
import * as index_gen$
|
|
27
|
+
import * as index_gen$p from "./api/function/index.gen.js";
|
|
27
28
|
import * as index_gen$4 from "./api/iam/index.gen.js";
|
|
28
|
-
import * as index_gen$
|
|
29
|
-
import * as index_gen$
|
|
29
|
+
import * as index_gen$q from "./api/inference/index.gen.js";
|
|
30
|
+
import * as index_gen$r from "./api/instance/index.gen.js";
|
|
30
31
|
import * as index_gen$5 from "./api/iot/index.gen.js";
|
|
31
32
|
import * as index_gen$6 from "./api/ipam/index.gen.js";
|
|
32
33
|
import * as index_gen$7 from "./api/ipfs/index.gen.js";
|
|
33
|
-
import * as index_gen$
|
|
34
|
-
import * as index_gen$
|
|
35
|
-
import * as index_gen$
|
|
34
|
+
import * as index_gen$s from "./api/jobs/index.gen.js";
|
|
35
|
+
import * as index_gen$t from "./api/k8s/index.gen.js";
|
|
36
|
+
import * as index_gen$u from "./api/key_manager/index.gen.js";
|
|
36
37
|
import * as index_gen$8 from "./api/lb/index.gen.js";
|
|
37
38
|
import * as index_gen$9 from "./api/llm_inference/index.gen.js";
|
|
38
|
-
import * as index_gen$
|
|
39
|
+
import * as index_gen$v from "./api/marketplace/index.gen.js";
|
|
39
40
|
import * as index_gen$a from "./api/mnq/index.gen.js";
|
|
40
|
-
import * as index_gen$
|
|
41
|
-
import * as index_gen$
|
|
41
|
+
import * as index_gen$w from "./api/mongodb/index.gen.js";
|
|
42
|
+
import * as index_gen$x from "./api/qaas/index.gen.js";
|
|
42
43
|
import * as index_gen$b from "./api/rdb/index.gen.js";
|
|
43
|
-
import * as index_gen$
|
|
44
|
-
import * as index_gen$
|
|
45
|
-
import * as index_gen$
|
|
44
|
+
import * as index_gen$y from "./api/redis/index.gen.js";
|
|
45
|
+
import * as index_gen$z from "./api/registry/index.gen.js";
|
|
46
|
+
import * as index_gen$A from "./api/secret/index.gen.js";
|
|
46
47
|
import * as index_gen$c from "./api/serverless_sqldb/index.gen.js";
|
|
47
|
-
import * as index_gen$
|
|
48
|
+
import * as index_gen$B from "./api/std/index.gen.js";
|
|
48
49
|
import * as index_gen$d from "./api/tem/index.gen.js";
|
|
49
|
-
import * as index_gen$
|
|
50
|
+
import * as index_gen$C from "./api/test/index.gen.js";
|
|
50
51
|
import * as index_gen$e from "./api/vpc/index.gen.js";
|
|
51
52
|
import * as index_gen$f from "./api/vpcgw/index.gen.js";
|
|
52
|
-
import * as index_gen$
|
|
53
|
+
import * as index_gen$D from "./api/webhosting/index.gen.js";
|
|
53
54
|
export {
|
|
54
55
|
API,
|
|
55
56
|
index_gen$g as Account,
|
|
56
57
|
index_gen as AppleSilicon,
|
|
57
58
|
index_gen as Applesilicon,
|
|
59
|
+
index_gen$h as AuditTrail,
|
|
58
60
|
index_gen$1 as BareMetal,
|
|
59
61
|
index_gen$1 as Baremetal,
|
|
60
|
-
index_gen$
|
|
61
|
-
index_gen$
|
|
62
|
-
index_gen$
|
|
63
|
-
index_gen$
|
|
62
|
+
index_gen$i as Billing,
|
|
63
|
+
index_gen$j as Block,
|
|
64
|
+
index_gen$k as Cockpit,
|
|
65
|
+
index_gen$l as Container,
|
|
64
66
|
Decimal,
|
|
65
|
-
index_gen$
|
|
67
|
+
index_gen$m as Dedibox,
|
|
66
68
|
index_gen$2 as DocumentDB,
|
|
67
69
|
index_gen$2 as DocumentDb,
|
|
68
|
-
index_gen$
|
|
69
|
-
index_gen$
|
|
70
|
+
index_gen$n as Domain,
|
|
71
|
+
index_gen$o as EdgeServices,
|
|
70
72
|
index as Errors,
|
|
71
73
|
index_gen$3 as FlexibleIP,
|
|
72
74
|
index_gen$3 as Flexibleip,
|
|
73
|
-
index_gen$
|
|
75
|
+
index_gen$p as Function,
|
|
74
76
|
index_gen$4 as IAM,
|
|
75
77
|
index_gen$5 as IOT,
|
|
76
78
|
index_gen$6 as IPAM,
|
|
77
79
|
index_gen$7 as IPFS,
|
|
78
80
|
index_gen$4 as Iam,
|
|
79
|
-
index_gen$
|
|
80
|
-
index_gen$
|
|
81
|
+
index_gen$q as Inference,
|
|
82
|
+
index_gen$r as Instance,
|
|
81
83
|
index_gen$5 as Iot,
|
|
82
84
|
index_gen$6 as Ipam,
|
|
83
85
|
index_gen$7 as Ipfs,
|
|
84
|
-
index_gen$
|
|
85
|
-
index_gen$
|
|
86
|
-
index_gen$
|
|
86
|
+
index_gen$s as Jobs,
|
|
87
|
+
index_gen$t as K8s,
|
|
88
|
+
index_gen$u as KeyManager,
|
|
87
89
|
index_gen$8 as LB,
|
|
88
90
|
index_gen$9 as LLMInference,
|
|
89
91
|
index_gen$8 as Lb,
|
|
90
92
|
index_gen$9 as LlmInference,
|
|
91
93
|
index_gen$a as MNQ,
|
|
92
|
-
index_gen$
|
|
94
|
+
index_gen$v as Marketplace,
|
|
93
95
|
index_gen$a as Mnq,
|
|
94
|
-
index_gen$
|
|
95
|
-
index_gen$
|
|
96
|
+
index_gen$w as Mongodb,
|
|
97
|
+
index_gen$x as Qaas,
|
|
96
98
|
index_gen$b as RDB,
|
|
97
99
|
index_gen$b as Rdb,
|
|
98
|
-
index_gen$
|
|
99
|
-
index_gen$
|
|
100
|
-
index_gen$
|
|
100
|
+
index_gen$y as Redis,
|
|
101
|
+
index_gen$z as Registry,
|
|
102
|
+
index_gen$A as Secret,
|
|
101
103
|
index_gen$c as ServerlessSQLDB,
|
|
102
104
|
index_gen$c as ServerlessSqldb,
|
|
103
|
-
index_gen$
|
|
105
|
+
index_gen$B as Std,
|
|
104
106
|
index_gen$d as Tem,
|
|
105
|
-
index_gen$
|
|
107
|
+
index_gen$C as Test,
|
|
106
108
|
index_gen$d as TransactionalEmail,
|
|
107
109
|
index_gen$e as VPC,
|
|
108
110
|
index_gen$f as VPCGW,
|
|
109
111
|
index_gen$e as Vpc,
|
|
110
112
|
index_gen$f as Vpcgw,
|
|
111
|
-
index_gen$
|
|
113
|
+
index_gen$D as Webhosting,
|
|
112
114
|
addAsyncHeaderInterceptor,
|
|
113
115
|
authenticateWithSessionToken,
|
|
114
116
|
createAdvancedClient,
|
package/dist/scw/constants.cjs
CHANGED
package/dist/scw/constants.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const version = "v2.
|
|
2
|
-
export declare const userAgent = "scaleway-sdk-js/v2.
|
|
1
|
+
export declare const version = "v2.57.0";
|
|
2
|
+
export declare const userAgent = "scaleway-sdk-js/v2.57.0";
|
package/dist/scw/constants.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scaleway/sdk",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.58.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": "
|
|
42
|
+
"gitHead": "62bf1f104066d4ef19d4ce5adca02b3c5f4b937e"
|
|
43
43
|
}
|