Skip to content

Commit a6c1899

Browse files
authored
Releasing version 1.9.0
Releasing version 1.9.0
2 parents eb3f509 + 9f30d82 commit a6c1899

File tree

237 files changed

+5003
-291
lines changed

Some content is hidden

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

237 files changed

+5003
-291
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+
## 1.9.0 - 2020-12-01
7+
### Added
8+
- Support for calling Oracle Cloud Infrastructure services in the sa-santiago-1 region
9+
- Support for peer and OSN resources, as well as retry tokens, in the Blockchain Platform service
10+
- Support for getting the availability status of management agents in the Management Agent service
11+
- Support for the on-prem-connector resource type in the Data Safe service
12+
- Support for service channels in the MySQL Database service
13+
- Support for getting the creation type of backups, and for filtering backups by creation type in the MySQL Database service
14+
15+
16+
### Breaking
17+
- Update the property `compartmentId` from optional to required in `ListDataSafePrivateEndpointsRequest` and `ListWorkRequestsRequest` in datasafe service.
18+
- Deleted the property `freeformTags` and `definedTags` from `EnableDataSafeConfigurationDetails` model in datasafe service
19+
620
## 1.8.0 - 2020-11-17
721
### Added
822
- Support for specifying memory for AMD E3 shapes during node pool creation and update in the Container Engine for Kubernetes service

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.8.0",
3+
"version": "1.9.0",
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.8.0",
3+
"version": "1.9.0",
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.8.0",
3+
"version": "1.9.0",
44
"description": "OCI NodeJS client for API gateway service",
55
"repository": {
66
"type": "git",

lib/applicationmigration/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-applicationmigration",
3-
"version": "1.8.0",
3+
"version": "1.9.0",
44
"description": "OCI NodeJS client for Application Migration service",
55
"repository": {
66
"type": "git",

lib/audit/package.json

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

lib/autoscaling/package.json

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

lib/bds/package.json

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

lib/blockchain/lib/client.ts

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1460,7 +1460,8 @@ export class BlockchainPlatformClient {
14601460
let headerParams = {
14611461
"Content-Type": common.Constants.APPLICATION_JSON,
14621462
"if-match": startBlockchainPlatformRequest.ifMatch,
1463-
"opc-request-id": startBlockchainPlatformRequest.opcRequestId
1463+
"opc-request-id": startBlockchainPlatformRequest.opcRequestId,
1464+
"opc-retry-token": startBlockchainPlatformRequest.opcRetryToken
14641465
};
14651466

14661467
const request = await composeRequest({
@@ -1521,7 +1522,8 @@ export class BlockchainPlatformClient {
15211522
let headerParams = {
15221523
"Content-Type": common.Constants.APPLICATION_JSON,
15231524
"if-match": stopBlockchainPlatformRequest.ifMatch,
1524-
"opc-request-id": stopBlockchainPlatformRequest.opcRequestId
1525+
"opc-request-id": stopBlockchainPlatformRequest.opcRequestId,
1526+
"opc-retry-token": stopBlockchainPlatformRequest.opcRetryToken
15251527
};
15261528

15271529
const request = await composeRequest({
@@ -1582,7 +1584,8 @@ export class BlockchainPlatformClient {
15821584
let headerParams = {
15831585
"Content-Type": common.Constants.APPLICATION_JSON,
15841586
"opc-request-id": updateBlockchainPlatformRequest.opcRequestId,
1585-
"if-match": updateBlockchainPlatformRequest.ifMatch
1587+
"if-match": updateBlockchainPlatformRequest.ifMatch,
1588+
"opc-retry-token": updateBlockchainPlatformRequest.opcRetryToken
15861589
};
15871590

15881591
const request = await composeRequest({
@@ -1715,7 +1718,8 @@ export class BlockchainPlatformClient {
17151718
let headerParams = {
17161719
"Content-Type": common.Constants.APPLICATION_JSON,
17171720
"if-match": updatePeerRequest.ifMatch,
1718-
"opc-request-id": updatePeerRequest.opcRequestId
1721+
"opc-request-id": updatePeerRequest.opcRequestId,
1722+
"opc-retry-token": updatePeerRequest.opcRetryToken
17191723
};
17201724

17211725
const request = await composeRequest({

lib/blockchain/lib/model/blockchain-platform-by-hostname.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export interface BlockchainPlatformByHostname {
5151
*/
5252
"platformRole"?: string;
5353
/**
54-
* Type of compute shape - one of Standard, (Enterprise) Small, Medium, Large or Extra Large
54+
* Compute shape - STANDARD or ENTERPRISE_SMALL or ENTERPRISE_MEDIUM or ENTERPRISE_LARGE or ENTERPRISE_EXTRA_LARGE or ENTERPRISE_CUSTOM
5555
*/
5656
"computeShape": string;
5757
/**

0 commit comments

Comments
 (0)