@scaleway/sdk 2.15.0 → 2.16.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/container/v1beta1/api.gen.js +6 -2
- package/dist/api/function/v1beta1/api.gen.js +6 -2
- package/dist/api/jobs/v1alpha1/api.gen.js +3 -3
- package/dist/api/jobs/v1alpha1/marshalling.gen.js +9 -1
- package/dist/api/jobs/v1alpha1/validation-rules.gen.js +6 -1
- package/dist/index.cjs +29 -7
- package/dist/index.d.ts +29 -12
- package/dist/scw/constants.js +1 -1
- package/package.json +2 -2
|
@@ -248,9 +248,13 @@ class API extends API$1 {
|
|
|
248
248
|
}, unmarshalListLogsResponse);
|
|
249
249
|
|
|
250
250
|
/**
|
|
251
|
-
*
|
|
252
|
-
*
|
|
251
|
+
* Deprecated (replaced by
|
|
252
|
+
* [Cockpit](https://www.scaleway.com/en/developers/api/cockpit/)). List your
|
|
253
|
+
* container logs. Deprecated (replaced by
|
|
254
|
+
* [Cockpit](https://www.scaleway.com/en/developers/api/cockpit/)). List the
|
|
255
|
+
* logs of the container with the specified ID.
|
|
253
256
|
*
|
|
257
|
+
* @deprecated
|
|
254
258
|
* @param request - The request {@link ListLogsRequest}
|
|
255
259
|
* @returns A Promise of ListLogsResponse
|
|
256
260
|
*/
|
|
@@ -288,9 +288,13 @@ class API extends API$1 {
|
|
|
288
288
|
}, unmarshalListLogsResponse);
|
|
289
289
|
|
|
290
290
|
/**
|
|
291
|
-
*
|
|
292
|
-
*
|
|
291
|
+
* Deprecated (replaced by
|
|
292
|
+
* [Cockpit](https://www.scaleway.com/en/developers/api/cockpit/)). List
|
|
293
|
+
* application logs. Deprecated (replaced by
|
|
294
|
+
* [Cockpit](https://www.scaleway.com/en/developers/api/cockpit/)). List the
|
|
295
|
+
* application logs of the function with the specified ID.
|
|
293
296
|
*
|
|
297
|
+
* @deprecated
|
|
294
298
|
* @param request - The request {@link ListLogsRequest}
|
|
295
299
|
* @returns A Promise of ListLogsResponse
|
|
296
300
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { API as API$1 } from '../../../scw/api.js';
|
|
2
2
|
import { validatePathParam, urlParams } from '../../../helpers/marshalling.js';
|
|
3
3
|
import { enrichForPagination } from '../../../scw/fetch/resource-paginator.js';
|
|
4
|
-
import { marshalCreateJobDefinitionRequest, unmarshalJobDefinition, unmarshalListJobDefinitionsResponse, marshalUpdateJobDefinitionRequest, marshalStartJobDefinitionRequest, unmarshalJobRun, unmarshalListJobRunsResponse } from './marshalling.gen.js';
|
|
4
|
+
import { marshalCreateJobDefinitionRequest, unmarshalJobDefinition, unmarshalListJobDefinitionsResponse, marshalUpdateJobDefinitionRequest, marshalStartJobDefinitionRequest, unmarshalStartJobDefinitionResponse, unmarshalJobRun, unmarshalListJobRunsResponse } from './marshalling.gen.js';
|
|
5
5
|
|
|
6
6
|
// This file was automatically generated. DO NOT EDIT.
|
|
7
7
|
// If you have any remark or suggestion do not hesitate to open an issue.
|
|
@@ -80,14 +80,14 @@ class API extends API$1 {
|
|
|
80
80
|
* new job run.
|
|
81
81
|
*
|
|
82
82
|
* @param request - The request {@link StartJobDefinitionRequest}
|
|
83
|
-
* @returns A Promise of
|
|
83
|
+
* @returns A Promise of StartJobDefinitionResponse
|
|
84
84
|
*/
|
|
85
85
|
startJobDefinition = request => this.client.fetch({
|
|
86
86
|
body: JSON.stringify(marshalStartJobDefinitionRequest(request, this.client.settings)),
|
|
87
87
|
headers: jsonContentHeaders,
|
|
88
88
|
method: 'POST',
|
|
89
89
|
path: `/serverless-jobs/v1alpha1/regions/${validatePathParam('region', request.region ?? this.client.settings.defaultRegion)}/job-definitions/${validatePathParam('jobDefinitionId', request.jobDefinitionId)}/start`
|
|
90
|
-
},
|
|
90
|
+
}, unmarshalStartJobDefinitionResponse);
|
|
91
91
|
|
|
92
92
|
/**
|
|
93
93
|
* Get a job run by its unique identifier.
|
|
@@ -73,6 +73,14 @@ const unmarshalListJobRunsResponse = data => {
|
|
|
73
73
|
totalCount: data.total_count
|
|
74
74
|
};
|
|
75
75
|
};
|
|
76
|
+
const unmarshalStartJobDefinitionResponse = data => {
|
|
77
|
+
if (!isJSONObject(data)) {
|
|
78
|
+
throw new TypeError(`Unmarshalling the type 'StartJobDefinitionResponse' failed as data isn't a dictionary.`);
|
|
79
|
+
}
|
|
80
|
+
return {
|
|
81
|
+
jobRuns: unmarshalArrayOfObject(data.job_runs, unmarshalJobRun)
|
|
82
|
+
};
|
|
83
|
+
};
|
|
76
84
|
const marshalCreateJobDefinitionRequestCronScheduleConfig = (request, defaults) => ({
|
|
77
85
|
schedule: request.schedule,
|
|
78
86
|
timezone: request.timezone
|
|
@@ -110,4 +118,4 @@ const marshalUpdateJobDefinitionRequest = (request, defaults) => ({
|
|
|
110
118
|
name: request.name
|
|
111
119
|
});
|
|
112
120
|
|
|
113
|
-
export { marshalCreateJobDefinitionRequest, marshalStartJobDefinitionRequest, marshalUpdateJobDefinitionRequest, unmarshalJobDefinition, unmarshalJobRun, unmarshalListJobDefinitionsResponse, unmarshalListJobRunsResponse };
|
|
121
|
+
export { marshalCreateJobDefinitionRequest, marshalStartJobDefinitionRequest, marshalUpdateJobDefinitionRequest, unmarshalJobDefinition, unmarshalJobRun, unmarshalListJobDefinitionsResponse, unmarshalListJobRunsResponse, unmarshalStartJobDefinitionResponse };
|
|
@@ -53,6 +53,11 @@ const ListJobRunsRequest = {
|
|
|
53
53
|
lessThanOrEqual: 1000
|
|
54
54
|
}
|
|
55
55
|
};
|
|
56
|
+
const StartJobDefinitionRequest = {
|
|
57
|
+
replicas: {
|
|
58
|
+
greaterThan: 0
|
|
59
|
+
}
|
|
60
|
+
};
|
|
56
61
|
const UpdateJobDefinitionRequest = {
|
|
57
62
|
cpuLimit: {
|
|
58
63
|
greaterThan: 0
|
|
@@ -78,4 +83,4 @@ const UpdateJobDefinitionRequestCronScheduleConfig = {
|
|
|
78
83
|
}
|
|
79
84
|
};
|
|
80
85
|
|
|
81
|
-
export { CreateJobDefinitionRequest, CreateJobDefinitionRequestCronScheduleConfig, CronSchedule, ListJobDefinitionsRequest, ListJobRunsRequest, UpdateJobDefinitionRequest, UpdateJobDefinitionRequestCronScheduleConfig };
|
|
86
|
+
export { CreateJobDefinitionRequest, CreateJobDefinitionRequestCronScheduleConfig, CronSchedule, ListJobDefinitionsRequest, ListJobRunsRequest, StartJobDefinitionRequest, UpdateJobDefinitionRequest, UpdateJobDefinitionRequestCronScheduleConfig };
|
package/dist/index.cjs
CHANGED
|
@@ -497,7 +497,7 @@ const assertValidSettings = obj => {
|
|
|
497
497
|
}
|
|
498
498
|
};
|
|
499
499
|
|
|
500
|
-
const version = 'v2.
|
|
500
|
+
const version = 'v2.15.0';
|
|
501
501
|
const userAgent = `scaleway-sdk-js/${version}`;
|
|
502
502
|
|
|
503
503
|
const isBrowser = () =>
|
|
@@ -5746,9 +5746,13 @@ let API$p = class API extends API$x {
|
|
|
5746
5746
|
}, unmarshalListLogsResponse$2);
|
|
5747
5747
|
|
|
5748
5748
|
/**
|
|
5749
|
-
*
|
|
5750
|
-
*
|
|
5749
|
+
* Deprecated (replaced by
|
|
5750
|
+
* [Cockpit](https://www.scaleway.com/en/developers/api/cockpit/)). List your
|
|
5751
|
+
* container logs. Deprecated (replaced by
|
|
5752
|
+
* [Cockpit](https://www.scaleway.com/en/developers/api/cockpit/)). List the
|
|
5753
|
+
* logs of the container with the specified ID.
|
|
5751
5754
|
*
|
|
5755
|
+
* @deprecated
|
|
5752
5756
|
* @param request - The request {@link ListLogsRequest}
|
|
5753
5757
|
* @returns A Promise of ListLogsResponse
|
|
5754
5758
|
*/
|
|
@@ -10511,9 +10515,13 @@ let API$l = class API extends API$x {
|
|
|
10511
10515
|
}, unmarshalListLogsResponse$1);
|
|
10512
10516
|
|
|
10513
10517
|
/**
|
|
10514
|
-
*
|
|
10515
|
-
*
|
|
10518
|
+
* Deprecated (replaced by
|
|
10519
|
+
* [Cockpit](https://www.scaleway.com/en/developers/api/cockpit/)). List
|
|
10520
|
+
* application logs. Deprecated (replaced by
|
|
10521
|
+
* [Cockpit](https://www.scaleway.com/en/developers/api/cockpit/)). List the
|
|
10522
|
+
* application logs of the function with the specified ID.
|
|
10516
10523
|
*
|
|
10524
|
+
* @deprecated
|
|
10517
10525
|
* @param request - The request {@link ListLogsRequest}
|
|
10518
10526
|
* @returns A Promise of ListLogsResponse
|
|
10519
10527
|
*/
|
|
@@ -16499,6 +16507,14 @@ const unmarshalListJobRunsResponse = data => {
|
|
|
16499
16507
|
totalCount: data.total_count
|
|
16500
16508
|
};
|
|
16501
16509
|
};
|
|
16510
|
+
const unmarshalStartJobDefinitionResponse = data => {
|
|
16511
|
+
if (!isJSONObject(data)) {
|
|
16512
|
+
throw new TypeError(`Unmarshalling the type 'StartJobDefinitionResponse' failed as data isn't a dictionary.`);
|
|
16513
|
+
}
|
|
16514
|
+
return {
|
|
16515
|
+
jobRuns: unmarshalArrayOfObject(data.job_runs, unmarshalJobRun)
|
|
16516
|
+
};
|
|
16517
|
+
};
|
|
16502
16518
|
const marshalCreateJobDefinitionRequestCronScheduleConfig = (request, defaults) => ({
|
|
16503
16519
|
schedule: request.schedule,
|
|
16504
16520
|
timezone: request.timezone
|
|
@@ -16613,14 +16629,14 @@ let API$f = class API extends API$x {
|
|
|
16613
16629
|
* new job run.
|
|
16614
16630
|
*
|
|
16615
16631
|
* @param request - The request {@link StartJobDefinitionRequest}
|
|
16616
|
-
* @returns A Promise of
|
|
16632
|
+
* @returns A Promise of StartJobDefinitionResponse
|
|
16617
16633
|
*/
|
|
16618
16634
|
startJobDefinition = request => this.client.fetch({
|
|
16619
16635
|
body: JSON.stringify(marshalStartJobDefinitionRequest(request, this.client.settings)),
|
|
16620
16636
|
headers: jsonContentHeaders$e,
|
|
16621
16637
|
method: 'POST',
|
|
16622
16638
|
path: `/serverless-jobs/v1alpha1/regions/${validatePathParam('region', request.region ?? this.client.settings.defaultRegion)}/job-definitions/${validatePathParam('jobDefinitionId', request.jobDefinitionId)}/start`
|
|
16623
|
-
},
|
|
16639
|
+
}, unmarshalStartJobDefinitionResponse);
|
|
16624
16640
|
|
|
16625
16641
|
/**
|
|
16626
16642
|
* Get a job run by its unique identifier.
|
|
@@ -16721,6 +16737,11 @@ const ListJobRunsRequest = {
|
|
|
16721
16737
|
lessThanOrEqual: 1000
|
|
16722
16738
|
}
|
|
16723
16739
|
};
|
|
16740
|
+
const StartJobDefinitionRequest = {
|
|
16741
|
+
replicas: {
|
|
16742
|
+
greaterThan: 0
|
|
16743
|
+
}
|
|
16744
|
+
};
|
|
16724
16745
|
const UpdateJobDefinitionRequest = {
|
|
16725
16746
|
cpuLimit: {
|
|
16726
16747
|
greaterThan: 0
|
|
@@ -16753,6 +16774,7 @@ var validationRules_gen$5 = /*#__PURE__*/Object.freeze({
|
|
|
16753
16774
|
CronSchedule: CronSchedule,
|
|
16754
16775
|
ListJobDefinitionsRequest: ListJobDefinitionsRequest,
|
|
16755
16776
|
ListJobRunsRequest: ListJobRunsRequest,
|
|
16777
|
+
StartJobDefinitionRequest: StartJobDefinitionRequest,
|
|
16756
16778
|
UpdateJobDefinitionRequest: UpdateJobDefinitionRequest,
|
|
16757
16779
|
UpdateJobDefinitionRequestCronScheduleConfig: UpdateJobDefinitionRequestCronScheduleConfig
|
|
16758
16780
|
});
|
package/dist/index.d.ts
CHANGED
|
@@ -5621,9 +5621,13 @@ declare class API$p extends API$x {
|
|
|
5621
5621
|
deleteCron: (request: Readonly<DeleteCronRequest$1>) => Promise<Cron$1>;
|
|
5622
5622
|
protected pageOfListLogs: (request: Readonly<ListLogsRequest$3>) => Promise<ListLogsResponse$2>;
|
|
5623
5623
|
/**
|
|
5624
|
-
*
|
|
5625
|
-
*
|
|
5624
|
+
* Deprecated (replaced by
|
|
5625
|
+
* [Cockpit](https://www.scaleway.com/en/developers/api/cockpit/)). List your
|
|
5626
|
+
* container logs. Deprecated (replaced by
|
|
5627
|
+
* [Cockpit](https://www.scaleway.com/en/developers/api/cockpit/)). List the
|
|
5628
|
+
* logs of the container with the specified ID.
|
|
5626
5629
|
*
|
|
5630
|
+
* @deprecated
|
|
5627
5631
|
* @param request - The request {@link ListLogsRequest}
|
|
5628
5632
|
* @returns A Promise of ListLogsResponse
|
|
5629
5633
|
*/
|
|
@@ -10812,9 +10816,13 @@ declare class API$l extends API$x {
|
|
|
10812
10816
|
deleteCron: (request: Readonly<DeleteCronRequest>) => Promise<Cron>;
|
|
10813
10817
|
protected pageOfListLogs: (request: Readonly<ListLogsRequest$2>) => Promise<ListLogsResponse$1>;
|
|
10814
10818
|
/**
|
|
10815
|
-
*
|
|
10816
|
-
*
|
|
10819
|
+
* Deprecated (replaced by
|
|
10820
|
+
* [Cockpit](https://www.scaleway.com/en/developers/api/cockpit/)). List
|
|
10821
|
+
* application logs. Deprecated (replaced by
|
|
10822
|
+
* [Cockpit](https://www.scaleway.com/en/developers/api/cockpit/)). List the
|
|
10823
|
+
* application logs of the function with the specified ID.
|
|
10817
10824
|
*
|
|
10825
|
+
* @deprecated
|
|
10818
10826
|
* @param request - The request {@link ListLogsRequest}
|
|
10819
10827
|
* @returns A Promise of ListLogsResponse
|
|
10820
10828
|
*/
|
|
@@ -16853,7 +16861,7 @@ declare namespace index$j {
|
|
|
16853
16861
|
}
|
|
16854
16862
|
|
|
16855
16863
|
type ListIPsRequestOrderBy$1 = 'created_at_desc' | 'created_at_asc' | 'updated_at_desc' | 'updated_at_asc' | 'attached_at_desc' | 'attached_at_asc';
|
|
16856
|
-
type ResourceType = 'unknown_type' | 'instance_server' | 'instance_ip' | 'instance_private_nic' | 'lb_server' | 'fip_ip' | 'vpc_gateway' | 'vpc_gateway_network' | 'k8s_node' | 'k8s_cluster' | 'rdb_instance' | 'redis_cluster' | 'baremetal_server' | 'baremetal_private_nic';
|
|
16864
|
+
type ResourceType = 'unknown_type' | 'instance_server' | 'instance_ip' | 'instance_private_nic' | 'lb_server' | 'fip_ip' | 'vpc_gateway' | 'vpc_gateway_network' | 'k8s_node' | 'k8s_cluster' | 'rdb_instance' | 'redis_cluster' | 'baremetal_server' | 'baremetal_private_nic' | 'llm_deployment';
|
|
16857
16865
|
interface Resource {
|
|
16858
16866
|
/** Type of resource the IP is attached to. */
|
|
16859
16867
|
type: ResourceType;
|
|
@@ -17693,7 +17701,7 @@ declare namespace index$h {
|
|
|
17693
17701
|
export { index_gen$g as v1alpha1 };
|
|
17694
17702
|
}
|
|
17695
17703
|
|
|
17696
|
-
type JobRunState = 'unknown_state' | 'queued' | 'scheduled' | 'running' | 'succeeded' | 'failed' | 'canceled';
|
|
17704
|
+
type JobRunState = 'unknown_state' | 'queued' | 'scheduled' | 'running' | 'succeeded' | 'failed' | 'canceled' | 'internal_error';
|
|
17697
17705
|
type ListJobDefinitionsRequestOrderBy = 'created_at_asc' | 'created_at_desc';
|
|
17698
17706
|
type ListJobRunsRequestOrderBy = 'created_at_asc' | 'created_at_desc';
|
|
17699
17707
|
interface CronSchedule$1 {
|
|
@@ -17832,7 +17840,7 @@ interface ListJobRunsResponse {
|
|
|
17832
17840
|
jobRuns: JobRun[];
|
|
17833
17841
|
totalCount: number;
|
|
17834
17842
|
}
|
|
17835
|
-
type StartJobDefinitionRequest = {
|
|
17843
|
+
type StartJobDefinitionRequest$1 = {
|
|
17836
17844
|
/**
|
|
17837
17845
|
* Region to target. If none is passed will use default region from the
|
|
17838
17846
|
* config.
|
|
@@ -17847,6 +17855,9 @@ type StartJobDefinitionRequest = {
|
|
|
17847
17855
|
/** Number of jobs to run. */
|
|
17848
17856
|
replicas?: number;
|
|
17849
17857
|
};
|
|
17858
|
+
interface StartJobDefinitionResponse {
|
|
17859
|
+
jobRuns: JobRun[];
|
|
17860
|
+
}
|
|
17850
17861
|
type StopJobRunRequest = {
|
|
17851
17862
|
/**
|
|
17852
17863
|
* Region to target. If none is passed will use default region from the
|
|
@@ -17931,9 +17942,9 @@ declare class API$f extends API$x {
|
|
|
17931
17942
|
* new job run.
|
|
17932
17943
|
*
|
|
17933
17944
|
* @param request - The request {@link StartJobDefinitionRequest}
|
|
17934
|
-
* @returns A Promise of
|
|
17945
|
+
* @returns A Promise of StartJobDefinitionResponse
|
|
17935
17946
|
*/
|
|
17936
|
-
startJobDefinition: (request: Readonly<StartJobDefinitionRequest>) => Promise<
|
|
17947
|
+
startJobDefinition: (request: Readonly<StartJobDefinitionRequest$1>) => Promise<StartJobDefinitionResponse>;
|
|
17937
17948
|
/**
|
|
17938
17949
|
* Get a job run by its unique identifier.
|
|
17939
17950
|
*
|
|
@@ -18016,6 +18027,11 @@ declare const ListJobRunsRequest: {
|
|
|
18016
18027
|
lessThanOrEqual: number;
|
|
18017
18028
|
};
|
|
18018
18029
|
};
|
|
18030
|
+
declare const StartJobDefinitionRequest: {
|
|
18031
|
+
replicas: {
|
|
18032
|
+
greaterThan: number;
|
|
18033
|
+
};
|
|
18034
|
+
};
|
|
18019
18035
|
declare const UpdateJobDefinitionRequest: {
|
|
18020
18036
|
cpuLimit: {
|
|
18021
18037
|
greaterThan: number;
|
|
@@ -18046,10 +18062,11 @@ declare const validationRules_gen$5_CreateJobDefinitionRequestCronScheduleConfig
|
|
|
18046
18062
|
declare const validationRules_gen$5_CronSchedule: typeof CronSchedule;
|
|
18047
18063
|
declare const validationRules_gen$5_ListJobDefinitionsRequest: typeof ListJobDefinitionsRequest;
|
|
18048
18064
|
declare const validationRules_gen$5_ListJobRunsRequest: typeof ListJobRunsRequest;
|
|
18065
|
+
declare const validationRules_gen$5_StartJobDefinitionRequest: typeof StartJobDefinitionRequest;
|
|
18049
18066
|
declare const validationRules_gen$5_UpdateJobDefinitionRequest: typeof UpdateJobDefinitionRequest;
|
|
18050
18067
|
declare const validationRules_gen$5_UpdateJobDefinitionRequestCronScheduleConfig: typeof UpdateJobDefinitionRequestCronScheduleConfig;
|
|
18051
18068
|
declare namespace validationRules_gen$5 {
|
|
18052
|
-
export { validationRules_gen$5_CreateJobDefinitionRequest as CreateJobDefinitionRequest, validationRules_gen$5_CreateJobDefinitionRequestCronScheduleConfig as CreateJobDefinitionRequestCronScheduleConfig, validationRules_gen$5_CronSchedule as CronSchedule, validationRules_gen$5_ListJobDefinitionsRequest as ListJobDefinitionsRequest, validationRules_gen$5_ListJobRunsRequest as ListJobRunsRequest, validationRules_gen$5_UpdateJobDefinitionRequest as UpdateJobDefinitionRequest, validationRules_gen$5_UpdateJobDefinitionRequestCronScheduleConfig as UpdateJobDefinitionRequestCronScheduleConfig };
|
|
18069
|
+
export { validationRules_gen$5_CreateJobDefinitionRequest as CreateJobDefinitionRequest, validationRules_gen$5_CreateJobDefinitionRequestCronScheduleConfig as CreateJobDefinitionRequestCronScheduleConfig, validationRules_gen$5_CronSchedule as CronSchedule, validationRules_gen$5_ListJobDefinitionsRequest as ListJobDefinitionsRequest, validationRules_gen$5_ListJobRunsRequest as ListJobRunsRequest, validationRules_gen$5_StartJobDefinitionRequest as StartJobDefinitionRequest, validationRules_gen$5_UpdateJobDefinitionRequest as UpdateJobDefinitionRequest, validationRules_gen$5_UpdateJobDefinitionRequestCronScheduleConfig as UpdateJobDefinitionRequestCronScheduleConfig };
|
|
18053
18070
|
}
|
|
18054
18071
|
|
|
18055
18072
|
type index_gen$f_DeleteJobDefinitionRequest = DeleteJobDefinitionRequest;
|
|
@@ -18063,10 +18080,10 @@ type index_gen$f_ListJobDefinitionsRequestOrderBy = ListJobDefinitionsRequestOrd
|
|
|
18063
18080
|
type index_gen$f_ListJobDefinitionsResponse = ListJobDefinitionsResponse;
|
|
18064
18081
|
type index_gen$f_ListJobRunsRequestOrderBy = ListJobRunsRequestOrderBy;
|
|
18065
18082
|
type index_gen$f_ListJobRunsResponse = ListJobRunsResponse;
|
|
18066
|
-
type index_gen$
|
|
18083
|
+
type index_gen$f_StartJobDefinitionResponse = StartJobDefinitionResponse;
|
|
18067
18084
|
type index_gen$f_StopJobRunRequest = StopJobRunRequest;
|
|
18068
18085
|
declare namespace index_gen$f {
|
|
18069
|
-
export { API$f as API, type CreateJobDefinitionRequest$1 as CreateJobDefinitionRequest, type CreateJobDefinitionRequestCronScheduleConfig$1 as CreateJobDefinitionRequestCronScheduleConfig, type CronSchedule$1 as CronSchedule, type index_gen$f_DeleteJobDefinitionRequest as DeleteJobDefinitionRequest, type index_gen$f_GetJobDefinitionRequest as GetJobDefinitionRequest, type index_gen$f_GetJobRunRequest as GetJobRunRequest, index_gen$f_JOB_RUN_TRANSIENT_STATUSES as JOB_RUN_TRANSIENT_STATUSES, type index_gen$f_JobDefinition as JobDefinition, type index_gen$f_JobRun as JobRun, type index_gen$f_JobRunState as JobRunState, type ListJobDefinitionsRequest$1 as ListJobDefinitionsRequest, type index_gen$f_ListJobDefinitionsRequestOrderBy as ListJobDefinitionsRequestOrderBy, type index_gen$f_ListJobDefinitionsResponse as ListJobDefinitionsResponse, type ListJobRunsRequest$1 as ListJobRunsRequest, type index_gen$f_ListJobRunsRequestOrderBy as ListJobRunsRequestOrderBy, type index_gen$f_ListJobRunsResponse as ListJobRunsResponse, type
|
|
18086
|
+
export { API$f as API, type CreateJobDefinitionRequest$1 as CreateJobDefinitionRequest, type CreateJobDefinitionRequestCronScheduleConfig$1 as CreateJobDefinitionRequestCronScheduleConfig, type CronSchedule$1 as CronSchedule, type index_gen$f_DeleteJobDefinitionRequest as DeleteJobDefinitionRequest, type index_gen$f_GetJobDefinitionRequest as GetJobDefinitionRequest, type index_gen$f_GetJobRunRequest as GetJobRunRequest, index_gen$f_JOB_RUN_TRANSIENT_STATUSES as JOB_RUN_TRANSIENT_STATUSES, type index_gen$f_JobDefinition as JobDefinition, type index_gen$f_JobRun as JobRun, type index_gen$f_JobRunState as JobRunState, type ListJobDefinitionsRequest$1 as ListJobDefinitionsRequest, type index_gen$f_ListJobDefinitionsRequestOrderBy as ListJobDefinitionsRequestOrderBy, type index_gen$f_ListJobDefinitionsResponse as ListJobDefinitionsResponse, type ListJobRunsRequest$1 as ListJobRunsRequest, type index_gen$f_ListJobRunsRequestOrderBy as ListJobRunsRequestOrderBy, type index_gen$f_ListJobRunsResponse as ListJobRunsResponse, type StartJobDefinitionRequest$1 as StartJobDefinitionRequest, type index_gen$f_StartJobDefinitionResponse as StartJobDefinitionResponse, type index_gen$f_StopJobRunRequest as StopJobRunRequest, type UpdateJobDefinitionRequest$1 as UpdateJobDefinitionRequest, type UpdateJobDefinitionRequestCronScheduleConfig$1 as UpdateJobDefinitionRequestCronScheduleConfig, validationRules_gen$5 as ValidationRules };
|
|
18070
18087
|
}
|
|
18071
18088
|
|
|
18072
18089
|
declare namespace index$g {
|
package/dist/scw/constants.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scaleway/sdk",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.16.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "Scaleway SDK.",
|
|
6
6
|
"keywords": [
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"bundledDependencies": [
|
|
36
36
|
"@scaleway/random-name"
|
|
37
37
|
],
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "83b3535b700c5732c56526e88e7864e487553f74"
|
|
39
39
|
}
|