oci-resourcescheduler 2.107.2 → 2.108.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/lib/client.d.ts +14 -3
- package/lib/client.js +69 -4
- package/lib/client.js.map +1 -1
- package/lib/model/body-parameter.d.ts +28 -0
- package/lib/model/body-parameter.js +50 -0
- package/lib/model/body-parameter.js.map +1 -0
- package/lib/model/change-schedule-compartment-details.d.ts +26 -0
- package/lib/model/change-schedule-compartment-details.js +29 -0
- package/lib/model/change-schedule-compartment-details.js.map +1 -0
- package/lib/model/header-parameter.d.ts +30 -0
- package/lib/model/header-parameter.js +50 -0
- package/lib/model/header-parameter.js.map +1 -0
- package/lib/model/index.d.ts +12 -0
- package/lib/model/index.js +13 -1
- package/lib/model/index.js.map +1 -1
- package/lib/model/parameter.d.ts +23 -0
- package/lib/model/parameter.js +80 -0
- package/lib/model/parameter.js.map +1 -0
- package/lib/model/path-parameter.d.ts +30 -0
- package/lib/model/path-parameter.js +50 -0
- package/lib/model/path-parameter.js.map +1 -0
- package/lib/model/query-parameter.d.ts +30 -0
- package/lib/model/query-parameter.js +50 -0
- package/lib/model/query-parameter.js.map +1 -0
- package/lib/model/resource.d.ts +46 -0
- package/lib/model/resource.js +34 -2
- package/lib/model/resource.js.map +1 -1
- package/lib/model/schedule.d.ts +4 -0
- package/lib/model/schedule.js.map +1 -1
- package/lib/request/change-schedule-compartment-request.d.ts +52 -0
- package/lib/request/change-schedule-compartment-request.js +15 -0
- package/lib/request/change-schedule-compartment-request.js.map +1 -0
- package/lib/request/index.d.ts +2 -0
- package/lib/request/index.js.map +1 -1
- package/lib/request/list-schedules-request.d.ts +4 -0
- package/lib/request/list-schedules-request.js.map +1 -1
- package/lib/response/change-schedule-compartment-response.d.ts +26 -0
- package/lib/response/change-schedule-compartment-response.js +15 -0
- package/lib/response/change-schedule-compartment-response.js.map +1 -0
- package/lib/response/index.d.ts +2 -0
- package/package.json +3 -3
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Resource Scheduler API
|
|
4
|
+
* Use the Resource scheduler API to manage schedules, to perform actions on a collection of resources.
|
|
5
|
+
* OpenAPI spec version: 20240430
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
13
|
+
*/
|
|
14
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
15
|
+
if (k2 === undefined) k2 = k;
|
|
16
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
17
|
+
}) : (function(o, m, k, k2) {
|
|
18
|
+
if (k2 === undefined) k2 = k;
|
|
19
|
+
o[k2] = m[k];
|
|
20
|
+
}));
|
|
21
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
22
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
23
|
+
}) : function(o, v) {
|
|
24
|
+
o["default"] = v;
|
|
25
|
+
});
|
|
26
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
27
|
+
if (mod && mod.__esModule) return mod;
|
|
28
|
+
var result = {};
|
|
29
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
30
|
+
__setModuleDefault(result, mod);
|
|
31
|
+
return result;
|
|
32
|
+
};
|
|
33
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
34
|
+
exports.Parameter = void 0;
|
|
35
|
+
const model = __importStar(require("../model"));
|
|
36
|
+
const common = require("oci-common");
|
|
37
|
+
var Parameter;
|
|
38
|
+
(function (Parameter) {
|
|
39
|
+
function getJsonObj(obj) {
|
|
40
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
41
|
+
if (obj && "parameterType" in obj && obj.parameterType) {
|
|
42
|
+
switch (obj.parameterType) {
|
|
43
|
+
case "QUERY":
|
|
44
|
+
return model.QueryParameter.getJsonObj(jsonObj, true);
|
|
45
|
+
case "HEADER":
|
|
46
|
+
return model.HeaderParameter.getJsonObj(jsonObj, true);
|
|
47
|
+
case "BODY":
|
|
48
|
+
return model.BodyParameter.getJsonObj(jsonObj, true);
|
|
49
|
+
case "PATH":
|
|
50
|
+
return model.PathParameter.getJsonObj(jsonObj, true);
|
|
51
|
+
default:
|
|
52
|
+
if (common.LOG.logger)
|
|
53
|
+
common.LOG.logger.info(`Unknown value for: ${obj.parameterType}`);
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
return jsonObj;
|
|
57
|
+
}
|
|
58
|
+
Parameter.getJsonObj = getJsonObj;
|
|
59
|
+
function getDeserializedJsonObj(obj) {
|
|
60
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
61
|
+
if (obj && "parameterType" in obj && obj.parameterType) {
|
|
62
|
+
switch (obj.parameterType) {
|
|
63
|
+
case "QUERY":
|
|
64
|
+
return model.QueryParameter.getDeserializedJsonObj(jsonObj, true);
|
|
65
|
+
case "HEADER":
|
|
66
|
+
return model.HeaderParameter.getDeserializedJsonObj(jsonObj, true);
|
|
67
|
+
case "BODY":
|
|
68
|
+
return model.BodyParameter.getDeserializedJsonObj(jsonObj, true);
|
|
69
|
+
case "PATH":
|
|
70
|
+
return model.PathParameter.getDeserializedJsonObj(jsonObj, true);
|
|
71
|
+
default:
|
|
72
|
+
if (common.LOG.logger)
|
|
73
|
+
common.LOG.logger.info(`Unknown value for: ${obj.parameterType}`);
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
return jsonObj;
|
|
77
|
+
}
|
|
78
|
+
Parameter.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
79
|
+
})(Parameter = exports.Parameter || (exports.Parameter = {}));
|
|
80
|
+
//# sourceMappingURL=parameter.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"parameter.js","sourceRoot":"","sources":["../../../../../lib/resourcescheduler/lib/model/parameter.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAClC,qCAAsC;AAUtC,IAAiB,SAAS,CAmDzB;AAnDD,WAAiB,SAAS;IACxB,SAAgB,UAAU,CAAC,GAAc;QACvC,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,IAAI,GAAG,IAAI,eAAe,IAAI,GAAG,IAAI,GAAG,CAAC,aAAa,EAAE;YACtD,QAAQ,GAAG,CAAC,aAAa,EAAE;gBACzB,KAAK,OAAO;oBACV,OAAO,KAAK,CAAC,cAAc,CAAC,UAAU,CAAgC,OAAQ,EAAE,IAAI,CAAC,CAAC;gBACxF,KAAK,QAAQ;oBACX,OAAO,KAAK,CAAC,eAAe,CAAC,UAAU,CAAiC,OAAQ,EAAE,IAAI,CAAC,CAAC;gBAC1F,KAAK,MAAM;oBACT,OAAO,KAAK,CAAC,aAAa,CAAC,UAAU,CAA+B,OAAQ,EAAE,IAAI,CAAC,CAAC;gBACtF,KAAK,MAAM;oBACT,OAAO,KAAK,CAAC,aAAa,CAAC,UAAU,CAA+B,OAAQ,EAAE,IAAI,CAAC,CAAC;gBACtF;oBACE,IAAI,MAAM,CAAC,GAAG,CAAC,MAAM;wBAAE,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,sBAAsB,GAAG,CAAC,aAAa,EAAE,CAAC,CAAC;aAC5F;SACF;QACD,OAAO,OAAO,CAAC;IACjB,CAAC;IAlBe,oBAAU,aAkBzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAc;QACnD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,IAAI,GAAG,IAAI,eAAe,IAAI,GAAG,IAAI,GAAG,CAAC,aAAa,EAAE;YACtD,QAAQ,GAAG,CAAC,aAAa,EAAE;gBACzB,KAAK,OAAO;oBACV,OAAO,KAAK,CAAC,cAAc,CAAC,sBAAsB,CACjB,OAAQ,EACvC,IAAI,CACL,CAAC;gBACJ,KAAK,QAAQ;oBACX,OAAO,KAAK,CAAC,eAAe,CAAC,sBAAsB,CACjB,OAAQ,EACxC,IAAI,CACL,CAAC;gBACJ,KAAK,MAAM;oBACT,OAAO,KAAK,CAAC,aAAa,CAAC,sBAAsB,CACjB,OAAQ,EACtC,IAAI,CACL,CAAC;gBACJ,KAAK,MAAM;oBACT,OAAO,KAAK,CAAC,aAAa,CAAC,sBAAsB,CACjB,OAAQ,EACtC,IAAI,CACL,CAAC;gBACJ;oBACE,IAAI,MAAM,CAAC,GAAG,CAAC,MAAM;wBAAE,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,sBAAsB,GAAG,CAAC,aAAa,EAAE,CAAC,CAAC;aAC5F;SACF;QACD,OAAO,OAAO,CAAC;IACjB,CAAC;IA9Be,gCAAsB,yBA8BrC,CAAA;AACH,CAAC,EAnDgB,SAAS,GAAT,iBAAS,KAAT,iBAAS,QAmDzB"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Resource Scheduler API
|
|
3
|
+
* Use the Resource scheduler API to manage schedules, to perform actions on a collection of resources.
|
|
4
|
+
* OpenAPI spec version: 20240430
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
|
|
11
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
12
|
+
*/
|
|
13
|
+
import * as model from "../model";
|
|
14
|
+
/**
|
|
15
|
+
* This is an input parameter that will be passed as URL path parameter.
|
|
16
|
+
*/
|
|
17
|
+
export interface PathParameter extends model.Parameter {
|
|
18
|
+
/**
|
|
19
|
+
* This is the path parameter value.
|
|
20
|
+
*/
|
|
21
|
+
"value"?: {
|
|
22
|
+
[key: string]: string;
|
|
23
|
+
};
|
|
24
|
+
"parameterType": string;
|
|
25
|
+
}
|
|
26
|
+
export declare namespace PathParameter {
|
|
27
|
+
function getJsonObj(obj: PathParameter, isParentJsonObj?: boolean): object;
|
|
28
|
+
const parameterType = "PATH";
|
|
29
|
+
function getDeserializedJsonObj(obj: PathParameter, isParentJsonObj?: boolean): object;
|
|
30
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Resource Scheduler API
|
|
4
|
+
* Use the Resource scheduler API to manage schedules, to perform actions on a collection of resources.
|
|
5
|
+
* OpenAPI spec version: 20240430
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
13
|
+
*/
|
|
14
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
15
|
+
if (k2 === undefined) k2 = k;
|
|
16
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
17
|
+
}) : (function(o, m, k, k2) {
|
|
18
|
+
if (k2 === undefined) k2 = k;
|
|
19
|
+
o[k2] = m[k];
|
|
20
|
+
}));
|
|
21
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
22
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
23
|
+
}) : function(o, v) {
|
|
24
|
+
o["default"] = v;
|
|
25
|
+
});
|
|
26
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
27
|
+
if (mod && mod.__esModule) return mod;
|
|
28
|
+
var result = {};
|
|
29
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
30
|
+
__setModuleDefault(result, mod);
|
|
31
|
+
return result;
|
|
32
|
+
};
|
|
33
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
34
|
+
exports.PathParameter = void 0;
|
|
35
|
+
const model = __importStar(require("../model"));
|
|
36
|
+
var PathParameter;
|
|
37
|
+
(function (PathParameter) {
|
|
38
|
+
function getJsonObj(obj, isParentJsonObj) {
|
|
39
|
+
const jsonObj = Object.assign(Object.assign({}, (isParentJsonObj ? obj : model.Parameter.getJsonObj(obj))), {});
|
|
40
|
+
return jsonObj;
|
|
41
|
+
}
|
|
42
|
+
PathParameter.getJsonObj = getJsonObj;
|
|
43
|
+
PathParameter.parameterType = "PATH";
|
|
44
|
+
function getDeserializedJsonObj(obj, isParentJsonObj) {
|
|
45
|
+
const jsonObj = Object.assign(Object.assign({}, (isParentJsonObj ? obj : model.Parameter.getDeserializedJsonObj(obj))), {});
|
|
46
|
+
return jsonObj;
|
|
47
|
+
}
|
|
48
|
+
PathParameter.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
49
|
+
})(PathParameter = exports.PathParameter || (exports.PathParameter = {}));
|
|
50
|
+
//# sourceMappingURL=path-parameter.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"path-parameter.js","sourceRoot":"","sources":["../../../../../lib/resourcescheduler/lib/model/path-parameter.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAelC,IAAiB,aAAa,CAkB7B;AAlBD,WAAiB,aAAa;IAC5B,SAAgB,UAAU,CAAC,GAAkB,EAAE,eAAyB;QACtE,MAAM,OAAO,mCACR,CAAC,eAAe,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAE,KAAK,CAAC,SAAS,CAAC,UAAU,CAAC,GAAG,CAAmB,CAAC,GAC5E,EAAE,CACN,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAPe,wBAAU,aAOzB,CAAA;IACY,2BAAa,GAAG,MAAM,CAAC;IACpC,SAAgB,sBAAsB,CAAC,GAAkB,EAAE,eAAyB;QAClF,MAAM,OAAO,mCACR,CAAC,eAAe,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAE,KAAK,CAAC,SAAS,CAAC,sBAAsB,CAAC,GAAG,CAAmB,CAAC,GACxF,EAAE,CACN,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAPe,oCAAsB,yBAOrC,CAAA;AACH,CAAC,EAlBgB,aAAa,GAAb,qBAAa,KAAb,qBAAa,QAkB7B"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Resource Scheduler API
|
|
3
|
+
* Use the Resource scheduler API to manage schedules, to perform actions on a collection of resources.
|
|
4
|
+
* OpenAPI spec version: 20240430
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
|
|
11
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
12
|
+
*/
|
|
13
|
+
import * as model from "../model";
|
|
14
|
+
/**
|
|
15
|
+
* This is an input parameter that will be passed as URL query parameter.
|
|
16
|
+
*/
|
|
17
|
+
export interface QueryParameter extends model.Parameter {
|
|
18
|
+
/**
|
|
19
|
+
* This is the query parameter value.
|
|
20
|
+
*/
|
|
21
|
+
"value"?: {
|
|
22
|
+
[key: string]: string;
|
|
23
|
+
};
|
|
24
|
+
"parameterType": string;
|
|
25
|
+
}
|
|
26
|
+
export declare namespace QueryParameter {
|
|
27
|
+
function getJsonObj(obj: QueryParameter, isParentJsonObj?: boolean): object;
|
|
28
|
+
const parameterType = "QUERY";
|
|
29
|
+
function getDeserializedJsonObj(obj: QueryParameter, isParentJsonObj?: boolean): object;
|
|
30
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Resource Scheduler API
|
|
4
|
+
* Use the Resource scheduler API to manage schedules, to perform actions on a collection of resources.
|
|
5
|
+
* OpenAPI spec version: 20240430
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
13
|
+
*/
|
|
14
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
15
|
+
if (k2 === undefined) k2 = k;
|
|
16
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
17
|
+
}) : (function(o, m, k, k2) {
|
|
18
|
+
if (k2 === undefined) k2 = k;
|
|
19
|
+
o[k2] = m[k];
|
|
20
|
+
}));
|
|
21
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
22
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
23
|
+
}) : function(o, v) {
|
|
24
|
+
o["default"] = v;
|
|
25
|
+
});
|
|
26
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
27
|
+
if (mod && mod.__esModule) return mod;
|
|
28
|
+
var result = {};
|
|
29
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
30
|
+
__setModuleDefault(result, mod);
|
|
31
|
+
return result;
|
|
32
|
+
};
|
|
33
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
34
|
+
exports.QueryParameter = void 0;
|
|
35
|
+
const model = __importStar(require("../model"));
|
|
36
|
+
var QueryParameter;
|
|
37
|
+
(function (QueryParameter) {
|
|
38
|
+
function getJsonObj(obj, isParentJsonObj) {
|
|
39
|
+
const jsonObj = Object.assign(Object.assign({}, (isParentJsonObj ? obj : model.Parameter.getJsonObj(obj))), {});
|
|
40
|
+
return jsonObj;
|
|
41
|
+
}
|
|
42
|
+
QueryParameter.getJsonObj = getJsonObj;
|
|
43
|
+
QueryParameter.parameterType = "QUERY";
|
|
44
|
+
function getDeserializedJsonObj(obj, isParentJsonObj) {
|
|
45
|
+
const jsonObj = Object.assign(Object.assign({}, (isParentJsonObj ? obj : model.Parameter.getDeserializedJsonObj(obj))), {});
|
|
46
|
+
return jsonObj;
|
|
47
|
+
}
|
|
48
|
+
QueryParameter.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
49
|
+
})(QueryParameter = exports.QueryParameter || (exports.QueryParameter = {}));
|
|
50
|
+
//# sourceMappingURL=query-parameter.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"query-parameter.js","sourceRoot":"","sources":["../../../../../lib/resourcescheduler/lib/model/query-parameter.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAelC,IAAiB,cAAc,CAkB9B;AAlBD,WAAiB,cAAc;IAC7B,SAAgB,UAAU,CAAC,GAAmB,EAAE,eAAyB;QACvE,MAAM,OAAO,mCACR,CAAC,eAAe,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAE,KAAK,CAAC,SAAS,CAAC,UAAU,CAAC,GAAG,CAAoB,CAAC,GAC7E,EAAE,CACN,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAPe,yBAAU,aAOzB,CAAA;IACY,4BAAa,GAAG,OAAO,CAAC;IACrC,SAAgB,sBAAsB,CAAC,GAAmB,EAAE,eAAyB;QACnF,MAAM,OAAO,mCACR,CAAC,eAAe,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAE,KAAK,CAAC,SAAS,CAAC,sBAAsB,CAAC,GAAG,CAAoB,CAAC,GACzF,EAAE,CACN,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAPe,qCAAsB,yBAOrC,CAAA;AACH,CAAC,EAlBgB,cAAc,GAAd,sBAAc,KAAd,sBAAc,QAkB9B"}
|
package/lib/model/resource.d.ts
CHANGED
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
* Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
|
|
11
11
|
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
12
12
|
*/
|
|
13
|
+
import * as model from "../model";
|
|
13
14
|
/**
|
|
14
15
|
* This is the schedule resource entity.
|
|
15
16
|
*
|
|
@@ -35,6 +36,51 @@ export interface Resource {
|
|
|
35
36
|
"metadata"?: {
|
|
36
37
|
[key: string]: string;
|
|
37
38
|
};
|
|
39
|
+
/**
|
|
40
|
+
* This is the user input parameters to use when acting on the resource.
|
|
41
|
+
* <p>
|
|
42
|
+
{
|
|
43
|
+
* \"parameters\": [
|
|
44
|
+
* {
|
|
45
|
+
* \"parameterType\": \"BODY\",
|
|
46
|
+
* \"value\": {
|
|
47
|
+
* \"ip\": \"192.168.44.44\",
|
|
48
|
+
* \"memory\": \"1024\",
|
|
49
|
+
* \"synced_folders\": [
|
|
50
|
+
* {
|
|
51
|
+
* \"host_path\": \"data/\",
|
|
52
|
+
* \"guest_path\": \"/var/www\",
|
|
53
|
+
* \"type\": \"default\"
|
|
54
|
+
* }
|
|
55
|
+
* ],
|
|
56
|
+
* \"forwarded_ports\": []
|
|
57
|
+
* }
|
|
58
|
+
* },
|
|
59
|
+
* {
|
|
60
|
+
* \"parameterType\": \"PATH\",
|
|
61
|
+
* \"value\": {
|
|
62
|
+
* \"compartmentId\": \"ocid1.compartment.oc1..xxxxx\",
|
|
63
|
+
* \"instanceId\": \"ocid1.vcn.oc1..yyyy\"
|
|
64
|
+
* }
|
|
65
|
+
* },
|
|
66
|
+
* {
|
|
67
|
+
* \"parameterType\": \"QUERY\",
|
|
68
|
+
* \"value\": {
|
|
69
|
+
* \"limit\": \"10\",
|
|
70
|
+
* \"tenantId\": \"ocid1.tenant.oc1..zzzz\"
|
|
71
|
+
* }
|
|
72
|
+
* },
|
|
73
|
+
* {
|
|
74
|
+
* \"parameterType\": \"HEADER\",
|
|
75
|
+
* \"value\": {
|
|
76
|
+
* \"token\": \"xxxx\"
|
|
77
|
+
* }
|
|
78
|
+
* }
|
|
79
|
+
* ]
|
|
80
|
+
* }
|
|
81
|
+
*
|
|
82
|
+
*/
|
|
83
|
+
"parameters"?: Array<model.Parameter>;
|
|
38
84
|
}
|
|
39
85
|
export declare namespace Resource {
|
|
40
86
|
function getJsonObj(obj: Resource): object;
|
package/lib/model/resource.js
CHANGED
|
@@ -11,17 +11,49 @@
|
|
|
11
11
|
* Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
|
|
12
12
|
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
13
13
|
*/
|
|
14
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
15
|
+
if (k2 === undefined) k2 = k;
|
|
16
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
17
|
+
}) : (function(o, m, k, k2) {
|
|
18
|
+
if (k2 === undefined) k2 = k;
|
|
19
|
+
o[k2] = m[k];
|
|
20
|
+
}));
|
|
21
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
22
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
23
|
+
}) : function(o, v) {
|
|
24
|
+
o["default"] = v;
|
|
25
|
+
});
|
|
26
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
27
|
+
if (mod && mod.__esModule) return mod;
|
|
28
|
+
var result = {};
|
|
29
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
30
|
+
__setModuleDefault(result, mod);
|
|
31
|
+
return result;
|
|
32
|
+
};
|
|
14
33
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
34
|
exports.Resource = void 0;
|
|
35
|
+
const model = __importStar(require("../model"));
|
|
16
36
|
var Resource;
|
|
17
37
|
(function (Resource) {
|
|
18
38
|
function getJsonObj(obj) {
|
|
19
|
-
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
39
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
40
|
+
"parameters": obj.parameters
|
|
41
|
+
? obj.parameters.map(item => {
|
|
42
|
+
return model.Parameter.getJsonObj(item);
|
|
43
|
+
})
|
|
44
|
+
: undefined
|
|
45
|
+
});
|
|
20
46
|
return jsonObj;
|
|
21
47
|
}
|
|
22
48
|
Resource.getJsonObj = getJsonObj;
|
|
23
49
|
function getDeserializedJsonObj(obj) {
|
|
24
|
-
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
50
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
51
|
+
"parameters": obj.parameters
|
|
52
|
+
? obj.parameters.map(item => {
|
|
53
|
+
return model.Parameter.getDeserializedJsonObj(item);
|
|
54
|
+
})
|
|
55
|
+
: undefined
|
|
56
|
+
});
|
|
25
57
|
return jsonObj;
|
|
26
58
|
}
|
|
27
59
|
Resource.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"resource.js","sourceRoot":"","sources":["../../../../../lib/resourcescheduler/lib/model/resource.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG
|
|
1
|
+
{"version":3,"file":"resource.js","sourceRoot":"","sources":["../../../../../lib/resourcescheduler/lib/model/resource.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAyElC,IAAiB,QAAQ,CA6BxB;AA7BD,WAAiB,QAAQ;IACvB,SAAgB,UAAU,CAAC,GAAa;QACtC,MAAM,OAAO,mCACR,GAAG,GACH;YACD,YAAY,EAAE,GAAG,CAAC,UAAU;gBAC1B,CAAC,CAAC,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACxB,OAAO,KAAK,CAAC,SAAS,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBAC1C,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAbe,mBAAU,aAazB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAa;QAClD,MAAM,OAAO,mCACR,GAAG,GACH;YACD,YAAY,EAAE,GAAG,CAAC,UAAU;gBAC1B,CAAC,CAAC,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACxB,OAAO,KAAK,CAAC,SAAS,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;gBACtD,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAbe,+BAAsB,yBAarC,CAAA;AACH,CAAC,EA7BgB,QAAQ,GAAR,gBAAQ,KAAR,gBAAQ,QA6BxB"}
|
package/lib/model/schedule.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schedule.js","sourceRoot":"","sources":["../../../../../lib/resourcescheduler/lib/model/schedule.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;
|
|
1
|
+
{"version":3,"file":"schedule.js","sourceRoot":"","sources":["../../../../../lib/resourcescheduler/lib/model/schedule.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AA8HlC,IAAiB,QAAQ,CA0ExB;AA1ED,WAAiB,QAAQ;IACvB,IAAY,MAQX;IARD,WAAY,MAAM;QAChB,0CAAgC,CAAA;QAChC,wCAA8B,CAAA;QAC9B;;;WAGG;QACH,wCAA8B,CAAA;IAChC,CAAC,EARW,MAAM,GAAN,eAAM,KAAN,eAAM,QAQjB;IAED,IAAY,cAQX;IARD,WAAY,cAAc;QACxB,+BAAa,CAAA;QACb,+BAAa,CAAA;QACb;;;WAGG;QACH,gDAA8B,CAAA;IAChC,CAAC,EARW,cAAc,GAAd,uBAAc,KAAd,uBAAc,QAQzB;IAED,IAAY,cAaX;IAbD,WAAY,cAAc;QACxB,mCAAiB,CAAA;QACjB,uCAAqB,CAAA;QACrB,uCAAqB,CAAA;QACrB,uCAAqB,CAAA;QACrB,uCAAqB,CAAA;QACrB,qCAAmB,CAAA;QACnB,mCAAiB,CAAA;QACjB;;;WAGG;QACH,gDAA8B,CAAA;IAChC,CAAC,EAbW,cAAc,GAAd,uBAAc,KAAd,uBAAc,QAazB;IAED,SAAgB,UAAU,CAAC,GAAa;QACtC,MAAM,OAAO,mCACR,GAAG,GACH;YACD,iBAAiB,EAAE,GAAG,CAAC,eAAe;gBACpC,CAAC,CAAC,GAAG,CAAC,eAAe,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBAC7B,OAAO,KAAK,CAAC,cAAc,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBAC/C,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;YACb,WAAW,EAAE,GAAG,CAAC,SAAS;gBACxB,CAAC,CAAC,GAAG,CAAC,SAAS,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACvB,OAAO,KAAK,CAAC,QAAQ,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBACzC,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAlBe,mBAAU,aAkBzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAa;QAClD,MAAM,OAAO,mCACR,GAAG,GACH;YACD,iBAAiB,EAAE,GAAG,CAAC,eAAe;gBACpC,CAAC,CAAC,GAAG,CAAC,eAAe,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBAC7B,OAAO,KAAK,CAAC,cAAc,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;gBAC3D,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;YACb,WAAW,EAAE,GAAG,CAAC,SAAS;gBACxB,CAAC,CAAC,GAAG,CAAC,SAAS,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACvB,OAAO,KAAK,CAAC,QAAQ,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;gBACrD,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAlBe,+BAAsB,yBAkBrC,CAAA;AACH,CAAC,EA1EgB,QAAQ,GAAR,gBAAQ,KAAR,gBAAQ,QA0ExB"}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
*
|
|
4
|
+
* OpenAPI spec version: 20240430
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
|
|
11
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
12
|
+
*/
|
|
13
|
+
import * as model from "../model";
|
|
14
|
+
import common = require("oci-common");
|
|
15
|
+
/**
|
|
16
|
+
* @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/resourcescheduler/ChangeScheduleCompartment.ts.html |here} to see how to use ChangeScheduleCompartmentRequest.
|
|
17
|
+
*/
|
|
18
|
+
export interface ChangeScheduleCompartmentRequest extends common.BaseRequest {
|
|
19
|
+
/**
|
|
20
|
+
* This is the [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the schedule.
|
|
21
|
+
*/
|
|
22
|
+
"scheduleId": string;
|
|
23
|
+
/**
|
|
24
|
+
* This is the change schedule compartment details that will be updated.
|
|
25
|
+
*/
|
|
26
|
+
"changeScheduleCompartmentDetails": model.ChangeScheduleCompartmentDetails;
|
|
27
|
+
/**
|
|
28
|
+
* This is used for optimistic concurrency control. In the PUT or DELETE call for a resource, set the
|
|
29
|
+
* {@code if-match} parameter to the value of the etag from a previous GET or POST response for
|
|
30
|
+
* that resource. The resource will be updated or deleted only if the etag you provide
|
|
31
|
+
* matches the resource's current etag value.
|
|
32
|
+
*
|
|
33
|
+
*/
|
|
34
|
+
"ifMatch"?: string;
|
|
35
|
+
/**
|
|
36
|
+
* This is a unique Oracle-assigned identifier for the request. If you need to contact
|
|
37
|
+
* Oracle about a particular request, please provide the request ID.
|
|
38
|
+
* The only valid characters for request IDs are letters, numbers,
|
|
39
|
+
* underscore, and dash.
|
|
40
|
+
*
|
|
41
|
+
*/
|
|
42
|
+
"opcRequestId"?: string;
|
|
43
|
+
/**
|
|
44
|
+
* This is a token that uniquely identifies a request so it can be retried in case of a timeout or
|
|
45
|
+
* server error without risk of running that same action again. Retry tokens expire after 24
|
|
46
|
+
* hours, but can be invalidated before then due to conflicting operations. For example, if a resource
|
|
47
|
+
* has been deleted and removed from the system, then a retry of the original creation request
|
|
48
|
+
* might be rejected.
|
|
49
|
+
*
|
|
50
|
+
*/
|
|
51
|
+
"opcRetryToken"?: string;
|
|
52
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 20240430
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
//# sourceMappingURL=change-schedule-compartment-request.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"change-schedule-compartment-request.js","sourceRoot":"","sources":["../../../../../lib/resourcescheduler/lib/request/change-schedule-compartment-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
|
package/lib/request/index.d.ts
CHANGED
|
@@ -14,6 +14,8 @@ import * as ActivateScheduleRequest from "./activate-schedule-request";
|
|
|
14
14
|
export import ActivateScheduleRequest = ActivateScheduleRequest.ActivateScheduleRequest;
|
|
15
15
|
import * as CancelWorkRequestRequest from "./cancel-work-request-request";
|
|
16
16
|
export import CancelWorkRequestRequest = CancelWorkRequestRequest.CancelWorkRequestRequest;
|
|
17
|
+
import * as ChangeScheduleCompartmentRequest from "./change-schedule-compartment-request";
|
|
18
|
+
export import ChangeScheduleCompartmentRequest = ChangeScheduleCompartmentRequest.ChangeScheduleCompartmentRequest;
|
|
17
19
|
import * as CreateScheduleRequest from "./create-schedule-request";
|
|
18
20
|
export import CreateScheduleRequest = CreateScheduleRequest.CreateScheduleRequest;
|
|
19
21
|
import * as DeactivateScheduleRequest from "./deactivate-schedule-request";
|
package/lib/request/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/resourcescheduler/lib/request/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/resourcescheduler/lib/request/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAoBH,+EAAiE;AACnD,QAAA,oBAAoB,GAAG,oBAAoB,CAAC,oBAAoB,CAAC;AAC/E,iGAAmF;AACrE,QAAA,4BAA4B,GAAG,4BAA4B,CAAC,4BAA4B,CAAC;AACvG,6FAA+E;AACjE,QAAA,0BAA0B,GAAG,0BAA0B,CAAC,0BAA0B,CAAC;AACjG,sFAAwE;AAC1D,QAAA,uBAAuB,GAAG,uBAAuB,CAAC,uBAAuB,CAAC"}
|
|
@@ -66,6 +66,10 @@ export interface ListSchedulesRequest extends common.BaseRequest {
|
|
|
66
66
|
*
|
|
67
67
|
*/
|
|
68
68
|
"opcRequestId"?: string;
|
|
69
|
+
/**
|
|
70
|
+
* This is the [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the resource affected by the work request.
|
|
71
|
+
*/
|
|
72
|
+
"resourceId"?: string;
|
|
69
73
|
}
|
|
70
74
|
export declare namespace ListSchedulesRequest {
|
|
71
75
|
enum SortBy {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-schedules-request.js","sourceRoot":"","sources":["../../../../../lib/resourcescheduler/lib/request/list-schedules-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;
|
|
1
|
+
{"version":3,"file":"list-schedules-request.js","sourceRoot":"","sources":["../../../../../lib/resourcescheduler/lib/request/list-schedules-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AAiEH,IAAiB,oBAAoB,CAOpC;AAPD,WAAiB,oBAAoB;IACnC,IAAY,MAKX;IALD,WAAY,MAAM;QAChB,qCAA2B,CAAA;QAC3B,qCAA2B,CAAA;QAC3B,2CAAiC,CAAA;QACjC,yBAAe,CAAA;IACjB,CAAC,EALW,MAAM,GAAN,2BAAM,KAAN,2BAAM,QAKjB;AACH,CAAC,EAPgB,oBAAoB,GAApB,4BAAoB,KAApB,4BAAoB,QAOpC"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
*
|
|
4
|
+
* OpenAPI spec version: 20240430
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
|
|
11
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
12
|
+
*/
|
|
13
|
+
export interface ChangeScheduleCompartmentResponse {
|
|
14
|
+
/**
|
|
15
|
+
* The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the asynchronous work request.
|
|
16
|
+
* Use GetWorkRequest with this ID to track the status of the request.
|
|
17
|
+
*
|
|
18
|
+
*/
|
|
19
|
+
"opcWorkRequestId": string;
|
|
20
|
+
/**
|
|
21
|
+
* This is a unique Oracle-assigned identifier for the request. If you need to contact
|
|
22
|
+
* Oracle about a particular request, please provide the request ID.
|
|
23
|
+
*
|
|
24
|
+
*/
|
|
25
|
+
"opcRequestId": string;
|
|
26
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 20240430
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
//# sourceMappingURL=change-schedule-compartment-response.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"change-schedule-compartment-response.js","sourceRoot":"","sources":["../../../../../lib/resourcescheduler/lib/response/change-schedule-compartment-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
|
package/lib/response/index.d.ts
CHANGED
|
@@ -14,6 +14,8 @@ import * as ActivateScheduleResponse from "./activate-schedule-response";
|
|
|
14
14
|
export import ActivateScheduleResponse = ActivateScheduleResponse.ActivateScheduleResponse;
|
|
15
15
|
import * as CancelWorkRequestResponse from "./cancel-work-request-response";
|
|
16
16
|
export import CancelWorkRequestResponse = CancelWorkRequestResponse.CancelWorkRequestResponse;
|
|
17
|
+
import * as ChangeScheduleCompartmentResponse from "./change-schedule-compartment-response";
|
|
18
|
+
export import ChangeScheduleCompartmentResponse = ChangeScheduleCompartmentResponse.ChangeScheduleCompartmentResponse;
|
|
17
19
|
import * as CreateScheduleResponse from "./create-schedule-response";
|
|
18
20
|
export import CreateScheduleResponse = CreateScheduleResponse.CreateScheduleResponse;
|
|
19
21
|
import * as DeactivateScheduleResponse from "./deactivate-schedule-response";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oci-resourcescheduler",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.108.0",
|
|
4
4
|
"description": "OCI NodeJS client for Resource Scheduler Service",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
},
|
|
16
16
|
"license": "(UPL-1.0 OR Apache-2.0)",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"oci-common": "2.
|
|
19
|
-
"oci-workrequests": "2.
|
|
18
|
+
"oci-common": "2.108.0",
|
|
19
|
+
"oci-workrequests": "2.108.0"
|
|
20
20
|
},
|
|
21
21
|
"publishConfig": {
|
|
22
22
|
"registry": "https://registry.npmjs.org"
|