Skip to content

Commit e5d6d72

Browse files
author
waruwaruwaru
committed
Releasing version 1.7.0
1 parent 0786310 commit e5d6d72

File tree

375 files changed

+8930
-1004
lines changed

Some content is hidden

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

375 files changed

+8930
-1004
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,24 @@ 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.7.0 - 2020-11-10
7+
### Added
8+
- Support for the 21C autonomous database version in the Database service
9+
- Support for creating a Data Guard association with a standby database from a database software image in the - Database service
10+
- Support for specifying a TDE wallet password when creating a database or database system in the Database service
11+
- Support for enabling access control lists for autonomous databases on Exadata Cloud At Customer in the Database - service
12+
- Support for private DNS resolvers, resolver endpoints, and views in the DNS service
13+
- Support for getting a VCN and resolver association in the Networking service
14+
- Support for additional parameters when updating subnets and VLANs in the Networking service
15+
- Support for analytics clusters (database accelerators) in the MySQL Database service
16+
- Support for migrations to Java Cloud Service and Oracle Weblogic Server instances that use existing databases in the Application Migration service
17+
- Support for specifying reserved IPs when creating load balancers in the Load Balancing service
18+
19+
20+
### Breaking
21+
- Updated the property of `lifecycleState` type from `string` to `model.MigrationLifecycleStates` from the model of `ListMigrationsRequest` in the application migration service
22+
- Updated the property of `lifecycleState` type from `string` to `model.SourceLifecycleStates` from the model of `ListSourcesRequest` in the application migration service
23+
624
## 1.6.3 - 2020-11-03
725
### Added
826
- Support for calling Oracle Cloud Infrastructure services in the uk-cardiff-1 region

examples/javascript/audit.js

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,7 @@ const identity = require("oci-identity");
1414
const audit = require("oci-audit");
1515
const common = require("oci-common");
1616

17-
const configurationFilePath = "~/.oci/config";
18-
const configProfile = "DEFAULT";
19-
20-
const provider = new common.ConfigFileAuthenticationDetailsProvider(
21-
configurationFilePath,
22-
configProfile
23-
);
17+
const provider = new common.ConfigFileAuthenticationDetailsProvider();
2418

2519
const compartmentId = provider.getTenantId() || "";
2620

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 common = require("oci-common");
7+
8+
/*
9+
* TODO: Fill in config path / profile with appropriate values to opt out of SDK
10+
* default config path / profile. (~/.oci/config & DEFAULT respectively.)
11+
*
12+
* NOTE: SDK, will revert to using default profile if required fields are not found from specified profile.
13+
*/
14+
const configurationFilePath = "<your_config_file_path>";
15+
const profile = "<your_config_profile_name>";
16+
17+
export const provider = new common.ConfigFileAuthenticationDetailsProvider(
18+
configurationFilePath,
19+
profile
20+
);

examples/javascript/circuit-breaker.js

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,10 @@
66
const common = require("oci-common");
77
const identity = require("oci-identity");
88
const audit = require("oci-audit");
9-
const configurationFilePath = "~/.oci/config";
10-
const configProfile = "DEFAULT";
119

1210
/* This script demostrates how to create a circuit breaker and share the circuit breaker among clients.
1311
*/
14-
const provider = new common.ConfigFileAuthenticationDetailsProvider(
15-
configurationFilePath,
16-
configProfile
17-
);
12+
const provider = new common.ConfigFileAuthenticationDetailsProvider();
1813
const compartmentId = provider.getTenantId();
1914

2015
(async () => {

examples/javascript/containerengine-cluster.js

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,7 @@ const identity = require("oci-identity");
99
const wr = require("oci-workrequests");
1010
const common = require("oci-common");
1111

12-
const configurationFilePath = "~/.oci/config";
13-
const configProfile = "DEFAULT";
14-
15-
const provider = new common.ConfigFileAuthenticationDetailsProvider(
16-
configurationFilePath,
17-
configProfile
18-
);
12+
const provider = new common.ConfigFileAuthenticationDetailsProvider();
1913
/**
2014
* The entry point for the example.
2115
*

examples/javascript/custom-retry.js

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,7 @@
1313
const identity = require("oci-identity");
1414
const common = require("oci-common");
1515

16-
const configurationFilePath = "~/.oci/config";
17-
const configProfile = "DEFAULT";
18-
19-
const provider = new common.ConfigFileAuthenticationDetailsProvider(
20-
configurationFilePath,
21-
configProfile
22-
);
16+
const provider = new common.ConfigFileAuthenticationDetailsProvider();
2317
const args = process.argv.slice(2);
2418
console.log(args);
2519
if (args.length !== 2) {

examples/javascript/database.js

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,7 @@ const core = require("oci-core");
1616
const identity = require("oci-identity");
1717
const wr = require("oci-workrequests");
1818

19-
const configurationFilePath = "~/.oci/config";
20-
const configProfile = "DEFAULT";
21-
22-
const provider = new common.ConfigFileAuthenticationDetailsProvider(
23-
configurationFilePath,
24-
configProfile
25-
);
19+
const provider = new common.ConfigFileAuthenticationDetailsProvider();
2620

2721
const args = process.argv.slice(2);
2822
console.log(args);

examples/javascript/filestorage.js

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,7 @@ const common = require("oci-common");
1111

1212
const randomNumber = require("random-number-csprng");
1313

14-
const configurationFilePath = "~/.oci/config";
15-
const configProfile = "DEFAULT";
16-
17-
const provider = new common.ConfigFileAuthenticationDetailsProvider(
18-
configurationFilePath,
19-
configProfile
20-
);
14+
const provider = new common.ConfigFileAuthenticationDetailsProvider();
2115

2216
/**
2317
* This file provides an example of how to use the File Storage service in the SDK for TypeScript.

examples/javascript/identity.js

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,7 @@
66
const common = require("oci-common");
77
const identity = require("oci-identity");
88

9-
const configurationFilePath = "~/.oci/config";
10-
const configProfile = "DEFAULT";
11-
12-
const provider = new common.ConfigFileAuthenticationDetailsProvider(
13-
configurationFilePath,
14-
configProfile
15-
);
9+
const provider = new common.ConfigFileAuthenticationDetailsProvider();
1610

1711
const tenancyId = {
1812
tenancyId: provider.getTenantId() || ""

examples/javascript/invoke-function.js

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,7 @@ const core = require("oci-core");
88
const identity = require("oci-identity");
99
const common = require("oci-common");
1010

11-
const configurationFilePath = "~/.oci/config";
12-
const configProfile = "DEFAULT";
13-
14-
const provider = new common.ConfigFileAuthenticationDetailsProvider(
15-
configurationFilePath,
16-
configProfile
17-
);
11+
const provider = new common.ConfigFileAuthenticationDetailsProvider();
1812

1913
/**
2014
* This is a basic example of how to register and invoke a serverless Function

0 commit comments

Comments
 (0)