Skip to content

Commit a7d1c1b

Browse files
authored
Merge pull request #75 from oracle/release_2021-06-08
Releasing version 1.20.2
2 parents 4d68a0b + 151abf4 commit a7d1c1b

File tree

223 files changed

+7049
-101
lines changed

Some content is hidden

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

223 files changed

+7049
-101
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@ 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+
## 1.20.2 - 2021-06-08
7+
### Added
8+
- Support for Java Management service
9+
- Support for resource principals for the Enterprise Manager bridge resource in Operations Insights service
10+
- Support for encryptionInTransitType in BootVolumeAttachment and IScsiVolumeAttachment in Core service
11+
- Support for updating iscsiLoginState for VolumeAttachment in Core service
12+
- Support for a new type of Source called Import for use with the Export tool in Application Migration service
13+
614
## 1.20.1 - 2021-06-01
715
### Added
816
- Support for configuration of autonomous database KMS keys in the Database service

index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,3 +163,4 @@ export import operatoraccesscontrol = require("oci-operatoraccesscontrol");
163163
export import servicecatalog = require("oci-servicecatalog");
164164
export import bastion = require("oci-bastion");
165165
export import genericartifactscontent = require("oci-genericartifactscontent");
166+
export import jms = require("oci-jms");

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

lib/analytics/package.json

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

lib/announcementsservice/package.json

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

lib/apigateway/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-apigateway",
3-
"version": "1.20.1",
3+
"version": "1.20.2",
44
"description": "OCI NodeJS client for API gateway service",
55
"repository": {
66
"type": "git",

lib/apmcontrolplane/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-apmcontrolplane",
3-
"version": "1.20.1",
3+
"version": "1.20.2",
44
"description": "OCI NodeJS client for Apm Control Plane Service",
55
"repository": {
66
"type": "git",

lib/apmsynthetics/package.json

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

lib/apmtraces/package.json

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

lib/applicationmigration/lib/model/create-source-details.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,11 @@ export interface CreateSourceDetails {
4242
* Description of the source. This helps you to identify the appropriate source environment when you have multiple sources defined.
4343
*/
4444
"description"?: string;
45-
"sourceDetails": model.OccSourceDetails | model.InternalSourceDetails | model.OcicSourceDetails;
45+
"sourceDetails":
46+
| model.ImportSourceDetails
47+
| model.OccSourceDetails
48+
| model.InternalSourceDetails
49+
| model.OcicSourceDetails;
4650
"authorizationDetails"?:
4751
| model.OccAuthorizationDetails
4852
| model.InternalAuthorizationDetails

0 commit comments

Comments
 (0)