oci-core 2.122.0 → 2.122.2

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.
Files changed (67) hide show
  1. package/lib/client.d.ts +39 -0
  2. package/lib/client.js +276 -1
  3. package/lib/client.js.map +1 -1
  4. package/lib/compute-waiter.d.ts +18 -0
  5. package/lib/compute-waiter.js +30 -0
  6. package/lib/compute-waiter.js.map +1 -1
  7. package/lib/model/component-version.d.ts +36 -0
  8. package/lib/model/component-version.js +36 -0
  9. package/lib/model/component-version.js.map +1 -0
  10. package/lib/model/compute-host-summary.d.ts +5 -0
  11. package/lib/model/compute-host-summary.js.map +1 -1
  12. package/lib/model/compute-host.d.ts +10 -0
  13. package/lib/model/compute-host.js.map +1 -1
  14. package/lib/model/firmware-bundle-summary.d.ts +67 -0
  15. package/lib/model/firmware-bundle-summary.js +74 -0
  16. package/lib/model/firmware-bundle-summary.js.map +1 -0
  17. package/lib/model/firmware-bundle-transitions.d.ts +36 -0
  18. package/lib/model/firmware-bundle-transitions.js +36 -0
  19. package/lib/model/firmware-bundle-transitions.js.map +1 -0
  20. package/lib/model/firmware-bundle.d.ts +78 -0
  21. package/lib/model/firmware-bundle.js +85 -0
  22. package/lib/model/firmware-bundle.js.map +1 -0
  23. package/lib/model/firmware-bundles-collection.d.ts +33 -0
  24. package/lib/model/firmware-bundles-collection.js +68 -0
  25. package/lib/model/firmware-bundles-collection.js.map +1 -0
  26. package/lib/model/host-group-configuration.d.ts +13 -0
  27. package/lib/model/host-group-configuration.js +10 -0
  28. package/lib/model/host-group-configuration.js.map +1 -1
  29. package/lib/model/i-scsi-volume-attachment.d.ts +7 -0
  30. package/lib/model/i-scsi-volume-attachment.js.map +1 -1
  31. package/lib/model/index.d.ts +12 -0
  32. package/lib/model/index.js +24 -12
  33. package/lib/model/index.js.map +1 -1
  34. package/lib/model/platform-versions.d.ts +37 -0
  35. package/lib/model/platform-versions.js +68 -0
  36. package/lib/model/platform-versions.js.map +1 -0
  37. package/lib/model/shape.d.ts +5 -0
  38. package/lib/model/shape.js.map +1 -1
  39. package/lib/request/apply-host-configuration-request.d.ts +45 -0
  40. package/lib/request/apply-host-configuration-request.js +15 -0
  41. package/lib/request/apply-host-configuration-request.js.map +1 -0
  42. package/lib/request/check-host-configuration-request.d.ts +45 -0
  43. package/lib/request/check-host-configuration-request.js +15 -0
  44. package/lib/request/check-host-configuration-request.js.map +1 -0
  45. package/lib/request/get-firmware-bundle-request.d.ts +28 -0
  46. package/lib/request/get-firmware-bundle-request.js +15 -0
  47. package/lib/request/get-firmware-bundle-request.js.map +1 -0
  48. package/lib/request/index.d.ts +8 -0
  49. package/lib/request/index.js.map +1 -1
  50. package/lib/request/list-firmware-bundles-request.d.ts +57 -0
  51. package/lib/request/list-firmware-bundles-request.js +15 -0
  52. package/lib/request/list-firmware-bundles-request.js.map +1 -0
  53. package/lib/request/list-shapes-request.d.ts +4 -0
  54. package/lib/response/apply-host-configuration-response.d.ts +42 -0
  55. package/lib/response/apply-host-configuration-response.js +15 -0
  56. package/lib/response/apply-host-configuration-response.js.map +1 -0
  57. package/lib/response/check-host-configuration-response.d.ts +35 -0
  58. package/lib/response/check-host-configuration-response.js +15 -0
  59. package/lib/response/check-host-configuration-response.js.map +1 -0
  60. package/lib/response/get-firmware-bundle-response.d.ts +25 -0
  61. package/lib/response/get-firmware-bundle-response.js +15 -0
  62. package/lib/response/get-firmware-bundle-response.js.map +1 -0
  63. package/lib/response/index.d.ts +8 -0
  64. package/lib/response/list-firmware-bundles-response.d.ts +32 -0
  65. package/lib/response/list-firmware-bundles-response.js +15 -0
  66. package/lib/response/list-firmware-bundles-response.js.map +1 -0
  67. package/package.json +3 -3
@@ -0,0 +1,57 @@
1
+ /**
2
+ *
3
+ *
4
+ * OpenAPI spec version: 20160918
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 common = require("oci-common");
14
+ /**
15
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/core/ListFirmwareBundles.ts.html |here} to see how to use ListFirmwareBundlesRequest.
16
+ */
17
+ export interface ListFirmwareBundlesRequest extends common.BaseRequest {
18
+ /**
19
+ * platform name
20
+ */
21
+ "platform": string;
22
+ /**
23
+ * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
24
+ */
25
+ "compartmentId"?: string;
26
+ /**
27
+ * If true, return only the default firmware bundle for a given platform. Default is false.
28
+ */
29
+ "isDefaultBundle"?: boolean;
30
+ /**
31
+ * For list pagination. The maximum number of results per page, or items to return in a paginated
32
+ * \"List\" call. For important details about how pagination works, see
33
+ * [List Pagination](https://docs.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).
34
+ * <p>
35
+ Example: {@code 50}
36
+ *
37
+ */
38
+ "limit"?: number;
39
+ /**
40
+ * For list pagination. The value of the {@code opc-next-page} response header from the previous \"List\"
41
+ * call. For important details about how pagination works, see
42
+ * [List Pagination](https://docs.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).
43
+ *
44
+ */
45
+ "page"?: string;
46
+ /**
47
+ * A filter to return only resources that match the given lifecycle state name exactly.
48
+ *
49
+ */
50
+ "lifecycleState"?: string;
51
+ /**
52
+ * Unique identifier for the request.
53
+ * If you need to contact Oracle about a particular request, please provide the request ID.
54
+ *
55
+ */
56
+ "opcRequestId"?: string;
57
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /**
3
+ *
4
+ *
5
+ * OpenAPI spec version: 20160918
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=list-firmware-bundles-request.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-firmware-bundles-request.js","sourceRoot":"","sources":["../../../../../lib/core/lib/request/list-firmware-bundles-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
@@ -46,4 +46,8 @@ export interface ListShapesRequest extends common.BaseRequest {
46
46
  * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of an image.
47
47
  */
48
48
  "imageId"?: string;
49
+ /**
50
+ * Shape name.
51
+ */
52
+ "shape"?: string;
49
53
  }
@@ -0,0 +1,42 @@
1
+ /**
2
+ *
3
+ *
4
+ * OpenAPI spec version: 20160918
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
+ export interface ApplyHostConfigurationResponse {
15
+ /**
16
+ * Unique Oracle-assigned identifier for the request. If you need to contact
17
+ * Oracle about a particular request, please provide the request ID.
18
+ *
19
+ */
20
+ "opcRequestId": string;
21
+ /**
22
+ * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the work request.
23
+ * Use [GetWorkRequest](https://docs.oracle.com/iaas/api/#/en/workrequests/latest/WorkRequest/GetWorkRequest)
24
+ * with this ID to track the status of the request.
25
+ *
26
+ */
27
+ "opcWorkRequestId": string;
28
+ /**
29
+ * For optimistic concurrency control. See {@code if-match}.
30
+ *
31
+ */
32
+ "etag": string;
33
+ /**
34
+ * Location of the resource.
35
+ *
36
+ */
37
+ "location": string;
38
+ /**
39
+ * The returned model.ComputeHost instance.
40
+ */
41
+ "computeHost": model.ComputeHost;
42
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /**
3
+ *
4
+ *
5
+ * OpenAPI spec version: 20160918
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=apply-host-configuration-response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"apply-host-configuration-response.js","sourceRoot":"","sources":["../../../../../lib/core/lib/response/apply-host-configuration-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
@@ -0,0 +1,35 @@
1
+ /**
2
+ *
3
+ *
4
+ * OpenAPI spec version: 20160918
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
+ export interface CheckHostConfigurationResponse {
15
+ /**
16
+ * Unique Oracle-assigned identifier for the request. If you need to contact
17
+ * Oracle about a particular request, please provide the request ID.
18
+ *
19
+ */
20
+ "opcRequestId": string;
21
+ /**
22
+ * For optimistic concurrency control. See {@code if-match}.
23
+ *
24
+ */
25
+ "etag": string;
26
+ /**
27
+ * Location of the resource.
28
+ *
29
+ */
30
+ "location": string;
31
+ /**
32
+ * The returned model.ComputeHost instance.
33
+ */
34
+ "computeHost": model.ComputeHost;
35
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /**
3
+ *
4
+ *
5
+ * OpenAPI spec version: 20160918
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=check-host-configuration-response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"check-host-configuration-response.js","sourceRoot":"","sources":["../../../../../lib/core/lib/response/check-host-configuration-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
@@ -0,0 +1,25 @@
1
+ /**
2
+ *
3
+ *
4
+ * OpenAPI spec version: 20160918
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
+ export interface GetFirmwareBundleResponse {
15
+ /**
16
+ * Unique Oracle-assigned identifier for the request. If you need to contact
17
+ * Oracle about a particular request, please provide the request ID.
18
+ *
19
+ */
20
+ "opcRequestId": string;
21
+ /**
22
+ * The returned model.FirmwareBundle instance.
23
+ */
24
+ "firmwareBundle": model.FirmwareBundle;
25
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /**
3
+ *
4
+ *
5
+ * OpenAPI spec version: 20160918
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=get-firmware-bundle-response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-firmware-bundle-response.js","sourceRoot":"","sources":["../../../../../lib/core/lib/response/get-firmware-bundle-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
@@ -141,6 +141,8 @@ import * as AcceptShieldedIntegrityPolicyResponse from "./accept-shielded-integr
141
141
  export import AcceptShieldedIntegrityPolicyResponse = AcceptShieldedIntegrityPolicyResponse.AcceptShieldedIntegrityPolicyResponse;
142
142
  import * as AddImageShapeCompatibilityEntryResponse from "./add-image-shape-compatibility-entry-response";
143
143
  export import AddImageShapeCompatibilityEntryResponse = AddImageShapeCompatibilityEntryResponse.AddImageShapeCompatibilityEntryResponse;
144
+ import * as ApplyHostConfigurationResponse from "./apply-host-configuration-response";
145
+ export import ApplyHostConfigurationResponse = ApplyHostConfigurationResponse.ApplyHostConfigurationResponse;
144
146
  import * as AttachBootVolumeResponse from "./attach-boot-volume-response";
145
147
  export import AttachBootVolumeResponse = AttachBootVolumeResponse.AttachBootVolumeResponse;
146
148
  import * as AttachComputeHostGroupHostResponse from "./attach-compute-host-group-host-response";
@@ -173,6 +175,8 @@ import * as ChangeImageCompartmentResponse from "./change-image-compartment-resp
173
175
  export import ChangeImageCompartmentResponse = ChangeImageCompartmentResponse.ChangeImageCompartmentResponse;
174
176
  import * as ChangeInstanceCompartmentResponse from "./change-instance-compartment-response";
175
177
  export import ChangeInstanceCompartmentResponse = ChangeInstanceCompartmentResponse.ChangeInstanceCompartmentResponse;
178
+ import * as CheckHostConfigurationResponse from "./check-host-configuration-response";
179
+ export import CheckHostConfigurationResponse = CheckHostConfigurationResponse.CheckHostConfigurationResponse;
176
180
  import * as CreateAppCatalogSubscriptionResponse from "./create-app-catalog-subscription-response";
177
181
  export import CreateAppCatalogSubscriptionResponse = CreateAppCatalogSubscriptionResponse.CreateAppCatalogSubscriptionResponse;
178
182
  import * as CreateComputeCapacityReportResponse from "./create-compute-capacity-report-response";
@@ -261,6 +265,8 @@ import * as GetConsoleHistoryContentResponse from "./get-console-history-content
261
265
  export import GetConsoleHistoryContentResponse = GetConsoleHistoryContentResponse.GetConsoleHistoryContentResponse;
262
266
  import * as GetDedicatedVmHostResponse from "./get-dedicated-vm-host-response";
263
267
  export import GetDedicatedVmHostResponse = GetDedicatedVmHostResponse.GetDedicatedVmHostResponse;
268
+ import * as GetFirmwareBundleResponse from "./get-firmware-bundle-response";
269
+ export import GetFirmwareBundleResponse = GetFirmwareBundleResponse.GetFirmwareBundleResponse;
264
270
  import * as GetImageResponse from "./get-image-response";
265
271
  export import GetImageResponse = GetImageResponse.GetImageResponse;
266
272
  import * as GetImageShapeCompatibilityEntryResponse from "./get-image-shape-compatibility-entry-response";
@@ -335,6 +341,8 @@ import * as ListDedicatedVmHostShapesResponse from "./list-dedicated-vm-host-sha
335
341
  export import ListDedicatedVmHostShapesResponse = ListDedicatedVmHostShapesResponse.ListDedicatedVmHostShapesResponse;
336
342
  import * as ListDedicatedVmHostsResponse from "./list-dedicated-vm-hosts-response";
337
343
  export import ListDedicatedVmHostsResponse = ListDedicatedVmHostsResponse.ListDedicatedVmHostsResponse;
344
+ import * as ListFirmwareBundlesResponse from "./list-firmware-bundles-response";
345
+ export import ListFirmwareBundlesResponse = ListFirmwareBundlesResponse.ListFirmwareBundlesResponse;
338
346
  import * as ListImageShapeCompatibilityEntriesResponse from "./list-image-shape-compatibility-entries-response";
339
347
  export import ListImageShapeCompatibilityEntriesResponse = ListImageShapeCompatibilityEntriesResponse.ListImageShapeCompatibilityEntriesResponse;
340
348
  import * as ListImagesResponse from "./list-images-response";
@@ -0,0 +1,32 @@
1
+ /**
2
+ *
3
+ *
4
+ * OpenAPI spec version: 20160918
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
+ export interface ListFirmwareBundlesResponse {
15
+ /**
16
+ * For list pagination. When this header appears in the response, additional pages
17
+ * of results remain. For important details about how pagination works, see
18
+ * [List Pagination](https://docs.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).
19
+ *
20
+ */
21
+ "opcNextPage": string;
22
+ /**
23
+ * Unique Oracle-assigned identifier for the request. If you need to contact
24
+ * Oracle about a particular request, please provide the request ID.
25
+ *
26
+ */
27
+ "opcRequestId": string;
28
+ /**
29
+ * The returned model.FirmwareBundlesCollection instance.
30
+ */
31
+ "firmwareBundlesCollection": model.FirmwareBundlesCollection;
32
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /**
3
+ *
4
+ *
5
+ * OpenAPI spec version: 20160918
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=list-firmware-bundles-response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-firmware-bundles-response.js","sourceRoot":"","sources":["../../../../../lib/core/lib/response/list-firmware-bundles-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oci-core",
3
- "version": "2.122.0",
3
+ "version": "2.122.2",
4
4
  "description": "OCI NodeJS client for Core",
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.122.0",
19
- "oci-workrequests": "2.122.0"
18
+ "oci-common": "2.122.2",
19
+ "oci-workrequests": "2.122.2"
20
20
  },
21
21
  "publishConfig": {
22
22
  "registry": "https://registry.npmjs.org"