Skip to content

Commit c0f7016

Browse files
Releasing version 2.70.3
Releasing version 2.70.3
2 parents 2810211 + 646e481 commit c0f7016

File tree

205 files changed

+3372
-147
lines changed

Some content is hidden

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

205 files changed

+3372
-147
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+
## 2.70.3 - 2023-10-03
7+
### Added
8+
- Support for elastic resource pools in the Database service
9+
- Support for private endpoints in the Data Science service
10+
- Support for File System Service (FSS) as transfer medium for data export and import in the Database Migration service
11+
- Support for new optional parameters on replica create, update and list operations in the MySQL Heatwave service
12+
13+
614
## 2.70.2 - 2023-09-26
715
### Added
816
- Support for listing compute performances and storage performances in Database service
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
/**
2+
* Copyright (c) 2020, 2021 Oracle and/or its affiliates. All rights reserved.
3+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
4+
*/
5+
6+
/**
7+
* This is an example that shows how to use oke workload identity auth provider
8+
*/
9+
10+
const identity = require("oci-identity");
11+
const common = require("oci-common");
12+
13+
(async () => {
14+
const authProvider = await common.OkeWorkloadIdentityAuthenticationDetailsProvider.builder();
15+
try {
16+
const identityClient = new identity.IdentityClient({
17+
authenticationDetailsProvider: authenticationProvider
18+
});
19+
const regions = await identityClient.listRegions({});
20+
console.log("Regions: ", JSON.stringify(regions));
21+
} catch (e) {
22+
throw Error(`Failed with error: ${e}`);
23+
}
24+
})();
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/**
2+
* Copyright (c) 2020, 2021 Oracle and/or its affiliates. All rights reserved.
3+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
4+
*/
5+
6+
/**
7+
* This is an example that shows how to use oke workload identity auth provider
8+
*/
9+
10+
var identity = require("oci-identity");
11+
var common = require("oci-common");
12+
13+
(async () => {
14+
const authProvider = await common.OkeWorkloadIdentityAuthenticationDetailsProvider.builder();
15+
const compartmentId = await authProvider.getStringClaim("res_tenant");
16+
17+
const identityClient = new identity.IdentityClient({
18+
authenticationDetailsProvider: authProvider
19+
});
20+
})();

lib/accessgovernancecp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-accessgovernancecp",
3-
"version": "2.70.2",
3+
"version": "2.70.3",
44
"description": "OCI NodeJS client for Access Governance Cp Service",
55
"repository": {
66
"type": "git",

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

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

lib/aidocument/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-aidocument",
3-
"version": "2.70.2",
3+
"version": "2.70.3",
44
"description": "OCI NodeJS client for Ai Document 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.70.2",
3+
"version": "2.70.3",
44
"description": "OCI NodeJS client for Ai Language Service",
55
"repository": {
66
"type": "git",

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

lib/aivision/package.json

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

0 commit comments

Comments
 (0)