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
/**

0 commit comments

Comments
 (0)