google-apis-containeranalysis_v1alpha1 0.54.0 → 0.56.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: a797482e1043c194167762058fffaee213ff475dad75f7f2e689eefafbe94fa5
|
4
|
+
data.tar.gz: 3fc114ecd2653b652c036b3a2d791575af9f653e4ab05ac8474dc50dfe5eddb7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f089dfd2ca53cd728bf00e2d527f4b72751b0cb2a7e5d89f896ac5345806ab88283fd2907af5445613035933f15c52fc6018cdc5c9e01a1129aa594c0617d8d9
|
7
|
+
data.tar.gz: f415e43cb7ec602f7be0b7caafdedefe35cd69c7042a05c714647f4cdda96412000269118324c65f8b4ed688dfc312c0f92170cfe8155bc4d87d8bd59fa11f52
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-containeranalysis_v1alpha1
|
2
2
|
|
3
|
+
### v0.56.0 (2023-10-08)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230929
|
6
|
+
|
7
|
+
### v0.55.0 (2023-09-24)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230915
|
10
|
+
|
3
11
|
### v0.54.0 (2023-09-10)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230829
|
@@ -2522,6 +2522,16 @@ module Google
|
|
2522
2522
|
# @return [Hash<String,Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes>]
|
2523
2523
|
attr_accessor :file_hashes
|
2524
2524
|
|
2525
|
+
# Location of the source in a 2nd-gen Google Cloud Build repository resource.
|
2526
|
+
# Corresponds to the JSON property `resolvedConnectedRepository`
|
2527
|
+
# @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository]
|
2528
|
+
attr_accessor :resolved_connected_repository
|
2529
|
+
|
2530
|
+
# Location of the source in any accessible Git repository.
|
2531
|
+
# Corresponds to the JSON property `resolvedGitSource`
|
2532
|
+
# @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource]
|
2533
|
+
attr_accessor :resolved_git_source
|
2534
|
+
|
2525
2535
|
# Location of the source in a Google Cloud Source Repository.
|
2526
2536
|
# Corresponds to the JSON property `resolvedRepoSource`
|
2527
2537
|
# @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1RepoSource]
|
@@ -2546,6 +2556,8 @@ module Google
|
|
2546
2556
|
# Update properties of this object
|
2547
2557
|
def update!(**args)
|
2548
2558
|
@file_hashes = args[:file_hashes] if args.key?(:file_hashes)
|
2559
|
+
@resolved_connected_repository = args[:resolved_connected_repository] if args.key?(:resolved_connected_repository)
|
2560
|
+
@resolved_git_source = args[:resolved_git_source] if args.key?(:resolved_git_source)
|
2549
2561
|
@resolved_repo_source = args[:resolved_repo_source] if args.key?(:resolved_repo_source)
|
2550
2562
|
@resolved_storage_source = args[:resolved_storage_source] if args.key?(:resolved_storage_source)
|
2551
2563
|
@resolved_storage_source_manifest = args[:resolved_storage_source_manifest] if args.key?(:resolved_storage_source_manifest)
|
@@ -7371,6 +7383,11 @@ module Google
|
|
7371
7383
|
# @return [String]
|
7372
7384
|
attr_accessor :effective_severity
|
7373
7385
|
|
7386
|
+
# Occurrence-specific extra details about the vulnerability.
|
7387
|
+
# Corresponds to the JSON property `extraDetails`
|
7388
|
+
# @return [String]
|
7389
|
+
attr_accessor :extra_details
|
7390
|
+
|
7374
7391
|
# The set of affected locations and their fixes (if available) within the
|
7375
7392
|
# associated resource.
|
7376
7393
|
# Corresponds to the JSON property `packageIssue`
|
@@ -7406,6 +7423,7 @@ module Google
|
|
7406
7423
|
@cvss_v3 = args[:cvss_v3] if args.key?(:cvss_v3)
|
7407
7424
|
@cvss_version = args[:cvss_version] if args.key?(:cvss_version)
|
7408
7425
|
@effective_severity = args[:effective_severity] if args.key?(:effective_severity)
|
7426
|
+
@extra_details = args[:extra_details] if args.key?(:extra_details)
|
7409
7427
|
@package_issue = args[:package_issue] if args.key?(:package_issue)
|
7410
7428
|
@severity = args[:severity] if args.key?(:severity)
|
7411
7429
|
@type = args[:type] if args.key?(:type)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ContaineranalysisV1alpha1
|
18
18
|
# Version of the google-apis-containeranalysis_v1alpha1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.56.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
|
@@ -1643,6 +1643,10 @@ module Google
|
|
1643
1643
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1644
1644
|
hash :file_hashes, as: 'fileHashes', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes::Representation
|
1645
1645
|
|
1646
|
+
property :resolved_connected_repository, as: 'resolvedConnectedRepository', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository::Representation
|
1647
|
+
|
1648
|
+
property :resolved_git_source, as: 'resolvedGitSource', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource::Representation
|
1649
|
+
|
1646
1650
|
property :resolved_repo_source, as: 'resolvedRepoSource', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1RepoSource, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1RepoSource::Representation
|
1647
1651
|
|
1648
1652
|
property :resolved_storage_source, as: 'resolvedStorageSource', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSource, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSource::Representation
|
@@ -2949,6 +2953,7 @@ module Google
|
|
2949
2953
|
|
2950
2954
|
property :cvss_version, as: 'cvssVersion'
|
2951
2955
|
property :effective_severity, as: 'effectiveSeverity'
|
2956
|
+
property :extra_details, as: 'extraDetails'
|
2952
2957
|
collection :package_issue, as: 'packageIssue', class: Google::Apis::ContaineranalysisV1alpha1::PackageIssue, decorator: Google::Apis::ContaineranalysisV1alpha1::PackageIssue::Representation
|
2953
2958
|
|
2954
2959
|
property :severity, as: 'severity'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-containeranalysis_v1alpha1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.56.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_v1alpha1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1alpha1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1alpha1/v0.56.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1alpha1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|