@scaleway/sdk-cockpit 2.2.1 → 2.3.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/README.md +1 -1
- package/dist/_virtual/_rolldown/runtime.js +11 -0
- package/dist/index.gen.js +2 -4
- package/dist/v1/api.gen.d.ts +2 -2
- package/dist/v1/api.gen.js +534 -848
- package/dist/v1/content.gen.js +2 -3
- package/dist/v1/index.gen.js +52 -50
- package/dist/v1/marshalling.gen.js +305 -528
- package/dist/v1/validation-rules.gen.js +81 -91
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -83,6 +83,7 @@ const api = new Cockpit.v1.API(client)
|
|
|
83
83
|
## Support
|
|
84
84
|
|
|
85
85
|
We love feedback! Feel free to reach us on:
|
|
86
|
+
|
|
86
87
|
- [Scaleway Slack community](https://slack.scaleway.com/) - Join us on [#opensource](https://scaleway-community.slack.com/app_redirect?channel=opensource)
|
|
87
88
|
- [GitHub Issues](https://github.com/scaleway/scaleway-sdk-js/issues)
|
|
88
89
|
|
|
@@ -93,4 +94,3 @@ This repository is at its early stage and is still in active development. If you
|
|
|
93
94
|
## License
|
|
94
95
|
|
|
95
96
|
This project is Apache 2.0 licensed. See the [LICENSE](https://github.com/scaleway/scaleway-sdk-js/blob/master/LICENSE) file for details.
|
|
96
|
-
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __exportAll = (all, no_symbols) => {
|
|
3
|
+
let target = {};
|
|
4
|
+
for (var name in all) __defProp(target, name, {
|
|
5
|
+
get: all[name],
|
|
6
|
+
enumerable: true
|
|
7
|
+
});
|
|
8
|
+
if (!no_symbols) __defProp(target, Symbol.toStringTag, { value: "Module" });
|
|
9
|
+
return target;
|
|
10
|
+
};
|
|
11
|
+
export { __exportAll };
|
package/dist/index.gen.js
CHANGED
package/dist/v1/api.gen.d.ts
CHANGED
|
@@ -168,13 +168,13 @@ export declare class RegionalAPI extends ParentAPI {
|
|
|
168
168
|
waitForExporter: (request: Readonly<RegionalApiGetExporterRequest>, options?: Readonly<WaitForOptions<Exporter>>) => Promise<Exporter>;
|
|
169
169
|
/**
|
|
170
170
|
* Delete a data export. Delete a given data export, specified by its ID.
|
|
171
|
-
Note that this action will
|
|
171
|
+
Note that this action will immediately and permanently delete this data exports.
|
|
172
172
|
*
|
|
173
173
|
* @param request - The request {@link RegionalApiDeleteExporterRequest}
|
|
174
174
|
*/
|
|
175
175
|
deleteExporter: (request: Readonly<RegionalApiDeleteExporterRequest>) => Promise<void>;
|
|
176
176
|
/**
|
|
177
|
-
* Update a data export. Update a data export attributes. Changes are effective
|
|
177
|
+
* Update a data export. Update a data export attributes. Changes are effective immediately even during Beta phase.
|
|
178
178
|
Note that you can not change the data source linked to the export. If you need to do so, you will need to re-create the export.
|
|
179
179
|
*
|
|
180
180
|
* @param request - The request {@link RegionalApiUpdateExporterRequest}
|