Skip to content

Commit ca7e1e7

Browse files
Releasing version 2.42.0
Releasing version 2.42.0
2 parents 56b157d + 934a636 commit ca7e1e7

File tree

157 files changed

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

157 files changed

+1668
-140
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@ 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.42.0 - 2022-09-13
7+
### Added
8+
- Support for calling Oracle Cloud Infrastructure services in the eu-madrid-1 region
9+
- Support for exporting and importing larger model artifacts in the model catalog in the Data Science service
10+
- Support for Request Based Authorization in the API Gateway service
11+
- Support for Dynamic Authentication in the API Gateway service
12+
- Support for Dynamic Routing Backend in the API Gateway service
13+
14+
### Breaking Changes
15+
- Support for retries by default on some operations of the Data Science service
16+
617
## 2.41.0 - 2022-09-06
718
### Added
819
- Support for generic REST, OCI Streaming service, and Lake House connectors in the Data Connectivity Management 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.41.0",
3+
"version": "2.42.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.41.0",
3+
"version": "2.42.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.41.0",
3+
"version": "2.42.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.41.0",
3+
"version": "2.42.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.41.0",
3+
"version": "2.42.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.41.0",
3+
"version": "2.42.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.41.0",
3+
"version": "2.42.0",
44
"description": "OCI NodeJS client for Announcement Service",
55
"repository": {
66
"type": "git",
Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
/**
2+
* API Gateway API
3+
* API for the API Gateway service. Use this API to manage gateways, deployments, and related items.
4+
For more information, see
5+
[Overview of API Gateway](/iaas/Content/APIGateway/Concepts/apigatewayoverview.htm).
6+
7+
* OpenAPI spec version: 20190501
8+
*
9+
*
10+
* NOTE: This class is auto generated by OracleSDKGenerator.
11+
* Do not edit the class manually.
12+
*
13+
* Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
14+
* 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.
15+
*/
16+
17+
import * as model from "../model";
18+
import common = require("oci-common");
19+
20+
/**
21+
* Information around the set of string values for selector of a dynamic authentication/ routing branch. Selector should match any one of the values present in set of string values.
22+
*/
23+
export interface AnyOfSelectionKey extends model.DynamicSelectionKey {
24+
/**
25+
* Information regarding the set of values of selector for which this branch should be selected.
26+
*/
27+
"values"?: Array<string>;
28+
29+
"type": string;
30+
}
31+
32+
export namespace AnyOfSelectionKey {
33+
export function getJsonObj(obj: AnyOfSelectionKey, isParentJsonObj?: boolean): object {
34+
const jsonObj = {
35+
...(isParentJsonObj ? obj : (model.DynamicSelectionKey.getJsonObj(obj) as AnyOfSelectionKey)),
36+
...{}
37+
};
38+
39+
return jsonObj;
40+
}
41+
export const type = "ANY_OF";
42+
export function getDeserializedJsonObj(
43+
obj: AnyOfSelectionKey,
44+
isParentJsonObj?: boolean
45+
): object {
46+
const jsonObj = {
47+
...(isParentJsonObj
48+
? obj
49+
: (model.DynamicSelectionKey.getDeserializedJsonObj(obj) as AnyOfSelectionKey)),
50+
...{}
51+
};
52+
53+
return jsonObj;
54+
}
55+
}

lib/apigateway/lib/model/api-specification-request-policies.ts

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ export interface ApiSpecificationRequestPolicies {
2626
"cors"?: model.CorsPolicy;
2727
"mutualTls"?: model.MutualTlsDetails;
2828
"usagePlans"?: model.UsagePlansPolicy;
29+
"dynamicAuthentication"?: model.DynamicAuthenticationPolicy;
2930
}
3031

3132
export namespace ApiSpecificationRequestPolicies {
@@ -41,7 +42,12 @@ export namespace ApiSpecificationRequestPolicies {
4142
: undefined,
4243
"cors": obj.cors ? model.CorsPolicy.getJsonObj(obj.cors) : undefined,
4344
"mutualTls": obj.mutualTls ? model.MutualTlsDetails.getJsonObj(obj.mutualTls) : undefined,
44-
"usagePlans": obj.usagePlans ? model.UsagePlansPolicy.getJsonObj(obj.usagePlans) : undefined
45+
"usagePlans": obj.usagePlans
46+
? model.UsagePlansPolicy.getJsonObj(obj.usagePlans)
47+
: undefined,
48+
"dynamicAuthentication": obj.dynamicAuthentication
49+
? model.DynamicAuthenticationPolicy.getJsonObj(obj.dynamicAuthentication)
50+
: undefined
4551
}
4652
};
4753

@@ -63,6 +69,9 @@ export namespace ApiSpecificationRequestPolicies {
6369
: undefined,
6470
"usagePlans": obj.usagePlans
6571
? model.UsagePlansPolicy.getDeserializedJsonObj(obj.usagePlans)
72+
: undefined,
73+
"dynamicAuthentication": obj.dynamicAuthentication
74+
? model.DynamicAuthenticationPolicy.getDeserializedJsonObj(obj.dynamicAuthentication)
6675
: undefined
6776
}
6877
};

0 commit comments

Comments
 (0)