Skip to content

Commit d796d76

Browse files
Releasing version 2.45.0
Releasing version 2.45.0
2 parents 324a1ab + 65a4b18 commit d796d76

File tree

189 files changed

+1109
-148
lines changed

Some content is hidden

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

189 files changed

+1109
-148
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@ 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.45.0 - 2022-10-04
7+
### Added
8+
- Support for calling Oracle Cloud Infrastructure services in the eu-dcc-milan-1 region
9+
- Support for target host identification and SOCKS support on dynamic port forwarding sessions in the Bastion service
10+
- Support for viewing top processes running at a particular point of time in the Operations Insights service
11+
- Support for filtering top processes by a single process to view that process's trend over time in the Operations Insights service
12+
- Support for creating Enterprise Manager-based Windows host targets in the Operations Insights service
13+
- Support for creating Management Agent Cloud-based Windows and Solaris host targets in the Operations Insights service
14+
15+
### Breaking Changes
16+
- The property `TargetResourcePort` was removed from the models `TargetResourceDetails` and `CreateSessionTargetResourceDetails` in the Bastion service
17+
618
## 2.44.0 - 2022-09-27
719
### Added
820
- Support for search capabilities for monitored resources in the Stack Monitoring service
@@ -14,7 +26,6 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
1426
- Support for starting and stopping clusters in the Big Data service
1527
- Support for additional compute shapes in the Big Data service
1628
- Support for backwards pagination in the Search service
17-
- Support for cross-region replication in the File Storage service
1829
- Support for elastic compute for Exadata Cloud at Customer in the Database service
1930

2031
### Breaking Changes

examples/javascript/session-auth.js

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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+
const common = require("oci-common");
7+
const identity = require("oci-identity");
8+
9+
(async () => {
10+
try {
11+
const provider = new common.SessionAuthDetailProvider(undefined, "profile_name_here");
12+
const compartmentId = provider.getTenantId();
13+
const identityClient = new identity.IdentityClient({ authenticationDetailsProvider: provider });
14+
15+
const listUserReq = { compartmentId: compartmentId };
16+
const users = await identityClient.listUsers(listUserReq);
17+
console.log("users: ", users);
18+
} catch (e) {
19+
console.log("error: ", e);
20+
}
21+
})();

examples/typescript/session-auth.ts

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+
import common = require("oci-common");
7+
import * as identity from "oci-identity";
8+
9+
(async () => {
10+
try {
11+
const provider: common.SessionAuthDetailProvider = new common.SessionAuthDetailProvider(
12+
undefined,
13+
"profile_name_here"
14+
);
15+
const compartmentId = provider.getTenantId();
16+
const identityClient = new identity.IdentityClient({ authenticationDetailsProvider: provider });
17+
18+
const listUserReq = { compartmentId: compartmentId };
19+
const users = await identityClient.listUsers(listUserReq);
20+
console.log("users: ", users);
21+
} catch (e) {
22+
console.log("error: ", e);
23+
}
24+
})();

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

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

0 commit comments

Comments
 (0)