Skip to content

Commit 1891d27

Browse files
Releasing version 2.40.1
1 parent 9540962 commit 1891d27

File tree

156 files changed

+1085
-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.

156 files changed

+1085
-140
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.40.1 - 2022-08-30
7+
### Added
8+
- Support for opting out of guest VM event collection, health metrics, diagnostics logs, and traces in the Database service
9+
- Support for in-place upgrades for software-defined data centers in the VMWare Solution service
10+
- Support for single-client access name protocol as a data source for private access channels in the Analytics Cloud service
11+
- Support for network security groups, egress control on public datasources, and GitHub access in the Analytics Cloud service
12+
- Support for performance-based autotuning of block and boot volumes in the Block Storage service
13+
614
## 2.40.0 - 2022-08-23
715
### Added
816
- Support for the Enterprise Manager Warehouse service

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.40.0",
3+
"version": "2.40.1",
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.40.0",
3+
"version": "2.40.1",
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.40.0",
3+
"version": "2.40.1",
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.40.0",
3+
"version": "2.40.1",
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.40.0",
3+
"version": "2.40.1",
44
"description": "OCI NodeJS client for Ai Vision Service",
55
"repository": {
66
"type": "git",
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
/**
2+
* Analytics API
3+
* Analytics API.
4+
5+
* OpenAPI spec version: 20190331
6+
*
7+
*
8+
* NOTE: This class is auto generated by OracleSDKGenerator.
9+
* Do not edit the class manually.
10+
*
11+
* Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
12+
* 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.
13+
*/
14+
15+
import * as model from "../model";
16+
import common = require("oci-common");
17+
18+
/**
19+
* Various types of Oracle Service categories that can be whitelisted to access an Analytics Instance.
20+
*
21+
**/
22+
export enum AccessControlServiceType {
23+
All = "ALL",
24+
25+
/**
26+
* This value is used if a service returns a value for this enum that is not recognized by this
27+
* version of the SDK.
28+
*/
29+
UnknownValue = "UNKNOWN_VALUE"
30+
}
31+
32+
export namespace AccessControlServiceType {
33+
export function getJsonObj(obj: AccessControlServiceType): AccessControlServiceType {
34+
return obj;
35+
}
36+
export function getDeserializedJsonObj(obj: AccessControlServiceType): AccessControlServiceType {
37+
return obj;
38+
}
39+
}

lib/analytics/lib/model/create-private-access-channel-details.ts

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,16 @@ export interface CreatePrivateAccessChannelDetails {
4242
*
4343
*/
4444
"privateSourceDnsZones": Array<model.PrivateSourceDnsZone>;
45+
/**
46+
* List of Private Source DB SCAN hosts registered with Private Access Channel for access from Analytics Instance.
47+
*
48+
*/
49+
"privateSourceScanHosts"?: Array<model.PrivateSourceScanHost>;
50+
/**
51+
* Network Security Group OCIDs for an Analytics instance.
52+
*
53+
*/
54+
"networkSecurityGroupIds"?: Array<string>;
4555
}
4656

4757
export namespace CreatePrivateAccessChannelDetails {
@@ -53,6 +63,11 @@ export namespace CreatePrivateAccessChannelDetails {
5363
? obj.privateSourceDnsZones.map(item => {
5464
return model.PrivateSourceDnsZone.getJsonObj(item);
5565
})
66+
: undefined,
67+
"privateSourceScanHosts": obj.privateSourceScanHosts
68+
? obj.privateSourceScanHosts.map(item => {
69+
return model.PrivateSourceScanHost.getJsonObj(item);
70+
})
5671
: undefined
5772
}
5873
};
@@ -67,6 +82,11 @@ export namespace CreatePrivateAccessChannelDetails {
6782
? obj.privateSourceDnsZones.map(item => {
6883
return model.PrivateSourceDnsZone.getDeserializedJsonObj(item);
6984
})
85+
: undefined,
86+
"privateSourceScanHosts": obj.privateSourceScanHosts
87+
? obj.privateSourceScanHosts.map(item => {
88+
return model.PrivateSourceScanHost.getDeserializedJsonObj(item);
89+
})
7090
: undefined
7191
}
7292
};

lib/analytics/lib/model/index.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
* 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.
1313
*/
1414

15+
import * as AccessControlServiceType from "./access-control-service-type";
16+
export import AccessControlServiceType = AccessControlServiceType.AccessControlServiceType;
1517
import * as AnalyticsInstance from "./analytics-instance";
1618
export import AnalyticsInstance = AnalyticsInstance.AnalyticsInstance;
1719
import * as AnalyticsInstanceLifecycleState from "./analytics-instance-lifecycle-state";
@@ -44,6 +46,8 @@ import * as PrivateAccessChannel from "./private-access-channel";
4446
export import PrivateAccessChannel = PrivateAccessChannel.PrivateAccessChannel;
4547
import * as PrivateSourceDnsZone from "./private-source-dns-zone";
4648
export import PrivateSourceDnsZone = PrivateSourceDnsZone.PrivateSourceDnsZone;
49+
import * as PrivateSourceScanHost from "./private-source-scan-host";
50+
export import PrivateSourceScanHost = PrivateSourceScanHost.PrivateSourceScanHost;
4751
import * as ScaleAnalyticsInstanceDetails from "./scale-analytics-instance-details";
4852
export import ScaleAnalyticsInstanceDetails = ScaleAnalyticsInstanceDetails.ScaleAnalyticsInstanceDetails;
4953
import * as SetKmsKeyDetails from "./set-kms-key-details";

lib/analytics/lib/model/private-access-channel.ts

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,16 @@ export interface PrivateAccessChannel {
5858
*
5959
*/
6060
"privateSourceDnsZones"?: Array<model.PrivateSourceDnsZone>;
61+
/**
62+
* List of Private Source DB SCAN hosts registered with Private Access Channel for access from Analytics Instance.
63+
*
64+
*/
65+
"privateSourceScanHosts"?: Array<model.PrivateSourceScanHost>;
66+
/**
67+
* Network Security Group OCIDs for an Analytics instance.
68+
*
69+
*/
70+
"networkSecurityGroupIds"?: Array<string>;
6171
}
6272

6373
export namespace PrivateAccessChannel {
@@ -69,6 +79,11 @@ export namespace PrivateAccessChannel {
6979
? obj.privateSourceDnsZones.map(item => {
7080
return model.PrivateSourceDnsZone.getJsonObj(item);
7181
})
82+
: undefined,
83+
"privateSourceScanHosts": obj.privateSourceScanHosts
84+
? obj.privateSourceScanHosts.map(item => {
85+
return model.PrivateSourceScanHost.getJsonObj(item);
86+
})
7287
: undefined
7388
}
7489
};
@@ -83,6 +98,11 @@ export namespace PrivateAccessChannel {
8398
? obj.privateSourceDnsZones.map(item => {
8499
return model.PrivateSourceDnsZone.getDeserializedJsonObj(item);
85100
})
101+
: undefined,
102+
"privateSourceScanHosts": obj.privateSourceScanHosts
103+
? obj.privateSourceScanHosts.map(item => {
104+
return model.PrivateSourceScanHost.getDeserializedJsonObj(item);
105+
})
86106
: undefined
87107
}
88108
};

0 commit comments

Comments
 (0)