google-apis-containeranalysis_v1beta1 0.8.0 → 0.9.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/containeranalysis_v1beta1.rb +1 -1
- data/lib/google/apis/containeranalysis_v1beta1/classes.rb +23 -3
- data/lib/google/apis/containeranalysis_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/containeranalysis_v1beta1/representations.rb +2 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c943a4451bc6ac4d5b1f5c7bc44ad1f26488f42506452e21198c3c5518fa4ef3
|
|
4
|
+
data.tar.gz: 0ccc32d85bdae73d8d68e1d510264ddef5423a24f4a924f5b40c9d9ae28596dd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 764372efeec2a2f0b1d716785adb0314efc8813b44eae180fd7d47e42854833e4ba7e5267f516942020633125352b85480f2860844e32d785c27b88ec96057b6
|
|
7
|
+
data.tar.gz: 031652b30cf9a14af6444ff1854370d8c3e92e304bfb360ad59c0f3148744c79e2e8a127fcb2eb9fd1dbb56a96e93749b7466442e96ed1e74d65a14d5715a7e6
|
data/CHANGELOG.md
CHANGED
|
@@ -30,7 +30,7 @@ module Google
|
|
|
30
30
|
# This is NOT the gem version.
|
|
31
31
|
VERSION = 'V1beta1'
|
|
32
32
|
|
|
33
|
-
# See, edit, configure, and delete your Google Cloud
|
|
33
|
+
# See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
|
|
34
34
|
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
|
35
35
|
end
|
|
36
36
|
end
|
|
@@ -1891,7 +1891,13 @@ module Google
|
|
|
1891
1891
|
|
|
1892
1892
|
# The distro assigned severity for this vulnerability when it is available, and
|
|
1893
1893
|
# note provider assigned severity when distro has not yet assigned a severity
|
|
1894
|
-
# for this vulnerability.
|
|
1894
|
+
# for this vulnerability. When there are multiple PackageIssues for this
|
|
1895
|
+
# vulnerability, they can have different effective severities because some might
|
|
1896
|
+
# be provided by the distro while others are provided by the language ecosystem
|
|
1897
|
+
# for a language pack. For this reason, it is advised to use the effective
|
|
1898
|
+
# severity on the PackageIssue level. In the case where multiple PackageIssues
|
|
1899
|
+
# have differing effective severities, this field should be the highest severity
|
|
1900
|
+
# for any of the PackageIssues.
|
|
1895
1901
|
# Corresponds to the JSON property `effectiveSeverity`
|
|
1896
1902
|
# @return [String]
|
|
1897
1903
|
attr_accessor :effective_severity
|
|
@@ -2651,11 +2657,23 @@ module Google
|
|
|
2651
2657
|
# @return [Google::Apis::ContaineranalysisV1beta1::VulnerabilityLocation]
|
|
2652
2658
|
attr_accessor :affected_location
|
|
2653
2659
|
|
|
2660
|
+
# Output only. The distro or language system assigned severity for this
|
|
2661
|
+
# vulnerability when that is available and note provider assigned severity when
|
|
2662
|
+
# it is not available.
|
|
2663
|
+
# Corresponds to the JSON property `effectiveSeverity`
|
|
2664
|
+
# @return [String]
|
|
2665
|
+
attr_accessor :effective_severity
|
|
2666
|
+
|
|
2654
2667
|
# The location of the vulnerability.
|
|
2655
2668
|
# Corresponds to the JSON property `fixedLocation`
|
|
2656
2669
|
# @return [Google::Apis::ContaineranalysisV1beta1::VulnerabilityLocation]
|
|
2657
2670
|
attr_accessor :fixed_location
|
|
2658
2671
|
|
|
2672
|
+
# The type of package (e.g. OS, MAVEN, GO).
|
|
2673
|
+
# Corresponds to the JSON property `packageType`
|
|
2674
|
+
# @return [String]
|
|
2675
|
+
attr_accessor :package_type
|
|
2676
|
+
|
|
2659
2677
|
# Deprecated, use Details.effective_severity instead The severity (e.g., distro
|
|
2660
2678
|
# assigned severity) for this vulnerability.
|
|
2661
2679
|
# Corresponds to the JSON property `severityName`
|
|
@@ -2669,7 +2687,9 @@ module Google
|
|
|
2669
2687
|
# Update properties of this object
|
|
2670
2688
|
def update!(**args)
|
|
2671
2689
|
@affected_location = args[:affected_location] if args.key?(:affected_location)
|
|
2690
|
+
@effective_severity = args[:effective_severity] if args.key?(:effective_severity)
|
|
2672
2691
|
@fixed_location = args[:fixed_location] if args.key?(:fixed_location)
|
|
2692
|
+
@package_type = args[:package_type] if args.key?(:package_type)
|
|
2673
2693
|
@severity_name = args[:severity_name] if args.key?(:severity_name)
|
|
2674
2694
|
end
|
|
2675
2695
|
end
|
|
@@ -2934,7 +2954,7 @@ module Google
|
|
|
2934
2954
|
# resourcemanager.organizationAdmin - members: - user:eve@example.com role:
|
|
2935
2955
|
# roles/resourcemanager.organizationViewer condition: title: expirable access
|
|
2936
2956
|
# description: Does not grant access after Sep 2020 expression: request.time <
|
|
2937
|
-
# timestamp('2020-10-01T00:00:00.000Z')
|
|
2957
|
+
# timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
|
|
2938
2958
|
# description of IAM and its features, see the [IAM documentation](https://cloud.
|
|
2939
2959
|
# google.com/iam/docs/).
|
|
2940
2960
|
class Policy
|
|
@@ -3236,7 +3256,7 @@ module Google
|
|
|
3236
3256
|
# resourcemanager.organizationAdmin - members: - user:eve@example.com role:
|
|
3237
3257
|
# roles/resourcemanager.organizationViewer condition: title: expirable access
|
|
3238
3258
|
# description: Does not grant access after Sep 2020 expression: request.time <
|
|
3239
|
-
# timestamp('2020-10-01T00:00:00.000Z')
|
|
3259
|
+
# timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
|
|
3240
3260
|
# description of IAM and its features, see the [IAM documentation](https://cloud.
|
|
3241
3261
|
# google.com/iam/docs/).
|
|
3242
3262
|
# Corresponds to the JSON property `policy`
|
|
@@ -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.9.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20210813"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1312,8 +1312,10 @@ module Google
|
|
|
1312
1312
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1313
1313
|
property :affected_location, as: 'affectedLocation', class: Google::Apis::ContaineranalysisV1beta1::VulnerabilityLocation, decorator: Google::Apis::ContaineranalysisV1beta1::VulnerabilityLocation::Representation
|
|
1314
1314
|
|
|
1315
|
+
property :effective_severity, as: 'effectiveSeverity'
|
|
1315
1316
|
property :fixed_location, as: 'fixedLocation', class: Google::Apis::ContaineranalysisV1beta1::VulnerabilityLocation, decorator: Google::Apis::ContaineranalysisV1beta1::VulnerabilityLocation::Representation
|
|
1316
1317
|
|
|
1318
|
+
property :package_type, as: 'packageType'
|
|
1317
1319
|
property :severity_name, as: 'severityName'
|
|
1318
1320
|
end
|
|
1319
1321
|
end
|
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.9.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: 2021-08-
|
|
11
|
+
date: 2021-08-23 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/master/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.9.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-containeranalysis_v1beta1
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|