Skip to content

Commit 462bbbe

Browse files
authored
Releasing version 2.4.0
Releasing version 2.4.0
2 parents 1465be4 + e2f1a35 commit 462bbbe

File tree

417 files changed

+10011
-1753
lines changed

Some content is hidden

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

417 files changed

+10011
-1753
lines changed

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@ 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.4.0 - 2021-09-28
7+
### Added
8+
- Support for autonomous databases and clones on shared infrastructure not requiring mTLS in the Database service
9+
- Support for server-side encryption using object-specific KMS keys in the Object Storage service
10+
- Support for Windows in the Java Management service
11+
- Support for using network security groups in the API Gateway service
12+
- Support for network security groups in the Functions service
13+
- Support for signed container images in the Functions service
14+
- Support for setting message format when creating and updating alarms in the Monitoring service
15+
- Support for user and security assessment features in the Data Safe service
16+
17+
### Breaking Changes
18+
- The `RequestSummarizedApplicationUsage`, `RequestSummarizedInstallationUsage`, `RequestSummarizedJreUsage`, `RequestSummarizedManagedInstanceUsage` were removed from the `JavaManagementServiceClient` in the Java Management service
19+
- The `RequestSummarizedApplicationUsageDetails`, `RequestSummarizedInstallationUsageDetails`, `RequestSummarizedJreUsageDetails` and `RequestSummarizedManagedInstanceUsageDetails` models were removed in the Java Management service
20+
- The `RequestSummarizedApplicationUsageDetails`, `RequestSummarizedInstallationUsageDetails`, `RequestSummarizedJreUsageDetails` and `RequestSummarizedManagedInstanceUsageDetails` request models were removed in the Java Management service
21+
- The `RequestSummarizedApplicationUsageDetails`, `RequestSummarizedInstallationUsageDetails` and `RequestSummarizedManagedInstanceUsageDetails` response models were removed in the Java Management service
22+
623
## 2.3.1 - 2021-09-14
724
### Added
825
- Support for serviceHostKeyFingerprint property for InstanceConsoleConnection in Core service

lib/aianomalydetection/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-aianomalydetection",
3-
"version": "2.3.1",
3+
"version": "2.4.0",
44
"description": "OCI NodeJS client for Ai Anomaly Detection Service",
55
"repository": {
66
"type": "git",

lib/ailanguage/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-ailanguage",
3-
"version": "2.3.1",
3+
"version": "2.4.0",
44
"description": "OCI NodeJS client for Ai Language Service",
55
"repository": {
66
"type": "git",

lib/analytics/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-analytics",
3-
"version": "2.3.1",
3+
"version": "2.4.0",
44
"description": "OCI NodeJS client for Analytics Service",
55
"repository": {
66
"type": "git",

lib/announcementsservice/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-announcementsservice",
3-
"version": "2.3.1",
3+
"version": "2.4.0",
44
"description": "OCI NodeJS client for Announcement Service",
55
"repository": {
66
"type": "git",

lib/apigateway/lib/client.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -766,7 +766,8 @@ export class ApiGatewayClient {
766766
let headerParams = {
767767
"Content-Type": common.Constants.APPLICATION_JSON,
768768
"opc-request-id": getApiContentRequest.opcRequestId,
769-
"if-match": getApiContentRequest.ifMatch
769+
"if-match": getApiContentRequest.ifMatch,
770+
"range": getApiContentRequest.range
770771
};
771772

772773
const retrier = GenericRetrier.createPreferredRetrier(

lib/apigateway/lib/model/create-gateway-details.ts

+5
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,11 @@ Example: `PUBLIC` or `PRIVATE`
4949
*
5050
*/
5151
"subnetId": string;
52+
/**
53+
* An array of Network Security Groups OCIDs associated with this API Gateway.
54+
*
55+
*/
56+
"networkSecurityGroupIds"?: Array<string>;
5257
/**
5358
* The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the resource.
5459
*

lib/apigateway/lib/model/gateway-summary.ts

+5
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,11 @@ Example: `PUBLIC` or `PRIVATE`
5454
*
5555
*/
5656
"subnetId"?: string;
57+
/**
58+
* An array of Network Security Groups OCIDs associated with this API Gateway.
59+
*
60+
*/
61+
"networkSecurityGroupIds"?: Array<string>;
5762
/**
5863
* The time this resource was created. An RFC3339 formatted datetime string.
5964
*/

lib/apigateway/lib/model/gateway.ts

+5
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,11 @@ Example: `PUBLIC` or `PRIVATE`
5656
*
5757
*/
5858
"subnetId"?: string;
59+
/**
60+
* An array of Network Security Groups OCIDs associated with this API Gateway.
61+
*
62+
*/
63+
"networkSecurityGroupIds"?: Array<string>;
5964
/**
6065
* The time this resource was created. An RFC3339 formatted datetime string.
6166
*/

lib/apigateway/lib/model/update-gateway-details.ts

+5
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,11 @@ Example: `My new resource`
2929
*
3030
*/
3131
"displayName"?: string;
32+
/**
33+
* An array of Network Security Groups OCIDs associated with this API Gateway.
34+
*
35+
*/
36+
"networkSecurityGroupIds"?: Array<string>;
3237
/**
3338
* The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the resource.
3439
*

lib/apigateway/lib/request/get-api-content-request.ts

+7
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,11 @@ export interface GetApiContentRequest extends common.BaseRequest {
3535
*
3636
*/
3737
"ifMatch"?: string;
38+
/**
39+
* The Range HTTP request header indicates the part of a document that the
40+
* server should return. [RFC 7233](https://tools.ietf.org/html/rfc7233#section-3.1).
41+
* Note that only a single range of bytes is supported.
42+
*
43+
*/
44+
"range"?: common.Range;
3845
}

lib/apigateway/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-apigateway",
3-
"version": "2.3.1",
3+
"version": "2.4.0",
44
"description": "OCI NodeJS client for API gateway service",
55
"repository": {
66
"type": "git",

lib/apmcontrolplane/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-apmcontrolplane",
3-
"version": "2.3.1",
3+
"version": "2.4.0",
44
"description": "OCI NodeJS client for Apm Control Plane Service",
55
"repository": {
66
"type": "git",

lib/apmsynthetics/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-apmsynthetics",
3-
"version": "2.3.1",
3+
"version": "2.4.0",
44
"description": "OCI NodeJS client for Apm Synthetics Service",
55
"repository": {
66
"type": "git",

lib/apmtraces/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-apmtraces",
3-
"version": "2.3.1",
3+
"version": "2.4.0",
44
"description": "OCI NodeJS client for Apm Traces Service",
55
"repository": {
66
"type": "git",

lib/applicationmigration/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-applicationmigration",
3-
"version": "2.3.1",
3+
"version": "2.4.0",
44
"description": "OCI NodeJS client for Application Migration service",
55
"repository": {
66
"type": "git",

lib/artifacts/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-artifacts",
3-
"version": "2.3.1",
3+
"version": "2.4.0",
44
"description": "OCI NodeJS client for Artifacts Service",
55
"repository": {
66
"type": "git",

lib/audit/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-audit",
3-
"version": "2.3.1",
3+
"version": "2.4.0",
44
"description": "OCI NodeJS client for Audit Service",
55
"repository": {
66
"type": "git",

lib/autoscaling/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-autoscaling",
3-
"version": "2.3.1",
3+
"version": "2.4.0",
44
"description": "OCI NodeJS client for Autoscaling Service",
55
"repository": {
66
"type": "git",

lib/bastion/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-bastion",
3-
"version": "2.3.1",
3+
"version": "2.4.0",
44
"description": "OCI NodeJS client for Bastion Service",
55
"repository": {
66
"type": "git",

lib/bds/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-bds",
3-
"version": "2.3.1",
3+
"version": "2.4.0",
44
"description": "OCI NodeJS client for BDS Service",
55
"repository": {
66
"type": "git",

lib/blockchain/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-blockchain",
3-
"version": "2.3.1",
3+
"version": "2.4.0",
44
"description": "OCI NodeJS client for Blockchain Service",
55
"repository": {
66
"type": "git",

lib/budget/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-budget",
3-
"version": "2.3.1",
3+
"version": "2.4.0",
44
"description": "OCI NodeJS client for Budget Service",
55
"repository": {
66
"type": "git",

lib/cims/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-cims",
3-
"version": "2.3.1",
3+
"version": "2.4.0",
44
"description": "OCI NodeJS client for Cims ",
55
"repository": {
66
"type": "git",

lib/cloudguard/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-cloudguard",
3-
"version": "2.3.1",
3+
"version": "2.4.0",
44
"description": "OCI NodeJS client for Cloud Guard Service",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)