oci-containerengine 2.107.1 → 2.107.3
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 +18 -0
- package/lib/client.js +127 -1
- package/lib/client.js.map +1 -1
- package/lib/model/cluster-node.d.ts +32 -0
- package/lib/model/cluster-node.js +32 -0
- package/lib/model/cluster-node.js.map +1 -0
- package/lib/model/cycle-mode.d.ts +34 -0
- package/lib/model/cycle-mode.js +45 -0
- package/lib/model/cycle-mode.js.map +1 -0
- package/lib/model/image.d.ts +36 -0
- package/lib/model/image.js +32 -0
- package/lib/model/image.js.map +1 -0
- package/lib/model/index.d.ts +12 -0
- package/lib/model/index.js +15 -3
- package/lib/model/index.js.map +1 -1
- package/lib/model/node-eviction-node-pool-settings.d.ts +4 -0
- package/lib/model/node-eviction-node-pool-settings.js.map +1 -1
- package/lib/model/node-eviction-settings.d.ts +34 -0
- package/lib/model/node-eviction-settings.js +32 -0
- package/lib/model/node-eviction-settings.js.map +1 -0
- package/lib/model/node-pool-cycling-details.d.ts +7 -1
- package/lib/model/node-pool-cycling-details.js +34 -2
- package/lib/model/node-pool-cycling-details.js.map +1 -1
- package/lib/model/reboot-cluster-node-details.d.ts +26 -0
- package/lib/model/reboot-cluster-node-details.js +60 -0
- package/lib/model/reboot-cluster-node-details.js.map +1 -0
- package/lib/model/replace-boot-volume-cluster-node-details.d.ts +26 -0
- package/lib/model/replace-boot-volume-cluster-node-details.js +60 -0
- package/lib/model/replace-boot-volume-cluster-node-details.js.map +1 -0
- package/lib/model/work-request-operation-type.d.ts +2 -0
- package/lib/model/work-request-operation-type.js +2 -0
- package/lib/model/work-request-operation-type.js.map +1 -1
- package/lib/request/get-cluster-request.d.ts +5 -0
- package/lib/request/index.d.ts +4 -0
- package/lib/request/reboot-cluster-node-request.d.ts +43 -0
- package/lib/request/reboot-cluster-node-request.js +15 -0
- package/lib/request/reboot-cluster-node-request.js.map +1 -0
- package/lib/request/replace-boot-volume-cluster-node-request.d.ts +43 -0
- package/lib/request/replace-boot-volume-cluster-node-request.js +15 -0
- package/lib/request/replace-boot-volume-cluster-node-request.js.map +1 -0
- package/lib/response/index.d.ts +4 -0
- package/lib/response/reboot-cluster-node-response.d.ts +22 -0
- package/lib/response/reboot-cluster-node-response.js +15 -0
- package/lib/response/reboot-cluster-node-response.js.map +1 -0
- package/lib/response/replace-boot-volume-cluster-node-response.d.ts +22 -0
- package/lib/response/replace-boot-volume-cluster-node-response.js +15 -0
- package/lib/response/replace-boot-volume-cluster-node-response.js.map +1 -0
- package/package.json +3 -3
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Kubernetes Engine API
|
|
4
|
+
* API for the Kubernetes Engine service (also known as the Container Engine for Kubernetes service). Use this API to build, deploy,
|
|
5
|
+
and manage cloud-native applications. For more information, see
|
|
6
|
+
[Overview of Kubernetes Engine](https://docs.oracle.com/iaas/Content/ContEng/Concepts/contengoverview.htm).
|
|
7
|
+
|
|
8
|
+
* OpenAPI spec version: 20180222
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*
|
|
14
|
+
* Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
|
|
15
|
+
* 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.
|
|
16
|
+
*/
|
|
17
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
18
|
+
if (k2 === undefined) k2 = k;
|
|
19
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
20
|
+
}) : (function(o, m, k, k2) {
|
|
21
|
+
if (k2 === undefined) k2 = k;
|
|
22
|
+
o[k2] = m[k];
|
|
23
|
+
}));
|
|
24
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
25
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
26
|
+
}) : function(o, v) {
|
|
27
|
+
o["default"] = v;
|
|
28
|
+
});
|
|
29
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
30
|
+
if (mod && mod.__esModule) return mod;
|
|
31
|
+
var result = {};
|
|
32
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
33
|
+
__setModuleDefault(result, mod);
|
|
34
|
+
return result;
|
|
35
|
+
};
|
|
36
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
37
|
+
exports.ReplaceBootVolumeClusterNodeDetails = void 0;
|
|
38
|
+
const model = __importStar(require("../model"));
|
|
39
|
+
var ReplaceBootVolumeClusterNodeDetails;
|
|
40
|
+
(function (ReplaceBootVolumeClusterNodeDetails) {
|
|
41
|
+
function getJsonObj(obj) {
|
|
42
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
43
|
+
"nodeEvictionSettings": obj.nodeEvictionSettings
|
|
44
|
+
? model.NodeEvictionSettings.getJsonObj(obj.nodeEvictionSettings)
|
|
45
|
+
: undefined
|
|
46
|
+
});
|
|
47
|
+
return jsonObj;
|
|
48
|
+
}
|
|
49
|
+
ReplaceBootVolumeClusterNodeDetails.getJsonObj = getJsonObj;
|
|
50
|
+
function getDeserializedJsonObj(obj) {
|
|
51
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
52
|
+
"nodeEvictionSettings": obj.nodeEvictionSettings
|
|
53
|
+
? model.NodeEvictionSettings.getDeserializedJsonObj(obj.nodeEvictionSettings)
|
|
54
|
+
: undefined
|
|
55
|
+
});
|
|
56
|
+
return jsonObj;
|
|
57
|
+
}
|
|
58
|
+
ReplaceBootVolumeClusterNodeDetails.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
59
|
+
})(ReplaceBootVolumeClusterNodeDetails = exports.ReplaceBootVolumeClusterNodeDetails || (exports.ReplaceBootVolumeClusterNodeDetails = {}));
|
|
60
|
+
//# sourceMappingURL=replace-boot-volume-cluster-node-details.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"replace-boot-volume-cluster-node-details.js","sourceRoot":"","sources":["../../../../../lib/containerengine/lib/model/replace-boot-volume-cluster-node-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;GAcG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAUlC,IAAiB,mCAAmC,CAyBnD;AAzBD,WAAiB,mCAAmC;IAClD,SAAgB,UAAU,CAAC,GAAwC;QACjE,MAAM,OAAO,mCACR,GAAG,GACH;YACD,sBAAsB,EAAE,GAAG,CAAC,oBAAoB;gBAC9C,CAAC,CAAC,KAAK,CAAC,oBAAoB,CAAC,UAAU,CAAC,GAAG,CAAC,oBAAoB,CAAC;gBACjE,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAXe,8CAAU,aAWzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAwC;QAC7E,MAAM,OAAO,mCACR,GAAG,GACH;YACD,sBAAsB,EAAE,GAAG,CAAC,oBAAoB;gBAC9C,CAAC,CAAC,KAAK,CAAC,oBAAoB,CAAC,sBAAsB,CAAC,GAAG,CAAC,oBAAoB,CAAC;gBAC7E,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAXe,0DAAsB,yBAWrC,CAAA;AACH,CAAC,EAzBgB,mCAAmC,GAAnC,2CAAmC,KAAnC,2CAAmC,QAyBnD"}
|
|
@@ -35,6 +35,8 @@ export declare enum WorkRequestOperationType {
|
|
|
35
35
|
UpdateAddon = "UPDATE_ADDON",
|
|
36
36
|
DisableAddon = "DISABLE_ADDON",
|
|
37
37
|
ReconcileAddon = "RECONCILE_ADDON",
|
|
38
|
+
ClusterNodeReboot = "CLUSTER_NODE_REBOOT",
|
|
39
|
+
ClusterNodeReplaceBootVolume = "CLUSTER_NODE_REPLACE_BOOT_VOLUME",
|
|
38
40
|
/**
|
|
39
41
|
* This value is used if a service returns a value for this enum that is not recognized by this
|
|
40
42
|
* version of the SDK.
|
|
@@ -39,6 +39,8 @@ var WorkRequestOperationType;
|
|
|
39
39
|
WorkRequestOperationType["UpdateAddon"] = "UPDATE_ADDON";
|
|
40
40
|
WorkRequestOperationType["DisableAddon"] = "DISABLE_ADDON";
|
|
41
41
|
WorkRequestOperationType["ReconcileAddon"] = "RECONCILE_ADDON";
|
|
42
|
+
WorkRequestOperationType["ClusterNodeReboot"] = "CLUSTER_NODE_REBOOT";
|
|
43
|
+
WorkRequestOperationType["ClusterNodeReplaceBootVolume"] = "CLUSTER_NODE_REPLACE_BOOT_VOLUME";
|
|
42
44
|
/**
|
|
43
45
|
* This value is used if a service returns a value for this enum that is not recognized by this
|
|
44
46
|
* version of the SDK.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"work-request-operation-type.js","sourceRoot":"","sources":["../../../../../lib/containerengine/lib/model/work-request-operation-type.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;GAcG;;;AAKH;;IAEI;AACJ,IAAY,
|
|
1
|
+
{"version":3,"file":"work-request-operation-type.js","sourceRoot":"","sources":["../../../../../lib/containerengine/lib/model/work-request-operation-type.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;GAcG;;;AAKH;;IAEI;AACJ,IAAY,wBA2BX;AA3BD,WAAY,wBAAwB;IAClC,4DAAgC,CAAA;IAChC,4DAAgC,CAAA;IAChC,4DAAgC,CAAA;IAChC,gEAAoC,CAAA;IACpC,8DAAkC,CAAA;IAClC,8DAAkC,CAAA;IAClC,8DAAkC,CAAA;IAClC,oEAAwC,CAAA;IACxC,gEAAoC,CAAA;IACpC,oEAAwC,CAAA;IACxC,4EAAgD,CAAA;IAChD,4EAAgD,CAAA;IAChD,4EAAgD,CAAA;IAChD,oEAAwC,CAAA;IACxC,wDAA4B,CAAA;IAC5B,wDAA4B,CAAA;IAC5B,0DAA8B,CAAA;IAC9B,8DAAkC,CAAA;IAClC,qEAAyC,CAAA;IACzC,6FAAiE,CAAA;IAEjE;;;OAGG;IACH,0DAA8B,CAAA;AAChC,CAAC,EA3BW,wBAAwB,GAAxB,gCAAwB,KAAxB,gCAAwB,QA2BnC;AAED,WAAiB,wBAAwB;IACvC,SAAgB,UAAU,CAAC,GAA6B;QACtD,OAAO,GAAG,CAAC;IACb,CAAC;IAFe,mCAAU,aAEzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAA6B;QAClE,OAAO,GAAG,CAAC;IACb,CAAC;IAFe,+CAAsB,yBAErC,CAAA;AACH,CAAC,EAPgB,wBAAwB,GAAxB,gCAAwB,KAAxB,gCAAwB,QAOxC"}
|
|
@@ -25,4 +25,9 @@ export interface GetClusterRequest extends common.BaseRequest {
|
|
|
25
25
|
*
|
|
26
26
|
*/
|
|
27
27
|
"opcRequestId"?: string;
|
|
28
|
+
/**
|
|
29
|
+
* Boolean value to determine if the OpenIdConnectAuth configuration file should be displayed for the provided cluster.
|
|
30
|
+
*
|
|
31
|
+
*/
|
|
32
|
+
"shouldIncludeOidcConfigFile"?: boolean;
|
|
28
33
|
}
|
package/lib/request/index.d.ts
CHANGED
|
@@ -87,6 +87,10 @@ import * as ListWorkRequestsRequest from "./list-work-requests-request";
|
|
|
87
87
|
export import ListWorkRequestsRequest = ListWorkRequestsRequest.ListWorkRequestsRequest;
|
|
88
88
|
import * as ListWorkloadMappingsRequest from "./list-workload-mappings-request";
|
|
89
89
|
export import ListWorkloadMappingsRequest = ListWorkloadMappingsRequest.ListWorkloadMappingsRequest;
|
|
90
|
+
import * as RebootClusterNodeRequest from "./reboot-cluster-node-request";
|
|
91
|
+
export import RebootClusterNodeRequest = RebootClusterNodeRequest.RebootClusterNodeRequest;
|
|
92
|
+
import * as ReplaceBootVolumeClusterNodeRequest from "./replace-boot-volume-cluster-node-request";
|
|
93
|
+
export import ReplaceBootVolumeClusterNodeRequest = ReplaceBootVolumeClusterNodeRequest.ReplaceBootVolumeClusterNodeRequest;
|
|
90
94
|
import * as StartCredentialRotationRequest from "./start-credential-rotation-request";
|
|
91
95
|
export import StartCredentialRotationRequest = StartCredentialRotationRequest.StartCredentialRotationRequest;
|
|
92
96
|
import * as UpdateAddonRequest from "./update-addon-request";
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
*
|
|
4
|
+
* OpenAPI spec version: 20180222
|
|
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/containerengine/RebootClusterNode.ts.html |here} to see how to use RebootClusterNodeRequest.
|
|
17
|
+
*/
|
|
18
|
+
export interface RebootClusterNodeRequest extends common.BaseRequest {
|
|
19
|
+
/**
|
|
20
|
+
* The OCID of the cluster.
|
|
21
|
+
*/
|
|
22
|
+
"clusterId": string;
|
|
23
|
+
/**
|
|
24
|
+
* The OCID of the compute instance.
|
|
25
|
+
*/
|
|
26
|
+
"nodeId": string;
|
|
27
|
+
/**
|
|
28
|
+
* The fields to reboot a node.
|
|
29
|
+
*/
|
|
30
|
+
"rebootClusterNodeDetails": model.RebootClusterNodeDetails;
|
|
31
|
+
/**
|
|
32
|
+
* Unique Oracle-assigned identifier for the request. If you need to contact
|
|
33
|
+
* Oracle about a particular request, please provide the request ID.
|
|
34
|
+
*
|
|
35
|
+
*/
|
|
36
|
+
"opcRequestId"?: string;
|
|
37
|
+
/**
|
|
38
|
+
* A token you supply to uniquely identify the request and provide idempotency if
|
|
39
|
+
* the request is retried. Idempotency tokens expire after 24 hours.
|
|
40
|
+
*
|
|
41
|
+
*/
|
|
42
|
+
"opcRetryToken"?: string;
|
|
43
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 20180222
|
|
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=reboot-cluster-node-request.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"reboot-cluster-node-request.js","sourceRoot":"","sources":["../../../../../lib/containerengine/lib/request/reboot-cluster-node-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
*
|
|
4
|
+
* OpenAPI spec version: 20180222
|
|
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/containerengine/ReplaceBootVolumeClusterNode.ts.html |here} to see how to use ReplaceBootVolumeClusterNodeRequest.
|
|
17
|
+
*/
|
|
18
|
+
export interface ReplaceBootVolumeClusterNodeRequest extends common.BaseRequest {
|
|
19
|
+
/**
|
|
20
|
+
* The OCID of the cluster.
|
|
21
|
+
*/
|
|
22
|
+
"clusterId": string;
|
|
23
|
+
/**
|
|
24
|
+
* The OCID of the compute instance.
|
|
25
|
+
*/
|
|
26
|
+
"nodeId": string;
|
|
27
|
+
/**
|
|
28
|
+
* The fields to replace boot volume of a node.
|
|
29
|
+
*/
|
|
30
|
+
"replaceBootVolumeClusterNodeDetails": model.ReplaceBootVolumeClusterNodeDetails;
|
|
31
|
+
/**
|
|
32
|
+
* Unique Oracle-assigned identifier for the request. If you need to contact
|
|
33
|
+
* Oracle about a particular request, please provide the request ID.
|
|
34
|
+
*
|
|
35
|
+
*/
|
|
36
|
+
"opcRequestId"?: string;
|
|
37
|
+
/**
|
|
38
|
+
* A token you supply to uniquely identify the request and provide idempotency if
|
|
39
|
+
* the request is retried. Idempotency tokens expire after 24 hours.
|
|
40
|
+
*
|
|
41
|
+
*/
|
|
42
|
+
"opcRetryToken"?: string;
|
|
43
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 20180222
|
|
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=replace-boot-volume-cluster-node-request.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"replace-boot-volume-cluster-node-request.js","sourceRoot":"","sources":["../../../../../lib/containerengine/lib/request/replace-boot-volume-cluster-node-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
|
package/lib/response/index.d.ts
CHANGED
|
@@ -87,6 +87,10 @@ import * as ListWorkRequestsResponse from "./list-work-requests-response";
|
|
|
87
87
|
export import ListWorkRequestsResponse = ListWorkRequestsResponse.ListWorkRequestsResponse;
|
|
88
88
|
import * as ListWorkloadMappingsResponse from "./list-workload-mappings-response";
|
|
89
89
|
export import ListWorkloadMappingsResponse = ListWorkloadMappingsResponse.ListWorkloadMappingsResponse;
|
|
90
|
+
import * as RebootClusterNodeResponse from "./reboot-cluster-node-response";
|
|
91
|
+
export import RebootClusterNodeResponse = RebootClusterNodeResponse.RebootClusterNodeResponse;
|
|
92
|
+
import * as ReplaceBootVolumeClusterNodeResponse from "./replace-boot-volume-cluster-node-response";
|
|
93
|
+
export import ReplaceBootVolumeClusterNodeResponse = ReplaceBootVolumeClusterNodeResponse.ReplaceBootVolumeClusterNodeResponse;
|
|
90
94
|
import * as StartCredentialRotationResponse from "./start-credential-rotation-response";
|
|
91
95
|
export import StartCredentialRotationResponse = StartCredentialRotationResponse.StartCredentialRotationResponse;
|
|
92
96
|
import * as UpdateAddonResponse from "./update-addon-response";
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
*
|
|
4
|
+
* OpenAPI spec version: 20180222
|
|
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 RebootClusterNodeResponse {
|
|
14
|
+
/**
|
|
15
|
+
* The OCID of the work request handling the operation.
|
|
16
|
+
*/
|
|
17
|
+
"opcWorkRequestId": string;
|
|
18
|
+
/**
|
|
19
|
+
* Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
|
|
20
|
+
*/
|
|
21
|
+
"opcRequestId": string;
|
|
22
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 20180222
|
|
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=reboot-cluster-node-response.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"reboot-cluster-node-response.js","sourceRoot":"","sources":["../../../../../lib/containerengine/lib/response/reboot-cluster-node-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
*
|
|
4
|
+
* OpenAPI spec version: 20180222
|
|
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 ReplaceBootVolumeClusterNodeResponse {
|
|
14
|
+
/**
|
|
15
|
+
* The OCID of the work request handling the operation.
|
|
16
|
+
*/
|
|
17
|
+
"opcWorkRequestId": string;
|
|
18
|
+
/**
|
|
19
|
+
* Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
|
|
20
|
+
*/
|
|
21
|
+
"opcRequestId": string;
|
|
22
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 20180222
|
|
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=replace-boot-volume-cluster-node-response.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"replace-boot-volume-cluster-node-response.js","sourceRoot":"","sources":["../../../../../lib/containerengine/lib/response/replace-boot-volume-cluster-node-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oci-containerengine",
|
|
3
|
-
"version": "2.107.
|
|
3
|
+
"version": "2.107.3",
|
|
4
4
|
"description": "OCI NodeJS client for Container Engine",
|
|
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.107.
|
|
19
|
-
"oci-workrequests": "2.107.
|
|
18
|
+
"oci-common": "2.107.3",
|
|
19
|
+
"oci-workrequests": "2.107.3"
|
|
20
20
|
},
|
|
21
21
|
"publishConfig": {
|
|
22
22
|
"registry": "https://registry.npmjs.org"
|