Skip to content

Commit 4b59959

Browse files
Releasing version 2.53.0
Releasing version 2.53.0
2 parents 3b4cfcb + 948d9d8 commit 4b59959

File tree

433 files changed

+21461
-2499
lines changed

Some content is hidden

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

433 files changed

+21461
-2499
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@ 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.53.0 - 2023-02-21
7+
### Added
8+
- Support for async jobs in the AI Anomaly Detection service
9+
- Support for specifying algorithm hints and windows sizes during model training in the AI Anomaly Detection service
10+
- Support for specifying a sensitivity value during model detection in the AI Anomaly Detection service
11+
- Support for discovery and monitoring of external Oracle database infrastructure components in the Database Management service
12+
13+
### Breaking Changes
14+
- The type for property `systemTags` was changed from an object of objects to objects of any for `ProjectSummary`, `Project`, `ModelSummary`, `Model`, `DataAssetSummary`, `DataAsset`, `AiPrivateEndpointSummary`, `AiPrivateEndpoint` models in the AI Anomaly Detection service
15+
16+
617
## 2.52.0 - 2023-02-14
718
### Added
819
- Support for the Visual Builder Studio service

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

lib/aianomalydetection/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Oracle Cloud AI Services API
2+
* Anomaly Detection API
33
* OCI AI Service solutions can help Enterprise customers integrate AI into their products immediately by using our proven,
44
pre-trained/custom models or containers, and without a need to set up in house team of AI and ML experts.
55
This allows enterprises to focus on business drivers and development work rather than AI/ML operations, shortening the time to market.

lib/aianomalydetection/lib/anomalydetection-waiter.ts

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Oracle Cloud AI Services API
2+
* Anomaly Detection API
33
* OCI AI Service solutions can help Enterprise customers integrate AI into their products immediately by using our proven,
44
pre-trained/custom models or containers, and without a need to set up in house team of AI and ML experts.
55
This allows enterprises to focus on business drivers and development work rather than AI/ML operations, shortening the time to market.
@@ -64,6 +64,24 @@ export class AnomalyDetectionWaiter {
6464
);
6565
}
6666

67+
/**
68+
* Waits forDetectAnomalyJob till it reaches any of the provided states
69+
*
70+
* @param request the request to send
71+
* @param targetStates the desired states to wait for. The waiter will return once the resource reaches any of the provided states
72+
* @return response returns GetDetectAnomalyJobResponse
73+
*/
74+
public async forDetectAnomalyJob(
75+
request: serviceRequests.GetDetectAnomalyJobRequest,
76+
...targetStates: models.DetectAnomalyJob.LifecycleState[]
77+
): Promise<serviceResponses.GetDetectAnomalyJobResponse> {
78+
return genericWaiter(
79+
this.config,
80+
() => this.client.getDetectAnomalyJob(request),
81+
response => targetStates.includes(response.detectAnomalyJob.lifecycleState!)
82+
);
83+
}
84+
6785
/**
6886
* Waits forModel till it reaches any of the provided states
6987
*

lib/aianomalydetection/lib/client.ts

Lines changed: 599 additions & 91 deletions
Large diffs are not rendered by default.

lib/aianomalydetection/lib/model/action-type.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Oracle Cloud AI Services API
2+
* Anomaly Detection API
33
* OCI AI Service solutions can help Enterprise customers integrate AI into their products immediately by using our proven,
44
pre-trained/custom models or containers, and without a need to set up in house team of AI and ML experts.
55
This allows enterprises to focus on business drivers and development work rather than AI/ML operations, shortening the time to market.

lib/aianomalydetection/lib/model/ai-private-endpoint-collection.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Oracle Cloud AI Services API
2+
* Anomaly Detection API
33
* OCI AI Service solutions can help Enterprise customers integrate AI into their products immediately by using our proven,
44
pre-trained/custom models or containers, and without a need to set up in house team of AI and ML experts.
55
This allows enterprises to focus on business drivers and development work rather than AI/ML operations, shortening the time to market.

lib/aianomalydetection/lib/model/ai-private-endpoint-summary.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Oracle Cloud AI Services API
2+
* Anomaly Detection API
33
* OCI AI Service solutions can help Enterprise customers integrate AI into their products immediately by using our proven,
44
pre-trained/custom models or containers, and without a need to set up in house team of AI and ML experts.
55
This allows enterprises to focus on business drivers and development work rather than AI/ML operations, shortening the time to market.
@@ -69,10 +69,10 @@ export interface AiPrivateEndpointSummary {
6969
"definedTags"?: { [key: string]: { [key: string]: any } };
7070
/**
7171
* Usage of system tag keys. These predefined keys are scoped to namespaces.
72-
* Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`
72+
* Example: `{ \"orcl-cloud\": { \"free-tier-retained\": \"true\" } }`
7373
*
7474
*/
75-
"systemTags"?: { [key: string]: { [key: string]: any } };
75+
"systemTags"?: { [key: string]: any };
7676
/**
7777
* The current state of the private endpoint resource.
7878
*/

lib/aianomalydetection/lib/model/ai-private-endpoint.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Oracle Cloud AI Services API
2+
* Anomaly Detection API
33
* OCI AI Service solutions can help Enterprise customers integrate AI into their products immediately by using our proven,
44
pre-trained/custom models or containers, and without a need to set up in house team of AI and ML experts.
55
This allows enterprises to focus on business drivers and development work rather than AI/ML operations, shortening the time to market.
@@ -65,10 +65,10 @@ export interface AiPrivateEndpoint {
6565
"definedTags"?: { [key: string]: { [key: string]: any } };
6666
/**
6767
* Usage of system tag keys. These predefined keys are scoped to namespaces.
68-
* Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`
68+
* Example: `{ \"orcl-cloud\": { \"free-tier-retained\": \"true\" } }`
6969
*
7070
*/
71-
"systemTags"?: { [key: string]: { [key: string]: any } };
71+
"systemTags"?: { [key: string]: any };
7272
/**
7373
* The current state of the private endpoint resource.
7474
*/

lib/aianomalydetection/lib/model/anomaly-detect-result.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Oracle Cloud AI Services API
2+
* Anomaly Detection API
33
* OCI AI Service solutions can help Enterprise customers integrate AI into their products immediately by using our proven,
44
pre-trained/custom models or containers, and without a need to set up in house team of AI and ML experts.
55
This allows enterprises to focus on business drivers and development work rather than AI/ML operations, shortening the time to market.

0 commit comments

Comments
 (0)