google-apis-containeranalysis_v1beta1 0.48.0 → 0.49.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 29f49916b24e37396bbf29ec240ab41a7e282657bcf3181153579da03e1c5b0f
|
|
4
|
+
data.tar.gz: bcb001cd4f0d6ec09f331a5447e99d2ca5631b65613478956ede7dc4c859f942
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 22b7cc4582326cf2e0b5d5af727878b341c6f83a9495058477482efcda3bb60135047ca99b73cc2a617545188d98d07da6e07efc47c30211731a6ef6b99639be
|
|
7
|
+
data.tar.gz: e247cc6402b63654161de21eaaf9900393189f6b429f3c7b0e9608d9ea52910b5cbe54f4f45a901737a39ba005baed3768b663414f3a3876d50515338bd34b77
|
data/CHANGELOG.md
CHANGED
|
@@ -4139,6 +4139,11 @@ module Google
|
|
|
4139
4139
|
# @return [String]
|
|
4140
4140
|
attr_accessor :effective_severity
|
|
4141
4141
|
|
|
4142
|
+
# Occurrence-specific extra details about the vulnerability.
|
|
4143
|
+
# Corresponds to the JSON property `extraDetails`
|
|
4144
|
+
# @return [String]
|
|
4145
|
+
attr_accessor :extra_details
|
|
4146
|
+
|
|
4142
4147
|
# Output only. A detailed description of this vulnerability.
|
|
4143
4148
|
# Corresponds to the JSON property `longDescription`
|
|
4144
4149
|
# @return [String]
|
|
@@ -4188,6 +4193,7 @@ module Google
|
|
|
4188
4193
|
@cvss_v3 = args[:cvss_v3] if args.key?(:cvss_v3)
|
|
4189
4194
|
@cvss_version = args[:cvss_version] if args.key?(:cvss_version)
|
|
4190
4195
|
@effective_severity = args[:effective_severity] if args.key?(:effective_severity)
|
|
4196
|
+
@extra_details = args[:extra_details] if args.key?(:extra_details)
|
|
4191
4197
|
@long_description = args[:long_description] if args.key?(:long_description)
|
|
4192
4198
|
@package_issue = args[:package_issue] if args.key?(:package_issue)
|
|
4193
4199
|
@related_urls = args[:related_urls] if args.key?(:related_urls)
|
|
@@ -6670,11 +6676,6 @@ module Google
|
|
|
6670
6676
|
# @return [Array<Google::Apis::ContaineranalysisV1beta1::Detail>]
|
|
6671
6677
|
attr_accessor :details
|
|
6672
6678
|
|
|
6673
|
-
# Occurrence-specific extra details about the vulnerability.
|
|
6674
|
-
# Corresponds to the JSON property `extraDetails`
|
|
6675
|
-
# @return [String]
|
|
6676
|
-
attr_accessor :extra_details
|
|
6677
|
-
|
|
6678
6679
|
# Note provider assigned impact of the vulnerability.
|
|
6679
6680
|
# Corresponds to the JSON property `severity`
|
|
6680
6681
|
# @return [String]
|
|
@@ -6707,7 +6708,6 @@ module Google
|
|
|
6707
6708
|
@cvss_version = args[:cvss_version] if args.key?(:cvss_version)
|
|
6708
6709
|
@cwe = args[:cwe] if args.key?(:cwe)
|
|
6709
6710
|
@details = args[:details] if args.key?(:details)
|
|
6710
|
-
@extra_details = args[:extra_details] if args.key?(:extra_details)
|
|
6711
6711
|
@severity = args[:severity] if args.key?(:severity)
|
|
6712
6712
|
@source_update_time = args[:source_update_time] if args.key?(:source_update_time)
|
|
6713
6713
|
@windows_details = args[:windows_details] if args.key?(:windows_details)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module ContaineranalysisV1beta1
|
|
18
18
|
# Version of the google-apis-containeranalysis_v1beta1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.49.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20230929"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -2052,6 +2052,7 @@ module Google
|
|
|
2052
2052
|
|
|
2053
2053
|
property :cvss_version, as: 'cvssVersion'
|
|
2054
2054
|
property :effective_severity, as: 'effectiveSeverity'
|
|
2055
|
+
property :extra_details, as: 'extraDetails'
|
|
2055
2056
|
property :long_description, as: 'longDescription'
|
|
2056
2057
|
collection :package_issue, as: 'packageIssue', class: Google::Apis::ContaineranalysisV1beta1::PackageIssue, decorator: Google::Apis::ContaineranalysisV1beta1::PackageIssue::Representation
|
|
2057
2058
|
|
|
@@ -2718,7 +2719,6 @@ module Google
|
|
|
2718
2719
|
collection :cwe, as: 'cwe'
|
|
2719
2720
|
collection :details, as: 'details', class: Google::Apis::ContaineranalysisV1beta1::Detail, decorator: Google::Apis::ContaineranalysisV1beta1::Detail::Representation
|
|
2720
2721
|
|
|
2721
|
-
property :extra_details, as: 'extraDetails'
|
|
2722
2722
|
property :severity, as: 'severity'
|
|
2723
2723
|
property :source_update_time, as: 'sourceUpdateTime'
|
|
2724
2724
|
collection :windows_details, as: 'windowsDetails', class: Google::Apis::ContaineranalysisV1beta1::WindowsDetail, decorator: Google::Apis::ContaineranalysisV1beta1::WindowsDetail::Representation
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-containeranalysis_v1beta1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.49.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-10-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -58,7 +58,7 @@ licenses:
|
|
|
58
58
|
metadata:
|
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1beta1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1beta1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1beta1/v0.49.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1beta1
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|