Skip to content

Commit dce0ab9

Browse files
Releasing version 2.77.1
Releasing version 2.77.1
2 parents 42ff744 + 4dd2e4f commit dce0ab9

File tree

492 files changed

+13558
-6905
lines changed

Some content is hidden

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

492 files changed

+13558
-6905
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](http://keepachangelog.com/).
6+
## 2.77.1 - 2024-01-23
7+
### Added
8+
- Support for the Generative AI service
9+
- Support for additional currencies and countries for paid listings in the Marketplace service
10+
- Support for process sets in the Stack Monitoring service
11+
12+
613
## 2.77.0 - 2024-01-16
714
### Added
815
- Support for resource id filter on the service work requests in the Container Instances service

examples/typescript/circuit-breaker.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,8 @@ const compartmentId = provider.getTenantId();
5757
} catch (err) {
5858
console.log("what is err: ", err);
5959
}
60+
61+
// Shut down circuit breakers used by clients if they are no longer needed
62+
identityClient.shutdownCircuitBreaker();
63+
auditClient.shutdownCircuitBreaker();
6064
})();

index.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,6 @@ export import announcementsservice = require("oci-announcementsservice");
2424
// API Gateway Service
2525
export import apigateway = require("oci-apigateway");
2626

27-
// Application Migration Service
28-
export import applicationmigration = require("oci-applicationmigration");
29-
3027
// Audit Service
3128
export import audit = require("oci-audit");
3229

@@ -218,3 +215,5 @@ export import marketplacepublisher = require("oci-marketplacepublisher");
218215
export import redis = require("oci-redis");
219216
export import jmsjavadownloads = require("oci-jmsjavadownloads");
220217
export import psql = require("oci-psql");
218+
export import generativeai = require("oci-generativeai");
219+
export import generativeaiinference = require("oci-generativeaiinference");

lib/accessgovernancecp/lib/client.ts

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ import {
2222
GenericRetrier,
2323
developerToolConfiguration
2424
} from "oci-common";
25+
const Breaker = require("opossum");
2526

2627
// ===============================================
2728
// This file is autogenerated - Please do not edit
@@ -40,7 +41,7 @@ export class AccessGovernanceCPClient {
4041
protected "_defaultHeaders": any = {};
4142
protected "_waiters": AccessGovernanceCPWaiter;
4243
protected "_clientConfiguration": common.ClientConfiguration;
43-
protected _circuitBreaker = null;
44+
protected _circuitBreaker: typeof Breaker | null = null;
4445
protected _httpOptions: any = undefined;
4546
protected _bodyDuplexMode: any = undefined;
4647
public targetService = "AccessGovernanceCP";
@@ -205,6 +206,15 @@ export class AccessGovernanceCPClient {
205206
throw Error("Waiters do not exist. Please create waiters.");
206207
}
207208

209+
/**
210+
* Shutdown the circuit breaker used by the client when it is no longer needed
211+
*/
212+
public shutdownCircuitBreaker() {
213+
if (this._circuitBreaker) {
214+
this._circuitBreaker.shutdown();
215+
}
216+
}
217+
208218
/**
209219
* Moves a GovernanceInstance resource from one compartment identifier to another. When provided, If-Match is checked against ETag values of the resource.
210220
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.

lib/accessgovernancecp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-accessgovernancecp",
3-
"version": "2.77.0",
3+
"version": "2.77.1",
44
"description": "OCI NodeJS client for Access Governance Cp Service",
55
"repository": {
66
"type": "git",

lib/adm/lib/client.ts

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ import {
2222
GenericRetrier,
2323
developerToolConfiguration
2424
} from "oci-common";
25+
const Breaker = require("opossum");
2526

2627
// ===============================================
2728
// This file is autogenerated - Please do not edit
@@ -39,7 +40,7 @@ export class ApplicationDependencyManagementClient {
3940
protected "_defaultHeaders": any = {};
4041
protected "_waiters": ApplicationDependencyManagementWaiter;
4142
protected "_clientConfiguration": common.ClientConfiguration;
42-
protected _circuitBreaker = null;
43+
protected _circuitBreaker: typeof Breaker | null = null;
4344
protected _httpOptions: any = undefined;
4445
protected _bodyDuplexMode: any = undefined;
4546
public targetService = "ApplicationDependencyManagement";
@@ -205,6 +206,15 @@ export class ApplicationDependencyManagementClient {
205206
throw Error("Waiters do not exist. Please create waiters.");
206207
}
207208

209+
/**
210+
* Shutdown the circuit breaker used by the client when it is no longer needed
211+
*/
212+
public shutdownCircuitBreaker() {
213+
if (this._circuitBreaker) {
214+
this._circuitBreaker.shutdown();
215+
}
216+
}
217+
208218
/**
209219
* Activates the specified Remediation Recipe.
210220
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.

lib/adm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-adm",
3-
"version": "2.77.0",
3+
"version": "2.77.1",
44
"description": "OCI NodeJS client for Adm Service",
55
"repository": {
66
"type": "git",

lib/aianomalydetection/lib/client.ts

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ import {
2525
GenericRetrier,
2626
developerToolConfiguration
2727
} from "oci-common";
28+
const Breaker = require("opossum");
2829

2930
// ===============================================
3031
// This file is autogenerated - Please do not edit
@@ -43,7 +44,7 @@ export class AnomalyDetectionClient {
4344
protected "_defaultHeaders": any = {};
4445
protected "_waiters": AnomalyDetectionWaiter;
4546
protected "_clientConfiguration": common.ClientConfiguration;
46-
protected _circuitBreaker = null;
47+
protected _circuitBreaker: typeof Breaker | null = null;
4748
protected _httpOptions: any = undefined;
4849
protected _bodyDuplexMode: any = undefined;
4950
public targetService = "AnomalyDetection";
@@ -208,6 +209,15 @@ export class AnomalyDetectionClient {
208209
throw Error("Waiters do not exist. Please create waiters.");
209210
}
210211

212+
/**
213+
* Shutdown the circuit breaker used by the client when it is no longer needed
214+
*/
215+
public shutdownCircuitBreaker() {
216+
if (this._circuitBreaker) {
217+
this._circuitBreaker.shutdown();
218+
}
219+
}
220+
211221
/**
212222
* Cancel work request with the given ID.
213223
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.

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

lib/aidocument/lib/client.ts

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ import {
2222
GenericRetrier,
2323
developerToolConfiguration
2424
} from "oci-common";
25+
const Breaker = require("opossum");
2526

2627
// ===============================================
2728
// This file is autogenerated - Please do not edit
@@ -40,7 +41,7 @@ export class AIServiceDocumentClient {
4041
protected "_defaultHeaders": any = {};
4142
protected "_waiters": AIServiceDocumentWaiter;
4243
protected "_clientConfiguration": common.ClientConfiguration;
43-
protected _circuitBreaker = null;
44+
protected _circuitBreaker: typeof Breaker | null = null;
4445
protected _httpOptions: any = undefined;
4546
protected _bodyDuplexMode: any = undefined;
4647
public targetService = "AIServiceDocument";
@@ -205,6 +206,15 @@ export class AIServiceDocumentClient {
205206
throw Error("Waiters do not exist. Please create waiters.");
206207
}
207208

209+
/**
210+
* Shutdown the circuit breaker used by the client when it is no longer needed
211+
*/
212+
public shutdownCircuitBreaker() {
213+
if (this._circuitBreaker) {
214+
this._circuitBreaker.shutdown();
215+
}
216+
}
217+
208218
/**
209219
* Perform different types of document analysis.
210220
*

0 commit comments

Comments
 (0)