Skip to content

Commit fce2551

Browse files
Releasing version 2.39.0
Releasing version 2.39.0
2 parents 4745b1e + 1feed3f commit fce2551

File tree

920 files changed

+7412
-1421
lines changed

Some content is hidden

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

920 files changed

+7412
-1421
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@ 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.39.0 - 2022-08-16
7+
### Added
8+
- Support for Logging Analytics as a streaming source target in the Service Connector Hub service
9+
- Support for data sources for logging query registration in the Cloud Guard service
10+
- Support for custom detector rules on insight detector recipes in the Cloud Guard service
11+
- Support for fetching data source events and problem entities in the Cloud Guard service
12+
- Support for E3, E4, Standard3, and Optimized3 flexible compute shapes on notebooks, model deployment, and jobs in the Data Science service
13+
- Support for streaming application logs to the Logging service in the Data Flow service
14+
15+
### Breaking Changes
16+
- Support for retries by default on operations of the Dataflow service
17+
618
## 2.38.0 - 2022-08-09
719
### Added
820
- Support for single-host software-defined data centers in the VMWare Solution service

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.38.0",
3+
"version": "2.39.0",
44
"description": "OCI NodeJS client for Adm Service",
55
"repository": {
66
"type": "git",

lib/aianomalydetection/lib/model/data-source-details.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export namespace DataSourceDetails {
4646
true
4747
);
4848
default:
49-
throw Error("Unknown value for: " + obj.dataSourceType);
49+
if (common.LOG.logger) common.LOG.logger.info(`Unknown value for: ${obj.dataSourceType}`);
5050
}
5151
}
5252
return jsonObj;
@@ -72,7 +72,7 @@ export namespace DataSourceDetails {
7272
true
7373
);
7474
default:
75-
throw Error("Unknown value for: " + obj.dataSourceType);
75+
if (common.LOG.logger) common.LOG.logger.info(`Unknown value for: ${obj.dataSourceType}`);
7676
}
7777
}
7878
return jsonObj;

lib/aianomalydetection/lib/model/detect-anomalies-details.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export namespace DetectAnomaliesDetails {
4848
true
4949
);
5050
default:
51-
throw Error("Unknown value for: " + obj.requestType);
51+
if (common.LOG.logger) common.LOG.logger.info(`Unknown value for: ${obj.requestType}`);
5252
}
5353
}
5454
return jsonObj;
@@ -69,7 +69,7 @@ export namespace DetectAnomaliesDetails {
6969
true
7070
);
7171
default:
72-
throw Error("Unknown value for: " + obj.requestType);
72+
if (common.LOG.logger) common.LOG.logger.info(`Unknown value for: ${obj.requestType}`);
7373
}
7474
}
7575
return jsonObj;

lib/aianomalydetection/lib/model/influx-details.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export namespace InfluxDetails {
4141
true
4242
);
4343
default:
44-
throw Error("Unknown value for: " + obj.influxVersion);
44+
if (common.LOG.logger) common.LOG.logger.info(`Unknown value for: ${obj.influxVersion}`);
4545
}
4646
}
4747
return jsonObj;
@@ -62,7 +62,7 @@ export namespace InfluxDetails {
6262
true
6363
);
6464
default:
65-
throw Error("Unknown value for: " + obj.influxVersion);
65+
if (common.LOG.logger) common.LOG.logger.info(`Unknown value for: ${obj.influxVersion}`);
6666
}
6767
}
6868
return jsonObj;

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.38.0",
3+
"version": "2.39.0",
44
"description": "OCI NodeJS client for Ai Anomaly Detection 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.38.0",
3+
"version": "2.39.0",
44
"description": "OCI NodeJS client for Ai Language Service",
55
"repository": {
66
"type": "git",

lib/aispeech/lib/model/input-location.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export namespace InputLocation {
3838
true
3939
);
4040
default:
41-
throw Error("Unknown value for: " + obj.locationType);
41+
if (common.LOG.logger) common.LOG.logger.info(`Unknown value for: ${obj.locationType}`);
4242
}
4343
}
4444
return jsonObj;
@@ -59,7 +59,7 @@ export namespace InputLocation {
5959
true
6060
);
6161
default:
62-
throw Error("Unknown value for: " + obj.locationType);
62+
if (common.LOG.logger) common.LOG.logger.info(`Unknown value for: ${obj.locationType}`);
6363
}
6464
}
6565
return jsonObj;

lib/aispeech/lib/model/transcription-filter.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export namespace TranscriptionFilter {
3333
true
3434
);
3535
default:
36-
throw Error("Unknown value for: " + obj.type);
36+
if (common.LOG.logger) common.LOG.logger.info(`Unknown value for: ${obj.type}`);
3737
}
3838
}
3939
return jsonObj;
@@ -49,7 +49,7 @@ export namespace TranscriptionFilter {
4949
true
5050
);
5151
default:
52-
throw Error("Unknown value for: " + obj.type);
52+
if (common.LOG.logger) common.LOG.logger.info(`Unknown value for: ${obj.type}`);
5353
}
5454
}
5555
return jsonObj;

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.38.0",
3+
"version": "2.39.0",
44
"description": "OCI NodeJS client for Ai Speech Service",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)