oci-datascience 2.135.1 → 2.136.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.
|
@@ -25,8 +25,19 @@ export interface ScheduleIntervalTrigger extends model.ScheduleTrigger {
|
|
|
25
25
|
*/
|
|
26
26
|
"interval": number;
|
|
27
27
|
/**
|
|
28
|
-
*
|
|
29
|
-
*
|
|
28
|
+
* Maximum number of minutes after timeStart that the scheduler may use to randomly select the first execution time.
|
|
29
|
+
* This value is considered only when isRandomStartTime is true.
|
|
30
|
+
* This value applies only to the initial execution; subsequent executions remain deterministic based on the resolved first trigger time.
|
|
31
|
+
* If timeStart is null, the service resolves the effective start time using the current time.
|
|
32
|
+
* The initial jitter window is then applied once to that resolved start time to determine the first execution time.
|
|
33
|
+
* If not provided and isRandomStartTime is true, the service defaults the jitter window to half of the configured interval duration.
|
|
34
|
+
* The value must not exceed the configured interval duration.
|
|
35
|
+
* Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
|
|
36
|
+
*/
|
|
37
|
+
"initialJitterInMinutes"?: number;
|
|
38
|
+
/**
|
|
39
|
+
* when true, system generates a randomized first start time between timeStart and timeStart + initialJitterInMinutes.
|
|
40
|
+
* if timeStart is null, the current time is used as the base start time.
|
|
30
41
|
*
|
|
31
42
|
*/
|
|
32
43
|
"isRandomStartTime"?: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schedule-interval-trigger.js","sourceRoot":"","sources":["../../../../../lib/datascience/lib/model/schedule-interval-trigger.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;GAYG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;
|
|
1
|
+
{"version":3,"file":"schedule-interval-trigger.js","sourceRoot":"","sources":["../../../../../lib/datascience/lib/model/schedule-interval-trigger.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;GAYG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAoClC,IAAiB,uBAAuB,CAmCvC;AAnCD,WAAiB,uBAAuB;IACtC,IAAY,SAQX;IARD,WAAY,SAAS;QACnB,8BAAiB,CAAA;QACjB,4BAAe,CAAA;QACf;;;WAGG;QACH,2CAA8B,CAAA;IAChC,CAAC,EARW,SAAS,GAAT,iCAAS,KAAT,iCAAS,QAQpB;IAED,SAAgB,UAAU,CAAC,GAA4B,EAAE,eAAyB;QAChF,MAAM,OAAO,mCACR,CAAC,eAAe;YACjB,CAAC,CAAC,GAAG;YACL,CAAC,CAAE,KAAK,CAAC,eAAe,CAAC,UAAU,CAAC,GAAG,CAA6B,CAAC,GACpE,EAAE,CACN,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IATe,kCAAU,aASzB,CAAA;IACY,mCAAW,GAAG,UAAU,CAAC;IACtC,SAAgB,sBAAsB,CACpC,GAA4B,EAC5B,eAAyB;QAEzB,MAAM,OAAO,mCACR,CAAC,eAAe;YACjB,CAAC,CAAC,GAAG;YACL,CAAC,CAAE,KAAK,CAAC,eAAe,CAAC,sBAAsB,CAAC,GAAG,CAA6B,CAAC,GAChF,EAAE,CACN,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAZe,8CAAsB,yBAYrC,CAAA;AACH,CAAC,EAnCgB,uBAAuB,GAAvB,+BAAuB,KAAvB,+BAAuB,QAmCvC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oci-datascience",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.136.0",
|
|
4
4
|
"description": "OCI NodeJS client for Data Science Service",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -15,9 +15,9 @@
|
|
|
15
15
|
},
|
|
16
16
|
"license": "(UPL-1.0 OR Apache-2.0)",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"oci-common": "2.
|
|
18
|
+
"oci-common": "2.136.0",
|
|
19
19
|
"opossum": "5.0.1",
|
|
20
|
-
"oci-workrequests": "2.
|
|
20
|
+
"oci-workrequests": "2.136.0"
|
|
21
21
|
},
|
|
22
22
|
"publishConfig": {
|
|
23
23
|
"registry": "https://registry.npmjs.org"
|