Skip to content

Commit 9a94849

Browse files
Releasing version 2.82.2
Releasing version 2.82.2
2 parents 31ea231 + e1d3030 commit 9a94849

File tree

248 files changed

+6715
-171
lines changed

Some content is hidden

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

248 files changed

+6715
-171
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.82.2 - 2024-03-19
7+
### Added
8+
- Support for standalone Oracle HTTP server discovery and monitoring in the Stack Monitoring service
9+
- Support for attribute management for traces in the Application Performance Monitoring service
10+
- Support for async jobs and document translations in the AI language service
11+
12+
613
## 2.82.1 - 2024-03-12
714
### Added
815
- Support for new development license type on dedicated infrastructure in the Database service

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.82.1",
3+
"version": "2.82.2",
44
"description": "OCI NodeJS client for Access Governance Cp Service",
55
"repository": {
66
"type": "git",

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

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

lib/aidocument/package.json

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

lib/ailanguage/lib/aiservicelanguage-waiter.ts

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,25 @@ export class AIServiceLanguageWaiter {
4545
);
4646
}
4747

48+
/**
49+
* Waits forJob till it reaches any of the provided states
50+
*
51+
* @param request the request to send
52+
* @param targetStates the desired states to wait for. The waiter will return once the resource reaches any of the provided states
53+
* @return response returns GetJobResponse | null (null in case of 404 response)
54+
*/
55+
public async forJob(
56+
request: serviceRequests.GetJobRequest,
57+
...targetStates: models.Job.LifecycleState[]
58+
): Promise<serviceResponses.GetJobResponse | null> {
59+
return genericTerminalConditionWaiter(
60+
this.config,
61+
() => this.client.getJob(request),
62+
response => targetStates.includes(response.job.lifecycleState!),
63+
targetStates.includes(models.Job.LifecycleState.Deleted)
64+
);
65+
}
66+
4867
/**
4968
* Waits forModel till it reaches any of the provided states
5069
*

0 commit comments

Comments
 (0)