@scaleway/sdk 2.5.0 → 2.7.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/account/v2/api.gen.js +26 -74
- package/dist/api/account/v3/api.gen.js +20 -60
- package/dist/api/applesilicon/v1alpha1/api.gen.js +16 -56
- package/dist/api/baremetal/v1/api.gen.js +36 -132
- package/dist/api/billing/v2alpha1/api.gen.js +17 -57
- package/dist/api/block/v1alpha1/api.gen.js +19 -67
- package/dist/api/block/v1alpha1/marshalling.gen.js +1 -0
- package/dist/api/cockpit/v1beta1/api.gen.js +95 -279
- package/dist/api/container/v1beta1/api.gen.js +51 -123
- package/dist/api/document_db/v1beta1/api.gen.js +18 -66
- package/dist/api/document_db/v1beta1/marshalling.gen.js +20 -1
- package/dist/api/domain/v2beta1/api.gen.js +36 -124
- package/dist/api/flexibleip/v1alpha1/api.gen.js +6 -22
- package/dist/api/function/v1beta1/api.gen.js +55 -135
- package/dist/api/iam/v1alpha1/api.gen.js +66 -226
- package/dist/api/instance/v1/api.gen.js +156 -325
- package/dist/api/instance/v1/api.utils.js +0 -126
- package/dist/api/instance/v1/marshalling.gen.js +99 -51
- package/dist/api/iot/v1/api.gen.js +24 -88
- package/dist/api/ipam/v1/api.gen.js +12 -28
- package/dist/api/ipfs/v1alpha1/api.gen.js +12 -44
- package/dist/api/jobs/v1alpha1/api.gen.js +13 -58
- package/dist/api/jobs/v1alpha1/marshalling.gen.js +2 -0
- package/dist/api/k8s/v1/api.gen.js +16 -56
- package/dist/api/k8s/v1/marshalling.gen.js +1 -0
- package/dist/api/lb/v1/api.gen.js +72 -248
- package/dist/api/marketplace/v1/api.gen.js +7 -31
- package/dist/api/marketplace/v1/marshalling.gen.js +1 -18
- package/dist/api/marketplace/v2/api.gen.js +21 -53
- package/dist/api/mnq/v1beta1/api.gen.js +76 -212
- package/dist/api/rdb/v1/api.gen.js +24 -88
- package/dist/api/rdb/v1/marshalling.gen.js +11 -1
- package/dist/api/redis/v1/api.gen.js +6 -22
- package/dist/api/registry/v1/api.gen.js +12 -44
- package/dist/api/secret/v1alpha1/api.gen.js +18 -66
- package/dist/api/serverless_sqldb/index.js +2 -0
- package/dist/api/serverless_sqldb/v1alpha1/api.gen.js +162 -0
- package/dist/api/serverless_sqldb/v1alpha1/content.gen.js +7 -0
- package/dist/api/serverless_sqldb/v1alpha1/index.gen.js +7 -0
- package/dist/api/serverless_sqldb/v1alpha1/marshalling.gen.js +77 -0
- package/dist/api/serverless_sqldb/v1alpha1/validation-rules.gen.js +60 -0
- package/dist/api/tem/v1alpha1/api.gen.js +17 -57
- package/dist/api/test/v1/api.gen.js +6 -22
- package/dist/api/vpc/v1/api.gen.js +12 -36
- package/dist/api/vpc/v2/api.gen.js +30 -86
- package/dist/api/vpcgw/v1/api.gen.js +46 -158
- package/dist/api/webhosting/v1alpha1/api.gen.js +12 -44
- package/dist/helpers/marshalling.js +8 -23
- package/dist/index.cjs +1066 -821
- package/dist/index.d.ts +2191 -1780
- package/dist/index.js +12 -10
- package/dist/internal/async/interval-retrier.js +8 -16
- package/dist/internal/interceptors/helpers.js +3 -4
- package/dist/internal/logger/console-logger.js +1 -7
- package/dist/internal/logger/index.js +1 -9
- package/dist/scw/auth.js +1 -2
- package/dist/scw/client.js +2 -10
- package/dist/scw/constants.js +1 -1
- package/dist/scw/errors/non-standard/invalid-request-mapper.js +5 -8
- package/dist/scw/errors/scw-error.js +2 -9
- package/dist/scw/errors/standard/permissions-denied-error.js +4 -7
- package/dist/scw/fetch/build-fetcher.js +1 -4
- package/dist/scw/fetch/http-dumper.js +1 -4
- package/dist/scw/fetch/http-interceptors.js +18 -31
- package/dist/scw/fetch/resource-paginator.js +3 -17
- package/package.json +2 -2
- package/dist/api/instance/v1/marshalling.utils.js +0 -63
|
@@ -44,19 +44,11 @@ class API extends API$1 {
|
|
|
44
44
|
method: 'GET',
|
|
45
45
|
path: `/ipfs/v1alpha1/regions/${validatePathParam('region', request.region ?? this.client.settings.defaultRegion)}/volumes/${validatePathParam('volumeId', request.volumeId)}`
|
|
46
46
|
}, unmarshalVolume);
|
|
47
|
-
pageOfListVolumes = (
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
}
|
|
53
|
-
return _this.client.fetch({
|
|
54
|
-
method: 'GET',
|
|
55
|
-
path: `/ipfs/v1alpha1/regions/${validatePathParam('region', request.region ?? _this.client.settings.defaultRegion)}/volumes`,
|
|
56
|
-
urlParams: urlParams(['order_by', request.orderBy], ['page', request.page], ['page_size', request.pageSize ?? _this.client.settings.defaultPageSize], ['project_id', request.projectId ?? _this.client.settings.defaultProjectId])
|
|
57
|
-
}, unmarshalListVolumesResponse);
|
|
58
|
-
};
|
|
59
|
-
})();
|
|
47
|
+
pageOfListVolumes = (request = {}) => this.client.fetch({
|
|
48
|
+
method: 'GET',
|
|
49
|
+
path: `/ipfs/v1alpha1/regions/${validatePathParam('region', request.region ?? this.client.settings.defaultRegion)}/volumes`,
|
|
50
|
+
urlParams: urlParams(['order_by', request.orderBy], ['page', request.page], ['page_size', request.pageSize ?? this.client.settings.defaultPageSize], ['project_id', request.projectId ?? this.client.settings.defaultProjectId])
|
|
51
|
+
}, unmarshalListVolumesResponse);
|
|
60
52
|
|
|
61
53
|
/**
|
|
62
54
|
* List all volumes by a Project ID. Retrieve information about all volumes
|
|
@@ -65,15 +57,7 @@ class API extends API$1 {
|
|
|
65
57
|
* @param request - The request {@link ListVolumesRequest}
|
|
66
58
|
* @returns A Promise of ListVolumesResponse
|
|
67
59
|
*/
|
|
68
|
-
listVolumes = (
|
|
69
|
-
var _this2 = this;
|
|
70
|
-
return function (request) {
|
|
71
|
-
if (request === void 0) {
|
|
72
|
-
request = {};
|
|
73
|
-
}
|
|
74
|
-
return enrichForPagination('volumes', _this2.pageOfListVolumes, request);
|
|
75
|
-
};
|
|
76
|
-
})();
|
|
60
|
+
listVolumes = (request = {}) => enrichForPagination('volumes', this.pageOfListVolumes, request);
|
|
77
61
|
|
|
78
62
|
/**
|
|
79
63
|
* Update volume information. Update volume information (tag, name...).
|
|
@@ -257,19 +241,11 @@ class IpnsAPI extends API$1 {
|
|
|
257
241
|
method: 'DELETE',
|
|
258
242
|
path: `/ipfs/v1alpha1/regions/${validatePathParam('region', request.region ?? this.client.settings.defaultRegion)}/names/${validatePathParam('nameId', request.nameId)}`
|
|
259
243
|
});
|
|
260
|
-
pageOfListNames = (
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
}
|
|
266
|
-
return _this3.client.fetch({
|
|
267
|
-
method: 'GET',
|
|
268
|
-
path: `/ipfs/v1alpha1/regions/${validatePathParam('region', request.region ?? _this3.client.settings.defaultRegion)}/names`,
|
|
269
|
-
urlParams: urlParams(['order_by', request.orderBy], ['organization_id', request.organizationId], ['page', request.page], ['page_size', request.pageSize ?? _this3.client.settings.defaultPageSize], ['project_id', request.projectId])
|
|
270
|
-
}, unmarshalListNamesResponse);
|
|
271
|
-
};
|
|
272
|
-
})();
|
|
244
|
+
pageOfListNames = (request = {}) => this.client.fetch({
|
|
245
|
+
method: 'GET',
|
|
246
|
+
path: `/ipfs/v1alpha1/regions/${validatePathParam('region', request.region ?? this.client.settings.defaultRegion)}/names`,
|
|
247
|
+
urlParams: urlParams(['order_by', request.orderBy], ['organization_id', request.organizationId], ['page', request.page], ['page_size', request.pageSize ?? this.client.settings.defaultPageSize], ['project_id', request.projectId])
|
|
248
|
+
}, unmarshalListNamesResponse);
|
|
273
249
|
|
|
274
250
|
/**
|
|
275
251
|
* List all names by a Project ID. Retrieve information about all names from a
|
|
@@ -278,15 +254,7 @@ class IpnsAPI extends API$1 {
|
|
|
278
254
|
* @param request - The request {@link IpnsApiListNamesRequest}
|
|
279
255
|
* @returns A Promise of ListNamesResponse
|
|
280
256
|
*/
|
|
281
|
-
listNames = (
|
|
282
|
-
var _this4 = this;
|
|
283
|
-
return function (request) {
|
|
284
|
-
if (request === void 0) {
|
|
285
|
-
request = {};
|
|
286
|
-
}
|
|
287
|
-
return enrichForPagination('names', _this4.pageOfListNames, request);
|
|
288
|
-
};
|
|
289
|
-
})();
|
|
257
|
+
listNames = (request = {}) => enrichForPagination('names', this.pageOfListNames, request);
|
|
290
258
|
|
|
291
259
|
/**
|
|
292
260
|
* Update name information. Update name information (CID, tag, name...).
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { API as API$1 } from '../../../scw/api.js';
|
|
2
|
-
import { unmarshalServiceInfo } from '../../../scw/custom-marshalling.js';
|
|
3
|
-
import { enrichForPagination } from '../../../scw/fetch/resource-paginator.js';
|
|
4
2
|
import { validatePathParam, urlParams } from '../../../helpers/marshalling.js';
|
|
3
|
+
import { enrichForPagination } from '../../../scw/fetch/resource-paginator.js';
|
|
5
4
|
import { marshalCreateJobDefinitionRequest, unmarshalJobDefinition, unmarshalListJobDefinitionsResponse, marshalUpdateJobDefinitionRequest, unmarshalJobRun, unmarshalListJobRunsResponse } from './marshalling.gen.js';
|
|
6
5
|
|
|
7
6
|
// This file was automatically generated. DO NOT EDIT.
|
|
@@ -14,18 +13,6 @@ const jsonContentHeaders = {
|
|
|
14
13
|
class API extends API$1 {
|
|
15
14
|
/** Lists the available regions of the API. */
|
|
16
15
|
static LOCALITIES = ['fr-par', 'nl-ams', 'pl-waw'];
|
|
17
|
-
getServiceInfo = (() => {
|
|
18
|
-
var _this = this;
|
|
19
|
-
return function (request) {
|
|
20
|
-
if (request === void 0) {
|
|
21
|
-
request = {};
|
|
22
|
-
}
|
|
23
|
-
return _this.client.fetch({
|
|
24
|
-
method: 'GET',
|
|
25
|
-
path: `/serverless-jobs/v1alpha1/regions/${validatePathParam('region', request.region ?? _this.client.settings.defaultRegion)}`
|
|
26
|
-
}, unmarshalServiceInfo);
|
|
27
|
-
};
|
|
28
|
-
})();
|
|
29
16
|
createJobDefinition = request => this.client.fetch({
|
|
30
17
|
body: JSON.stringify(marshalCreateJobDefinitionRequest(request, this.client.settings)),
|
|
31
18
|
headers: jsonContentHeaders,
|
|
@@ -36,28 +23,12 @@ class API extends API$1 {
|
|
|
36
23
|
method: 'GET',
|
|
37
24
|
path: `/serverless-jobs/v1alpha1/regions/${validatePathParam('region', request.region ?? this.client.settings.defaultRegion)}/job-definitions/${validatePathParam('jobDefinitionId', request.jobDefinitionId)}`
|
|
38
25
|
}, unmarshalJobDefinition);
|
|
39
|
-
pageOfListJobDefinitions = (
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
return _this2.client.fetch({
|
|
46
|
-
method: 'GET',
|
|
47
|
-
path: `/serverless-jobs/v1alpha1/regions/${validatePathParam('region', request.region ?? _this2.client.settings.defaultRegion)}/job-definitions`,
|
|
48
|
-
urlParams: urlParams(['order_by', request.orderBy], ['page', request.page], ['page_size', request.pageSize ?? _this2.client.settings.defaultPageSize], ['project_id', request.projectId])
|
|
49
|
-
}, unmarshalListJobDefinitionsResponse);
|
|
50
|
-
};
|
|
51
|
-
})();
|
|
52
|
-
listJobDefinitions = (() => {
|
|
53
|
-
var _this3 = this;
|
|
54
|
-
return function (request) {
|
|
55
|
-
if (request === void 0) {
|
|
56
|
-
request = {};
|
|
57
|
-
}
|
|
58
|
-
return enrichForPagination('jobDefinitions', _this3.pageOfListJobDefinitions, request);
|
|
59
|
-
};
|
|
60
|
-
})();
|
|
26
|
+
pageOfListJobDefinitions = (request = {}) => this.client.fetch({
|
|
27
|
+
method: 'GET',
|
|
28
|
+
path: `/serverless-jobs/v1alpha1/regions/${validatePathParam('region', request.region ?? this.client.settings.defaultRegion)}/job-definitions`,
|
|
29
|
+
urlParams: urlParams(['order_by', request.orderBy], ['page', request.page], ['page_size', request.pageSize ?? this.client.settings.defaultPageSize], ['project_id', request.projectId])
|
|
30
|
+
}, unmarshalListJobDefinitionsResponse);
|
|
31
|
+
listJobDefinitions = (request = {}) => enrichForPagination('jobDefinitions', this.pageOfListJobDefinitions, request);
|
|
61
32
|
updateJobDefinition = request => this.client.fetch({
|
|
62
33
|
body: JSON.stringify(marshalUpdateJobDefinitionRequest(request, this.client.settings)),
|
|
63
34
|
headers: jsonContentHeaders,
|
|
@@ -84,28 +55,12 @@ class API extends API$1 {
|
|
|
84
55
|
method: 'POST',
|
|
85
56
|
path: `/serverless-jobs/v1alpha1/regions/${validatePathParam('region', request.region ?? this.client.settings.defaultRegion)}/job-runs/${validatePathParam('jobRunId', request.jobRunId)}/stop`
|
|
86
57
|
}, unmarshalJobRun);
|
|
87
|
-
pageOfListJobRuns = (
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
return _this4.client.fetch({
|
|
94
|
-
method: 'GET',
|
|
95
|
-
path: `/serverless-jobs/v1alpha1/regions/${validatePathParam('region', request.region ?? _this4.client.settings.defaultRegion)}/job-runs`,
|
|
96
|
-
urlParams: urlParams(['job_definition_id', request.jobDefinitionId], ['order_by', request.orderBy], ['page', request.page], ['page_size', request.pageSize ?? _this4.client.settings.defaultPageSize], ['project_id', request.projectId])
|
|
97
|
-
}, unmarshalListJobRunsResponse);
|
|
98
|
-
};
|
|
99
|
-
})();
|
|
100
|
-
listJobRuns = (() => {
|
|
101
|
-
var _this5 = this;
|
|
102
|
-
return function (request) {
|
|
103
|
-
if (request === void 0) {
|
|
104
|
-
request = {};
|
|
105
|
-
}
|
|
106
|
-
return enrichForPagination('jobRuns', _this5.pageOfListJobRuns, request);
|
|
107
|
-
};
|
|
108
|
-
})();
|
|
58
|
+
pageOfListJobRuns = (request = {}) => this.client.fetch({
|
|
59
|
+
method: 'GET',
|
|
60
|
+
path: `/serverless-jobs/v1alpha1/regions/${validatePathParam('region', request.region ?? this.client.settings.defaultRegion)}/job-runs`,
|
|
61
|
+
urlParams: urlParams(['job_definition_id', request.jobDefinitionId], ['order_by', request.orderBy], ['page', request.page], ['page_size', request.pageSize ?? this.client.settings.defaultPageSize], ['project_id', request.projectId])
|
|
62
|
+
}, unmarshalListJobRunsResponse);
|
|
63
|
+
listJobRuns = (request = {}) => enrichForPagination('jobRuns', this.pageOfListJobRuns, request);
|
|
109
64
|
}
|
|
110
65
|
|
|
111
66
|
export { API };
|
|
@@ -29,11 +29,13 @@ const unmarshalJobRun = data => {
|
|
|
29
29
|
throw new TypeError(`Unmarshalling the type 'JobRun' failed as data isn't a dictionary.`);
|
|
30
30
|
}
|
|
31
31
|
return {
|
|
32
|
+
cpuLimit: data.cpu_limit,
|
|
32
33
|
createdAt: unmarshalDate(data.created_at),
|
|
33
34
|
errorMessage: data.error_message,
|
|
34
35
|
exitCode: data.exit_code,
|
|
35
36
|
id: data.id,
|
|
36
37
|
jobDefinitionId: data.job_definition_id,
|
|
38
|
+
memoryLimit: data.memory_limit,
|
|
37
39
|
region: data.region,
|
|
38
40
|
runDuration: data.run_duration,
|
|
39
41
|
state: data.state,
|
|
@@ -15,19 +15,11 @@ const jsonContentHeaders = {
|
|
|
15
15
|
class API extends API$1 {
|
|
16
16
|
/** Lists the available regions of the API. */
|
|
17
17
|
static LOCALITIES = ['fr-par', 'nl-ams', 'pl-waw'];
|
|
18
|
-
pageOfListClusters = (
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
}
|
|
24
|
-
return _this.client.fetch({
|
|
25
|
-
method: 'GET',
|
|
26
|
-
path: `/k8s/v1/regions/${validatePathParam('region', request.region ?? _this.client.settings.defaultRegion)}/clusters`,
|
|
27
|
-
urlParams: urlParams(['name', request.name], ['order_by', request.orderBy], ['organization_id', request.organizationId], ['page', request.page], ['page_size', request.pageSize ?? _this.client.settings.defaultPageSize], ['private_network_id', request.privateNetworkId], ['project_id', request.projectId], ['status', request.status], ['type', request.type])
|
|
28
|
-
}, unmarshalListClustersResponse);
|
|
29
|
-
};
|
|
30
|
-
})();
|
|
18
|
+
pageOfListClusters = (request = {}) => this.client.fetch({
|
|
19
|
+
method: 'GET',
|
|
20
|
+
path: `/k8s/v1/regions/${validatePathParam('region', request.region ?? this.client.settings.defaultRegion)}/clusters`,
|
|
21
|
+
urlParams: urlParams(['name', request.name], ['order_by', request.orderBy], ['organization_id', request.organizationId], ['page', request.page], ['page_size', request.pageSize ?? this.client.settings.defaultPageSize], ['private_network_id', request.privateNetworkId], ['project_id', request.projectId], ['status', request.status], ['type', request.type])
|
|
22
|
+
}, unmarshalListClustersResponse);
|
|
31
23
|
|
|
32
24
|
/**
|
|
33
25
|
* List Clusters. List all existing Kubernetes clusters in a specific region.
|
|
@@ -35,15 +27,7 @@ class API extends API$1 {
|
|
|
35
27
|
* @param request - The request {@link ListClustersRequest}
|
|
36
28
|
* @returns A Promise of ListClustersResponse
|
|
37
29
|
*/
|
|
38
|
-
listClusters = (
|
|
39
|
-
var _this2 = this;
|
|
40
|
-
return function (request) {
|
|
41
|
-
if (request === void 0) {
|
|
42
|
-
request = {};
|
|
43
|
-
}
|
|
44
|
-
return enrichForPagination('clusters', _this2.pageOfListClusters, request);
|
|
45
|
-
};
|
|
46
|
-
})();
|
|
30
|
+
listClusters = (request = {}) => enrichForPagination('clusters', this.pageOfListClusters, request);
|
|
47
31
|
|
|
48
32
|
/**
|
|
49
33
|
* Create a new Cluster. Create a new Kubernetes cluster in a Scaleway region.
|
|
@@ -396,18 +380,10 @@ class API extends API$1 {
|
|
|
396
380
|
* @param request - The request {@link ListVersionsRequest}
|
|
397
381
|
* @returns A Promise of ListVersionsResponse
|
|
398
382
|
*/
|
|
399
|
-
listVersions = (
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
request = {};
|
|
404
|
-
}
|
|
405
|
-
return _this3.client.fetch({
|
|
406
|
-
method: 'GET',
|
|
407
|
-
path: `/k8s/v1/regions/${validatePathParam('region', request.region ?? _this3.client.settings.defaultRegion)}/versions`
|
|
408
|
-
}, unmarshalListVersionsResponse);
|
|
409
|
-
};
|
|
410
|
-
})();
|
|
383
|
+
listVersions = (request = {}) => this.client.fetch({
|
|
384
|
+
method: 'GET',
|
|
385
|
+
path: `/k8s/v1/regions/${validatePathParam('region', request.region ?? this.client.settings.defaultRegion)}/versions`
|
|
386
|
+
}, unmarshalListVersionsResponse);
|
|
411
387
|
|
|
412
388
|
/**
|
|
413
389
|
* Get a Version. Retrieve a specific Kubernetes version and its details.
|
|
@@ -419,19 +395,11 @@ class API extends API$1 {
|
|
|
419
395
|
method: 'GET',
|
|
420
396
|
path: `/k8s/v1/regions/${validatePathParam('region', request.region ?? this.client.settings.defaultRegion)}/versions/${validatePathParam('versionName', request.versionName)}`
|
|
421
397
|
}, unmarshalVersion);
|
|
422
|
-
pageOfListClusterTypes = (
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
}
|
|
428
|
-
return _this4.client.fetch({
|
|
429
|
-
method: 'GET',
|
|
430
|
-
path: `/k8s/v1/regions/${validatePathParam('region', request.region ?? _this4.client.settings.defaultRegion)}/cluster-types`,
|
|
431
|
-
urlParams: urlParams(['page', request.page], ['page_size', request.pageSize ?? _this4.client.settings.defaultPageSize])
|
|
432
|
-
}, unmarshalListClusterTypesResponse);
|
|
433
|
-
};
|
|
434
|
-
})();
|
|
398
|
+
pageOfListClusterTypes = (request = {}) => this.client.fetch({
|
|
399
|
+
method: 'GET',
|
|
400
|
+
path: `/k8s/v1/regions/${validatePathParam('region', request.region ?? this.client.settings.defaultRegion)}/cluster-types`,
|
|
401
|
+
urlParams: urlParams(['page', request.page], ['page_size', request.pageSize ?? this.client.settings.defaultPageSize])
|
|
402
|
+
}, unmarshalListClusterTypesResponse);
|
|
435
403
|
|
|
436
404
|
/**
|
|
437
405
|
* List cluster types. List available cluster types and their technical
|
|
@@ -440,15 +408,7 @@ class API extends API$1 {
|
|
|
440
408
|
* @param request - The request {@link ListClusterTypesRequest}
|
|
441
409
|
* @returns A Promise of ListClusterTypesResponse
|
|
442
410
|
*/
|
|
443
|
-
listClusterTypes = (
|
|
444
|
-
var _this5 = this;
|
|
445
|
-
return function (request) {
|
|
446
|
-
if (request === void 0) {
|
|
447
|
-
request = {};
|
|
448
|
-
}
|
|
449
|
-
return enrichForPagination('clusterTypes', _this5.pageOfListClusterTypes, request);
|
|
450
|
-
};
|
|
451
|
-
})();
|
|
411
|
+
listClusterTypes = (request = {}) => enrichForPagination('clusterTypes', this.pageOfListClusterTypes, request);
|
|
452
412
|
}
|
|
453
413
|
|
|
454
414
|
export { API };
|