waldur-js-client 1.0.4-dev.52 → 1.0.4-dev.53
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/sdk.gen.js +4 -20
- package/dist/types.gen.d.ts +4 -4
- package/package.json +1 -1
package/dist/sdk.gen.js
CHANGED
|
@@ -11298,11 +11298,7 @@ const openstackPortsDisablePort = (options) => {
|
|
|
11298
11298
|
}
|
|
11299
11299
|
],
|
|
11300
11300
|
url: '/api/openstack-ports/{uuid}/disable_port/',
|
|
11301
|
-
...options
|
|
11302
|
-
headers: {
|
|
11303
|
-
'Content-Type': 'application/json',
|
|
11304
|
-
...options === null || options === void 0 ? void 0 : options.headers
|
|
11305
|
-
}
|
|
11301
|
+
...options
|
|
11306
11302
|
});
|
|
11307
11303
|
};
|
|
11308
11304
|
exports.openstackPortsDisablePort = openstackPortsDisablePort;
|
|
@@ -11319,11 +11315,7 @@ const openstackPortsDisablePortSecurity = (options) => {
|
|
|
11319
11315
|
}
|
|
11320
11316
|
],
|
|
11321
11317
|
url: '/api/openstack-ports/{uuid}/disable_port_security/',
|
|
11322
|
-
...options
|
|
11323
|
-
headers: {
|
|
11324
|
-
'Content-Type': 'application/json',
|
|
11325
|
-
...options === null || options === void 0 ? void 0 : options.headers
|
|
11326
|
-
}
|
|
11318
|
+
...options
|
|
11327
11319
|
});
|
|
11328
11320
|
};
|
|
11329
11321
|
exports.openstackPortsDisablePortSecurity = openstackPortsDisablePortSecurity;
|
|
@@ -11340,11 +11332,7 @@ const openstackPortsEnablePort = (options) => {
|
|
|
11340
11332
|
}
|
|
11341
11333
|
],
|
|
11342
11334
|
url: '/api/openstack-ports/{uuid}/enable_port/',
|
|
11343
|
-
...options
|
|
11344
|
-
headers: {
|
|
11345
|
-
'Content-Type': 'application/json',
|
|
11346
|
-
...options === null || options === void 0 ? void 0 : options.headers
|
|
11347
|
-
}
|
|
11335
|
+
...options
|
|
11348
11336
|
});
|
|
11349
11337
|
};
|
|
11350
11338
|
exports.openstackPortsEnablePort = openstackPortsEnablePort;
|
|
@@ -11361,11 +11349,7 @@ const openstackPortsEnablePortSecurity = (options) => {
|
|
|
11361
11349
|
}
|
|
11362
11350
|
],
|
|
11363
11351
|
url: '/api/openstack-ports/{uuid}/enable_port_security/',
|
|
11364
|
-
...options
|
|
11365
|
-
headers: {
|
|
11366
|
-
'Content-Type': 'application/json',
|
|
11367
|
-
...options === null || options === void 0 ? void 0 : options.headers
|
|
11368
|
-
}
|
|
11352
|
+
...options
|
|
11369
11353
|
});
|
|
11370
11354
|
};
|
|
11371
11355
|
exports.openstackPortsEnablePortSecurity = openstackPortsEnablePortSecurity;
|
package/dist/types.gen.d.ts
CHANGED
|
@@ -21313,7 +21313,7 @@ export type OpenstackPortsUpdateResponses = {
|
|
|
21313
21313
|
};
|
|
21314
21314
|
export type OpenstackPortsUpdateResponse = OpenstackPortsUpdateResponses[keyof OpenstackPortsUpdateResponses];
|
|
21315
21315
|
export type OpenstackPortsDisablePortData = {
|
|
21316
|
-
body
|
|
21316
|
+
body?: never;
|
|
21317
21317
|
path: {
|
|
21318
21318
|
uuid: string;
|
|
21319
21319
|
};
|
|
@@ -21327,7 +21327,7 @@ export type OpenstackPortsDisablePortResponses = {
|
|
|
21327
21327
|
200: unknown;
|
|
21328
21328
|
};
|
|
21329
21329
|
export type OpenstackPortsDisablePortSecurityData = {
|
|
21330
|
-
body
|
|
21330
|
+
body?: never;
|
|
21331
21331
|
path: {
|
|
21332
21332
|
uuid: string;
|
|
21333
21333
|
};
|
|
@@ -21341,7 +21341,7 @@ export type OpenstackPortsDisablePortSecurityResponses = {
|
|
|
21341
21341
|
200: unknown;
|
|
21342
21342
|
};
|
|
21343
21343
|
export type OpenstackPortsEnablePortData = {
|
|
21344
|
-
body
|
|
21344
|
+
body?: never;
|
|
21345
21345
|
path: {
|
|
21346
21346
|
uuid: string;
|
|
21347
21347
|
};
|
|
@@ -21355,7 +21355,7 @@ export type OpenstackPortsEnablePortResponses = {
|
|
|
21355
21355
|
200: unknown;
|
|
21356
21356
|
};
|
|
21357
21357
|
export type OpenstackPortsEnablePortSecurityData = {
|
|
21358
|
-
body
|
|
21358
|
+
body?: never;
|
|
21359
21359
|
path: {
|
|
21360
21360
|
uuid: string;
|
|
21361
21361
|
};
|