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

+14
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

+1-1
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

+2-2
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

+2-2
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

+2-2
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

+1-1
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

+1-1
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

+2-2
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

+2-2
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

+1-1
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",

lib/aivision/lib/model/dataset.ts

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

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

49-
if ("datasetType" in obj && obj.datasetType) {
49+
if (obj && "datasetType" in obj && obj.datasetType) {
5050
switch (obj.datasetType) {
5151
case "DATA_SCIENCE_LABELING":
5252
return model.DataScienceLabelingDataset.getDeserializedJsonObj(

lib/aivision/lib/model/document-details.ts

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

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

49-
if ("source" in obj && obj.source) {
49+
if (obj && "source" in obj && obj.source) {
5050
switch (obj.source) {
5151
case "OBJECT_STORAGE":
5252
return model.ObjectStorageDocumentDetails.getDeserializedJsonObj(

lib/aivision/lib/model/document-feature.ts

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

28-
if ("featureType" in obj && obj.featureType) {
28+
if (obj && "featureType" in obj && obj.featureType) {
2929
switch (obj.featureType) {
3030
case "TABLE_DETECTION":
3131
return model.DocumentTableDetectionFeature.getJsonObj(
@@ -61,7 +61,7 @@ export namespace DocumentFeature {
6161
export function getDeserializedJsonObj(obj: DocumentFeature): object {
6262
const jsonObj = { ...obj, ...{} };
6363

64-
if ("featureType" in obj && obj.featureType) {
64+
if (obj && "featureType" in obj && obj.featureType) {
6565
switch (obj.featureType) {
6666
case "TABLE_DETECTION":
6767
return model.DocumentTableDetectionFeature.getDeserializedJsonObj(

lib/aivision/lib/model/field-value.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export namespace FieldValue {
4646
}
4747
};
4848

49-
if ("valueType" in obj && obj.valueType) {
49+
if (obj && "valueType" in obj && obj.valueType) {
5050
switch (obj.valueType) {
5151
case "TIME":
5252
return model.ValueTime.getJsonObj(<model.ValueTime>(<object>jsonObj), true);
@@ -78,7 +78,7 @@ export namespace FieldValue {
7878
}
7979
};
8080

81-
if ("valueType" in obj && obj.valueType) {
81+
if (obj && "valueType" in obj && obj.valueType) {
8282
switch (obj.valueType) {
8383
case "TIME":
8484
return model.ValueTime.getDeserializedJsonObj(<model.ValueTime>(<object>jsonObj), true);

lib/aivision/lib/model/image-details.ts

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

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

49-
if ("source" in obj && obj.source) {
49+
if (obj && "source" in obj && obj.source) {
5050
switch (obj.source) {
5151
case "OBJECT_STORAGE":
5252
return model.ObjectStorageImageDetails.getDeserializedJsonObj(

lib/aivision/lib/model/image-feature.ts

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

28-
if ("featureType" in obj && obj.featureType) {
28+
if (obj && "featureType" in obj && obj.featureType) {
2929
switch (obj.featureType) {
3030
case "TEXT_DETECTION":
3131
return model.ImageTextDetectionFeature.getJsonObj(
@@ -51,7 +51,7 @@ export namespace ImageFeature {
5151
export function getDeserializedJsonObj(obj: ImageFeature): object {
5252
const jsonObj = { ...obj, ...{} };
5353

54-
if ("featureType" in obj && obj.featureType) {
54+
if (obj && "featureType" in obj && obj.featureType) {
5555
switch (obj.featureType) {
5656
case "TEXT_DETECTION":
5757
return model.ImageTextDetectionFeature.getDeserializedJsonObj(

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

+2-2
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 ("sourceType" in obj && obj.sourceType) {
28+
if (obj && "sourceType" in obj && obj.sourceType) {
2929
switch (obj.sourceType) {
3030
case "OBJECT_LIST_INLINE_INPUT_LOCATION":
3131
return model.ObjectListInlineInputLocation.getJsonObj(
@@ -41,7 +41,7 @@ export namespace InputLocation {
4141
export function getDeserializedJsonObj(obj: InputLocation): object {
4242
const jsonObj = { ...obj, ...{} };
4343

44-
if ("sourceType" in obj && obj.sourceType) {
44+
if (obj && "sourceType" in obj && obj.sourceType) {
4545
switch (obj.sourceType) {
4646
case "OBJECT_LIST_INLINE_INPUT_LOCATION":
4747
return model.ObjectListInlineInputLocation.getDeserializedJsonObj(

lib/aivision/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-aivision",
3-
"version": "2.26.0",
3+
"version": "2.27.0",
44
"description": "OCI NodeJS client for Ai Vision Service",
55
"repository": {
66
"type": "git",

lib/analytics/lib/model/network-endpoint-details.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export namespace NetworkEndpointDetails {
2727
export function getJsonObj(obj: NetworkEndpointDetails): object {
2828
const jsonObj = { ...obj, ...{} };
2929

30-
if ("networkEndpointType" in obj && obj.networkEndpointType) {
30+
if (obj && "networkEndpointType" in obj && obj.networkEndpointType) {
3131
switch (obj.networkEndpointType) {
3232
case "PRIVATE":
3333
return model.PrivateEndpointDetails.getJsonObj(
@@ -48,7 +48,7 @@ export namespace NetworkEndpointDetails {
4848
export function getDeserializedJsonObj(obj: NetworkEndpointDetails): object {
4949
const jsonObj = { ...obj, ...{} };
5050

51-
if ("networkEndpointType" in obj && obj.networkEndpointType) {
51+
if (obj && "networkEndpointType" in obj && obj.networkEndpointType) {
5252
switch (obj.networkEndpointType) {
5353
case "PRIVATE":
5454
return model.PrivateEndpointDetails.getDeserializedJsonObj(

lib/analytics/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-analytics",
3-
"version": "2.26.0",
3+
"version": "2.27.0",
44
"description": "OCI NodeJS client for Analytics Service",
55
"repository": {
66
"type": "git",

lib/announcementsservice/lib/model/base-announcement.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ export namespace BaseAnnouncement {
159159
export function getJsonObj(obj: BaseAnnouncement): object {
160160
const jsonObj = { ...obj, ...{} };
161161

162-
if ("type" in obj && obj.type) {
162+
if (obj && "type" in obj && obj.type) {
163163
switch (obj.type) {
164164
case "AnnouncementSummary":
165165
return model.AnnouncementSummary.getJsonObj(
@@ -177,7 +177,7 @@ export namespace BaseAnnouncement {
177177
export function getDeserializedJsonObj(obj: BaseAnnouncement): object {
178178
const jsonObj = { ...obj, ...{} };
179179

180-
if ("type" in obj && obj.type) {
180+
if (obj && "type" in obj && obj.type) {
181181
switch (obj.type) {
182182
case "AnnouncementSummary":
183183
return model.AnnouncementSummary.getDeserializedJsonObj(

lib/announcementsservice/lib/model/base-announcements-preferences.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export namespace BaseAnnouncementsPreferences {
5454
export function getJsonObj(obj: BaseAnnouncementsPreferences): object {
5555
const jsonObj = { ...obj, ...{} };
5656

57-
if ("type" in obj && obj.type) {
57+
if (obj && "type" in obj && obj.type) {
5858
switch (obj.type) {
5959
case "AnnouncementsPreferencesSummary":
6060
return model.AnnouncementsPreferencesSummary.getJsonObj(
@@ -75,7 +75,7 @@ export namespace BaseAnnouncementsPreferences {
7575
export function getDeserializedJsonObj(obj: BaseAnnouncementsPreferences): object {
7676
const jsonObj = { ...obj, ...{} };
7777

78-
if ("type" in obj && obj.type) {
78+
if (obj && "type" in obj && obj.type) {
7979
switch (obj.type) {
8080
case "AnnouncementsPreferencesSummary":
8181
return model.AnnouncementsPreferencesSummary.getDeserializedJsonObj(

lib/announcementsservice/lib/model/base-create-announcements-preferences-details.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export namespace BaseCreateAnnouncementsPreferencesDetails {
4848
export function getJsonObj(obj: BaseCreateAnnouncementsPreferencesDetails): object {
4949
const jsonObj = { ...obj, ...{} };
5050

51-
if ("type" in obj && obj.type) {
51+
if (obj && "type" in obj && obj.type) {
5252
switch (obj.type) {
5353
case "CreateAnnouncementsPreferencesDetails":
5454
return model.CreateAnnouncementsPreferencesDetails.getJsonObj(
@@ -69,7 +69,7 @@ export namespace BaseCreateAnnouncementsPreferencesDetails {
6969
export function getDeserializedJsonObj(obj: BaseCreateAnnouncementsPreferencesDetails): object {
7070
const jsonObj = { ...obj, ...{} };
7171

72-
if ("type" in obj && obj.type) {
72+
if (obj && "type" in obj && obj.type) {
7373
switch (obj.type) {
7474
case "CreateAnnouncementsPreferencesDetails":
7575
return model.CreateAnnouncementsPreferencesDetails.getDeserializedJsonObj(

lib/announcementsservice/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-announcementsservice",
3-
"version": "2.26.0",
3+
"version": "2.27.0",
44
"description": "OCI NodeJS client for Announcement Service",
55
"repository": {
66
"type": "git",

lib/apigateway/lib/model/api-specification-route-backend.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export namespace ApiSpecificationRouteBackend {
2929
export function getJsonObj(obj: ApiSpecificationRouteBackend): object {
3030
const jsonObj = { ...obj, ...{} };
3131

32-
if ("type" in obj && obj.type) {
32+
if (obj && "type" in obj && obj.type) {
3333
switch (obj.type) {
3434
case "HTTP_BACKEND":
3535
return model.HTTPBackend.getJsonObj(<model.HTTPBackend>(<object>jsonObj), true);
@@ -52,7 +52,7 @@ export namespace ApiSpecificationRouteBackend {
5252
export function getDeserializedJsonObj(obj: ApiSpecificationRouteBackend): object {
5353
const jsonObj = { ...obj, ...{} };
5454

55-
if ("type" in obj && obj.type) {
55+
if (obj && "type" in obj && obj.type) {
5656
switch (obj.type) {
5757
case "HTTP_BACKEND":
5858
return model.HTTPBackend.getDeserializedJsonObj(

0 commit comments

Comments
 (0)