Skip to content

Commit 885279d

Browse files
authored
Merge pull request #13 from oracle/release_2020-07-14
Releasing version 1.2.3
2 parents fa4a65b + 1b55a22 commit 885279d

File tree

284 files changed

+10822
-270
lines changed

Some content is hidden

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

284 files changed

+10822
-270
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@ 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.2.3 - 2020-07-14
7+
### Added
8+
- Support for Instance Principal
9+
- Support for the Blockchain service
10+
- Support for failing over an autonomous database that has Data Guard enabled in the Database service
11+
- Support for switching over an autonomous database that has Data Guard enabled in the Database service
12+
- Support for git configuration sources in the Resource Manager service
13+
- Support for optionally specifying a VCN id on list operations of DHCP options, subnets, security lists, route tables, internet gateways, and local peering gateways in the Networking service
14+
615
## 1.2.2 - 2020-07-07
716
### Added
817
- Support for registering and deregistering autonomous dedicated databases with Data Safe in the Database service

THIRD_PARTY_LICENSES.txt

Lines changed: 703 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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+
/*
7+
* This example demostrates the usage of Instance Principal. In order to run this example, this code
8+
* must be in an Oracle Cloud instance. The Instance Principal will utiltize internal resources to
9+
* create an authentication provider. Refer to:
10+
* https://docs.cloud.oracle.com/en-us/iaas/Content/Identity/Tasks/callingservicesfrominstances.htm
11+
* for more details.
12+
*/
13+
14+
const identity = require("oci-identity");
15+
const common = require("oci-common");
16+
17+
(async () => {
18+
const authenticationProvider = await new common.InstancePrincipalsAuthenticationDetailsProviderBuilder().build();
19+
try {
20+
const identityClient = await new identity.IdentityClient({
21+
authenticationDetailsProvider: authenticationProvider
22+
});
23+
const regions = await identityClient.listRegions({});
24+
console.log("Regions: ", JSON.stringify(regions));
25+
} catch (e) {
26+
throw Error(`Failed with error: ${e}`);
27+
}
28+
})();
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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+
/*
7+
* This example demostrates the usage of Instance Principal. In order to run this example, this code
8+
* must be in an Oracle Cloud instance. The Instance Principal will utiltize internal resources to
9+
* create an authentication provider. Refer to:
10+
* https://docs.cloud.oracle.com/en-us/iaas/Content/Identity/Tasks/callingservicesfrominstances.htm
11+
* for more details.
12+
*/
13+
14+
import * as identity from "oci-identity";
15+
import common = require("oci-common");
16+
17+
(async () => {
18+
const authenticationProvider = await new common.InstancePrincipalsAuthenticationDetailsProviderBuilder().build();
19+
try {
20+
const identityClient = await new identity.IdentityClient({
21+
authenticationDetailsProvider: authenticationProvider
22+
});
23+
const regions = await identityClient.listRegions({});
24+
console.log("Regions: ", JSON.stringify(regions));
25+
} catch (e) {
26+
throw Error(`Failed with error: ${e}`);
27+
}
28+
})();

index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,3 +135,4 @@ export import secrets = require("oci-secrets");
135135
export import dataintegration = require("oci-dataintegration");
136136
export import ocvp = require("oci-ocvp");
137137
export import usageapi = require("oci-usageapi");
138+
export import blockchain = require("oci-blockchain");

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

0 commit comments

Comments
 (0)