Skip to content

Commit 5e6113e

Browse files
authored
Merge pull request #15 from oracle/release_2020-07-28
Releasing version 1.3.0
2 parents ac58c85 + dc62a78 commit 5e6113e

File tree

129 files changed

+3263
-140
lines changed

Some content is hidden

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

129 files changed

+3263
-140
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,19 @@ 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.3.0 - 2020-07-28
7+
### Added
8+
- Support for calling Oracle Cloud Infrastructure services in the us-sanjose-1 region
9+
- Support for updating the fault domain and launch options of VM instances in the Compute service
10+
- Support for image capability schemas and schema versions in the Compute service
11+
- Support for 'Patch Now' maintenance runs for autonomous Exadata infrastructure and autonomous container database resources in the Database service
12+
- Support for automatic performance and cost tuning on volumes in the Block Storage service
13+
- Support for Ephemeral Resource Principal
14+
15+
16+
### Breaking
17+
- Removed the accessToken field from the GitlabAccessTokenConfigurationSourceProvider model in the Resource Manager service
18+
619
## 1.2.4 - 2020-07-21
720
### Added
821
- Support for license types on instances in the Content and Experience service
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/**
2+
* Copyright (c) 2020, 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+
const identity = require("oci-identity");
7+
const common = require("oci-common");
8+
9+
(async () => {
10+
const authenticationProvider = await common.ResourcePrincipalAuthenticationDetailsProvider.builder();
11+
try {
12+
const identityClient = await new identity.IdentityClient({
13+
authenticationDetailsProvider: authenticationProvider
14+
});
15+
const regions = await identityClient.listRegions({});
16+
console.log("Regions: ", JSON.stringify(regions));
17+
} catch (e) {
18+
throw Error(`Failed with error: ${e}`);
19+
}
20+
})();
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/**
2+
* Copyright (c) 2020, 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+
import * as identity from "oci-identity";
7+
import common = require("oci-common");
8+
9+
(async () => {
10+
const authenticationProvider = await common.ResourcePrincipalAuthenticationDetailsProvider.builder();
11+
try {
12+
const identityClient = await new identity.IdentityClient({
13+
authenticationDetailsProvider: authenticationProvider
14+
});
15+
const regions = await identityClient.listRegions({});
16+
console.log("Regions: ", JSON.stringify(regions));
17+
} catch (e) {
18+
throw Error(`Failed with error: ${e}`);
19+
}
20+
})();

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

0 commit comments

Comments
 (0)