@scaleway/sdk 2.38.1 → 2.39.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.
@@ -95,6 +95,7 @@ export type CreateJobDefinitionRequest = {
95
95
  description: string;
96
96
  /** Timeout of the job in seconds. */
97
97
  jobTimeout?: string;
98
+ /** Configure a cron for the job. */
98
99
  cronSchedule?: CreateJobDefinitionRequestCronScheduleConfig;
99
100
  };
100
101
  export type DeleteJobDefinitionRequest = {
@@ -123,7 +123,8 @@ class API extends api.API {
123
123
  ],
124
124
  ["prefix", request.prefix],
125
125
  ["project_id", request.projectId],
126
- ["tags", request.tags]
126
+ ["tags", request.tags],
127
+ ["type", request.type]
127
128
  )
128
129
  },
129
130
  marshalling_gen.unmarshalBrowseSecretsResponse
@@ -121,7 +121,8 @@ class API extends API$1 {
121
121
  ],
122
122
  ["prefix", request.prefix],
123
123
  ["project_id", request.projectId],
124
- ["tags", request.tags]
124
+ ["tags", request.tags],
125
+ ["type", request.type]
125
126
  )
126
127
  },
127
128
  unmarshalBrowseSecretsResponse
@@ -206,6 +206,8 @@ export type BrowseSecretsRequest = {
206
206
  pageSize?: number;
207
207
  /** Filter secrets by tags. */
208
208
  tags?: string[];
209
+ /** Filter by secret type (optional). */
210
+ type?: SecretType;
209
211
  };
210
212
  export interface BrowseSecretsResponse {
211
213
  /** Repeated item of type secret or folder, sorted by the request parameter. */
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
- const version = "v2.38.0";
3
+ const version = "v2.38.1";
4
4
  const userAgent = `scaleway-sdk-js/${version}`;
5
5
  exports.userAgent = userAgent;
6
6
  exports.version = version;
@@ -1,2 +1,2 @@
1
- export declare const version = "v2.38.0";
2
- export declare const userAgent = "scaleway-sdk-js/v2.38.0";
1
+ export declare const version = "v2.38.1";
2
+ export declare const userAgent = "scaleway-sdk-js/v2.38.1";
@@ -1,4 +1,4 @@
1
- const version = "v2.38.0";
1
+ const version = "v2.38.1";
2
2
  const userAgent = `scaleway-sdk-js/${version}`;
3
3
  export {
4
4
  userAgent,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scaleway/sdk",
3
- "version": "2.38.1",
3
+ "version": "2.39.0",
4
4
  "license": "Apache-2.0",
5
5
  "description": "Scaleway SDK.",
6
6
  "keywords": [
@@ -39,5 +39,5 @@
39
39
  "bundledDependencies": [
40
40
  "@scaleway/random-name"
41
41
  ],
42
- "gitHead": "0135b074d0a36b62cd812851691b217e7383d499"
42
+ "gitHead": "617534d45cefae7ee565ef849b60d16cdda339f6"
43
43
  }