Skip to content

Commit 5a10024

Browse files
Releasing version 2.27.0
Releasing version 2.27.0
2 parents f326540 + 308f0c5 commit 5a10024

File tree

618 files changed

+4240
-1023
lines changed

Some content is hidden

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

618 files changed

+4240
-1023
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,20 @@ 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.27.0 - 2022-05-17
7+
### Added
8+
- Support for information requests in the Operator Access Control service
9+
- Support for Helm charts and repositories on deployments in the DevOps service
10+
- Support for Application Dependency Management service scan results on builds in the DevOps service
11+
- Support for build resources to use Bitbucket Cloud repositories for source code in the DevOps service
12+
- Support for character set selection on autonomous dedicated databases in the Database service
13+
- Support for listing autonomous dedicated database supported character sets in the Database service
14+
- Support for AMD E4 flex shapes on virtual machine database systems in the Database service
15+
- Support for terraform and improvements for cross-region ADGs in the Database service
16+
17+
### Breaking Changes
18+
- Support for retries by default on GET and LIST operations in the Visual Builder service
19+
620
## 2.26.0 - 2022-05-10
721
### Added
822
- Support for getting usage information for autonomous databases and Cloud at Customer autonomous databases in the Database 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.26.0",
3+
"version": "2.27.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
@@ -28,7 +28,7 @@ export namespace DataSourceDetails {
2828
export function getJsonObj(obj: DataSourceDetails): object {
2929
const jsonObj = { ...obj, ...{} };
3030

31-
if ("dataSourceType" in obj && obj.dataSourceType) {
31+
if (obj && "dataSourceType" in obj && obj.dataSourceType) {
3232
switch (obj.dataSourceType) {
3333
case "ORACLE_OBJECT_STORAGE":
3434
return model.DataSourceDetailsObjectStorage.getJsonObj(
@@ -54,7 +54,7 @@ export namespace DataSourceDetails {
5454
export function getDeserializedJsonObj(obj: DataSourceDetails): object {
5555
const jsonObj = { ...obj, ...{} };
5656

57-
if ("dataSourceType" in obj && obj.dataSourceType) {
57+
if (obj && "dataSourceType" in obj && obj.dataSourceType) {
5858
switch (obj.dataSourceType) {
5959
case "ORACLE_OBJECT_STORAGE":
6060
return model.DataSourceDetailsObjectStorage.getDeserializedJsonObj(

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export namespace DetectAnomaliesDetails {
3535
export function getJsonObj(obj: DetectAnomaliesDetails): object {
3636
const jsonObj = { ...obj, ...{} };
3737

38-
if ("requestType" in obj && obj.requestType) {
38+
if (obj && "requestType" in obj && obj.requestType) {
3939
switch (obj.requestType) {
4040
case "INLINE":
4141
return model.InlineDetectAnomaliesRequest.getJsonObj(
@@ -56,7 +56,7 @@ export namespace DetectAnomaliesDetails {
5656
export function getDeserializedJsonObj(obj: DetectAnomaliesDetails): object {
5757
const jsonObj = { ...obj, ...{} };
5858

59-
if ("requestType" in obj && obj.requestType) {
59+
if (obj && "requestType" in obj && obj.requestType) {
6060
switch (obj.requestType) {
6161
case "INLINE":
6262
return model.InlineDetectAnomaliesRequest.getDeserializedJsonObj(

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export namespace InfluxDetails {
2828
export function getJsonObj(obj: InfluxDetails): object {
2929
const jsonObj = { ...obj, ...{} };
3030

31-
if ("influxVersion" in obj && obj.influxVersion) {
31+
if (obj && "influxVersion" in obj && obj.influxVersion) {
3232
switch (obj.influxVersion) {
3333
case "V_1_8":
3434
return model.InfluxDetailsV1v8.getJsonObj(
@@ -49,7 +49,7 @@ export namespace InfluxDetails {
4949
export function getDeserializedJsonObj(obj: InfluxDetails): object {
5050
const jsonObj = { ...obj, ...{} };
5151

52-
if ("influxVersion" in obj && obj.influxVersion) {
52+
if (obj && "influxVersion" in obj && obj.influxVersion) {
5353
switch (obj.influxVersion) {
5454
case "V_1_8":
5555
return model.InfluxDetailsV1v8.getDeserializedJsonObj(

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.26.0",
3+
"version": "2.27.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.26.0",
3+
"version": "2.27.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
@@ -25,7 +25,7 @@ export namespace InputLocation {
2525
export function getJsonObj(obj: InputLocation): object {
2626
const jsonObj = { ...obj, ...{} };
2727

28-
if ("locationType" in obj && obj.locationType) {
28+
if (obj && "locationType" in obj && obj.locationType) {
2929
switch (obj.locationType) {
3030
case "OBJECT_LIST_FILE_INPUT_LOCATION":
3131
return model.ObjectListFileInputLocation.getJsonObj(
@@ -46,7 +46,7 @@ export namespace InputLocation {
4646
export function getDeserializedJsonObj(obj: InputLocation): object {
4747
const jsonObj = { ...obj, ...{} };
4848

49-
if ("locationType" in obj && obj.locationType) {
49+
if (obj && "locationType" in obj && obj.locationType) {
5050
switch (obj.locationType) {
5151
case "OBJECT_LIST_FILE_INPUT_LOCATION":
5252
return model.ObjectListFileInputLocation.getDeserializedJsonObj(

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export namespace TranscriptionFilter {
2525
export function getJsonObj(obj: TranscriptionFilter): object {
2626
const jsonObj = { ...obj, ...{} };
2727

28-
if ("type" in obj && obj.type) {
28+
if (obj && "type" in obj && obj.type) {
2929
switch (obj.type) {
3030
case "PROFANITY":
3131
return model.ProfanityTranscriptionFilter.getJsonObj(
@@ -41,7 +41,7 @@ export namespace TranscriptionFilter {
4141
export function getDeserializedJsonObj(obj: TranscriptionFilter): object {
4242
const jsonObj = { ...obj, ...{} };
4343

44-
if ("type" in obj && obj.type) {
44+
if (obj && "type" in obj && obj.type) {
4545
switch (obj.type) {
4646
case "PROFANITY":
4747
return model.ProfanityTranscriptionFilter.getDeserializedJsonObj(

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

0 commit comments

Comments
 (0)