@scaleway/sdk 1.14.0 → 1.15.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 (49) hide show
  1. package/dist/api/account/v2/api.gen.js +77 -60
  2. package/dist/api/applesilicon/v1alpha1/api.gen.js +174 -152
  3. package/dist/api/baremetal/v1/api.gen.js +434 -378
  4. package/dist/api/baremetal/v1/api.utils.js +19 -22
  5. package/dist/api/billing/v2alpha1/api.gen.js +21 -17
  6. package/dist/api/cockpit/v1beta1/api.gen.js +308 -232
  7. package/dist/api/container/v1beta1/api.gen.js +384 -337
  8. package/dist/api/domain/v2beta1/api.gen.js +754 -668
  9. package/dist/api/flexibleip/v1alpha1/api.gen.js +164 -151
  10. package/dist/api/function/v1beta1/api.gen.js +467 -407
  11. package/dist/api/iam/v1alpha1/api.gen.js +641 -557
  12. package/dist/api/instance/v1/api.gen.js +802 -677
  13. package/dist/api/instance/v1/api.utils.js +337 -325
  14. package/dist/api/instance/v1/marshalling.gen.js +2 -1
  15. package/dist/api/iot/v1/api.gen.js +508 -452
  16. package/dist/api/ipfs/index.js +2 -0
  17. package/dist/api/ipfs/v1alpha1/api.gen.js +197 -0
  18. package/dist/api/ipfs/v1alpha1/content.gen.js +7 -0
  19. package/dist/api/ipfs/v1alpha1/index.gen.js +5 -0
  20. package/dist/api/ipfs/v1alpha1/marshalling.gen.js +125 -0
  21. package/dist/api/k8s/v1/api.gen.js +403 -342
  22. package/dist/api/k8s/v1/api.utils.js +7 -10
  23. package/dist/api/k8s/v1/marshalling.gen.js +19 -1
  24. package/dist/api/k8s/v1/validation-rules.gen.js +10 -1
  25. package/dist/api/lb/v1/api.gen.js +1501 -1363
  26. package/dist/api/lb/v1/api.utils.js +71 -75
  27. package/dist/api/lb/v1/marshalling.gen.js +6 -0
  28. package/dist/api/marketplace/v1/api.gen.js +35 -32
  29. package/dist/api/marketplace/v2/api.gen.js +117 -102
  30. package/dist/api/mnq/v1alpha1/api.gen.js +154 -137
  31. package/dist/api/rdb/v1/api.gen.js +897 -819
  32. package/dist/api/redis/v1/api.gen.js +358 -333
  33. package/dist/api/registry/v1/api.gen.js +211 -189
  34. package/dist/api/secret/v1alpha1/api.gen.js +265 -245
  35. package/dist/api/tem/v1alpha1/api.gen.js +182 -147
  36. package/dist/api/tem/v1alpha1/marshalling.gen.js +32 -1
  37. package/dist/api/test/v1/api.gen.js +116 -104
  38. package/dist/api/vpc/v1/api.gen.js +74 -65
  39. package/dist/api/vpc/v2/api.gen.js +200 -178
  40. package/dist/api/vpc/v2/marshalling.gen.js +1 -0
  41. package/dist/api/vpcgw/v1/api.gen.js +575 -501
  42. package/dist/api/webhosting/v1alpha1/api.gen.js +127 -117
  43. package/dist/index.cjs +732 -311
  44. package/dist/index.d.ts +2040 -1540
  45. package/dist/index.js +28 -26
  46. package/dist/internal/logger/console-logger.js +4 -5
  47. package/dist/scw/constants.js +1 -1
  48. package/dist/scw/errors/scw-error.js +2 -2
  49. package/package.json +2 -2
@@ -3,7 +3,7 @@ import { API as API$1 } from '../../../scw/api.js';
3
3
  import { validatePathParam, urlParams } from '../../../helpers/marshalling.js';
4
4
  import { enrichForPagination } from '../../../scw/fetch/resource-paginator.js';
5
5
  import { EMAIL_TRANSIENT_STATUSES, DOMAIN_TRANSIENT_STATUSES } from './content.gen.js';
6
- import { marshalCreateEmailRequest, unmarshalCreateEmailResponse, unmarshalEmail, unmarshalListEmailsResponse, unmarshalStatistics, marshalCreateDomainRequest, unmarshalDomain, unmarshalListDomainsResponse } from './marshalling.gen.js';
6
+ import { marshalCreateEmailRequest, unmarshalCreateEmailResponse, unmarshalEmail, unmarshalListEmailsResponse, unmarshalStatistics, marshalCreateDomainRequest, unmarshalDomain, unmarshalListDomainsResponse, unmarshalDomainLastStatus } from './marshalling.gen.js';
7
7
 
8
8
  // This file was automatically generated. DO NOT EDIT.
9
9
  // If you have any remark or suggestion do not hesitate to open an issue.
@@ -13,45 +13,48 @@ const jsonContentHeaders = {
13
13
 
14
14
  /** Transactional Email API. */
15
15
  class API extends API$1 {
16
- constructor() {
17
- var _this;
18
- super(...arguments);
19
- _this = this;
20
- /**
21
- * Send an email. You must specify the `region`, the sender and the
22
- * recipient's information and the `project_id` to send an email from a
23
- * checked domain. The subject of the email must contain at least 6
24
- * characters.
25
- *
26
- * @param request - The request {@link CreateEmailRequest}
27
- * @returns A Promise of CreateEmailResponse
28
- */
29
- this.createEmail = request => this.client.fetch({
30
- body: JSON.stringify(marshalCreateEmailRequest(request, this.client.settings)),
31
- headers: jsonContentHeaders,
32
- method: 'POST',
33
- path: `/transactional-email/v1alpha1/regions/${validatePathParam('region', request.region ?? this.client.settings.defaultRegion)}/emails`
34
- }, unmarshalCreateEmailResponse);
35
- /**
36
- * Get an email. Retrieve information about a specific email using the
37
- * `email_id` and `region` parameters.
38
- *
39
- * @param request - The request {@link GetEmailRequest}
40
- * @returns A Promise of Email
41
- */
42
- this.getEmail = request => this.client.fetch({
43
- method: 'GET',
44
- path: `/transactional-email/v1alpha1/regions/${validatePathParam('region', request.region ?? this.client.settings.defaultRegion)}/emails/${validatePathParam('emailId', request.emailId)}`
45
- }, unmarshalEmail);
46
- /**
47
- * Waits for {@link Email} to be in a final state.
48
- *
49
- * @param request - The request {@link GetEmailRequest}
50
- * @param options - The waiting options
51
- * @returns A Promise of Email
52
- */
53
- this.waitForEmail = (request, options) => waitForResource(options?.stop ?? (res => Promise.resolve(!EMAIL_TRANSIENT_STATUSES.includes(res.status))), this.getEmail, request, options);
54
- this.pageOfListEmails = function (request) {
16
+ /** Lists the available regions of the API. */
17
+ static LOCALITIES = ['fr-par'];
18
+
19
+ /**
20
+ * Send an email. You must specify the `region`, the sender and the
21
+ * recipient's information and the `project_id` to send an email from a
22
+ * checked domain. The subject of the email must contain at least 6
23
+ * characters.
24
+ *
25
+ * @param request - The request {@link CreateEmailRequest}
26
+ * @returns A Promise of CreateEmailResponse
27
+ */
28
+ createEmail = request => this.client.fetch({
29
+ body: JSON.stringify(marshalCreateEmailRequest(request, this.client.settings)),
30
+ headers: jsonContentHeaders,
31
+ method: 'POST',
32
+ path: `/transactional-email/v1alpha1/regions/${validatePathParam('region', request.region ?? this.client.settings.defaultRegion)}/emails`
33
+ }, unmarshalCreateEmailResponse);
34
+
35
+ /**
36
+ * Get an email. Retrieve information about a specific email using the
37
+ * `email_id` and `region` parameters.
38
+ *
39
+ * @param request - The request {@link GetEmailRequest}
40
+ * @returns A Promise of Email
41
+ */
42
+ getEmail = request => this.client.fetch({
43
+ method: 'GET',
44
+ path: `/transactional-email/v1alpha1/regions/${validatePathParam('region', request.region ?? this.client.settings.defaultRegion)}/emails/${validatePathParam('emailId', request.emailId)}`
45
+ }, unmarshalEmail);
46
+
47
+ /**
48
+ * Waits for {@link Email} to be in a final state.
49
+ *
50
+ * @param request - The request {@link GetEmailRequest}
51
+ * @param options - The waiting options
52
+ * @returns A Promise of Email
53
+ */
54
+ waitForEmail = (request, options) => waitForResource(options?.stop ?? (res => Promise.resolve(!EMAIL_TRANSIENT_STATUSES.includes(res.status))), this.getEmail, request, options);
55
+ pageOfListEmails = (() => {
56
+ var _this = this;
57
+ return function (request) {
55
58
  if (request === void 0) {
56
59
  request = {};
57
60
  }
@@ -61,134 +64,166 @@ class API extends API$1 {
61
64
  urlParams: urlParams(['domain_id', request.domainId], ['mail_from', request.mailFrom], ['mail_rcpt', request.mailRcpt], ['mail_to', request.mailTo], ['message_id', request.messageId], ['order_by', request.orderBy ?? 'created_at_desc'], ['page', request.page], ['page_size', request.pageSize ?? _this.client.settings.defaultPageSize], ['project_id', request.projectId], ['search', request.search], ['since', request.since], ['statuses', request.statuses], ['subject', request.subject], ['until', request.until])
62
65
  }, unmarshalListEmailsResponse);
63
66
  };
64
- /**
65
- * List emails. Retrieve the list of emails sent from a specific domain or for
66
- * a specific Project or Organization. You must specify the `region`.
67
- *
68
- * @param request - The request {@link ListEmailsRequest}
69
- * @returns A Promise of ListEmailsResponse
70
- */
71
- this.listEmails = function (request) {
67
+ })();
68
+
69
+ /**
70
+ * List emails. Retrieve the list of emails sent from a specific domain or for
71
+ * a specific Project or Organization. You must specify the `region`.
72
+ *
73
+ * @param request - The request {@link ListEmailsRequest}
74
+ * @returns A Promise of ListEmailsResponse
75
+ */
76
+ listEmails = (() => {
77
+ var _this2 = this;
78
+ return function (request) {
72
79
  if (request === void 0) {
73
80
  request = {};
74
81
  }
75
- return enrichForPagination('emails', _this.pageOfListEmails, request);
82
+ return enrichForPagination('emails', _this2.pageOfListEmails, request);
76
83
  };
77
- /**
78
- * Email statuses. Get information on your emails' statuses.
79
- *
80
- * @param request - The request {@link GetStatisticsRequest}
81
- * @returns A Promise of Statistics
82
- */
83
- this.getStatistics = function (request) {
84
+ })();
85
+
86
+ /**
87
+ * Email statuses. Get information on your emails' statuses.
88
+ *
89
+ * @param request - The request {@link GetStatisticsRequest}
90
+ * @returns A Promise of Statistics
91
+ */
92
+ getStatistics = (() => {
93
+ var _this3 = this;
94
+ return function (request) {
84
95
  if (request === void 0) {
85
96
  request = {};
86
97
  }
87
- return _this.client.fetch({
98
+ return _this3.client.fetch({
88
99
  method: 'GET',
89
- path: `/transactional-email/v1alpha1/regions/${validatePathParam('region', request.region ?? _this.client.settings.defaultRegion)}/statistics`,
100
+ path: `/transactional-email/v1alpha1/regions/${validatePathParam('region', request.region ?? _this3.client.settings.defaultRegion)}/statistics`,
90
101
  urlParams: urlParams(['domain_id', request.domainId], ['mail_from', request.mailFrom], ['project_id', request.projectId], ['since', request.since], ['until', request.until])
91
102
  }, unmarshalStatistics);
92
103
  };
93
- /**
94
- * Cancel an email. You can cancel the sending of an email if it has not been
95
- * sent yet. You must specify the `region` and the `email_id` of the email you
96
- * want to cancel.
97
- *
98
- * @param request - The request {@link CancelEmailRequest}
99
- * @returns A Promise of Email
100
- */
101
- this.cancelEmail = request => this.client.fetch({
102
- body: '{}',
103
- headers: jsonContentHeaders,
104
- method: 'POST',
105
- path: `/transactional-email/v1alpha1/regions/${validatePathParam('region', request.region ?? this.client.settings.defaultRegion)}/emails/${validatePathParam('emailId', request.emailId)}/cancel`
106
- }, unmarshalEmail);
107
- /**
108
- * Register a domain in a project. You must specify the `region`, `project_id`
109
- * and `domain_name` to register a domain in a specific Project.
110
- *
111
- * @param request - The request {@link CreateDomainRequest}
112
- * @returns A Promise of Domain
113
- */
114
- this.createDomain = request => this.client.fetch({
115
- body: JSON.stringify(marshalCreateDomainRequest(request, this.client.settings)),
116
- headers: jsonContentHeaders,
117
- method: 'POST',
118
- path: `/transactional-email/v1alpha1/regions/${validatePathParam('region', request.region ?? this.client.settings.defaultRegion)}/domains`
119
- }, unmarshalDomain);
120
- /**
121
- * Get information about a domain. Retrieve information about a specific
122
- * domain using the `region` and `domain_id` parameters.
123
- *
124
- * @param request - The request {@link GetDomainRequest}
125
- * @returns A Promise of Domain
126
- */
127
- this.getDomain = request => this.client.fetch({
128
- method: 'GET',
129
- path: `/transactional-email/v1alpha1/regions/${validatePathParam('region', request.region ?? this.client.settings.defaultRegion)}/domains/${validatePathParam('domainId', request.domainId)}`
130
- }, unmarshalDomain);
131
- /**
132
- * Waits for {@link Domain} to be in a final state.
133
- *
134
- * @param request - The request {@link GetDomainRequest}
135
- * @param options - The waiting options
136
- * @returns A Promise of Domain
137
- */
138
- this.waitForDomain = (request, options) => waitForResource(options?.stop ?? (res => Promise.resolve(!DOMAIN_TRANSIENT_STATUSES.includes(res.status))), this.getDomain, request, options);
139
- this.pageOfListDomains = function (request) {
104
+ })();
105
+
106
+ /**
107
+ * Cancel an email. You can cancel the sending of an email if it has not been
108
+ * sent yet. You must specify the `region` and the `email_id` of the email you
109
+ * want to cancel.
110
+ *
111
+ * @param request - The request {@link CancelEmailRequest}
112
+ * @returns A Promise of Email
113
+ */
114
+ cancelEmail = request => this.client.fetch({
115
+ body: '{}',
116
+ headers: jsonContentHeaders,
117
+ method: 'POST',
118
+ path: `/transactional-email/v1alpha1/regions/${validatePathParam('region', request.region ?? this.client.settings.defaultRegion)}/emails/${validatePathParam('emailId', request.emailId)}/cancel`
119
+ }, unmarshalEmail);
120
+
121
+ /**
122
+ * Register a domain in a project. You must specify the `region`, `project_id`
123
+ * and `domain_name` to register a domain in a specific Project.
124
+ *
125
+ * @param request - The request {@link CreateDomainRequest}
126
+ * @returns A Promise of Domain
127
+ */
128
+ createDomain = request => this.client.fetch({
129
+ body: JSON.stringify(marshalCreateDomainRequest(request, this.client.settings)),
130
+ headers: jsonContentHeaders,
131
+ method: 'POST',
132
+ path: `/transactional-email/v1alpha1/regions/${validatePathParam('region', request.region ?? this.client.settings.defaultRegion)}/domains`
133
+ }, unmarshalDomain);
134
+
135
+ /**
136
+ * Get information about a domain. Retrieve information about a specific
137
+ * domain using the `region` and `domain_id` parameters.
138
+ *
139
+ * @param request - The request {@link GetDomainRequest}
140
+ * @returns A Promise of Domain
141
+ */
142
+ getDomain = request => this.client.fetch({
143
+ method: 'GET',
144
+ path: `/transactional-email/v1alpha1/regions/${validatePathParam('region', request.region ?? this.client.settings.defaultRegion)}/domains/${validatePathParam('domainId', request.domainId)}`
145
+ }, unmarshalDomain);
146
+
147
+ /**
148
+ * Waits for {@link Domain} to be in a final state.
149
+ *
150
+ * @param request - The request {@link GetDomainRequest}
151
+ * @param options - The waiting options
152
+ * @returns A Promise of Domain
153
+ */
154
+ waitForDomain = (request, options) => waitForResource(options?.stop ?? (res => Promise.resolve(!DOMAIN_TRANSIENT_STATUSES.includes(res.status))), this.getDomain, request, options);
155
+ pageOfListDomains = (() => {
156
+ var _this4 = this;
157
+ return function (request) {
140
158
  if (request === void 0) {
141
159
  request = {};
142
160
  }
143
- return _this.client.fetch({
161
+ return _this4.client.fetch({
144
162
  method: 'GET',
145
- path: `/transactional-email/v1alpha1/regions/${validatePathParam('region', request.region ?? _this.client.settings.defaultRegion)}/domains`,
146
- urlParams: urlParams(['name', request.name], ['organization_id', request.organizationId], ['page', request.page], ['page_size', request.pageSize ?? _this.client.settings.defaultPageSize], ['project_id', request.projectId], ['status', request.status])
163
+ path: `/transactional-email/v1alpha1/regions/${validatePathParam('region', request.region ?? _this4.client.settings.defaultRegion)}/domains`,
164
+ urlParams: urlParams(['name', request.name], ['organization_id', request.organizationId], ['page', request.page], ['page_size', request.pageSize ?? _this4.client.settings.defaultPageSize], ['project_id', request.projectId], ['status', request.status])
147
165
  }, unmarshalListDomainsResponse);
148
166
  };
149
- /**
150
- * List domains. Retrieve domains in a specific project or in a specific
151
- * Organization using the `region` parameter.
152
- *
153
- * @param request - The request {@link ListDomainsRequest}
154
- * @returns A Promise of ListDomainsResponse
155
- */
156
- this.listDomains = function (request) {
167
+ })();
168
+
169
+ /**
170
+ * List domains. Retrieve domains in a specific project or in a specific
171
+ * Organization using the `region` parameter.
172
+ *
173
+ * @param request - The request {@link ListDomainsRequest}
174
+ * @returns A Promise of ListDomainsResponse
175
+ */
176
+ listDomains = (() => {
177
+ var _this5 = this;
178
+ return function (request) {
157
179
  if (request === void 0) {
158
180
  request = {};
159
181
  }
160
- return enrichForPagination('domains', _this.pageOfListDomains, request);
182
+ return enrichForPagination('domains', _this5.pageOfListDomains, request);
161
183
  };
162
- /**
163
- * Delete a domain. You must specify the domain you want to delete by the
164
- * `region` and `domain_id`. Deleting a domain is permanent and cannot be
165
- * undone.
166
- *
167
- * @param request - The request {@link RevokeDomainRequest}
168
- * @returns A Promise of Domain
169
- */
170
- this.revokeDomain = request => this.client.fetch({
171
- body: '{}',
172
- headers: jsonContentHeaders,
173
- method: 'POST',
174
- path: `/transactional-email/v1alpha1/regions/${validatePathParam('region', request.region ?? this.client.settings.defaultRegion)}/domains/${validatePathParam('domainId', request.domainId)}/revoke`
175
- }, unmarshalDomain);
176
- /**
177
- * Domain DNS check. Perform an immediate DNS check of a domain using the
178
- * `region` and `domain_id` parameters.
179
- *
180
- * @param request - The request {@link CheckDomainRequest}
181
- * @returns A Promise of Domain
182
- */
183
- this.checkDomain = request => this.client.fetch({
184
- body: '{}',
185
- headers: jsonContentHeaders,
186
- method: 'POST',
187
- path: `/transactional-email/v1alpha1/regions/${validatePathParam('region', request.region ?? this.client.settings.defaultRegion)}/domains/${validatePathParam('domainId', request.domainId)}/check`
188
- }, unmarshalDomain);
189
- }
184
+ })();
185
+
186
+ /**
187
+ * Delete a domain. You must specify the domain you want to delete by the
188
+ * `region` and `domain_id`. Deleting a domain is permanent and cannot be
189
+ * undone.
190
+ *
191
+ * @param request - The request {@link RevokeDomainRequest}
192
+ * @returns A Promise of Domain
193
+ */
194
+ revokeDomain = request => this.client.fetch({
195
+ body: '{}',
196
+ headers: jsonContentHeaders,
197
+ method: 'POST',
198
+ path: `/transactional-email/v1alpha1/regions/${validatePathParam('region', request.region ?? this.client.settings.defaultRegion)}/domains/${validatePathParam('domainId', request.domainId)}/revoke`
199
+ }, unmarshalDomain);
200
+
201
+ /**
202
+ * Domain DNS check. Perform an immediate DNS check of a domain using the
203
+ * `region` and `domain_id` parameters.
204
+ *
205
+ * @param request - The request {@link CheckDomainRequest}
206
+ * @returns A Promise of Domain
207
+ */
208
+ checkDomain = request => this.client.fetch({
209
+ body: '{}',
210
+ headers: jsonContentHeaders,
211
+ method: 'POST',
212
+ path: `/transactional-email/v1alpha1/regions/${validatePathParam('region', request.region ?? this.client.settings.defaultRegion)}/domains/${validatePathParam('domainId', request.domainId)}/check`
213
+ }, unmarshalDomain);
214
+
215
+ /**
216
+ * Display SPF and DKIM records status and potential errors. Display SPF and
217
+ * DKIM records status and potential errors, including the found records to
218
+ * make debugging easier.
219
+ *
220
+ * @param request - The request {@link GetDomainLastStatusRequest}
221
+ * @returns A Promise of DomainLastStatus
222
+ */
223
+ getDomainLastStatus = request => this.client.fetch({
224
+ method: 'GET',
225
+ path: `/transactional-email/v1alpha1/regions/${validatePathParam('region', request.region ?? this.client.settings.defaultRegion)}/domains/${validatePathParam('domainId', request.domainId)}/verification`
226
+ }, unmarshalDomainLastStatus);
190
227
  }
191
- /** Lists the available regions of the API. */
192
- API.LOCALITIES = ['fr-par'];
193
228
 
194
229
  export { API };
@@ -46,6 +46,26 @@ const unmarshalDomain = data => {
46
46
  status: data.status
47
47
  };
48
48
  };
49
+ const unmarshalDomainLastStatusDkimRecord = data => {
50
+ if (!isJSONObject(data)) {
51
+ throw new TypeError(`Unmarshalling the type 'DomainLastStatusDkimRecord' failed as data isn't a dictionary.`);
52
+ }
53
+ return {
54
+ error: data.error,
55
+ lastValidAt: unmarshalDate(data.last_valid_at),
56
+ status: data.status
57
+ };
58
+ };
59
+ const unmarshalDomainLastStatusSpfRecord = data => {
60
+ if (!isJSONObject(data)) {
61
+ throw new TypeError(`Unmarshalling the type 'DomainLastStatusSpfRecord' failed as data isn't a dictionary.`);
62
+ }
63
+ return {
64
+ error: data.error,
65
+ lastValidAt: unmarshalDate(data.last_valid_at),
66
+ status: data.status
67
+ };
68
+ };
49
69
  const unmarshalEmail = data => {
50
70
  if (!isJSONObject(data)) {
51
71
  throw new TypeError(`Unmarshalling the type 'Email' failed as data isn't a dictionary.`);
@@ -75,6 +95,17 @@ const unmarshalCreateEmailResponse = data => {
75
95
  emails: unmarshalArrayOfObject(data.emails, unmarshalEmail)
76
96
  };
77
97
  };
98
+ const unmarshalDomainLastStatus = data => {
99
+ if (!isJSONObject(data)) {
100
+ throw new TypeError(`Unmarshalling the type 'DomainLastStatus' failed as data isn't a dictionary.`);
101
+ }
102
+ return {
103
+ dkimRecord: data.dkim_record ? unmarshalDomainLastStatusDkimRecord(data.dkim_record) : undefined,
104
+ domainId: data.domain_id,
105
+ domainName: data.domain_name,
106
+ spfRecord: data.spf_record ? unmarshalDomainLastStatusSpfRecord(data.spf_record) : undefined
107
+ };
108
+ };
78
109
  const unmarshalListDomainsResponse = data => {
79
110
  if (!isJSONObject(data)) {
80
111
  throw new TypeError(`Unmarshalling the type 'ListDomainsResponse' failed as data isn't a dictionary.`);
@@ -133,4 +164,4 @@ const marshalCreateEmailRequest = (request, defaults) => ({
133
164
  to: request.to ? request.to.map(elt => marshalCreateEmailRequestAddress(elt)) : undefined
134
165
  });
135
166
 
136
- export { marshalCreateDomainRequest, marshalCreateEmailRequest, unmarshalCreateEmailResponse, unmarshalDomain, unmarshalEmail, unmarshalListDomainsResponse, unmarshalListEmailsResponse, unmarshalStatistics };
167
+ export { marshalCreateDomainRequest, marshalCreateEmailRequest, unmarshalCreateEmailResponse, unmarshalDomain, unmarshalDomainLastStatus, unmarshalEmail, unmarshalListDomainsResponse, unmarshalListEmailsResponse, unmarshalStatistics };