Skip to content

Commit 30f8a8c

Browse files
authored
Releasing version 1.5.3
Releasing version 1.5.3
2 parents 473ef83 + b29a152 commit 30f8a8c

File tree

1,127 files changed

+63026
-208
lines changed

Some content is hidden

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

1,127 files changed

+63026
-208
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
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+
## 1.5.3 - 2020-09-08
7+
### Added
8+
- Support for Logging Service
9+
- Support for Logging Analytics Service
10+
- Support for Logging Search Service
11+
- Support for Logging Ingestion Service
12+
- Support for Management Agent Cloud Service
13+
- Support for Management Dashboard Service
14+
- Support for Service Connector Hub service
15+
- Support for Policy based Request/Response transformation in the API Gateway Service
16+
- Support for sending diagnostic interrupt to a VM instance in the Compute Service
17+
- Support for custom Database Software Images in the Database Service
18+
- Support for getting and listing container database patches for Autonomous Container Database resources in the Database Service
19+
- Support for updating patch id on maintenance run for Autonomous Container Database resources in the Database Service
20+
- Support for searching Oracle Cloud resources across tenancies in the Search Service
21+
- Documentation update for Logging Policies in the API Gateway service
22+
623
## 1.5.2 - 2020-09-01
724
### Added
825
- Support for calling Oracle Cloud Infrastructure services in the ap-chiyoda-1 region

examples/typescript/pagination.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
import common = require("oci-common");
77
import * as identity from "oci-identity";
8-
import { paginatedRecordsWithLimit, paginatedResponsesWithLimit } from "oci-common/lib/paginators";
8+
import { paginatedRecordsWithLimit, paginatedResponsesWithLimit } from "oci-common";
99

1010
const configurationFilePath = "~/.oci/config";
1111
const configProfile = "DEFAULT";

index.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,3 +136,10 @@ export import dataintegration = require("oci-dataintegration");
136136
export import ocvp = require("oci-ocvp");
137137
export import usageapi = require("oci-usageapi");
138138
export import blockchain = require("oci-blockchain");
139+
export import loganalytics = require("oci-loganalytics");
140+
export import logging = require("oci-logging");
141+
export import loggingingestion = require("oci-loggingingestion");
142+
export import loggingsearch = require("oci-loggingsearch");
143+
export import managementagent = require("oci-managementagent");
144+
export import managementdashboard = require("oci-managementdashboard");
145+
export import sch = require("oci-sch");

lib/analytics/lib/client.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,13 @@ export class AnalyticsClient {
5252
}
5353
}
5454

55+
/**
56+
* Get the endpoint that is being used to call (ex, https://www.example.com).
57+
*/
58+
public get endpoint() {
59+
return this._endpoint;
60+
}
61+
5562
/**
5663
* Sets the endpoint to call (ex, https://www.example.com).
5764
* @param endpoint The endpoint of the service.

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

lib/announcementsservice/lib/client.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,13 @@ export class AnnouncementClient {
4848
}
4949
}
5050

51+
/**
52+
* Get the endpoint that is being used to call (ex, https://www.example.com).
53+
*/
54+
public get endpoint() {
55+
return this._endpoint;
56+
}
57+
5158
/**
5259
* Sets the endpoint to call (ex, https://www.example.com).
5360
* @param endpoint The endpoint of the service.

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

lib/apigateway/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
22
* API Gateway API
3-
* API for the API Gateway service. Use this API to manage gateways, deployments, and related items.
3+
* API for the API Gateway service. Use this API to manage gateways, deployments, and related items.
44
For more information, see
5-
[Overview of API Gateway](/iaas/Content/APIGateway/Concepts/apigatewayoverview.htm).
5+
[Overview of API Gateway](/iaas/Content/APIGateway/Concepts/apigatewayoverview.htm).
66
77
* OpenAPI spec version: 20190501
88
*

lib/apigateway/lib/client.ts

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
22
* API Gateway API
3-
* API for the API Gateway service. Use this API to manage gateways, deployments, and related items.
3+
* API for the API Gateway service. Use this API to manage gateways, deployments, and related items.
44
For more information, see
5-
[Overview of API Gateway](/iaas/Content/APIGateway/Concepts/apigatewayoverview.htm).
5+
[Overview of API Gateway](/iaas/Content/APIGateway/Concepts/apigatewayoverview.htm).
66
77
* OpenAPI spec version: 20190501
88
*
@@ -55,6 +55,13 @@ export class DeploymentClient {
5555
}
5656
}
5757

58+
/**
59+
* Get the endpoint that is being used to call (ex, https://www.example.com).
60+
*/
61+
public get endpoint() {
62+
return this._endpoint;
63+
}
64+
5865
/**
5966
* Sets the endpoint to call (ex, https://www.example.com).
6067
* @param endpoint The endpoint of the service.
@@ -554,6 +561,13 @@ export class GatewayClient {
554561
}
555562
}
556563

564+
/**
565+
* Get the endpoint that is being used to call (ex, https://www.example.com).
566+
*/
567+
public get endpoint() {
568+
return this._endpoint;
569+
}
570+
557571
/**
558572
* Sets the endpoint to call (ex, https://www.example.com).
559573
* @param endpoint The endpoint of the service.
@@ -1051,6 +1065,13 @@ export class WorkRequestsClient {
10511065
}
10521066
}
10531067

1068+
/**
1069+
* Get the endpoint that is being used to call (ex, https://www.example.com).
1070+
*/
1071+
public get endpoint() {
1072+
return this._endpoint;
1073+
}
1074+
10541075
/**
10551076
* Sets the endpoint to call (ex, https://www.example.com).
10561077
* @param endpoint The endpoint of the service.

lib/apigateway/lib/deployment-waiter.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
22
* API Gateway API
3-
* API for the API Gateway service. Use this API to manage gateways, deployments, and related items.
3+
* API for the API Gateway service. Use this API to manage gateways, deployments, and related items.
44
For more information, see
5-
[Overview of API Gateway](/iaas/Content/APIGateway/Concepts/apigatewayoverview.htm).
5+
[Overview of API Gateway](/iaas/Content/APIGateway/Concepts/apigatewayoverview.htm).
66
77
* OpenAPI spec version: 20190501
88
*

0 commit comments

Comments
 (0)