Skip to content

Commit 42207ae

Browse files
authored
Releasing version 2.5.0
Releasing version 2.5.0
2 parents 462bbbe + a640158 commit 42207ae

File tree

396 files changed

+14230
-698
lines changed

Some content is hidden

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

396 files changed

+14230
-698
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,27 @@ 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.5.0 - 2021-10-05
7+
### Added
8+
- Support for configuring Binlog variables in the MySQL Database service.
9+
- Support new response value "OPERATOR" for backup creationType in list and get MDS backup API in the MySQL Database service.
10+
- Support for SetAutoUpgradableConfig and GetAutoUpgradableConfig operations in Management Agent Cloud service.
11+
- Support for additional installType filter for List Management Agents, Images and Count API operations in Management Agent Cloud service.
12+
- Support for list and read DeploymentUpgrade, cancel and restore DeploymentBackup in the Golden Gate service.
13+
- Support for non-autonomous databases targets, executing Pre-Migration advisor, uploading Datapump logs into Object Storage bucket, and filtering Database Objects in the Database Migration service.
14+
- Support for calling Oracle Cloud Infrastructure services in the ap-ibaraki-1 region.
15+
16+
### Breaking Changes
17+
- Removed field `isAgentAutoUpgradable` from `UpdateManagementAgentDetails` model from Management Agent service
18+
- Removed field `TimeCreated` and `DisplayName` in `SortBy` enum and `displayName` from `ListWorkRequestsRequest` request model from Database Migration service.
19+
- Removed field `TimeCreated` and `DisplayName` in `SortBy` enum and `displayName` from `ListWorkRequestsLogRequest` request model from Database Migration service.
20+
- Removed field `TimeCreated` and `DisplayName` in `SortBy` enum and `displayName` from `ListWorkRequestsErrorsRequest` request model from Database Migration service.
21+
- Update field `lifecycleState` to use `model.MigrationLifecycleStates` instead of `model.LifecycleStates` from `ListMigrationsRequest` request model from Database Migration service.
22+
- Update field `lifecycleState` to use `model.MigrationLifecycleStates` instead of `model.LifecycleStates` from `Migration` and `MigrationSummary` model from Database Migration service.
23+
- Update field `timeStamp` to `timestamp` from `WorkRequestLogEntry` and `WorkRequestError` model from Database Migration service.
24+
- Removed field `compartmentId` from `UpdateAgentDetails` model from Database Migration service.
25+
- Mark listAll* paginator functions as deprecated in favor of Iterator paginator functions.
26+
627
## 2.4.0 - 2021-09-28
728
### Added
829
- Support for autonomous databases and clones on shared infrastructure not requiring mTLS in the Database service

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.4.0",
3+
"version": "2.5.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.4.0",
3+
"version": "2.5.0",
44
"description": "OCI NodeJS client for Ai Language Service",
55
"repository": {
66
"type": "git",

lib/analytics/lib/client.ts

Lines changed: 108 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1020,6 +1020,7 @@ export class AnalyticsClient {
10201020
}
10211021

10221022
/**
1023+
* NOTE: This function is deprecated in favor of listAnalyticsInstancesRecordIterator function.
10231024
* Creates a new async iterator which will iterate over the models.AnalyticsInstanceSummary objects
10241025
* contained in responses from the listAnalyticsInstances operation. This iterator will fetch more data from the
10251026
* server as needed.
@@ -1033,6 +1034,7 @@ export class AnalyticsClient {
10331034
}
10341035

10351036
/**
1037+
* NOTE: This function is deprecated in favor of listAnalyticsInstancesResponseIterator function.
10361038
* Creates a new async iterator which will iterate over the responses received from the listAnalyticsInstances operation. This iterator
10371039
* will fetch more data from the server as needed.
10381040
*
@@ -1044,6 +1046,31 @@ export class AnalyticsClient {
10441046
return paginateResponses(request, req => this.listAnalyticsInstances(req));
10451047
}
10461048

1049+
/**
1050+
* Creates a new async iterator which will iterate over the models.AnalyticsInstanceSummary objects
1051+
* contained in responses from the listAnalyticsInstances operation. This iterator will fetch more data from the
1052+
* server as needed.
1053+
*
1054+
* @param request a request which can be sent to the service operation
1055+
*/
1056+
public listAnalyticsInstancesRecordIterator(
1057+
request: requests.ListAnalyticsInstancesRequest
1058+
): AsyncIterableIterator<model.AnalyticsInstanceSummary> {
1059+
return paginateRecords(request, req => this.listAnalyticsInstances(req));
1060+
}
1061+
1062+
/**
1063+
* Creates a new async iterator which will iterate over the responses received from the listAnalyticsInstances operation. This iterator
1064+
* will fetch more data from the server as needed.
1065+
*
1066+
* @param request a request which can be sent to the service operation
1067+
*/
1068+
public listAnalyticsInstancesResponseIterator(
1069+
request: requests.ListAnalyticsInstancesRequest
1070+
): AsyncIterableIterator<responses.ListAnalyticsInstancesResponse> {
1071+
return paginateResponses(request, req => this.listAnalyticsInstances(req));
1072+
}
1073+
10471074
/**
10481075
* Get the errors of a work request.
10491076
*
@@ -1113,6 +1140,7 @@ export class AnalyticsClient {
11131140
}
11141141

11151142
/**
1143+
* NOTE: This function is deprecated in favor of listWorkRequestErrorsRecordIterator function.
11161144
* Creates a new async iterator which will iterate over the models.WorkRequestError objects
11171145
* contained in responses from the listWorkRequestErrors operation. This iterator will fetch more data from the
11181146
* server as needed.
@@ -1126,6 +1154,7 @@ export class AnalyticsClient {
11261154
}
11271155

11281156
/**
1157+
* NOTE: This function is deprecated in favor of listWorkRequestErrorsResponseIterator function.
11291158
* Creates a new async iterator which will iterate over the responses received from the listWorkRequestErrors operation. This iterator
11301159
* will fetch more data from the server as needed.
11311160
*
@@ -1137,6 +1166,31 @@ export class AnalyticsClient {
11371166
return paginateResponses(request, req => this.listWorkRequestErrors(req));
11381167
}
11391168

1169+
/**
1170+
* Creates a new async iterator which will iterate over the models.WorkRequestError objects
1171+
* contained in responses from the listWorkRequestErrors operation. This iterator will fetch more data from the
1172+
* server as needed.
1173+
*
1174+
* @param request a request which can be sent to the service operation
1175+
*/
1176+
public listWorkRequestErrorsRecordIterator(
1177+
request: requests.ListWorkRequestErrorsRequest
1178+
): AsyncIterableIterator<model.WorkRequestError> {
1179+
return paginateRecords(request, req => this.listWorkRequestErrors(req));
1180+
}
1181+
1182+
/**
1183+
* Creates a new async iterator which will iterate over the responses received from the listWorkRequestErrors operation. This iterator
1184+
* will fetch more data from the server as needed.
1185+
*
1186+
* @param request a request which can be sent to the service operation
1187+
*/
1188+
public listWorkRequestErrorsResponseIterator(
1189+
request: requests.ListWorkRequestErrorsRequest
1190+
): AsyncIterableIterator<responses.ListWorkRequestErrorsResponse> {
1191+
return paginateResponses(request, req => this.listWorkRequestErrors(req));
1192+
}
1193+
11401194
/**
11411195
* Get the logs of a work request.
11421196
*
@@ -1206,6 +1260,7 @@ export class AnalyticsClient {
12061260
}
12071261

12081262
/**
1263+
* NOTE: This function is deprecated in favor of listWorkRequestLogsRecordIterator function.
12091264
* Creates a new async iterator which will iterate over the models.WorkRequestLog objects
12101265
* contained in responses from the listWorkRequestLogs operation. This iterator will fetch more data from the
12111266
* server as needed.
@@ -1219,6 +1274,7 @@ export class AnalyticsClient {
12191274
}
12201275

12211276
/**
1277+
* NOTE: This function is deprecated in favor of listWorkRequestLogsResponseIterator function.
12221278
* Creates a new async iterator which will iterate over the responses received from the listWorkRequestLogs operation. This iterator
12231279
* will fetch more data from the server as needed.
12241280
*
@@ -1230,6 +1286,31 @@ export class AnalyticsClient {
12301286
return paginateResponses(request, req => this.listWorkRequestLogs(req));
12311287
}
12321288

1289+
/**
1290+
* Creates a new async iterator which will iterate over the models.WorkRequestLog objects
1291+
* contained in responses from the listWorkRequestLogs operation. This iterator will fetch more data from the
1292+
* server as needed.
1293+
*
1294+
* @param request a request which can be sent to the service operation
1295+
*/
1296+
public listWorkRequestLogsRecordIterator(
1297+
request: requests.ListWorkRequestLogsRequest
1298+
): AsyncIterableIterator<model.WorkRequestLog> {
1299+
return paginateRecords(request, req => this.listWorkRequestLogs(req));
1300+
}
1301+
1302+
/**
1303+
* Creates a new async iterator which will iterate over the responses received from the listWorkRequestLogs operation. This iterator
1304+
* will fetch more data from the server as needed.
1305+
*
1306+
* @param request a request which can be sent to the service operation
1307+
*/
1308+
public listWorkRequestLogsResponseIterator(
1309+
request: requests.ListWorkRequestLogsRequest
1310+
): AsyncIterableIterator<responses.ListWorkRequestLogsResponse> {
1311+
return paginateResponses(request, req => this.listWorkRequestLogs(req));
1312+
}
1313+
12331314
/**
12341315
* List all work requests in a compartment.
12351316
*
@@ -1303,6 +1384,7 @@ export class AnalyticsClient {
13031384
}
13041385

13051386
/**
1387+
* NOTE: This function is deprecated in favor of listWorkRequestsRecordIterator function.
13061388
* Creates a new async iterator which will iterate over the models.WorkRequestSummary objects
13071389
* contained in responses from the listWorkRequests operation. This iterator will fetch more data from the
13081390
* server as needed.
@@ -1316,6 +1398,7 @@ export class AnalyticsClient {
13161398
}
13171399

13181400
/**
1401+
* NOTE: This function is deprecated in favor of listWorkRequestsResponseIterator function.
13191402
* Creates a new async iterator which will iterate over the responses received from the listWorkRequests operation. This iterator
13201403
* will fetch more data from the server as needed.
13211404
*
@@ -1327,6 +1410,31 @@ export class AnalyticsClient {
13271410
return paginateResponses(request, req => this.listWorkRequests(req));
13281411
}
13291412

1413+
/**
1414+
* Creates a new async iterator which will iterate over the models.WorkRequestSummary objects
1415+
* contained in responses from the listWorkRequests operation. This iterator will fetch more data from the
1416+
* server as needed.
1417+
*
1418+
* @param request a request which can be sent to the service operation
1419+
*/
1420+
public listWorkRequestsRecordIterator(
1421+
request: requests.ListWorkRequestsRequest
1422+
): AsyncIterableIterator<model.WorkRequestSummary> {
1423+
return paginateRecords(request, req => this.listWorkRequests(req));
1424+
}
1425+
1426+
/**
1427+
* Creates a new async iterator which will iterate over the responses received from the listWorkRequests operation. This iterator
1428+
* will fetch more data from the server as needed.
1429+
*
1430+
* @param request a request which can be sent to the service operation
1431+
*/
1432+
public listWorkRequestsResponseIterator(
1433+
request: requests.ListWorkRequestsRequest
1434+
): AsyncIterableIterator<responses.ListWorkRequestsResponse> {
1435+
return paginateResponses(request, req => this.listWorkRequests(req));
1436+
}
1437+
13301438
/**
13311439
* Scale an Analytics instance up or down. The operation is long-running
13321440
* and creates a new WorkRequest.

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

lib/announcementsservice/lib/client.ts

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -658,6 +658,7 @@ export class AnnouncementsPreferencesClient {
658658
}
659659

660660
/**
661+
* NOTE: This function is deprecated in favor of listAnnouncementsPreferencesRecordIterator function.
661662
* Creates a new async iterator which will iterate over the models.AnnouncementsPreferencesSummary objects
662663
* contained in responses from the listAnnouncementsPreferences operation. This iterator will fetch more data from the
663664
* server as needed.
@@ -671,6 +672,7 @@ export class AnnouncementsPreferencesClient {
671672
}
672673

673674
/**
675+
* NOTE: This function is deprecated in favor of listAnnouncementsPreferencesResponseIterator function.
674676
* Creates a new async iterator which will iterate over the responses received from the listAnnouncementsPreferences operation. This iterator
675677
* will fetch more data from the server as needed.
676678
*
@@ -682,6 +684,31 @@ export class AnnouncementsPreferencesClient {
682684
return paginateResponses(request, req => this.listAnnouncementsPreferences(req));
683685
}
684686

687+
/**
688+
* Creates a new async iterator which will iterate over the models.AnnouncementsPreferencesSummary objects
689+
* contained in responses from the listAnnouncementsPreferences operation. This iterator will fetch more data from the
690+
* server as needed.
691+
*
692+
* @param request a request which can be sent to the service operation
693+
*/
694+
public listAnnouncementsPreferencesRecordIterator(
695+
request: requests.ListAnnouncementsPreferencesRequest
696+
): AsyncIterableIterator<model.AnnouncementsPreferencesSummary> {
697+
return paginateRecords(request, req => this.listAnnouncementsPreferences(req));
698+
}
699+
700+
/**
701+
* Creates a new async iterator which will iterate over the responses received from the listAnnouncementsPreferences operation. This iterator
702+
* will fetch more data from the server as needed.
703+
*
704+
* @param request a request which can be sent to the service operation
705+
*/
706+
public listAnnouncementsPreferencesResponseIterator(
707+
request: requests.ListAnnouncementsPreferencesRequest
708+
): AsyncIterableIterator<responses.ListAnnouncementsPreferencesResponse> {
709+
return paginateResponses(request, req => this.listAnnouncementsPreferences(req));
710+
}
711+
685712
/**
686713
* Updates the preferences of the tenancy regarding receiving announcements by email.
687714
*

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

lib/apigateway/package.json

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

0 commit comments

Comments
 (0)