Skip to content

Commit 3d2e872

Browse files
Releasing version 2.110.0
Releasing version 2.110.0
2 parents 152605f + 6307cdc commit 3d2e872

File tree

516 files changed

+16299
-422
lines changed

Some content is hidden

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

516 files changed

+16299
-422
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,28 @@
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.110.0 - 2025-05-27
7+
### Added
8+
- Support for List and Get APIs for out-of-box management dashboard resources in Management Dashboard service
9+
- Support for REST option in HeatWave MySQL service
10+
- Support for warnings in list-application-dependency-vulnerability response for vulnerability audits in Adm service
11+
- Support for HostGroups in Compute service
12+
- Support for ENTERPRISE_EDITION_DEVELOPER enum in Db System Launch and Create DB external backup commands in Database service
13+
- Support for databaseEditionQueryParam in dbSystemInitialStorageSizes, dbSystemStoragePerformance, quotaDefinitions, and internalQuotaDefinitions in Database service
14+
- Support for EmissionType parameter in UsageCarbonEmissionSummary and EmissionCalculationMethod, EmissionType, Granularity parameters in UsageCarbonEmissionsReportQuery in Usage Api service
15+
- Support for querying capacity report under BDSs tenancy in Big Data service
16+
- Support for installing Dataplane Software and python packages updates in Big Data service
17+
- Support for triggering a dry run with OS patch in Big Data service
18+
- Support for NAT on firewall feature in Network Firewall service
19+
- Support for Predictable OIDC Discovery in OKE service
20+
- Support for SQL monitor creation and updation in Application Performance Monitoring Synthetic service
21+
- Support for FTP monitor creation and updation in Application Performance Monitoring Synthetic service
22+
- Support for Demand signal feature in OCI Capacity Management service
23+
- Support for Targeted Launch in Launch Instance API service
24+
25+
### Breaking Changes
26+
- The values for `ATTACHING` and `DETACHING` were removed from the enum model `LifecycleStateEnum` in the Network Firewall service
27+
628
## 2.109.1 - 2025-05-20
729
### Added
830
- Support for the Globally Distributed 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.109.1",
3+
"version": "2.110.0",
44
"description": "OCI NodeJS client for Access Governance Cp Service",
55
"repository": {
66
"type": "git",

lib/adm/lib/model/application-dependency-recommendation-summary.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export interface ApplicationDependencyRecommendationSummary {
2525
*/
2626
"gav": string;
2727
/**
28-
* Package URL defined in https://github.com/package-url/purl-spec, e.g. pkg:maven/org.graalvm.nativeimage/[email protected]
28+
* Package URL identifier, e.g. pkg:maven/org.graalvm.nativeimage/[email protected]
2929
*/
3030
"purl"?: string;
3131
/**
@@ -41,7 +41,7 @@ export interface ApplicationDependencyRecommendationSummary {
4141
*/
4242
"recommendedGav"?: string;
4343
/**
44-
* Recommended application dependency in PURL format, e.g. pkg:maven/org.graalvm.nativeimage/[email protected]
44+
* Recommended application dependency in purl format, e.g. pkg:maven/org.graalvm.nativeimage/[email protected]
4545
*/
4646
"recommendedPurl"?: string;
4747
}

lib/adm/lib/model/application-dependency-vulnerability-summary.ts

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export interface ApplicationDependencyVulnerabilitySummary {
2828
*/
2929
"gav": string;
3030
/**
31-
* Package URL defined in https://github.com/package-url/purl-spec, e.g. pkg:maven/org.graalvm.nativeimage/[email protected]
31+
* Package URL identifier, e.g. pkg:maven/org.graalvm.nativeimage/[email protected]
3232
*/
3333
"purl"?: string;
3434
/**
@@ -44,9 +44,24 @@ export interface ApplicationDependencyVulnerabilitySummary {
4444
*/
4545
"vulnerabilities": Array<model.Vulnerability>;
4646
/**
47-
* Indicates if the artifact is found in the knowledge base.
47+
* Indicates if the artifact is found in the knowledge base, this field is deprecated and will be removed in the future.
4848
*/
4949
"isFoundInKnowledgeBase": boolean;
50+
/**
51+
* Potential issues in the artifact identifiers (purls) provided by the user, that the user is alerted about. ADM supports the following warnings:
52+
* - MISSING_VERSION: Missing version
53+
* - INCORRECT_FORMAT_VERSION: Version can not be parsed according to the ecosystem
54+
* - UNKNOWN_ECOSYSTEM: The purl's ecosystem is unknown to ADM
55+
* - INCORRECT_FORMAT_EPOCH: Epoch qualifier can not be parsed according to the ecosystem
56+
* - MISSING_DISTRO: The distro qualifier is required for the ecosystem, but was not provided in the purl
57+
* - UNKNOWN_DISTRO: ADM does not have data for the provided distro value for the given ecosystem
58+
* - MISSING_ARCH: The arch qualifier is required for the ecosystem and distro, but was not provided in the purl
59+
* - UNKNOWN_ARCH: ADM does not have data for the provided arch value for the given ecosystem and distro
60+
* - EPOCH_VALUE_MISMATCH: Epoch value in qualifier is not the same as the epoch value in version
61+
* - INVALID_PURL: The provided PURL could not be parsed
62+
*
63+
*/
64+
"warnings"?: Array<string>;
5065
}
5166

5267
export namespace ApplicationDependencyVulnerabilitySummary {

lib/adm/lib/model/application-dependency.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ import * as model from "../model";
1515
import common = require("oci-common");
1616

1717
/**
18-
* An application dependency resource creates a vulnerability audit.
18+
* An ApplicationDependency resource is used within the applicationDependencies of a CreateVulnerabilityAuditDetails resource to create a vulnerability audit.
19+
* Each ApplicationDependency resource must provide either Package URL (purl) identifier or a Group Artifact Version (GAV) to identify the application dependency.
20+
*
1921
*/
2022
export interface ApplicationDependency {
2123
/**
@@ -25,7 +27,7 @@ export interface ApplicationDependency {
2527
*/
2628
"gav"?: string;
2729
/**
28-
* Package URL defined in https://github.com/package-url/purl-spec, e.g. pkg:maven/org.graalvm.nativeimage/[email protected]
30+
* Package URL identifier, e.g. pkg:maven/org.graalvm.nativeimage/[email protected]
2931
*/
3032
"purl"?: string;
3133
/**

lib/adm/lib/model/detect-configuration.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import * as model from "../model";
1515
import common = require("oci-common");
1616

1717
/**
18-
* A configuration to define the constraints when detecting vulnerable dependencies.
18+
* A configuration to define the constraints when detecting vulnerable dependencies and recommending remediations.
1919
*
2020
*/
2121
export interface DetectConfiguration {
@@ -32,15 +32,15 @@ export interface DetectConfiguration {
3232
*/
3333
"upgradePolicy"?: DetectConfiguration.UpgradePolicy;
3434
/**
35-
* The maximum Common Vulnerability Scoring System Version 2 (CVSS V2) score. An artifact with a CVSS V2 score below this value is not considered for patching. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
35+
* The maximum Common Vulnerability Scoring System Version 2 (CVSS V2) score. A vulnerability with a CVSS V2 score below this value is not considered for remediation. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
3636
*/
3737
"maxPermissibleCvssV2Score"?: number;
3838
/**
39-
* The maximum Common Vulnerability Scoring System Version 3 (CVSS V3) score. An artifact with a CVSS V3 score below this value is not considered for patching. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
39+
* The maximum Common Vulnerability Scoring System Version 3 (CVSS V3) score. A vulnerability with a CVSS V3 score below this value is not considered for patching. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
4040
*/
4141
"maxPermissibleCvssV3Score"?: number;
4242
/**
43-
* The maximum ADM Severity. An artifact with an ADM Severity below this value is not considered for patching.
43+
* The maximum ADM Severity. A vulnerability with an severity below this value is not considered for remediation.
4444
*/
4545
"maxPermissibleSeverity"?: model.ConfigSeverity;
4646
}

lib/adm/lib/model/network-configuration.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ import * as model from "../model";
1515
import common = require("oci-common");
1616

1717
/**
18-
* A network configuration defines the required network characteristics for an ADM remediation recipe.
19-
* A network configuration is required if the build service is one of: GitHub Actions, GitLab Pipeline, or Jenkins Pipeline.
18+
* A network configuration defines the required network characteristics for the remediation run of the recipe to access the source repository and/or verify build services.
2019
*
2120
*/
2221
export interface NetworkConfiguration {

lib/adm/lib/model/vulnerability.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,15 @@ export interface Vulnerability {
2929
*/
3030
"source"?: string;
3131
/**
32-
* Common Vulnerability Scoring System (CVSS) Version 2. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
32+
* Common Vulnerability Scoring System (CVSS) Version 2, calculated from the metrics provided in the CVSS vector provided from the vulnerability source.
33+
* This field is deprecated and will be removed in the future. The cvssV2Score can be obtained from the metrics field of the listVulnerabilities endpoint.
34+
* Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
3335
*/
3436
"cvssV2Score"?: number;
3537
/**
36-
* Common Vulnerability Scoring System (CVSS) Version 3. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
38+
* Common Vulnerability Scoring System (CVSS) Version 3, calculated from the metrics provided in the CVSS vector provided from the vulnerability source.
39+
* This field is deprecated and will be removed in the future. The cvssV3Score can be obtained from the metrics field of the listVulnerabilities endpoint.
40+
* Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
3741
*/
3842
"cvssV3Score"?: number;
3943
/**

lib/adm/lib/request/list-application-dependency-recommendations-request.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export interface ListApplicationDependencyRecommendationsRequest extends common.
4343
*/
4444
"gav"?: string;
4545
/**
46-
* A filter to return only resources that match the entire PURL given (https://github.com/package-url/purl-spec/).
46+
* A filter to return only resources that match the entire purl given.
4747
*/
4848
"purl"?: string;
4949
/**

lib/adm/lib/request/list-application-dependency-vulnerabilities-request.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export interface ListApplicationDependencyVulnerabilitiesRequest extends common.
8181
*/
8282
"gav"?: string;
8383
/**
84-
* A filter to return only resources that match the entire PURL given (https://github.com/package-url/purl-spec/).
84+
* A filter to return only resources that match the entire purl given.
8585
*/
8686
"purl"?: string;
8787
/**

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

lib/ailanguage/package.json

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

lib/aispeech/package.json

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

lib/aivision/package.json

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

lib/analytics/package.json

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

lib/announcementsservice/package.json

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

lib/apigateway/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-apigateway",
3-
"version": "2.109.1",
3+
"version": "2.110.0",
44
"description": "OCI NodeJS client for API gateway service",
55
"repository": {
66
"type": "git",

lib/apmconfig/package.json

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

lib/apmcontrolplane/package.json

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

lib/apmsynthetics/lib/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1215,7 +1215,7 @@ export class ApmSyntheticClient {
12151215
}
12161216

12171217
/**
1218-
* Gets the results for a specific execution of a monitor identified by OCID. The results are in a HAR file, Screenshot, Console Log or Network details.
1218+
* Gets the results for a specific execution of a monitor identified by OCID. The results are in a HAR file, Screenshot, Console Log, Network details, Diagnostics or Script Content.
12191219
*
12201220
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
12211221
* @param GetMonitorResultRequest

lib/apmsynthetics/lib/model/content-types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ import common = require("oci-common");
2020
export enum ContentTypes {
2121
Side = "SIDE",
2222
Js = "JS",
23+
PlaywrightTs = "PLAYWRIGHT_TS",
2324

2425
/**
2526
* This value is used if a service returns a value for this enum that is not recognized by this

lib/apmsynthetics/lib/model/create-script-details.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import common = require("oci-common");
1616

1717
/**
1818
* Details of the request body used to create a new script.
19-
* Only Side or JavaScript content types are supported and content should be in Side or JavaScript formats only.
19+
* Only Side, JavaScript and Playwright TypeScript content types are supported and content should be in Side, JavaScript and TypeScript formats only.
2020
*
2121
*/
2222
export interface CreateScriptDetails {
@@ -35,7 +35,7 @@ export interface CreateScriptDetails {
3535
* Examples:
3636
* With mandatory param name : {@code <ORAP><ON>param name</ON></ORAP>}
3737
* With parameter name and value : {@code <ORAP><ON>param name</ON><OV>param value</OV></ORAP>}
38-
* Note that the content is valid if it matches the given content type. For example, if the content type is SIDE, then the content should be in Side script format. If the content type is JS, then the content should be in JavaScript format.
38+
* Note that the content is valid if it matches the given content type. For example, if the content type is SIDE, then the content should be in Side script format. If the content type is JS, then the content should be in JavaScript format. If the content type is PLAYWRIGHT_TS, then the content should be in TypeScript format.
3939
*
4040
*/
4141
"content": string;

lib/apmsynthetics/lib/model/monitor-result.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import common = require("oci-common");
2020
export interface MonitorResult {
2121
/**
2222
* Type of result.
23-
* Example: HAR, Screenshot, Log or Network.
23+
* Example: har, screenshot, log, network, diagnostics or script.
2424
*
2525
*/
2626
"resultType"?: string;

lib/apmsynthetics/lib/model/monitor.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,10 @@ export interface Monitor {
4848
* Name of the script.
4949
*/
5050
"scriptName": string;
51+
/**
52+
* Content type of the script.
53+
*/
54+
"contentType"?: model.ContentTypes;
5155
/**
5256
* Enables or disables the monitor.
5357
*/

lib/apmsynthetics/lib/model/script.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export interface Script {
3939
* Examples:
4040
* With mandatory param name : {@code <ORAP><ON>param name</ON></ORAP>}
4141
* With parameter name and value : {@code <ORAP><ON>param name</ON><OV>param value</OV></ORAP>}
42-
* Note that the content is valid if it matches the given content type. For example, if the content type is SIDE, then the content should be in Side script format. If the content type is JS, then the content should be in JavaScript format.
42+
* Note that the content is valid if it matches the given content type. For example, if the content type is SIDE, then the content should be in Side script format. If the content type is JS, then the content should be in JavaScript format. If the content type is PLAYWRIGHT_TS, then the content should be in TypeScript format.
4343
*
4444
*/
4545
"content"?: string;

lib/apmsynthetics/lib/model/update-script-details.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import common = require("oci-common");
1616

1717
/**
1818
* Details of the request body used to update a script.
19-
* Only Side or JavaScript content types are supported and content should be in Side or JavaScript formats only.
19+
* Only Side, JavaScript and Playwright TypeScript content types are supported and content should be in Side, JavaScript and TypeScript formats only.
2020
*
2121
*/
2222
export interface UpdateScriptDetails {
@@ -35,7 +35,7 @@ export interface UpdateScriptDetails {
3535
* Examples:
3636
* With mandatory param name : {@code <ORAP><ON>param name</ON></ORAP>}
3737
* With parameter name and value : {@code <ORAP><ON>param name</ON><OV>param value</OV></ORAP>}
38-
* Note that the content is valid if it matches the given content type. For example, if the content type is SIDE, then the content should be in Side script format. If the content type is JS, then the content should be in JavaScript format.
38+
* Note that the content is valid if it matches the given content type. For example, if the content type is SIDE, then the content should be in Side script format. If the content type is JS, then the content should be in JavaScript format. If the content type is PLAYWRIGHT_TS, then the content should be in TypeScript format.
3939
*
4040
*/
4141
"content"?: string;

lib/apmsynthetics/lib/request/get-monitor-result-request.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export interface GetMonitorResultRequest extends common.BaseRequest {
3333
*/
3434
"vantagePoint": string;
3535
/**
36-
* The result type: har, screenshot, log, or network.
36+
* The result type: har, screenshot, log, network, diagnostics or script.
3737
*
3838
*/
3939
"resultType": string;

lib/apmsynthetics/package.json

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

lib/apmtraces/package.json

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

lib/appmgmtcontrol/package.json

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

lib/artifacts/package.json

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

0 commit comments

Comments
 (0)