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

+12
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

-4
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

+1-1
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

-4
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

+1-1
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

-4
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

+1-1
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

-8
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

+1-1
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

-16
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

lib/apigateway/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-apigateway",
3-
"version": "2.1.0",
3+
"version": "2.2.0",
44
"description": "OCI NodeJS client for API gateway service",
55
"repository": {
66
"type": "git",

lib/apmcontrolplane/lib/client.ts

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

lib/apmcontrolplane/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-apmcontrolplane",
3-
"version": "2.1.0",
3+
"version": "2.2.0",
44
"description": "OCI NodeJS client for Apm Control Plane Service",
55
"repository": {
66
"type": "git",

lib/apmsynthetics/lib/client.ts

-4
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,6 @@ export class ApmSyntheticClient {
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

lib/apmsynthetics/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-apmsynthetics",
3-
"version": "2.1.0",
3+
"version": "2.2.0",
44
"description": "OCI NodeJS client for Apm Synthetics Service",
55
"repository": {
66
"type": "git",

lib/apmtraces/lib/client.ts

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

@@ -393,10 +389,6 @@ export class TraceClient {
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/apmtraces/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-apmtraces",
3-
"version": "2.1.0",
3+
"version": "2.2.0",
44
"description": "OCI NodeJS client for Apm Traces Service",
55
"repository": {
66
"type": "git",

lib/applicationmigration/lib/client.ts

-4
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,6 @@ export class ApplicationMigrationClient {
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

lib/applicationmigration/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-applicationmigration",
3-
"version": "2.1.0",
3+
"version": "2.2.0",
44
"description": "OCI NodeJS client for Application Migration service",
55
"repository": {
66
"type": "git",

lib/artifacts/lib/client.ts

-4
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,6 @@ export class ArtifactsClient {
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/artifacts/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-artifacts",
3-
"version": "2.1.0",
3+
"version": "2.2.0",
44
"description": "OCI NodeJS client for Artifacts Service",
55
"repository": {
66
"type": "git",

lib/audit/lib/client.ts

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

lib/audit/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-audit",
3-
"version": "2.1.0",
3+
"version": "2.2.0",
44
"description": "OCI NodeJS client for Audit Service",
55
"repository": {
66
"type": "git",

lib/autoscaling/lib/client.ts

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

lib/autoscaling/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-autoscaling",
3-
"version": "2.1.0",
3+
"version": "2.2.0",
44
"description": "OCI NodeJS client for Autoscaling Service",
55
"repository": {
66
"type": "git",

lib/bastion/lib/client.ts

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

lib/bastion/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-bastion",
3-
"version": "2.1.0",
3+
"version": "2.2.0",
44
"description": "OCI NodeJS client for Bastion Service",
55
"repository": {
66
"type": "git",

lib/bds/lib/client.ts

-8
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,6 @@ export class BdsClient {
4646
this._circuitBreaker = clientConfiguration.circuitBreaker
4747
? clientConfiguration.circuitBreaker!.circuit
4848
: null;
49-
if (!clientConfiguration.retryConfiguration) {
50-
this._clientConfiguration.retryConfiguration = common.NoRetryConfigurationDetails;
51-
}
52-
} else {
53-
// Disable default retries for the service
54-
this._clientConfiguration = {
55-
retryConfiguration: common.NoRetryConfigurationDetails
56-
};
5749
}
5850
this._httpClient =
5951
params.httpClient || new common.FetchHttpClient(requestSigner, this._circuitBreaker);

lib/bds/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-bds",
3-
"version": "2.1.0",
3+
"version": "2.2.0",
44
"description": "OCI NodeJS client for BDS Service",
55
"repository": {
66
"type": "git",

lib/blockchain/lib/client.ts

-4
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,6 @@ export class BlockchainPlatformClient {
4444
? clientConfiguration.circuitBreaker!.circuit
4545
: null;
4646
}
47-
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
48-
if (!this._circuitBreaker && common.utils.isCircuitBreakerSystemEnabled(clientConfiguration!)) {
49-
this._circuitBreaker = new common.CircuitBreaker().circuit;
50-
}
5147
this._httpClient =
5248
params.httpClient || new common.FetchHttpClient(requestSigner, this._circuitBreaker);
5349

lib/blockchain/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-blockchain",
3-
"version": "2.1.0",
3+
"version": "2.2.0",
44
"description": "OCI NodeJS client for Blockchain Service",
55
"repository": {
66
"type": "git",

lib/budget/lib/client.ts

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

lib/budget/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-budget",
3-
"version": "2.1.0",
3+
"version": "2.2.0",
44
"description": "OCI NodeJS client for Budget Service",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)