google-apis-containeranalysis_v1beta1 0.61.0 → 0.63.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: 4a37c6c29f1099e55bb5cc3f7f7771faa5e404758cd4d815927cba094285eb74
4
- data.tar.gz: 58128da00a424664e5074cdf01d32a66e9b0b39c8d65364724153a1bbb7ef605
3
+ metadata.gz: 548770a31689806bd0e648ecd81429d7470ad4b69c607d946bab85f9eb4dbb98
4
+ data.tar.gz: 2c28f976ddeb01ba1099e14c3b4f42aa1e9f0b581ba699af59cd2fa0c10af451
5
5
  SHA512:
6
- metadata.gz: 44917def3b6f38e12fe21fd1a00de4228dde53e9bfa887def96d392ea300bfbce2216517cbb5f5eff81d77057d46cbaa47923a8ff25b942156fc398dcef32ed7
7
- data.tar.gz: 61d124e398f49998a4e6e82a08517dc2ba47348944be326664861121950f5aff88b46ddfb64a1af915534707ca00a9ce5a61444997ec3edd92b7608c91e834ff
6
+ metadata.gz: bd3ac733a833547f228e7af77c324ab81533c806fc67e228ba8ccd5dd6c878a9a9bbeeb8b43b5c49d0731bc7702e3a498aeb1fcb58f5f70a7d7b3e2fbb54f0a2
7
+ data.tar.gz: '05958da3addbd381eff7262b0cf500585cc7368be305d484b5bfe5c87298c940e7a77a9f9d32ca419075c33810341cee2c9afa47969fb046c2fb13e1b67b89ff'
data/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Release history for google-apis-containeranalysis_v1beta1
2
2
 
3
+ ### v0.63.0 (2025-06-08)
4
+
5
+ * Regenerated from discovery document revision 20250528
6
+ * Regenerated using generator version 0.18.0
7
+
8
+ ### v0.62.0 (2025-05-04)
9
+
10
+ * Regenerated from discovery document revision 20250425
11
+ * Regenerated using generator version 0.17.0
12
+
3
13
  ### v0.61.0 (2025-03-16)
4
14
 
5
15
  * Regenerated from discovery document revision 20250307
data/OVERVIEW.md CHANGED
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/container-analysis/api/refe
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
86
- This library is supported on Ruby 2.7+.
86
+ This library is supported on Ruby 3.1+.
87
87
 
88
88
  Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
89
89
 
@@ -1425,10 +1425,10 @@ module Google
1425
1425
  # @return [String]
1426
1426
  attr_accessor :group_id
1427
1427
 
1428
- # Path to an artifact in the build's workspace to be uploaded to Artifact
1429
- # Registry. This can be either an absolute path, e.g. /workspace/my-app/target/
1430
- # my-app-1.0.SNAPSHOT.jar or a relative path from /workspace, e.g. my-app/target/
1431
- # my-app-1.0.SNAPSHOT.jar.
1428
+ # Optional. Path to an artifact in the build's workspace to be uploaded to
1429
+ # Artifact Registry. This can be either an absolute path, e.g. /workspace/my-app/
1430
+ # target/my-app-1.0.SNAPSHOT.jar or a relative path from /workspace, e.g. my-app/
1431
+ # target/my-app-1.0.SNAPSHOT.jar.
1432
1432
  # Corresponds to the JSON property `path`
1433
1433
  # @return [String]
1434
1434
  attr_accessor :path
@@ -2312,9 +2312,8 @@ module Google
2312
2312
  class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository
2313
2313
  include Google::Apis::Core::Hashable
2314
2314
 
2315
- # The Developer Connect Git repository link or the url that matches a repository
2316
- # link in the current project, formatted as `projects/*/locations/*/connections/*
2317
- # /gitRepositoryLink/*`
2315
+ # The Developer Connect Git repository link formatted as `projects/*/locations/*/
2316
+ # connections/*/gitRepositoryLink/*`
2318
2317
  # Corresponds to the JSON property `developerConnect`
2319
2318
  # @return [String]
2320
2319
  attr_accessor :developer_connect
@@ -3427,6 +3426,11 @@ module Google
3427
3426
  # @return [String]
3428
3427
  attr_accessor :continuous_analysis
3429
3428
 
3429
+ # Files that make up the resource described by the occurrence.
3430
+ # Corresponds to the JSON property `files`
3431
+ # @return [Array<Google::Apis::ContaineranalysisV1beta1::File>]
3432
+ attr_accessor :files
3433
+
3430
3434
  # The last time continuous analysis was done for this resource. Deprecated, do
3431
3435
  # not use.
3432
3436
  # Corresponds to the JSON property `lastAnalysisTime`
@@ -3454,6 +3458,7 @@ module Google
3454
3458
  @analysis_status = args[:analysis_status] if args.key?(:analysis_status)
3455
3459
  @analysis_status_error = args[:analysis_status_error] if args.key?(:analysis_status_error)
3456
3460
  @continuous_analysis = args[:continuous_analysis] if args.key?(:continuous_analysis)
3461
+ @files = args[:files] if args.key?(:files)
3457
3462
  @last_analysis_time = args[:last_analysis_time] if args.key?(:last_analysis_time)
3458
3463
  @last_scan_time = args[:last_scan_time] if args.key?(:last_scan_time)
3459
3464
  @sbom_status = args[:sbom_status] if args.key?(:sbom_status)
@@ -3864,6 +3869,31 @@ module Google
3864
3869
  end
3865
3870
  end
3866
3871
 
3872
+ #
3873
+ class File
3874
+ include Google::Apis::Core::Hashable
3875
+
3876
+ #
3877
+ # Corresponds to the JSON property `digest`
3878
+ # @return [Hash<String,String>]
3879
+ attr_accessor :digest
3880
+
3881
+ #
3882
+ # Corresponds to the JSON property `name`
3883
+ # @return [String]
3884
+ attr_accessor :name
3885
+
3886
+ def initialize(**args)
3887
+ update!(**args)
3888
+ end
3889
+
3890
+ # Update properties of this object
3891
+ def update!(**args)
3892
+ @digest = args[:digest] if args.key?(:digest)
3893
+ @name = args[:name] if args.key?(:name)
3894
+ end
3895
+ end
3896
+
3867
3897
  # Container message for hashes of byte content of files, used in source messages
3868
3898
  # to verify integrity of source input to the build.
3869
3899
  class FileHashes
@@ -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.61.0"
19
+ GEM_VERSION = "0.63.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.16.0"
22
+ GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250307"
25
+ REVISION = "20250528"
26
26
  end
27
27
  end
28
28
  end
@@ -538,6 +538,12 @@ module Google
538
538
  include Google::Apis::Core::JsonObjectSupport
539
539
  end
540
540
 
541
+ class File
542
+ class Representation < Google::Apis::Core::JsonRepresentation; end
543
+
544
+ include Google::Apis::Core::JsonObjectSupport
545
+ end
546
+
541
547
  class FileHashes
542
548
  class Representation < Google::Apis::Core::JsonRepresentation; end
543
549
 
@@ -1893,6 +1899,8 @@ module Google
1893
1899
  property :analysis_status_error, as: 'analysisStatusError', class: Google::Apis::ContaineranalysisV1beta1::Status, decorator: Google::Apis::ContaineranalysisV1beta1::Status::Representation
1894
1900
 
1895
1901
  property :continuous_analysis, as: 'continuousAnalysis'
1902
+ collection :files, as: 'files', class: Google::Apis::ContaineranalysisV1beta1::File, decorator: Google::Apis::ContaineranalysisV1beta1::File::Representation
1903
+
1896
1904
  property :last_analysis_time, as: 'lastAnalysisTime'
1897
1905
  property :last_scan_time, as: 'lastScanTime'
1898
1906
  property :sbom_status, as: 'sbomStatus', class: Google::Apis::ContaineranalysisV1beta1::SbomStatus, decorator: Google::Apis::ContaineranalysisV1beta1::SbomStatus::Representation
@@ -2007,6 +2015,14 @@ module Google
2007
2015
  end
2008
2016
  end
2009
2017
 
2018
+ class File
2019
+ # @private
2020
+ class Representation < Google::Apis::Core::JsonRepresentation
2021
+ hash :digest, as: 'digest'
2022
+ property :name, as: 'name'
2023
+ end
2024
+ end
2025
+
2010
2026
  class FileHashes
2011
2027
  # @private
2012
2028
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-containeranalysis_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.61.0
4
+ version: 0.63.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-16 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: google-apis-core
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1beta1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1beta1/v0.61.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1beta1/v0.63.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1beta1
62
62
  rdoc_options: []
63
63
  require_paths:
@@ -66,14 +66,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
66
66
  requirements:
67
67
  - - ">="
68
68
  - !ruby/object:Gem::Version
69
- version: '2.7'
69
+ version: '3.1'
70
70
  required_rubygems_version: !ruby/object:Gem::Requirement
71
71
  requirements:
72
72
  - - ">="
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.5
76
+ rubygems_version: 3.6.9
77
77
  specification_version: 4
78
78
  summary: Simple REST client for Container Analysis API V1beta1
79
79
  test_files: []