google-apis-containeranalysis_v1beta1 0.47.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
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-containeranalysis_v1beta1
|
|
2
2
|
|
|
3
|
+
### v0.49.0 (2023-10-08)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20230929
|
|
6
|
+
|
|
7
|
+
### v0.48.0 (2023-09-24)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20230915
|
|
10
|
+
|
|
3
11
|
### v0.47.0 (2023-09-10)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20230829
|
|
@@ -2514,6 +2514,16 @@ module Google
|
|
|
2514
2514
|
# @return [Hash<String,Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes>]
|
|
2515
2515
|
attr_accessor :file_hashes
|
|
2516
2516
|
|
|
2517
|
+
# Location of the source in a 2nd-gen Google Cloud Build repository resource.
|
|
2518
|
+
# Corresponds to the JSON property `resolvedConnectedRepository`
|
|
2519
|
+
# @return [Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository]
|
|
2520
|
+
attr_accessor :resolved_connected_repository
|
|
2521
|
+
|
|
2522
|
+
# Location of the source in any accessible Git repository.
|
|
2523
|
+
# Corresponds to the JSON property `resolvedGitSource`
|
|
2524
|
+
# @return [Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource]
|
|
2525
|
+
attr_accessor :resolved_git_source
|
|
2526
|
+
|
|
2517
2527
|
# Location of the source in a Google Cloud Source Repository.
|
|
2518
2528
|
# Corresponds to the JSON property `resolvedRepoSource`
|
|
2519
2529
|
# @return [Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1RepoSource]
|
|
@@ -2538,6 +2548,8 @@ module Google
|
|
|
2538
2548
|
# Update properties of this object
|
|
2539
2549
|
def update!(**args)
|
|
2540
2550
|
@file_hashes = args[:file_hashes] if args.key?(:file_hashes)
|
|
2551
|
+
@resolved_connected_repository = args[:resolved_connected_repository] if args.key?(:resolved_connected_repository)
|
|
2552
|
+
@resolved_git_source = args[:resolved_git_source] if args.key?(:resolved_git_source)
|
|
2541
2553
|
@resolved_repo_source = args[:resolved_repo_source] if args.key?(:resolved_repo_source)
|
|
2542
2554
|
@resolved_storage_source = args[:resolved_storage_source] if args.key?(:resolved_storage_source)
|
|
2543
2555
|
@resolved_storage_source_manifest = args[:resolved_storage_source_manifest] if args.key?(:resolved_storage_source_manifest)
|
|
@@ -3069,6 +3081,11 @@ module Google
|
|
|
3069
3081
|
# @return [String]
|
|
3070
3082
|
attr_accessor :last_analysis_time
|
|
3071
3083
|
|
|
3084
|
+
# The last time this resource was scanned.
|
|
3085
|
+
# Corresponds to the JSON property `lastScanTime`
|
|
3086
|
+
# @return [String]
|
|
3087
|
+
attr_accessor :last_scan_time
|
|
3088
|
+
|
|
3072
3089
|
# The status of an SBOM generation.
|
|
3073
3090
|
# Corresponds to the JSON property `sbomStatus`
|
|
3074
3091
|
# @return [Google::Apis::ContaineranalysisV1beta1::SbomStatus]
|
|
@@ -3086,6 +3103,7 @@ module Google
|
|
|
3086
3103
|
@analysis_status_error = args[:analysis_status_error] if args.key?(:analysis_status_error)
|
|
3087
3104
|
@continuous_analysis = args[:continuous_analysis] if args.key?(:continuous_analysis)
|
|
3088
3105
|
@last_analysis_time = args[:last_analysis_time] if args.key?(:last_analysis_time)
|
|
3106
|
+
@last_scan_time = args[:last_scan_time] if args.key?(:last_scan_time)
|
|
3089
3107
|
@sbom_status = args[:sbom_status] if args.key?(:sbom_status)
|
|
3090
3108
|
end
|
|
3091
3109
|
end
|
|
@@ -3164,7 +3182,7 @@ module Google
|
|
|
3164
3182
|
end
|
|
3165
3183
|
|
|
3166
3184
|
# DocumentNote represents an SPDX Document Creation Information section: https://
|
|
3167
|
-
# spdx.github.io/spdx-spec/
|
|
3185
|
+
# spdx.github.io/spdx-spec/2-document-creation-information/
|
|
3168
3186
|
class DocumentNote
|
|
3169
3187
|
include Google::Apis::Core::Hashable
|
|
3170
3188
|
|
|
@@ -3192,7 +3210,7 @@ module Google
|
|
|
3192
3210
|
end
|
|
3193
3211
|
|
|
3194
3212
|
# DocumentOccurrence represents an SPDX Document Creation Information section:
|
|
3195
|
-
# https://spdx.github.io/spdx-spec/
|
|
3213
|
+
# https://spdx.github.io/spdx-spec/2-document-creation-information/
|
|
3196
3214
|
class DocumentOccurrence
|
|
3197
3215
|
include Google::Apis::Core::Hashable
|
|
3198
3216
|
|
|
@@ -4121,6 +4139,11 @@ module Google
|
|
|
4121
4139
|
# @return [String]
|
|
4122
4140
|
attr_accessor :effective_severity
|
|
4123
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
|
+
|
|
4124
4147
|
# Output only. A detailed description of this vulnerability.
|
|
4125
4148
|
# Corresponds to the JSON property `longDescription`
|
|
4126
4149
|
# @return [String]
|
|
@@ -4170,6 +4193,7 @@ module Google
|
|
|
4170
4193
|
@cvss_v3 = args[:cvss_v3] if args.key?(:cvss_v3)
|
|
4171
4194
|
@cvss_version = args[:cvss_version] if args.key?(:cvss_version)
|
|
4172
4195
|
@effective_severity = args[:effective_severity] if args.key?(:effective_severity)
|
|
4196
|
+
@extra_details = args[:extra_details] if args.key?(:extra_details)
|
|
4173
4197
|
@long_description = args[:long_description] if args.key?(:long_description)
|
|
4174
4198
|
@package_issue = args[:package_issue] if args.key?(:package_issue)
|
|
4175
4199
|
@related_urls = args[:related_urls] if args.key?(:related_urls)
|
|
@@ -4772,7 +4796,7 @@ module Google
|
|
|
4772
4796
|
attr_accessor :related_url
|
|
4773
4797
|
|
|
4774
4798
|
# DocumentNote represents an SPDX Document Creation Information section: https://
|
|
4775
|
-
# spdx.github.io/spdx-spec/
|
|
4799
|
+
# spdx.github.io/spdx-spec/2-document-creation-information/
|
|
4776
4800
|
# Corresponds to the JSON property `sbom`
|
|
4777
4801
|
# @return [Google::Apis::ContaineranalysisV1beta1::DocumentNote]
|
|
4778
4802
|
attr_accessor :sbom
|
|
@@ -4936,7 +4960,7 @@ module Google
|
|
|
4936
4960
|
attr_accessor :resource
|
|
4937
4961
|
|
|
4938
4962
|
# DocumentOccurrence represents an SPDX Document Creation Information section:
|
|
4939
|
-
# https://spdx.github.io/spdx-spec/
|
|
4963
|
+
# https://spdx.github.io/spdx-spec/2-document-creation-information/
|
|
4940
4964
|
# Corresponds to the JSON property `sbom`
|
|
4941
4965
|
# @return [Google::Apis::ContaineranalysisV1beta1::DocumentOccurrence]
|
|
4942
4966
|
attr_accessor :sbom
|
|
@@ -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
|
|
@@ -1588,6 +1588,10 @@ module Google
|
|
|
1588
1588
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1589
1589
|
hash :file_hashes, as: 'fileHashes', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes::Representation
|
|
1590
1590
|
|
|
1591
|
+
property :resolved_connected_repository, as: 'resolvedConnectedRepository', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository::Representation
|
|
1592
|
+
|
|
1593
|
+
property :resolved_git_source, as: 'resolvedGitSource', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource::Representation
|
|
1594
|
+
|
|
1591
1595
|
property :resolved_repo_source, as: 'resolvedRepoSource', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1RepoSource, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1RepoSource::Representation
|
|
1592
1596
|
|
|
1593
1597
|
property :resolved_storage_source, as: 'resolvedStorageSource', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSource, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSource::Representation
|
|
@@ -1745,6 +1749,7 @@ module Google
|
|
|
1745
1749
|
|
|
1746
1750
|
property :continuous_analysis, as: 'continuousAnalysis'
|
|
1747
1751
|
property :last_analysis_time, as: 'lastAnalysisTime'
|
|
1752
|
+
property :last_scan_time, as: 'lastScanTime'
|
|
1748
1753
|
property :sbom_status, as: 'sbomStatus', class: Google::Apis::ContaineranalysisV1beta1::SbomStatus, decorator: Google::Apis::ContaineranalysisV1beta1::SbomStatus::Representation
|
|
1749
1754
|
|
|
1750
1755
|
end
|
|
@@ -2047,6 +2052,7 @@ module Google
|
|
|
2047
2052
|
|
|
2048
2053
|
property :cvss_version, as: 'cvssVersion'
|
|
2049
2054
|
property :effective_severity, as: 'effectiveSeverity'
|
|
2055
|
+
property :extra_details, as: 'extraDetails'
|
|
2050
2056
|
property :long_description, as: 'longDescription'
|
|
2051
2057
|
collection :package_issue, as: 'packageIssue', class: Google::Apis::ContaineranalysisV1beta1::PackageIssue, decorator: Google::Apis::ContaineranalysisV1beta1::PackageIssue::Representation
|
|
2052
2058
|
|
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: []
|