-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Releasing version 65.56.0
- Loading branch information
Showing
132 changed files
with
11,173 additions
and
436 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,9 +18,6 @@ import ( | |
// ApplicationDependency An application dependency resource creates a vulnerability audit. | ||
type ApplicationDependency struct { | ||
|
||
// Group Artifact Version (GAV) identifier (Group:Artifact:Version), e.g. org.graalvm.nativeimage:svm:21.1.0. | ||
Gav *string `mandatory:"true" json:"gav"` | ||
|
||
// Unique identifier of an application dependency, for example nodeId1. | ||
// The nodeId can be generated by assigning a unique id to each application dependency | ||
// in the tree of application dependencies. | ||
|
@@ -32,6 +29,13 @@ type ApplicationDependency struct { | |
// a GAV can have multiple transitive dependencies.) | ||
NodeId *string `mandatory:"true" json:"nodeId"` | ||
|
||
// Group Artifact Version (GAV) identifier (Group:Artifact:Version). Example: org.graalvm.nativeimage:svm:21.1.0. | ||
// "N/A" for non-maven artifacts. | ||
Gav *string `mandatory:"false" json:"gav"` | ||
|
||
// Package URL defined in https://github.com/package-url/purl-spec, e.g. pkg:maven/org.graalvm.nativeimage/[email protected] | ||
Purl *string `mandatory:"false" json:"purl"` | ||
|
||
// List of application dependencies on which this application dependency depends, each identified by its nodeId. | ||
ApplicationDependencyNodeIds []string `mandatory:"false" json:"applicationDependencyNodeIds"` | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,8 +28,14 @@ type ApplicationDependencyRecommendationSummary struct { | |
// List of (application dependencies) node identifiers from which this node depends. | ||
ApplicationDependencyNodeIds []string `mandatory:"true" json:"applicationDependencyNodeIds"` | ||
|
||
// Package URL defined in https://github.com/package-url/purl-spec, e.g. pkg:maven/org.graalvm.nativeimage/[email protected] | ||
Purl *string `mandatory:"false" json:"purl"` | ||
|
||
// Recommended application dependency in "group:artifact:version" (GAV) format, e.g. org.graalvm.nativeimage:svm:21.2.0. | ||
RecommendedGav *string `mandatory:"false" json:"recommendedGav"` | ||
|
||
// Recommended application dependency in PURL format, e.g. pkg:maven/org.graalvm.nativeimage/[email protected] | ||
RecommendedPurl *string `mandatory:"false" json:"recommendedPurl"` | ||
} | ||
|
||
func (m ApplicationDependencyRecommendationSummary) String() string { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,8 @@ import ( | |
// Each application dependency is uniquely defined by a nodeId and lists eventual dependencies on which it depends. | ||
type ApplicationDependencyVulnerabilitySummary struct { | ||
|
||
// Group Artifact Version (GAV) identifier (Group:Artifact:Version), for example org.graalvm.nativeimage:svm:21.1.0. | ||
// Group Artifact Version (GAV) identifier (Group:Artifact:Version). Example: org.graalvm.nativeimage:svm:21.1.0. | ||
// "N/A" for non-maven artifacts. | ||
Gav *string `mandatory:"true" json:"gav"` | ||
|
||
// Unique identifier of an application dependency, for example nodeId1. | ||
|
@@ -34,6 +35,9 @@ type ApplicationDependencyVulnerabilitySummary struct { | |
|
||
// Indicates if the artifact is found in the knowledge base. | ||
IsFoundInKnowledgeBase *bool `mandatory:"true" json:"isFoundInKnowledgeBase"` | ||
|
||
// Package URL defined in https://github.com/package-url/purl-spec, e.g. pkg:maven/org.graalvm.nativeimage/[email protected] | ||
Purl *string `mandatory:"false" json:"purl"` | ||
} | ||
|
||
func (m ApplicationDependencyVulnerabilitySummary) String() string { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
// Copyright (c) 2016, 2018, 2024, Oracle and/or its affiliates. All rights reserved. | ||
// 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. | ||
// Code generated. DO NOT EDIT. | ||
|
||
// Application Dependency Management API | ||
// | ||
// 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). | ||
// | ||
|
||
package adm | ||
|
||
import ( | ||
"strings" | ||
) | ||
|
||
// ConfigSeverityEnum Enum with underlying type: string | ||
type ConfigSeverityEnum string | ||
|
||
// Set of constants representing the allowable values for ConfigSeverityEnum | ||
const ( | ||
ConfigSeverityUnset ConfigSeverityEnum = "UNSET" | ||
ConfigSeverityNone ConfigSeverityEnum = "NONE" | ||
ConfigSeverityLow ConfigSeverityEnum = "LOW" | ||
ConfigSeverityMedium ConfigSeverityEnum = "MEDIUM" | ||
ConfigSeverityHigh ConfigSeverityEnum = "HIGH" | ||
ConfigSeverityCritical ConfigSeverityEnum = "CRITICAL" | ||
) | ||
|
||
var mappingConfigSeverityEnum = map[string]ConfigSeverityEnum{ | ||
"UNSET": ConfigSeverityUnset, | ||
"NONE": ConfigSeverityNone, | ||
"LOW": ConfigSeverityLow, | ||
"MEDIUM": ConfigSeverityMedium, | ||
"HIGH": ConfigSeverityHigh, | ||
"CRITICAL": ConfigSeverityCritical, | ||
} | ||
|
||
var mappingConfigSeverityEnumLowerCase = map[string]ConfigSeverityEnum{ | ||
"unset": ConfigSeverityUnset, | ||
"none": ConfigSeverityNone, | ||
"low": ConfigSeverityLow, | ||
"medium": ConfigSeverityMedium, | ||
"high": ConfigSeverityHigh, | ||
"critical": ConfigSeverityCritical, | ||
} | ||
|
||
// GetConfigSeverityEnumValues Enumerates the set of values for ConfigSeverityEnum | ||
func GetConfigSeverityEnumValues() []ConfigSeverityEnum { | ||
values := make([]ConfigSeverityEnum, 0) | ||
for _, v := range mappingConfigSeverityEnum { | ||
values = append(values, v) | ||
} | ||
return values | ||
} | ||
|
||
// GetConfigSeverityEnumStringValues Enumerates the set of values in String for ConfigSeverityEnum | ||
func GetConfigSeverityEnumStringValues() []string { | ||
return []string{ | ||
"UNSET", | ||
"NONE", | ||
"LOW", | ||
"MEDIUM", | ||
"HIGH", | ||
"CRITICAL", | ||
} | ||
} | ||
|
||
// GetMappingConfigSeverityEnum performs case Insensitive comparison on enum value and return the desired enum | ||
func GetMappingConfigSeverityEnum(val string) (ConfigSeverityEnum, bool) { | ||
enum, ok := mappingConfigSeverityEnumLowerCase[strings.ToLower(val)] | ||
return enum, ok | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.