Skip to content

Commit fb79bb1

Browse files
Releasing version 2.66.0
Releasing version 2.66.0
2 parents ee10659 + 39b11e8 commit fb79bb1

File tree

681 files changed

+9177
-1581
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

681 files changed

+9177
-1581
lines changed

CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,41 @@ All notable changes to this project will be documented in this file.
33

44
The format is based on [Keep a Changelog](http://keepachangelog.com/).
55

6+
## 2.66.0 - 2023-07-25
7+
### Added
8+
- Support for composing multiple document service custom key value models into one single model in Document Understanding Service
9+
- Support for custom hostname in the Compute service
10+
- Support for cloud subscription in the Organizations service
11+
- Support for automatic backup download in the GoldenGate service
12+
- Support for creating single use (non-recurring) budgets in the Budgets service
13+
14+
### Breaking Changes
15+
- Support for retries by default on operations of the Budgets service
16+
- The properties `classicSubscriptionId`, `isClassicSubscription`, `regionAssignment`, `lifecycleState`, `startDate` and `endDate` were removed from the models `assignedSubscription`, `assignedSubscriptionSummary`, `subscription` and `subscriptionSummary` in the Organizations service
17+
- The property `paymentModel` has been removed from `Subscription` and `SubscriptionSummary` models in the Organizations service
18+
- The properties `subscriptionTier`, `isGovernmentSubscription`, `promotion`, `purchaseEntitlementId`, `skus`, `csiNumber`, `cloudAmountCurrency`, `customerCountryCode, and `programType` have been removed from `AssignedSubscription` and `Subscription` models in the Organizations service
19+
- The property `orderIds` has been removed from `AssignedSubscription` model in the Organizations service
20+
- The EnumMembers `UPDATING`, `DELETING` and `DELETED` were removed from the enum `SubscriptionLifecycleState` in the Organizations service
21+
22+
23+
## 2.65.0 - 2023-07-18
24+
### Added
25+
- Support for calling Oracle Cloud Infrastructure services in the mx-monterrey-1 region
26+
- Support for Kerberos and LDAP with NFSv3 in the File Storage service
27+
- Support for capacity reservation checks for movable compute instances in the Disaster Recovery service
28+
- Support for Oracle MFT monitoring in the Stack Monitoring service
29+
- Support for OS patching in the Big Data service
30+
- Support for master and utility nodes in the Big Data service
31+
- Support for connectivity testing in the GoldenGate service
32+
33+
### Breaking Changes
34+
- The property `AdditionalCapabilities` was removed from the models `Container` and `CreateContainerDetails` in the Container Instances service
35+
- The property `FunctionId` was made required in the model `UpdateInvokeFunctionUserDefinedStepDetails` in the Disaster Recovery service
36+
- The properties `RunOnInstanceId` and `ScriptCommand` were made required in the model `UpdateRunLocalScriptUserDefinedStepDetails` in the Disaster Recovery service
37+
- The properties `RunOnInstanceId` and `ObjectStorageScriptLocation` were made required in the model `UpdateRunObjectStoreScriptUserDefinedStepDetails` in the Disaster Recovery service
38+
- The properties `FunctionId` and `FunctionRegion` were made required in the model `InvokeFunctionStep` in the Disaster Recovery service
39+
40+
641
## 2.64.0 - 2023-07-11
742
### Added
843
- Support for specifying default snapshot enablement, verified response codes, client certificate details, and request authentication schemes when creating or updating synthetic monitors in the Application Performance Monitoring service

lib/accessgovernancecp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-accessgovernancecp",
3-
"version": "2.64.0",
3+
"version": "2.66.0",
44
"description": "OCI NodeJS client for Access Governance Cp Service",
55
"repository": {
66
"type": "git",

lib/adm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-adm",
3-
"version": "2.64.0",
3+
"version": "2.66.0",
44
"description": "OCI NodeJS client for Adm Service",
55
"repository": {
66
"type": "git",

lib/aianomalydetection/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-aianomalydetection",
3-
"version": "2.64.0",
3+
"version": "2.66.0",
44
"description": "OCI NodeJS client for Ai Anomaly Detection Service",
55
"repository": {
66
"type": "git",

lib/aidocument/lib/model/component-model.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export interface ComponentModel {
2121
/**
2222
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of active custom Key Value model that need to be composed.
2323
*/
24-
"modelId": string;
24+
"modelId"?: string;
2525
}
2626

2727
export namespace ComponentModel {

lib/aidocument/lib/model/create-model-details.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export interface CreateModelDetails {
4646
* The maximum model training time in hours, expressed as a decimal fraction. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
4747
*/
4848
"maxTrainingTimeInHours"?: number;
49-
"trainingDataset": model.DataScienceLabelingDataset | model.ObjectStorageDataset;
49+
"trainingDataset"?: model.DataScienceLabelingDataset | model.ObjectStorageDataset;
5050
"testingDataset"?: model.DataScienceLabelingDataset | model.ObjectStorageDataset;
5151
"validationDataset"?: model.DataScienceLabelingDataset | model.ObjectStorageDataset;
5252
/**

lib/aidocument/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-aidocument",
3-
"version": "2.64.0",
3+
"version": "2.66.0",
44
"description": "OCI NodeJS client for Ai Document Service",
55
"repository": {
66
"type": "git",

lib/ailanguage/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-ailanguage",
3-
"version": "2.64.0",
3+
"version": "2.66.0",
44
"description": "OCI NodeJS client for Ai Language Service",
55
"repository": {
66
"type": "git",

lib/aispeech/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-aispeech",
3-
"version": "2.64.0",
3+
"version": "2.66.0",
44
"description": "OCI NodeJS client for Ai Speech Service",
55
"repository": {
66
"type": "git",

lib/aivision/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-aivision",
3-
"version": "2.64.0",
3+
"version": "2.66.0",
44
"description": "OCI NodeJS client for Ai Vision Service",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)