Skip to content

Commit

Permalink
Releasing version 2.82.2
Browse files Browse the repository at this point in the history
Releasing version 2.82.2
  • Loading branch information
oci-dex-release-bot authored Mar 19, 2024
2 parents 31ea231 + e1d3030 commit 9a94849
Show file tree
Hide file tree
Showing 248 changed files with 6,715 additions and 171 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/).
## 2.82.2 - 2024-03-19
### Added
- Support for standalone Oracle HTTP server discovery and monitoring in the Stack Monitoring service
- Support for attribute management for traces in the Application Performance Monitoring service
- Support for async jobs and document translations in the AI language service


## 2.82.1 - 2024-03-12
### Added
- Support for new development license type on dedicated infrastructure in the Database service
Expand Down
2 changes: 1 addition & 1 deletion lib/accessgovernancecp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oci-accessgovernancecp",
"version": "2.82.1",
"version": "2.82.2",
"description": "OCI NodeJS client for Access Governance Cp Service",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion lib/adm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oci-adm",
"version": "2.82.1",
"version": "2.82.2",
"description": "OCI NodeJS client for Adm Service",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion lib/aianomalydetection/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oci-aianomalydetection",
"version": "2.82.1",
"version": "2.82.2",
"description": "OCI NodeJS client for Ai Anomaly Detection Service",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion lib/aidocument/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oci-aidocument",
"version": "2.82.1",
"version": "2.82.2",
"description": "OCI NodeJS client for Ai Document Service",
"repository": {
"type": "git",
Expand Down
19 changes: 19 additions & 0 deletions lib/ailanguage/lib/aiservicelanguage-waiter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,25 @@ export class AIServiceLanguageWaiter {
);
}

/**
* Waits forJob till it reaches any of the provided states
*
* @param request the request to send
* @param targetStates the desired states to wait for. The waiter will return once the resource reaches any of the provided states
* @return response returns GetJobResponse | null (null in case of 404 response)
*/
public async forJob(
request: serviceRequests.GetJobRequest,
...targetStates: models.Job.LifecycleState[]
): Promise<serviceResponses.GetJobResponse | null> {
return genericTerminalConditionWaiter(
this.config,
() => this.client.getJob(request),
response => targetStates.includes(response.job.lifecycleState!),
targetStates.includes(models.Job.LifecycleState.Deleted)
);
}

/**
* Waits forModel till it reaches any of the provided states
*
Expand Down
Loading

0 comments on commit 9a94849

Please sign in to comment.