You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+21Lines changed: 21 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,27 @@ All notable changes to this project will be documented in this file.
4
4
5
5
The format is based on [Keep a Changelog](http://keepachangelog.com/)
6
6
7
+
## 65.56.0 - 2024-01-16
8
+
### Added
9
+
- Support for resource id filter on the service work requests in the Container Instances service
10
+
- Support for polyglot vulnerability audit in the Application Dependency Management service
11
+
- Support for create, read, and update operations on peer databases in the Data Safe service
12
+
- Support for dimension specific alarm suppressions in the Monitoring service
13
+
- Support for calculating audit volume in the Data Safe service
14
+
- Support for viewing schema accesses in data safe user assessments in the Data Safe service
15
+
- Support for security feature usage in the Data Safe service
16
+
- Support for viewing the top security findings in data safe security assessments in the Data Safe service
17
+
- Support for additional filters in list findings operation in the Data Safe service
18
+
- Support for updating risk level of the specified finding in the Data Safe service
19
+
20
+
### Breaking Changes
21
+
- The property `OpcWorkRequestId` was removed from the response model `CreateVulnerabilityAuditResponse.cs` in the Application Dependency Management service
22
+
- The property `Gav` was changed from mandatory to optional in `ApplicationDependency` model
23
+
- The property `MaxObservedCvssV2Score`, `MaxObservedCvssV2ScoreWithIgnored` and `MaxObservedCvssV3ScoreWithIgnored` were changed from mandatory to optional in `VulnerabilityAudit` and `VulnerabilityAuditSummary` model
24
+
- The property `CvssV2Score` and `CvssV3Score` were changed from mantory to optional in Vulnerability model
25
+
- The property `OpcWorkRequestId` was changed from mandatory to optional in `CreateVulnerabilityAuditResponse` model
26
+
27
+
7
28
## 65.55.1 - 2024-01-09
8
29
### Added
9
30
- Support for calling Oracle Cloud Infrastructure services in the sa-valparaiso-1 region
// Copyright (c) 2016, 2018, 2024, Oracle and/or its affiliates. All rights reserved.
2
+
// This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
3
+
// Code generated. DO NOT EDIT.
4
+
5
+
// Application Dependency Management API
6
+
//
7
+
// Use the Application Dependency Management API to create knowledge bases and vulnerability audits. For more information, see ADM (https://docs.cloud.oracle.com/Content/application-dependency-management/home.htm).
8
+
//
9
+
10
+
package adm
11
+
12
+
import (
13
+
"strings"
14
+
)
15
+
16
+
// ConfigSeverityEnum Enum with underlying type: string
17
+
typeConfigSeverityEnumstring
18
+
19
+
// Set of constants representing the allowable values for ConfigSeverityEnum
// The type of the build tool is restricted to only two values MAVEN or UNSET. Use UNSET when the list of application dependencies is not Maven-related or is a mix of Maven and other ecosystems. This option is soon to be deprecated.
Copy file name to clipboardExpand all lines: adm/detect_configuration.go
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,9 @@ type DetectConfiguration struct {
31
31
32
32
// 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.
// The field to sort by. Only one sort order may be provided.
40
43
// If sort order is dfs, the nodes are returned by going through the application dependency tree in a depth-first manner. Children are sorted based on their GAV property alphabetically (either ascending or descending, depending on the order parameter). Default order is ascending.
41
44
// If sort order is bfs, the nodes are returned by going through the application dependency tree in a breadth-first manner. Children are sorted based on their GAV property alphabetically (either ascending or descending, depending on the order parameter). Default order is ascending.
42
45
// Default order for gav is ascending where ascending corresponds to alphanumerical order.
46
+
// Default order for purl is ascending where ascending corresponds to alphabetical order
43
47
// Default order for nodeId is ascending where ascending corresponds to alphanumerical order.
44
48
// Sorting by DFS or BFS cannot be used in conjunction with the following query parameters: "gav", "cvssV2GreaterThanOrEqual", "cvssV3GreaterThanOrEqual" and "vulnerabilityId".
0 commit comments