Skip to content

Commit 46a9d6b

Browse files
authored
Merge pull request #54 from oracle/release_2021-02-16
Releasing version 1.15.1
2 parents e93cf2c + 0f95831 commit 46a9d6b

File tree

828 files changed

+2163
-1495
lines changed

Some content is hidden

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

828 files changed

+2163
-1495
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@ 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.15.1 - 2021-02-16
7+
### Added
8+
- Support for scan DNS names and zone ids on database system, cloud VM cluster, and autonomous Exadata infrastructure responses in the Database service
9+
- Support for specifying ACL rules to limit ingress into public load balancers in the Integration service
10+
- Support for Cloud at Customer as a source type in the Application Migration service
11+
- Support for selective migration of specific resources in the Application Migration service
12+
613
## 1.15.0 - 2021-02-09
714
### Added
815
- Support for the Database Management service

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,4 +79,5 @@ See [CHANGELOG](https://github.com/oracle/oci-typescript-sdk/tree/master/CHANGEL
7979

8080
## Known Issues
8181

82-
You can find information on any known issues with the SDK at [Oracle Cloud Infrastructure Known Issues](https://docs.cloud.oracle.com/en-us/iaas/Content/knownissues.htm) and under the [Issues](https://github.com/oracle/oci-typescript-sdk/issues) tab of this project's GitHub repository.
82+
- You can find information on any known issues with the SDK at [Oracle Cloud Infrastructure Known Issues](https://docs.cloud.oracle.com/en-us/iaas/Content/knownissues.htm) and under the [Issues](https://github.com/oracle/oci-typescript-sdk/issues) tab of this project's GitHub repository.
83+
- JavaScript numbers have rounding issues for number greater than Number.MAX_SAFE_INTEGER, APIs with responses that contain number greater than Number.MAX_SAFE_INTEGER may result in rounding issues.

lib/analytics/lib/model/capacity.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export interface Capacity {
2828
/**
2929
* The capacity value selected (OLPU count, number of users, ...etc...). This parameter affects the
3030
* number of CPUs, amount of memory or other resources allocated to the instance.
31-
*
31+
* Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
3232
*/
3333
"capacityValue": number;
3434
}

lib/analytics/lib/model/work-request.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export interface WorkRequest {
4747
"resources": Array<model.WorkRequestResource>;
4848
/**
4949
* Percentage of the request completed.
50-
*
50+
* Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
5151
*/
5252
"percentComplete": number;
5353
/**

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

lib/apigateway/lib/model/cors-policy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export interface CorsPolicy {
5656
/**
5757
* The time in seconds for the client to cache preflight responses. This is sent as the Access-Control-Max-Age
5858
* if greater than 0.
59-
*
59+
* Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
6060
*/
6161
"maxAgeInSeconds"?: number;
6262
}

lib/apigateway/lib/model/h-tt-pbackend.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,17 @@ export interface HTTPBackend extends model.ApiSpecificationRouteBackend {
2525
"url": string;
2626
/**
2727
* Defines a timeout for establishing a connection with a proxied server.
28-
*
28+
* Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
2929
*/
3030
"connectTimeoutInSeconds"?: number;
3131
/**
3232
* Defines a timeout for reading a response from the proxied server.
33-
*
33+
* Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
3434
*/
3535
"readTimeoutInSeconds"?: number;
3636
/**
3737
* Defines a timeout for transmitting a request to the proxied server.
38-
*
38+
* Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
3939
*/
4040
"sendTimeoutInSeconds"?: number;
4141
/**

lib/apigateway/lib/model/jwt-authentication-policy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export interface JwtAuthenticationPolicy extends model.AuthenticationPolicy {
5252
/**
5353
* The maximum expected time difference between the system clocks
5454
* of the token issuer and the API Gateway.
55-
*
55+
* Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
5656
*/
5757
"maxClockSkewInSeconds"?: number;
5858
"publicKeys": model.StaticPublicKeySet | model.RemoteJsonWebKeySet;

lib/apigateway/lib/model/rate-limiting-policy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import common = require("oci-common");
2222
*/
2323
export interface RateLimitingPolicy {
2424
/**
25-
* The maximum number of requests per second to allow.
25+
* The maximum number of requests per second to allow. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
2626
*/
2727
"rateInRequestsPerSecond": number;
2828
/**

0 commit comments

Comments
 (0)