Skip to content

Commit 07d70cf

Browse files
authored
Releasing version 2.2.0
Releasing version 2.2.0
2 parents 28a105f + 7ed8da6 commit 07d70cf

File tree

194 files changed

+1242
-630
lines changed

Some content is hidden

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

194 files changed

+1242
-630
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@ 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.2.0 - 2021-08-17
7+
### Added
8+
- Support for getting management agent hosts which are eligible to create Operations Insights host resources on, in the Operations Insights service
9+
- Support for getting summarized agent counts and summarized plugin counts in the Management Agent Cloud service
10+
11+
### Breaking changes
12+
- Removed default retries and default circuit breakers from all the services
13+
- The model `WorkSubmissionKey` has been removed from the Management Agent Cloud service
14+
- The data type of property `pluginName` in `ListManagementAgentsRequest` has been changed to `Array<string>` in the Management Agent Cloud service
15+
- The data type of property `version` in `ListManagementAgentsRequest` has been changed to `Array<string>` in the Management Agent Cloud service
16+
- The data type of property `platformType` in `ListManagementAgentsRequest` has been changed to `Array<model.PlatformTypes>` in the Management Agent Cloud service
17+
618
## 2.1.0 - 2021-08-03
719
### Added
820
- Support for manually copying volume group backups across regions in the Block Volume service

lib/aianomalydetection/lib/client.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,6 @@ export class AnomalyDetectionClient {
4848
? clientConfiguration.circuitBreaker!.circuit
4949
: null;
5050
}
51-
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
52-
if (!this._circuitBreaker && common.utils.isCircuitBreakerSystemEnabled(clientConfiguration!)) {
53-
this._circuitBreaker = new common.CircuitBreaker().circuit;
54-
}
5551
this._httpClient =
5652
params.httpClient || new common.FetchHttpClient(requestSigner, this._circuitBreaker);
5753

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.1.0",
3+
"version": "2.2.0",
44
"description": "OCI NodeJS client for Ai Anomaly Detection Service",
55
"repository": {
66
"type": "git",

lib/ailanguage/lib/client.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,6 @@ export class AIServiceLanguageClient {
4646
? clientConfiguration.circuitBreaker!.circuit
4747
: null;
4848
}
49-
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
50-
if (!this._circuitBreaker && common.utils.isCircuitBreakerSystemEnabled(clientConfiguration!)) {
51-
this._circuitBreaker = new common.CircuitBreaker().circuit;
52-
}
5349
this._httpClient =
5450
params.httpClient || new common.FetchHttpClient(requestSigner, this._circuitBreaker);
5551

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

lib/analytics/lib/client.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,6 @@ export class AnalyticsClient {
4646
? clientConfiguration.circuitBreaker!.circuit
4747
: null;
4848
}
49-
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
50-
if (!this._circuitBreaker && common.utils.isCircuitBreakerSystemEnabled(clientConfiguration!)) {
51-
this._circuitBreaker = new common.CircuitBreaker().circuit;
52-
}
5349
this._httpClient =
5450
params.httpClient || new common.FetchHttpClient(requestSigner, this._circuitBreaker);
5551

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

lib/announcementsservice/lib/client.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,6 @@ export class AnnouncementClient {
4343
? clientConfiguration.circuitBreaker!.circuit
4444
: null;
4545
}
46-
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
47-
if (!this._circuitBreaker && common.utils.isCircuitBreakerSystemEnabled(clientConfiguration!)) {
48-
this._circuitBreaker = new common.CircuitBreaker().circuit;
49-
}
5046
this._httpClient =
5147
params.httpClient || new common.FetchHttpClient(requestSigner, this._circuitBreaker);
5248

@@ -393,10 +389,6 @@ export class AnnouncementsPreferencesClient {
393389
? clientConfiguration.circuitBreaker!.circuit
394390
: null;
395391
}
396-
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
397-
if (!this._circuitBreaker && common.utils.isCircuitBreakerSystemEnabled(clientConfiguration!)) {
398-
this._circuitBreaker = new common.CircuitBreaker().circuit;
399-
}
400392
this._httpClient =
401393
params.httpClient || new common.FetchHttpClient(requestSigner, this._circuitBreaker);
402394

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

lib/apigateway/lib/client.ts

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,6 @@ export class ApiGatewayClient {
5050
? clientConfiguration.circuitBreaker!.circuit
5151
: null;
5252
}
53-
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
54-
if (!this._circuitBreaker && common.utils.isCircuitBreakerSystemEnabled(clientConfiguration!)) {
55-
this._circuitBreaker = new common.CircuitBreaker().circuit;
56-
}
5753
this._httpClient =
5854
params.httpClient || new common.FetchHttpClient(requestSigner, this._circuitBreaker);
5955

@@ -1594,10 +1590,6 @@ export class DeploymentClient {
15941590
? clientConfiguration.circuitBreaker!.circuit
15951591
: null;
15961592
}
1597-
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
1598-
if (!this._circuitBreaker && common.utils.isCircuitBreakerSystemEnabled(clientConfiguration!)) {
1599-
this._circuitBreaker = new common.CircuitBreaker().circuit;
1600-
}
16011593
this._httpClient =
16021594
params.httpClient || new common.FetchHttpClient(requestSigner, this._circuitBreaker);
16031595

@@ -2120,10 +2112,6 @@ export class GatewayClient {
21202112
? clientConfiguration.circuitBreaker!.circuit
21212113
: null;
21222114
}
2123-
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
2124-
if (!this._circuitBreaker && common.utils.isCircuitBreakerSystemEnabled(clientConfiguration!)) {
2125-
this._circuitBreaker = new common.CircuitBreaker().circuit;
2126-
}
21272115
this._httpClient =
21282116
params.httpClient || new common.FetchHttpClient(requestSigner, this._circuitBreaker);
21292117

@@ -2645,10 +2633,6 @@ export class WorkRequestsClient {
26452633
? clientConfiguration.circuitBreaker!.circuit
26462634
: null;
26472635
}
2648-
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
2649-
if (!this._circuitBreaker && common.utils.isCircuitBreakerSystemEnabled(clientConfiguration!)) {
2650-
this._circuitBreaker = new common.CircuitBreaker().circuit;
2651-
}
26522636
this._httpClient =
26532637
params.httpClient || new common.FetchHttpClient(requestSigner, this._circuitBreaker);
26542638

0 commit comments

Comments
 (0)