@scaleway/sdk-lb 2.4.1 → 2.5.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/_virtual/_rolldown/runtime.js +2 -0
- package/dist/v1/api.gen.js +6 -4
- package/dist/v1/content.gen.js +6 -4
- package/dist/v1/index.gen.js +3 -1
- package/dist/v1/marshalling.gen.js +76 -72
- package/dist/v1/metadata.gen.d.ts +419 -0
- package/dist/v1/metadata.gen.js +463 -0
- package/dist/v1/types.gen.d.ts +12 -4
- package/dist/v1/types.gen.js +0 -0
- package/dist/v1/validation-rules.gen.js +5 -3
- package/package.json +5 -5
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
//#region \0rolldown/runtime.js
|
|
1
2
|
var __defProp = Object.defineProperty;
|
|
2
3
|
var __exportAll = (all, no_symbols) => {
|
|
3
4
|
let target = {};
|
|
@@ -8,4 +9,5 @@ var __exportAll = (all, no_symbols) => {
|
|
|
8
9
|
if (!no_symbols) __defProp(target, Symbol.toStringTag, { value: "Module" });
|
|
9
10
|
return target;
|
|
10
11
|
};
|
|
12
|
+
//#endregion
|
|
11
13
|
export { __exportAll };
|
package/dist/v1/api.gen.js
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
import { CERTIFICATE_TRANSIENT_STATUSES, LB_TRANSIENT_STATUSES } from "./content.gen.js";
|
|
2
2
|
import { marshalAddBackendServersRequest, marshalAttachPrivateNetworkRequest, marshalCreateAclRequest, marshalCreateBackendRequest, marshalCreateCertificateRequest, marshalCreateFrontendRequest, marshalCreateIpRequest, marshalCreateLbRequest, marshalCreateRouteRequest, marshalCreateSubscriberRequest, marshalMigrateLbRequest, marshalRemoveBackendServersRequest, marshalSetBackendServersRequest, marshalSubscribeToLbRequest, marshalUpdateAclRequest, marshalUpdateBackendRequest, marshalUpdateCertificateRequest, marshalUpdateFrontendRequest, marshalUpdateHealthCheckRequest, marshalUpdateIpRequest, marshalUpdateLbRequest, marshalUpdateRouteRequest, marshalUpdateSubscriberRequest, marshalZonedApiAddBackendServersRequest, marshalZonedApiAttachPrivateNetworkRequest, marshalZonedApiCreateAclRequest, marshalZonedApiCreateBackendRequest, marshalZonedApiCreateCertificateRequest, marshalZonedApiCreateFrontendRequest, marshalZonedApiCreateIpRequest, marshalZonedApiCreateLbRequest, marshalZonedApiCreateRouteRequest, marshalZonedApiCreateSubscriberRequest, marshalZonedApiDetachPrivateNetworkRequest, marshalZonedApiMigrateLbRequest, marshalZonedApiRemoveBackendServersRequest, marshalZonedApiSetAclsRequest, marshalZonedApiSetBackendServersRequest, marshalZonedApiSubscribeToLbRequest, marshalZonedApiUpdateAclRequest, marshalZonedApiUpdateBackendRequest, marshalZonedApiUpdateCertificateRequest, marshalZonedApiUpdateFrontendRequest, marshalZonedApiUpdateHealthCheckRequest, marshalZonedApiUpdateIpRequest, marshalZonedApiUpdateLbRequest, marshalZonedApiUpdateRouteRequest, marshalZonedApiUpdateSubscriberRequest, unmarshalAcl, unmarshalBackend, unmarshalCertificate, unmarshalFrontend, unmarshalHealthCheck, unmarshalIp, unmarshalLb, unmarshalLbStats, unmarshalListAclResponse, unmarshalListBackendStatsResponse, unmarshalListBackendsResponse, unmarshalListCertificatesResponse, unmarshalListFrontendsResponse, unmarshalListIpsResponse, unmarshalListLbPrivateNetworksResponse, unmarshalListLbTypesResponse, unmarshalListLbsResponse, unmarshalListRoutesResponse, unmarshalListSubscriberResponse, unmarshalPrivateNetwork, unmarshalRoute, unmarshalSetAclsResponse, unmarshalSubscriber } from "./marshalling.gen.js";
|
|
3
|
-
import { API, enrichForPagination, toApiLocality, urlParams, validatePathParam, waitForResource } from "@scaleway/sdk-client";
|
|
3
|
+
import { API as API$1, enrichForPagination, toApiLocality, urlParams, validatePathParam, waitForResource } from "@scaleway/sdk-client";
|
|
4
|
+
//#region src/v1/api.gen.ts
|
|
4
5
|
var jsonContentHeaders = { "Content-Type": "application/json; charset=utf-8" };
|
|
5
6
|
/**
|
|
6
7
|
* Load Balancer API.
|
|
7
8
|
|
|
8
9
|
This API allows you to manage your Scaleway Load Balancer services.
|
|
9
10
|
*/
|
|
10
|
-
var ZonedAPI = class extends API {
|
|
11
|
+
var ZonedAPI = class extends API$1 {
|
|
11
12
|
/**
|
|
12
13
|
* Locality of this API.
|
|
13
14
|
* type ∈ {'zone','region','global','unspecified'}
|
|
@@ -650,7 +651,7 @@ var ZonedAPI = class extends API {
|
|
|
650
651
|
|
|
651
652
|
This API allows you to manage your Load Balancers.
|
|
652
653
|
*/
|
|
653
|
-
var API
|
|
654
|
+
var API = class extends API$1 {
|
|
654
655
|
/**
|
|
655
656
|
* Locality of this API.
|
|
656
657
|
* type ∈ {'zone','region','global','unspecified'}
|
|
@@ -1271,4 +1272,5 @@ var API$1 = class extends API {
|
|
|
1271
1272
|
path: `/lb/v1/regions/${validatePathParam("region", request.region ?? this.client.settings.defaultRegion)}/lbs/${validatePathParam("lbId", request.lbId)}/private-networks/${validatePathParam("privateNetworkId", request.privateNetworkId)}/detach`
|
|
1272
1273
|
});
|
|
1273
1274
|
};
|
|
1274
|
-
|
|
1275
|
+
//#endregion
|
|
1276
|
+
export { API, ZonedAPI };
|
package/dist/v1/content.gen.js
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
|
+
//#region src/v1/content.gen.ts
|
|
1
2
|
/** Lists transient statutes of the enum {@link CertificateStatus}. */
|
|
2
|
-
|
|
3
|
+
var CERTIFICATE_TRANSIENT_STATUSES = ["pending"];
|
|
3
4
|
/** Lists transient statutes of the enum {@link InstanceStatus}. */
|
|
4
|
-
|
|
5
|
+
var INSTANCE_TRANSIENT_STATUSES = ["pending", "migrating"];
|
|
5
6
|
/** Lists transient statutes of the enum {@link LbStatus}. */
|
|
6
|
-
|
|
7
|
+
var LB_TRANSIENT_STATUSES = [
|
|
7
8
|
"pending",
|
|
8
9
|
"migrating",
|
|
9
10
|
"to_create",
|
|
@@ -12,5 +13,6 @@ const LB_TRANSIENT_STATUSES = [
|
|
|
12
13
|
"deleting"
|
|
13
14
|
];
|
|
14
15
|
/** Lists transient statutes of the enum {@link PrivateNetworkStatus}. */
|
|
15
|
-
|
|
16
|
+
var PRIVATE_NETWORK_TRANSIENT_STATUSES = ["pending"];
|
|
17
|
+
//#endregion
|
|
16
18
|
export { CERTIFICATE_TRANSIENT_STATUSES, INSTANCE_TRANSIENT_STATUSES, LB_TRANSIENT_STATUSES, PRIVATE_NETWORK_TRANSIENT_STATUSES };
|
package/dist/v1/index.gen.js
CHANGED
|
@@ -3,6 +3,7 @@ import { CERTIFICATE_TRANSIENT_STATUSES, INSTANCE_TRANSIENT_STATUSES, LB_TRANSIE
|
|
|
3
3
|
import { marshalAddBackendServersRequest, marshalAttachPrivateNetworkRequest, marshalCreateAclRequest, marshalCreateBackendRequest, marshalCreateCertificateRequest, marshalCreateFrontendRequest, marshalCreateIpRequest, marshalCreateLbRequest, marshalCreateRouteRequest, marshalCreateSubscriberRequest, marshalMigrateLbRequest, marshalRemoveBackendServersRequest, marshalSetBackendServersRequest, marshalSubscribeToLbRequest, marshalUpdateAclRequest, marshalUpdateBackendRequest, marshalUpdateCertificateRequest, marshalUpdateFrontendRequest, marshalUpdateHealthCheckRequest, marshalUpdateIpRequest, marshalUpdateLbRequest, marshalUpdateRouteRequest, marshalUpdateSubscriberRequest, marshalZonedApiAddBackendServersRequest, marshalZonedApiAttachPrivateNetworkRequest, marshalZonedApiCreateAclRequest, marshalZonedApiCreateBackendRequest, marshalZonedApiCreateCertificateRequest, marshalZonedApiCreateFrontendRequest, marshalZonedApiCreateIpRequest, marshalZonedApiCreateLbRequest, marshalZonedApiCreateRouteRequest, marshalZonedApiCreateSubscriberRequest, marshalZonedApiDetachPrivateNetworkRequest, marshalZonedApiMigrateLbRequest, marshalZonedApiRemoveBackendServersRequest, marshalZonedApiSetAclsRequest, marshalZonedApiSetBackendServersRequest, marshalZonedApiSubscribeToLbRequest, marshalZonedApiUpdateAclRequest, marshalZonedApiUpdateBackendRequest, marshalZonedApiUpdateCertificateRequest, marshalZonedApiUpdateFrontendRequest, marshalZonedApiUpdateHealthCheckRequest, marshalZonedApiUpdateIpRequest, marshalZonedApiUpdateLbRequest, marshalZonedApiUpdateRouteRequest, marshalZonedApiUpdateSubscriberRequest, unmarshalAcl, unmarshalBackend, unmarshalBackendServerStats, unmarshalCertificate, unmarshalFrontend, unmarshalHealthCheck, unmarshalIp, unmarshalLb, unmarshalLbStats, unmarshalListAclResponse, unmarshalListBackendStatsResponse, unmarshalListBackendsResponse, unmarshalListCertificatesResponse, unmarshalListFrontendsResponse, unmarshalListIpsResponse, unmarshalListLbPrivateNetworksResponse, unmarshalListLbTypesResponse, unmarshalListLbsResponse, unmarshalListRoutesResponse, unmarshalListSubscriberResponse, unmarshalPrivateNetwork, unmarshalRoute, unmarshalSetAclsResponse, unmarshalSubscriber } from "./marshalling.gen.js";
|
|
4
4
|
import { API, ZonedAPI } from "./api.gen.js";
|
|
5
5
|
import { validation_rules_gen_exports } from "./validation-rules.gen.js";
|
|
6
|
+
//#region src/v1/index.gen.ts
|
|
6
7
|
var index_gen_exports = /* @__PURE__ */ __exportAll({
|
|
7
8
|
API: () => API,
|
|
8
9
|
CERTIFICATE_TRANSIENT_STATUSES: () => CERTIFICATE_TRANSIENT_STATUSES,
|
|
@@ -84,4 +85,5 @@ var index_gen_exports = /* @__PURE__ */ __exportAll({
|
|
|
84
85
|
unmarshalSetAclsResponse: () => unmarshalSetAclsResponse,
|
|
85
86
|
unmarshalSubscriber: () => unmarshalSubscriber
|
|
86
87
|
});
|
|
87
|
-
|
|
88
|
+
//#endregion
|
|
89
|
+
export { API, CERTIFICATE_TRANSIENT_STATUSES, INSTANCE_TRANSIENT_STATUSES, LB_TRANSIENT_STATUSES, PRIVATE_NETWORK_TRANSIENT_STATUSES, validation_rules_gen_exports as ValidationRules, ZonedAPI, index_gen_exports, marshalAddBackendServersRequest, marshalAttachPrivateNetworkRequest, marshalCreateAclRequest, marshalCreateBackendRequest, marshalCreateCertificateRequest, marshalCreateFrontendRequest, marshalCreateIpRequest, marshalCreateLbRequest, marshalCreateRouteRequest, marshalCreateSubscriberRequest, marshalMigrateLbRequest, marshalRemoveBackendServersRequest, marshalSetBackendServersRequest, marshalSubscribeToLbRequest, marshalUpdateAclRequest, marshalUpdateBackendRequest, marshalUpdateCertificateRequest, marshalUpdateFrontendRequest, marshalUpdateHealthCheckRequest, marshalUpdateIpRequest, marshalUpdateLbRequest, marshalUpdateRouteRequest, marshalUpdateSubscriberRequest, marshalZonedApiAddBackendServersRequest, marshalZonedApiAttachPrivateNetworkRequest, marshalZonedApiCreateAclRequest, marshalZonedApiCreateBackendRequest, marshalZonedApiCreateCertificateRequest, marshalZonedApiCreateFrontendRequest, marshalZonedApiCreateIpRequest, marshalZonedApiCreateLbRequest, marshalZonedApiCreateRouteRequest, marshalZonedApiCreateSubscriberRequest, marshalZonedApiDetachPrivateNetworkRequest, marshalZonedApiMigrateLbRequest, marshalZonedApiRemoveBackendServersRequest, marshalZonedApiSetAclsRequest, marshalZonedApiSetBackendServersRequest, marshalZonedApiSubscribeToLbRequest, marshalZonedApiUpdateAclRequest, marshalZonedApiUpdateBackendRequest, marshalZonedApiUpdateCertificateRequest, marshalZonedApiUpdateFrontendRequest, marshalZonedApiUpdateHealthCheckRequest, marshalZonedApiUpdateIpRequest, marshalZonedApiUpdateLbRequest, marshalZonedApiUpdateRouteRequest, marshalZonedApiUpdateSubscriberRequest, unmarshalAcl, unmarshalBackend, unmarshalBackendServerStats, unmarshalCertificate, unmarshalFrontend, unmarshalHealthCheck, unmarshalIp, unmarshalLb, unmarshalLbStats, unmarshalListAclResponse, unmarshalListBackendStatsResponse, unmarshalListBackendsResponse, unmarshalListCertificatesResponse, unmarshalListFrontendsResponse, unmarshalListIpsResponse, unmarshalListLbPrivateNetworksResponse, unmarshalListLbTypesResponse, unmarshalListLbsResponse, unmarshalListRoutesResponse, unmarshalListSubscriberResponse, unmarshalPrivateNetwork, unmarshalRoute, unmarshalSetAclsResponse, unmarshalSubscriber };
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { isJSONObject, resolveOneOf, unmarshalArrayOfObject, unmarshalDate } from "@scaleway/sdk-client";
|
|
2
2
|
import randomName from "@scaleway/random-name";
|
|
3
|
-
|
|
3
|
+
//#region src/v1/marshalling.gen.ts
|
|
4
|
+
var unmarshalIp = (data) => {
|
|
4
5
|
if (!isJSONObject(data)) throw new TypeError(`Unmarshalling the type 'Ip' failed as data isn't a dictionary.`);
|
|
5
6
|
return {
|
|
6
7
|
id: data.id,
|
|
@@ -22,7 +23,7 @@ var unmarshalSubscriberWebhookConfig = (data) => {
|
|
|
22
23
|
if (!isJSONObject(data)) throw new TypeError(`Unmarshalling the type 'SubscriberWebhookConfig' failed as data isn't a dictionary.`);
|
|
23
24
|
return { uri: data.uri };
|
|
24
25
|
};
|
|
25
|
-
|
|
26
|
+
var unmarshalSubscriber = (data) => {
|
|
26
27
|
if (!isJSONObject(data)) throw new TypeError(`Unmarshalling the type 'Subscriber' failed as data isn't a dictionary.`);
|
|
27
28
|
return {
|
|
28
29
|
emailConfig: data.email_config ? unmarshalSubscriberEmailConfig(data.email_config) : void 0,
|
|
@@ -70,7 +71,7 @@ var unmarshalHealthCheckTcpConfig = (data) => {
|
|
|
70
71
|
if (!isJSONObject(data)) throw new TypeError(`Unmarshalling the type 'HealthCheckTcpConfig' failed as data isn't a dictionary.`);
|
|
71
72
|
return {};
|
|
72
73
|
};
|
|
73
|
-
|
|
74
|
+
var unmarshalHealthCheck = (data) => {
|
|
74
75
|
if (!isJSONObject(data)) throw new TypeError(`Unmarshalling the type 'HealthCheck' failed as data isn't a dictionary.`);
|
|
75
76
|
return {
|
|
76
77
|
checkDelay: data.check_delay,
|
|
@@ -100,7 +101,7 @@ var unmarshalInstance = (data) => {
|
|
|
100
101
|
zone: data.zone
|
|
101
102
|
};
|
|
102
103
|
};
|
|
103
|
-
|
|
104
|
+
var unmarshalLb = (data) => {
|
|
104
105
|
if (!isJSONObject(data)) throw new TypeError(`Unmarshalling the type 'Lb' failed as data isn't a dictionary.`);
|
|
105
106
|
return {
|
|
106
107
|
backendCount: data.backend_count,
|
|
@@ -125,7 +126,7 @@ const unmarshalLb = (data) => {
|
|
|
125
126
|
zone: data.zone
|
|
126
127
|
};
|
|
127
128
|
};
|
|
128
|
-
|
|
129
|
+
var unmarshalBackend = (data) => {
|
|
129
130
|
if (!isJSONObject(data)) throw new TypeError(`Unmarshalling the type 'Backend' failed as data isn't a dictionary.`);
|
|
130
131
|
return {
|
|
131
132
|
createdAt: unmarshalDate(data.created_at),
|
|
@@ -155,7 +156,7 @@ const unmarshalBackend = (data) => {
|
|
|
155
156
|
updatedAt: unmarshalDate(data.updated_at)
|
|
156
157
|
};
|
|
157
158
|
};
|
|
158
|
-
|
|
159
|
+
var unmarshalCertificate = (data) => {
|
|
159
160
|
if (!isJSONObject(data)) throw new TypeError(`Unmarshalling the type 'Certificate' failed as data isn't a dictionary.`);
|
|
160
161
|
return {
|
|
161
162
|
commonName: data.common_name,
|
|
@@ -173,7 +174,7 @@ const unmarshalCertificate = (data) => {
|
|
|
173
174
|
updatedAt: unmarshalDate(data.updated_at)
|
|
174
175
|
};
|
|
175
176
|
};
|
|
176
|
-
|
|
177
|
+
var unmarshalFrontend = (data) => {
|
|
177
178
|
if (!isJSONObject(data)) throw new TypeError(`Unmarshalling the type 'Frontend' failed as data isn't a dictionary.`);
|
|
178
179
|
return {
|
|
179
180
|
backend: data.backend ? unmarshalBackend(data.backend) : void 0,
|
|
@@ -217,7 +218,7 @@ var unmarshalAclMatch = (data) => {
|
|
|
217
218
|
ipsEdgeServices: data.ips_edge_services
|
|
218
219
|
};
|
|
219
220
|
};
|
|
220
|
-
|
|
221
|
+
var unmarshalAcl = (data) => {
|
|
221
222
|
if (!isJSONObject(data)) throw new TypeError(`Unmarshalling the type 'Acl' failed as data isn't a dictionary.`);
|
|
222
223
|
return {
|
|
223
224
|
action: data.action ? unmarshalAclAction(data.action) : void 0,
|
|
@@ -243,7 +244,7 @@ var unmarshalPrivateNetworkStaticConfig = (data) => {
|
|
|
243
244
|
if (!isJSONObject(data)) throw new TypeError(`Unmarshalling the type 'PrivateNetworkStaticConfig' failed as data isn't a dictionary.`);
|
|
244
245
|
return { ipAddress: data.ip_address ? data.ip_address : void 0 };
|
|
245
246
|
};
|
|
246
|
-
|
|
247
|
+
var unmarshalPrivateNetwork = (data) => {
|
|
247
248
|
if (!isJSONObject(data)) throw new TypeError(`Unmarshalling the type 'PrivateNetwork' failed as data isn't a dictionary.`);
|
|
248
249
|
return {
|
|
249
250
|
createdAt: unmarshalDate(data.created_at),
|
|
@@ -266,7 +267,7 @@ var unmarshalRouteMatch = (data) => {
|
|
|
266
267
|
sni: data.sni
|
|
267
268
|
};
|
|
268
269
|
};
|
|
269
|
-
|
|
270
|
+
var unmarshalRoute = (data) => {
|
|
270
271
|
if (!isJSONObject(data)) throw new TypeError(`Unmarshalling the type 'Route' failed as data isn't a dictionary.`);
|
|
271
272
|
return {
|
|
272
273
|
backendId: data.backend_id,
|
|
@@ -277,7 +278,7 @@ const unmarshalRoute = (data) => {
|
|
|
277
278
|
updatedAt: unmarshalDate(data.updated_at)
|
|
278
279
|
};
|
|
279
280
|
};
|
|
280
|
-
|
|
281
|
+
var unmarshalBackendServerStats = (data) => {
|
|
281
282
|
if (!isJSONObject(data)) throw new TypeError(`Unmarshalling the type 'BackendServerStats' failed as data isn't a dictionary.`);
|
|
282
283
|
return {
|
|
283
284
|
backendId: data.backend_id,
|
|
@@ -288,53 +289,53 @@ const unmarshalBackendServerStats = (data) => {
|
|
|
288
289
|
serverStateChangedAt: unmarshalDate(data.server_state_changed_at)
|
|
289
290
|
};
|
|
290
291
|
};
|
|
291
|
-
|
|
292
|
+
var unmarshalLbStats = (data) => {
|
|
292
293
|
if (!isJSONObject(data)) throw new TypeError(`Unmarshalling the type 'LbStats' failed as data isn't a dictionary.`);
|
|
293
294
|
return { backendServersStats: unmarshalArrayOfObject(data.backend_servers_stats, unmarshalBackendServerStats) };
|
|
294
295
|
};
|
|
295
|
-
|
|
296
|
+
var unmarshalListAclResponse = (data) => {
|
|
296
297
|
if (!isJSONObject(data)) throw new TypeError(`Unmarshalling the type 'ListAclResponse' failed as data isn't a dictionary.`);
|
|
297
298
|
return {
|
|
298
299
|
acls: unmarshalArrayOfObject(data.acls, unmarshalAcl),
|
|
299
300
|
totalCount: data.total_count
|
|
300
301
|
};
|
|
301
302
|
};
|
|
302
|
-
|
|
303
|
+
var unmarshalListBackendStatsResponse = (data) => {
|
|
303
304
|
if (!isJSONObject(data)) throw new TypeError(`Unmarshalling the type 'ListBackendStatsResponse' failed as data isn't a dictionary.`);
|
|
304
305
|
return {
|
|
305
306
|
backendServersStats: unmarshalArrayOfObject(data.backend_servers_stats, unmarshalBackendServerStats),
|
|
306
307
|
totalCount: data.total_count
|
|
307
308
|
};
|
|
308
309
|
};
|
|
309
|
-
|
|
310
|
+
var unmarshalListBackendsResponse = (data) => {
|
|
310
311
|
if (!isJSONObject(data)) throw new TypeError(`Unmarshalling the type 'ListBackendsResponse' failed as data isn't a dictionary.`);
|
|
311
312
|
return {
|
|
312
313
|
backends: unmarshalArrayOfObject(data.backends, unmarshalBackend),
|
|
313
314
|
totalCount: data.total_count
|
|
314
315
|
};
|
|
315
316
|
};
|
|
316
|
-
|
|
317
|
+
var unmarshalListCertificatesResponse = (data) => {
|
|
317
318
|
if (!isJSONObject(data)) throw new TypeError(`Unmarshalling the type 'ListCertificatesResponse' failed as data isn't a dictionary.`);
|
|
318
319
|
return {
|
|
319
320
|
certificates: unmarshalArrayOfObject(data.certificates, unmarshalCertificate),
|
|
320
321
|
totalCount: data.total_count
|
|
321
322
|
};
|
|
322
323
|
};
|
|
323
|
-
|
|
324
|
+
var unmarshalListFrontendsResponse = (data) => {
|
|
324
325
|
if (!isJSONObject(data)) throw new TypeError(`Unmarshalling the type 'ListFrontendsResponse' failed as data isn't a dictionary.`);
|
|
325
326
|
return {
|
|
326
327
|
frontends: unmarshalArrayOfObject(data.frontends, unmarshalFrontend),
|
|
327
328
|
totalCount: data.total_count
|
|
328
329
|
};
|
|
329
330
|
};
|
|
330
|
-
|
|
331
|
+
var unmarshalListIpsResponse = (data) => {
|
|
331
332
|
if (!isJSONObject(data)) throw new TypeError(`Unmarshalling the type 'ListIpsResponse' failed as data isn't a dictionary.`);
|
|
332
333
|
return {
|
|
333
334
|
ips: unmarshalArrayOfObject(data.ips, unmarshalIp),
|
|
334
335
|
totalCount: data.total_count
|
|
335
336
|
};
|
|
336
337
|
};
|
|
337
|
-
|
|
338
|
+
var unmarshalListLbPrivateNetworksResponse = (data) => {
|
|
338
339
|
if (!isJSONObject(data)) throw new TypeError(`Unmarshalling the type 'ListLbPrivateNetworksResponse' failed as data isn't a dictionary.`);
|
|
339
340
|
return {
|
|
340
341
|
privateNetwork: unmarshalArrayOfObject(data.private_network, unmarshalPrivateNetwork),
|
|
@@ -344,53 +345,55 @@ const unmarshalListLbPrivateNetworksResponse = (data) => {
|
|
|
344
345
|
var unmarshalLbType = (data) => {
|
|
345
346
|
if (!isJSONObject(data)) throw new TypeError(`Unmarshalling the type 'LbType' failed as data isn't a dictionary.`);
|
|
346
347
|
return {
|
|
348
|
+
bandwidth: data.bandwidth,
|
|
347
349
|
description: data.description,
|
|
350
|
+
multicloud: data.multicloud,
|
|
348
351
|
name: data.name,
|
|
349
352
|
region: data.region,
|
|
350
353
|
stockStatus: data.stock_status,
|
|
351
354
|
zone: data.zone
|
|
352
355
|
};
|
|
353
356
|
};
|
|
354
|
-
|
|
357
|
+
var unmarshalListLbTypesResponse = (data) => {
|
|
355
358
|
if (!isJSONObject(data)) throw new TypeError(`Unmarshalling the type 'ListLbTypesResponse' failed as data isn't a dictionary.`);
|
|
356
359
|
return {
|
|
357
360
|
lbTypes: unmarshalArrayOfObject(data.lb_types, unmarshalLbType),
|
|
358
361
|
totalCount: data.total_count
|
|
359
362
|
};
|
|
360
363
|
};
|
|
361
|
-
|
|
364
|
+
var unmarshalListLbsResponse = (data) => {
|
|
362
365
|
if (!isJSONObject(data)) throw new TypeError(`Unmarshalling the type 'ListLbsResponse' failed as data isn't a dictionary.`);
|
|
363
366
|
return {
|
|
364
367
|
lbs: unmarshalArrayOfObject(data.lbs, unmarshalLb),
|
|
365
368
|
totalCount: data.total_count
|
|
366
369
|
};
|
|
367
370
|
};
|
|
368
|
-
|
|
371
|
+
var unmarshalListRoutesResponse = (data) => {
|
|
369
372
|
if (!isJSONObject(data)) throw new TypeError(`Unmarshalling the type 'ListRoutesResponse' failed as data isn't a dictionary.`);
|
|
370
373
|
return {
|
|
371
374
|
routes: unmarshalArrayOfObject(data.routes, unmarshalRoute),
|
|
372
375
|
totalCount: data.total_count
|
|
373
376
|
};
|
|
374
377
|
};
|
|
375
|
-
|
|
378
|
+
var unmarshalListSubscriberResponse = (data) => {
|
|
376
379
|
if (!isJSONObject(data)) throw new TypeError(`Unmarshalling the type 'ListSubscriberResponse' failed as data isn't a dictionary.`);
|
|
377
380
|
return {
|
|
378
381
|
subscribers: unmarshalArrayOfObject(data.subscribers, unmarshalSubscriber),
|
|
379
382
|
totalCount: data.total_count
|
|
380
383
|
};
|
|
381
384
|
};
|
|
382
|
-
|
|
385
|
+
var unmarshalSetAclsResponse = (data) => {
|
|
383
386
|
if (!isJSONObject(data)) throw new TypeError(`Unmarshalling the type 'SetAclsResponse' failed as data isn't a dictionary.`);
|
|
384
387
|
return {
|
|
385
388
|
acls: unmarshalArrayOfObject(data.acls, unmarshalAcl),
|
|
386
389
|
totalCount: data.total_count
|
|
387
390
|
};
|
|
388
391
|
};
|
|
389
|
-
|
|
392
|
+
var marshalAddBackendServersRequest = (request, defaults) => ({ server_ip: request.serverIp });
|
|
390
393
|
var marshalPrivateNetworkDHCPConfig = (request, defaults) => ({ ip_id: request.ipId });
|
|
391
394
|
var marshalPrivateNetworkIpamConfig = (request, defaults) => ({});
|
|
392
395
|
var marshalPrivateNetworkStaticConfig = (request, defaults) => ({ ip_address: request.ipAddress });
|
|
393
|
-
|
|
396
|
+
var marshalAttachPrivateNetworkRequest = (request, defaults) => ({
|
|
394
397
|
ipam_ids: request.ipamIds,
|
|
395
398
|
...resolveOneOf([
|
|
396
399
|
{
|
|
@@ -424,7 +427,7 @@ var marshalAclMatch = (request, defaults) => ({
|
|
|
424
427
|
ip_subnet: request.ipSubnet,
|
|
425
428
|
ips_edge_services: request.ipsEdgeServices
|
|
426
429
|
});
|
|
427
|
-
|
|
430
|
+
var marshalCreateAclRequest = (request, defaults) => ({
|
|
428
431
|
action: marshalAclAction(request.action, defaults),
|
|
429
432
|
description: request.description,
|
|
430
433
|
index: request.index,
|
|
@@ -487,7 +490,7 @@ var marshalHealthCheck = (request, defaults) => ({
|
|
|
487
490
|
}
|
|
488
491
|
])
|
|
489
492
|
});
|
|
490
|
-
|
|
493
|
+
var marshalCreateBackendRequest = (request, defaults) => ({
|
|
491
494
|
failover_host: request.failoverHost,
|
|
492
495
|
forward_port: request.forwardPort,
|
|
493
496
|
forward_port_algorithm: request.forwardPortAlgorithm,
|
|
@@ -515,7 +518,7 @@ var marshalCreateCertificateRequestLetsencryptConfig = (request, defaults) => ({
|
|
|
515
518
|
common_name: request.commonName,
|
|
516
519
|
subject_alternative_name: request.subjectAlternativeName
|
|
517
520
|
});
|
|
518
|
-
|
|
521
|
+
var marshalCreateCertificateRequest = (request, defaults) => ({
|
|
519
522
|
name: request.name || randomName("certificate"),
|
|
520
523
|
...resolveOneOf([{
|
|
521
524
|
param: "letsencrypt",
|
|
@@ -525,7 +528,7 @@ const marshalCreateCertificateRequest = (request, defaults) => ({
|
|
|
525
528
|
value: request.customCertificate !== void 0 ? marshalCreateCertificateRequestCustomCertificate(request.customCertificate, defaults) : void 0
|
|
526
529
|
}])
|
|
527
530
|
});
|
|
528
|
-
|
|
531
|
+
var marshalCreateFrontendRequest = (request, defaults) => ({
|
|
529
532
|
backend_id: request.backendId,
|
|
530
533
|
certificate_id: request.certificateId,
|
|
531
534
|
certificate_ids: request.certificateIds,
|
|
@@ -536,7 +539,7 @@ const marshalCreateFrontendRequest = (request, defaults) => ({
|
|
|
536
539
|
name: request.name || randomName("lbf"),
|
|
537
540
|
timeout_client: request.timeoutClient
|
|
538
541
|
});
|
|
539
|
-
|
|
542
|
+
var marshalCreateIpRequest = (request, defaults) => ({
|
|
540
543
|
is_ipv6: request.isIpv6,
|
|
541
544
|
reverse: request.reverse,
|
|
542
545
|
tags: request.tags,
|
|
@@ -550,7 +553,7 @@ const marshalCreateIpRequest = (request, defaults) => ({
|
|
|
550
553
|
value: request.organizationId
|
|
551
554
|
}])
|
|
552
555
|
});
|
|
553
|
-
|
|
556
|
+
var marshalCreateLbRequest = (request, defaults) => ({
|
|
554
557
|
assign_flexible_ip: request.assignFlexibleIp,
|
|
555
558
|
assign_flexible_ipv6: request.assignFlexibleIpv6,
|
|
556
559
|
description: request.description,
|
|
@@ -587,14 +590,14 @@ var marshalRouteMatch = (request, defaults) => ({
|
|
|
587
590
|
}
|
|
588
591
|
])
|
|
589
592
|
});
|
|
590
|
-
|
|
593
|
+
var marshalCreateRouteRequest = (request, defaults) => ({
|
|
591
594
|
backend_id: request.backendId,
|
|
592
595
|
frontend_id: request.frontendId,
|
|
593
596
|
match: request.match !== void 0 ? marshalRouteMatch(request.match, defaults) : void 0
|
|
594
597
|
});
|
|
595
598
|
var marshalSubscriberEmailConfig = (request, defaults) => ({ email: request.email });
|
|
596
599
|
var marshalSubscriberWebhookConfig = (request, defaults) => ({ uri: request.uri });
|
|
597
|
-
|
|
600
|
+
var marshalCreateSubscriberRequest = (request, defaults) => ({
|
|
598
601
|
name: request.name,
|
|
599
602
|
...resolveOneOf([{
|
|
600
603
|
default: defaults.defaultProjectId,
|
|
@@ -613,18 +616,18 @@ const marshalCreateSubscriberRequest = (request, defaults) => ({
|
|
|
613
616
|
value: request.webhookConfig !== void 0 ? marshalSubscriberWebhookConfig(request.webhookConfig, defaults) : void 0
|
|
614
617
|
}])
|
|
615
618
|
});
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
619
|
+
var marshalMigrateLbRequest = (request, defaults) => ({ type: request.type });
|
|
620
|
+
var marshalRemoveBackendServersRequest = (request, defaults) => ({ server_ip: request.serverIp });
|
|
621
|
+
var marshalSetBackendServersRequest = (request, defaults) => ({ server_ip: request.serverIp });
|
|
622
|
+
var marshalSubscribeToLbRequest = (request, defaults) => ({ subscriber_id: request.subscriberId });
|
|
623
|
+
var marshalUpdateAclRequest = (request, defaults) => ({
|
|
621
624
|
action: marshalAclAction(request.action, defaults),
|
|
622
625
|
description: request.description,
|
|
623
626
|
index: request.index,
|
|
624
627
|
match: request.match !== void 0 ? marshalAclMatch(request.match, defaults) : void 0,
|
|
625
628
|
name: request.name
|
|
626
629
|
});
|
|
627
|
-
|
|
630
|
+
var marshalUpdateBackendRequest = (request, defaults) => ({
|
|
628
631
|
failover_host: request.failoverHost,
|
|
629
632
|
forward_port: request.forwardPort,
|
|
630
633
|
forward_port_algorithm: request.forwardPortAlgorithm,
|
|
@@ -645,8 +648,8 @@ const marshalUpdateBackendRequest = (request, defaults) => ({
|
|
|
645
648
|
timeout_server: request.timeoutServer,
|
|
646
649
|
timeout_tunnel: request.timeoutTunnel
|
|
647
650
|
});
|
|
648
|
-
|
|
649
|
-
|
|
651
|
+
var marshalUpdateCertificateRequest = (request, defaults) => ({ name: request.name });
|
|
652
|
+
var marshalUpdateFrontendRequest = (request, defaults) => ({
|
|
650
653
|
backend_id: request.backendId,
|
|
651
654
|
certificate_id: request.certificateId,
|
|
652
655
|
certificate_ids: request.certificateIds,
|
|
@@ -657,7 +660,7 @@ const marshalUpdateFrontendRequest = (request, defaults) => ({
|
|
|
657
660
|
name: request.name,
|
|
658
661
|
timeout_client: request.timeoutClient
|
|
659
662
|
});
|
|
660
|
-
|
|
663
|
+
var marshalUpdateHealthCheckRequest = (request, defaults) => ({
|
|
661
664
|
check_delay: request.checkDelay,
|
|
662
665
|
check_max_retries: request.checkMaxRetries,
|
|
663
666
|
check_send_proxy: request.checkSendProxy,
|
|
@@ -695,22 +698,22 @@ const marshalUpdateHealthCheckRequest = (request, defaults) => ({
|
|
|
695
698
|
}
|
|
696
699
|
])
|
|
697
700
|
});
|
|
698
|
-
|
|
701
|
+
var marshalUpdateIpRequest = (request, defaults) => ({
|
|
699
702
|
lb_id: request.lbId,
|
|
700
703
|
reverse: request.reverse,
|
|
701
704
|
tags: request.tags
|
|
702
705
|
});
|
|
703
|
-
|
|
706
|
+
var marshalUpdateLbRequest = (request, defaults) => ({
|
|
704
707
|
description: request.description,
|
|
705
708
|
name: request.name,
|
|
706
709
|
ssl_compatibility_level: request.sslCompatibilityLevel,
|
|
707
710
|
tags: request.tags
|
|
708
711
|
});
|
|
709
|
-
|
|
712
|
+
var marshalUpdateRouteRequest = (request, defaults) => ({
|
|
710
713
|
backend_id: request.backendId,
|
|
711
714
|
match: request.match !== void 0 ? marshalRouteMatch(request.match, defaults) : void 0
|
|
712
715
|
});
|
|
713
|
-
|
|
716
|
+
var marshalUpdateSubscriberRequest = (request, defaults) => ({
|
|
714
717
|
name: request.name,
|
|
715
718
|
...resolveOneOf([{
|
|
716
719
|
param: "email_config",
|
|
@@ -720,8 +723,8 @@ const marshalUpdateSubscriberRequest = (request, defaults) => ({
|
|
|
720
723
|
value: request.webhookConfig !== void 0 ? marshalSubscriberWebhookConfig(request.webhookConfig, defaults) : void 0
|
|
721
724
|
}])
|
|
722
725
|
});
|
|
723
|
-
|
|
724
|
-
|
|
726
|
+
var marshalZonedApiAddBackendServersRequest = (request, defaults) => ({ server_ip: request.serverIp });
|
|
727
|
+
var marshalZonedApiAttachPrivateNetworkRequest = (request, defaults) => ({
|
|
725
728
|
ipam_ids: request.ipamIds,
|
|
726
729
|
private_network_id: request.privateNetworkId,
|
|
727
730
|
...resolveOneOf([
|
|
@@ -739,14 +742,14 @@ const marshalZonedApiAttachPrivateNetworkRequest = (request, defaults) => ({
|
|
|
739
742
|
}
|
|
740
743
|
])
|
|
741
744
|
});
|
|
742
|
-
|
|
745
|
+
var marshalZonedApiCreateAclRequest = (request, defaults) => ({
|
|
743
746
|
action: marshalAclAction(request.action, defaults),
|
|
744
747
|
description: request.description,
|
|
745
748
|
index: request.index,
|
|
746
749
|
match: request.match !== void 0 ? marshalAclMatch(request.match, defaults) : void 0,
|
|
747
750
|
name: request.name || randomName("acl")
|
|
748
751
|
});
|
|
749
|
-
|
|
752
|
+
var marshalZonedApiCreateBackendRequest = (request, defaults) => ({
|
|
750
753
|
failover_host: request.failoverHost,
|
|
751
754
|
forward_port: request.forwardPort,
|
|
752
755
|
forward_port_algorithm: request.forwardPortAlgorithm,
|
|
@@ -769,7 +772,7 @@ const marshalZonedApiCreateBackendRequest = (request, defaults) => ({
|
|
|
769
772
|
timeout_server: request.timeoutServer,
|
|
770
773
|
timeout_tunnel: request.timeoutTunnel
|
|
771
774
|
});
|
|
772
|
-
|
|
775
|
+
var marshalZonedApiCreateCertificateRequest = (request, defaults) => ({
|
|
773
776
|
name: request.name || randomName("certificate"),
|
|
774
777
|
...resolveOneOf([{
|
|
775
778
|
param: "letsencrypt",
|
|
@@ -779,7 +782,7 @@ const marshalZonedApiCreateCertificateRequest = (request, defaults) => ({
|
|
|
779
782
|
value: request.customCertificate !== void 0 ? marshalCreateCertificateRequestCustomCertificate(request.customCertificate, defaults) : void 0
|
|
780
783
|
}])
|
|
781
784
|
});
|
|
782
|
-
|
|
785
|
+
var marshalZonedApiCreateFrontendRequest = (request, defaults) => ({
|
|
783
786
|
backend_id: request.backendId,
|
|
784
787
|
certificate_id: request.certificateId,
|
|
785
788
|
certificate_ids: request.certificateIds,
|
|
@@ -790,7 +793,7 @@ const marshalZonedApiCreateFrontendRequest = (request, defaults) => ({
|
|
|
790
793
|
name: request.name || randomName("lbf"),
|
|
791
794
|
timeout_client: request.timeoutClient
|
|
792
795
|
});
|
|
793
|
-
|
|
796
|
+
var marshalZonedApiCreateIpRequest = (request, defaults) => ({
|
|
794
797
|
is_ipv6: request.isIpv6,
|
|
795
798
|
reverse: request.reverse,
|
|
796
799
|
tags: request.tags,
|
|
@@ -804,7 +807,7 @@ const marshalZonedApiCreateIpRequest = (request, defaults) => ({
|
|
|
804
807
|
value: request.organizationId
|
|
805
808
|
}])
|
|
806
809
|
});
|
|
807
|
-
|
|
810
|
+
var marshalZonedApiCreateLbRequest = (request, defaults) => ({
|
|
808
811
|
assign_flexible_ip: request.assignFlexibleIp,
|
|
809
812
|
assign_flexible_ipv6: request.assignFlexibleIpv6,
|
|
810
813
|
description: request.description,
|
|
@@ -824,12 +827,12 @@ const marshalZonedApiCreateLbRequest = (request, defaults) => ({
|
|
|
824
827
|
value: request.organizationId
|
|
825
828
|
}])
|
|
826
829
|
});
|
|
827
|
-
|
|
830
|
+
var marshalZonedApiCreateRouteRequest = (request, defaults) => ({
|
|
828
831
|
backend_id: request.backendId,
|
|
829
832
|
frontend_id: request.frontendId,
|
|
830
833
|
match: request.match !== void 0 ? marshalRouteMatch(request.match, defaults) : void 0
|
|
831
834
|
});
|
|
832
|
-
|
|
835
|
+
var marshalZonedApiCreateSubscriberRequest = (request, defaults) => ({
|
|
833
836
|
name: request.name,
|
|
834
837
|
...resolveOneOf([{
|
|
835
838
|
default: defaults.defaultProjectId,
|
|
@@ -848,9 +851,9 @@ const marshalZonedApiCreateSubscriberRequest = (request, defaults) => ({
|
|
|
848
851
|
value: request.webhookConfig !== void 0 ? marshalSubscriberWebhookConfig(request.webhookConfig, defaults) : void 0
|
|
849
852
|
}])
|
|
850
853
|
});
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
+
var marshalZonedApiDetachPrivateNetworkRequest = (request, defaults) => ({ private_network_id: request.privateNetworkId });
|
|
855
|
+
var marshalZonedApiMigrateLbRequest = (request, defaults) => ({ type: request.type });
|
|
856
|
+
var marshalZonedApiRemoveBackendServersRequest = (request, defaults) => ({ server_ip: request.serverIp });
|
|
854
857
|
var marshalAclSpec = (request, defaults) => ({
|
|
855
858
|
action: marshalAclAction(request.action, defaults),
|
|
856
859
|
description: request.description,
|
|
@@ -858,17 +861,17 @@ var marshalAclSpec = (request, defaults) => ({
|
|
|
858
861
|
match: request.match !== void 0 ? marshalAclMatch(request.match, defaults) : void 0,
|
|
859
862
|
name: request.name
|
|
860
863
|
});
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
864
|
+
var marshalZonedApiSetAclsRequest = (request, defaults) => ({ acls: request.acls.map((elt) => marshalAclSpec(elt, defaults)) });
|
|
865
|
+
var marshalZonedApiSetBackendServersRequest = (request, defaults) => ({ server_ip: request.serverIp });
|
|
866
|
+
var marshalZonedApiSubscribeToLbRequest = (request, defaults) => ({ subscriber_id: request.subscriberId });
|
|
867
|
+
var marshalZonedApiUpdateAclRequest = (request, defaults) => ({
|
|
865
868
|
action: marshalAclAction(request.action, defaults),
|
|
866
869
|
description: request.description,
|
|
867
870
|
index: request.index,
|
|
868
871
|
match: request.match !== void 0 ? marshalAclMatch(request.match, defaults) : void 0,
|
|
869
872
|
name: request.name
|
|
870
873
|
});
|
|
871
|
-
|
|
874
|
+
var marshalZonedApiUpdateBackendRequest = (request, defaults) => ({
|
|
872
875
|
failover_host: request.failoverHost,
|
|
873
876
|
forward_port: request.forwardPort,
|
|
874
877
|
forward_port_algorithm: request.forwardPortAlgorithm,
|
|
@@ -889,8 +892,8 @@ const marshalZonedApiUpdateBackendRequest = (request, defaults) => ({
|
|
|
889
892
|
timeout_server: request.timeoutServer,
|
|
890
893
|
timeout_tunnel: request.timeoutTunnel
|
|
891
894
|
});
|
|
892
|
-
|
|
893
|
-
|
|
895
|
+
var marshalZonedApiUpdateCertificateRequest = (request, defaults) => ({ name: request.name });
|
|
896
|
+
var marshalZonedApiUpdateFrontendRequest = (request, defaults) => ({
|
|
894
897
|
backend_id: request.backendId,
|
|
895
898
|
certificate_id: request.certificateId,
|
|
896
899
|
certificate_ids: request.certificateIds,
|
|
@@ -901,7 +904,7 @@ const marshalZonedApiUpdateFrontendRequest = (request, defaults) => ({
|
|
|
901
904
|
name: request.name,
|
|
902
905
|
timeout_client: request.timeoutClient
|
|
903
906
|
});
|
|
904
|
-
|
|
907
|
+
var marshalZonedApiUpdateHealthCheckRequest = (request, defaults) => ({
|
|
905
908
|
check_delay: request.checkDelay,
|
|
906
909
|
check_max_retries: request.checkMaxRetries,
|
|
907
910
|
check_send_proxy: request.checkSendProxy,
|
|
@@ -939,22 +942,22 @@ const marshalZonedApiUpdateHealthCheckRequest = (request, defaults) => ({
|
|
|
939
942
|
}
|
|
940
943
|
])
|
|
941
944
|
});
|
|
942
|
-
|
|
945
|
+
var marshalZonedApiUpdateIpRequest = (request, defaults) => ({
|
|
943
946
|
lb_id: request.lbId,
|
|
944
947
|
reverse: request.reverse,
|
|
945
948
|
tags: request.tags
|
|
946
949
|
});
|
|
947
|
-
|
|
950
|
+
var marshalZonedApiUpdateLbRequest = (request, defaults) => ({
|
|
948
951
|
description: request.description,
|
|
949
952
|
name: request.name,
|
|
950
953
|
ssl_compatibility_level: request.sslCompatibilityLevel,
|
|
951
954
|
tags: request.tags
|
|
952
955
|
});
|
|
953
|
-
|
|
956
|
+
var marshalZonedApiUpdateRouteRequest = (request, defaults) => ({
|
|
954
957
|
backend_id: request.backendId,
|
|
955
958
|
match: request.match !== void 0 ? marshalRouteMatch(request.match, defaults) : void 0
|
|
956
959
|
});
|
|
957
|
-
|
|
960
|
+
var marshalZonedApiUpdateSubscriberRequest = (request, defaults) => ({
|
|
958
961
|
name: request.name,
|
|
959
962
|
...resolveOneOf([{
|
|
960
963
|
param: "email_config",
|
|
@@ -964,4 +967,5 @@ const marshalZonedApiUpdateSubscriberRequest = (request, defaults) => ({
|
|
|
964
967
|
value: request.webhookConfig !== void 0 ? marshalSubscriberWebhookConfig(request.webhookConfig, defaults) : void 0
|
|
965
968
|
}])
|
|
966
969
|
});
|
|
970
|
+
//#endregion
|
|
967
971
|
export { marshalAddBackendServersRequest, marshalAttachPrivateNetworkRequest, marshalCreateAclRequest, marshalCreateBackendRequest, marshalCreateCertificateRequest, marshalCreateFrontendRequest, marshalCreateIpRequest, marshalCreateLbRequest, marshalCreateRouteRequest, marshalCreateSubscriberRequest, marshalMigrateLbRequest, marshalRemoveBackendServersRequest, marshalSetBackendServersRequest, marshalSubscribeToLbRequest, marshalUpdateAclRequest, marshalUpdateBackendRequest, marshalUpdateCertificateRequest, marshalUpdateFrontendRequest, marshalUpdateHealthCheckRequest, marshalUpdateIpRequest, marshalUpdateLbRequest, marshalUpdateRouteRequest, marshalUpdateSubscriberRequest, marshalZonedApiAddBackendServersRequest, marshalZonedApiAttachPrivateNetworkRequest, marshalZonedApiCreateAclRequest, marshalZonedApiCreateBackendRequest, marshalZonedApiCreateCertificateRequest, marshalZonedApiCreateFrontendRequest, marshalZonedApiCreateIpRequest, marshalZonedApiCreateLbRequest, marshalZonedApiCreateRouteRequest, marshalZonedApiCreateSubscriberRequest, marshalZonedApiDetachPrivateNetworkRequest, marshalZonedApiMigrateLbRequest, marshalZonedApiRemoveBackendServersRequest, marshalZonedApiSetAclsRequest, marshalZonedApiSetBackendServersRequest, marshalZonedApiSubscribeToLbRequest, marshalZonedApiUpdateAclRequest, marshalZonedApiUpdateBackendRequest, marshalZonedApiUpdateCertificateRequest, marshalZonedApiUpdateFrontendRequest, marshalZonedApiUpdateHealthCheckRequest, marshalZonedApiUpdateIpRequest, marshalZonedApiUpdateLbRequest, marshalZonedApiUpdateRouteRequest, marshalZonedApiUpdateSubscriberRequest, unmarshalAcl, unmarshalBackend, unmarshalBackendServerStats, unmarshalCertificate, unmarshalFrontend, unmarshalHealthCheck, unmarshalIp, unmarshalLb, unmarshalLbStats, unmarshalListAclResponse, unmarshalListBackendStatsResponse, unmarshalListBackendsResponse, unmarshalListCertificatesResponse, unmarshalListFrontendsResponse, unmarshalListIpsResponse, unmarshalListLbPrivateNetworksResponse, unmarshalListLbTypesResponse, unmarshalListLbsResponse, unmarshalListRoutesResponse, unmarshalListSubscriberResponse, unmarshalPrivateNetwork, unmarshalRoute, unmarshalSetAclsResponse, unmarshalSubscriber };
|