google-apis-containeranalysis_v1beta1 0.42.0 → 0.44.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7a07b9f2933c45d6c3794a1245a901d305c295f3119b28a1a18ea17674f73b6f
4
- data.tar.gz: 51afb1e08e76fb4271630c78b7560ecc4215b2a34e9948b32a936a10b0e3ed57
3
+ metadata.gz: 2b9860ab0df8df99908c5dd186c4ea5ebf500405c11835f17a80d35746703fb7
4
+ data.tar.gz: ebc45c79cced4174fdd73bd878229220be8022c6de72053f0439f3304e567725
5
5
  SHA512:
6
- metadata.gz: add45b53fac612d1aef1d073ac40e9249128a4ebc2b0ef7787c1dff865836f5b913d276081741b264442de6764bd11e16ec01a3c1d16140725d22dac8ac5edae
7
- data.tar.gz: 3b4e24bd8bd596c71712c7fb756aeb531e59a9914b69579d1d62d469db4c47203a8bc44ed14d2d8ac0ffb1699008a13ecf405bd0be2ab691a4a5c25ac2b322b7
6
+ metadata.gz: fe86418c93d591e0182b3a16d3058cb496937b2ddded4d52c62d2af0a64800e2eaf0cc1692ca5ab266fb7df48f361f138388a15c611db92e39cef09ae81d2e0c
7
+ data.tar.gz: 5660ff94efdb0721548b2c31f539d35ee53b5dada8b3c597fc8289fcb2a3fd0f5b2c85cfa3cbb231ec93b3b57f8fa225468941ba1902f663554d8e62fbb92068
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-containeranalysis_v1beta1
2
2
 
3
+ ### v0.44.0 (2023-08-03)
4
+
5
+ * Regenerated from discovery document revision 20230721
6
+
7
+ ### v0.43.0 (2023-07-23)
8
+
9
+ * Regenerated from discovery document revision 20230717
10
+
3
11
  ### v0.42.0 (2023-07-16)
4
12
 
5
13
  * Regenerated from discovery document revision 20230707
@@ -148,7 +148,8 @@ module Google
148
148
  include Google::Apis::Core::Hashable
149
149
 
150
150
  # Holds the MITRE standard Common Vulnerabilities and Exposures (CVE) tracking
151
- # number for the vulnerability.
151
+ # number for the vulnerability. Deprecated: Use vulnerability_id instead to
152
+ # denote CVEs.
152
153
  # Corresponds to the JSON property `cve`
153
154
  # @return [String]
154
155
  attr_accessor :cve
@@ -193,6 +194,12 @@ module Google
193
194
  # @return [String]
194
195
  attr_accessor :state
195
196
 
197
+ # The vulnerability identifier for this Assessment. Will hold one of common
198
+ # identifiers e.g. CVE, GHSA etc.
199
+ # Corresponds to the JSON property `vulnerabilityId`
200
+ # @return [String]
201
+ attr_accessor :vulnerability_id
202
+
196
203
  def initialize(**args)
197
204
  update!(**args)
198
205
  end
@@ -207,6 +214,7 @@ module Google
207
214
  @remediations = args[:remediations] if args.key?(:remediations)
208
215
  @short_description = args[:short_description] if args.key?(:short_description)
209
216
  @state = args[:state] if args.key?(:state)
217
+ @vulnerability_id = args[:vulnerability_id] if args.key?(:vulnerability_id)
210
218
  end
211
219
  end
212
220
 
@@ -698,7 +706,7 @@ module Google
698
706
  end
699
707
  end
700
708
 
701
- # A step in the build pipeline. Next ID: 20
709
+ # A step in the build pipeline. Next ID: 21
702
710
  class BuildStep
703
711
  include Google::Apis::Core::Hashable
704
712
 
@@ -727,6 +735,13 @@ module Google
727
735
  # @return [Array<String>]
728
736
  attr_accessor :args
729
737
 
738
+ # Option to include built-in and custom substitutions as env variables for this
739
+ # build step. This option will override the global option in BuildOption.
740
+ # Corresponds to the JSON property `automapSubstitutions`
741
+ # @return [Boolean]
742
+ attr_accessor :automap_substitutions
743
+ alias_method :automap_substitutions?, :automap_substitutions
744
+
730
745
  # Working directory to use when running this step's container. If this value is
731
746
  # a relative path, it is relative to the build's working directory. If this
732
747
  # value is absolute, it may be outside the build's working directory, in which
@@ -840,6 +855,7 @@ module Google
840
855
  @allow_exit_codes = args[:allow_exit_codes] if args.key?(:allow_exit_codes)
841
856
  @allow_failure = args[:allow_failure] if args.key?(:allow_failure)
842
857
  @args = args[:args] if args.key?(:args)
858
+ @automap_substitutions = args[:automap_substitutions] if args.key?(:automap_substitutions)
843
859
  @dir = args[:dir] if args.key?(:dir)
844
860
  @entrypoint = args[:entrypoint] if args.key?(:entrypoint)
845
861
  @env = args[:env] if args.key?(:env)
@@ -1690,6 +1706,13 @@ module Google
1690
1706
  class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptions
1691
1707
  include Google::Apis::Core::Hashable
1692
1708
 
1709
+ # Option to include built-in and custom substitutions as env variables for all
1710
+ # build steps.
1711
+ # Corresponds to the JSON property `automapSubstitutions`
1712
+ # @return [Boolean]
1713
+ attr_accessor :automap_substitutions
1714
+ alias_method :automap_substitutions?, :automap_substitutions
1715
+
1693
1716
  # Optional. Option to specify how default logs buckets are setup.
1694
1717
  # Corresponds to the JSON property `defaultLogsBucketBehavior`
1695
1718
  # @return [String]
@@ -1790,6 +1813,7 @@ module Google
1790
1813
 
1791
1814
  # Update properties of this object
1792
1815
  def update!(**args)
1816
+ @automap_substitutions = args[:automap_substitutions] if args.key?(:automap_substitutions)
1793
1817
  @default_logs_bucket_behavior = args[:default_logs_bucket_behavior] if args.key?(:default_logs_bucket_behavior)
1794
1818
  @disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
1795
1819
  @dynamic_substitutions = args[:dynamic_substitutions] if args.key?(:dynamic_substitutions)
@@ -1859,6 +1883,13 @@ module Google
1859
1883
  # @return [Array<String>]
1860
1884
  attr_accessor :args
1861
1885
 
1886
+ # Option to include built-in and custom substitutions as env variables for this
1887
+ # build step. This option will override the global option in BuildOption.
1888
+ # Corresponds to the JSON property `automapSubstitutions`
1889
+ # @return [Boolean]
1890
+ attr_accessor :automap_substitutions
1891
+ alias_method :automap_substitutions?, :automap_substitutions
1892
+
1862
1893
  # Working directory to use when running this step's container. If this value is
1863
1894
  # a relative path, it is relative to the build's working directory. If this
1864
1895
  # value is absolute, it may be outside the build's working directory, in which
@@ -1972,6 +2003,7 @@ module Google
1972
2003
  @allow_exit_codes = args[:allow_exit_codes] if args.key?(:allow_exit_codes)
1973
2004
  @allow_failure = args[:allow_failure] if args.key?(:allow_failure)
1974
2005
  @args = args[:args] if args.key?(:args)
2006
+ @automap_substitutions = args[:automap_substitutions] if args.key?(:automap_substitutions)
1975
2007
  @dir = args[:dir] if args.key?(:dir)
1976
2008
  @entrypoint = args[:entrypoint] if args.key?(:entrypoint)
1977
2009
  @env = args[:env] if args.key?(:env)
@@ -6446,7 +6478,8 @@ module Google
6446
6478
  include Google::Apis::Core::Hashable
6447
6479
 
6448
6480
  # Holds the MITRE standard Common Vulnerabilities and Exposures (CVE) tracking
6449
- # number for the vulnerability.
6481
+ # number for the vulnerability. Deprecated: Use vulnerability_id instead to
6482
+ # denote CVEs.
6450
6483
  # Corresponds to the JSON property `cve`
6451
6484
  # @return [String]
6452
6485
  attr_accessor :cve
@@ -6485,6 +6518,12 @@ module Google
6485
6518
  # @return [String]
6486
6519
  attr_accessor :state
6487
6520
 
6521
+ # The vulnerability identifier for this Assessment. Will hold one of common
6522
+ # identifiers e.g. CVE, GHSA etc.
6523
+ # Corresponds to the JSON property `vulnerabilityId`
6524
+ # @return [String]
6525
+ attr_accessor :vulnerability_id
6526
+
6488
6527
  def initialize(**args)
6489
6528
  update!(**args)
6490
6529
  end
@@ -6498,6 +6537,7 @@ module Google
6498
6537
  @related_uris = args[:related_uris] if args.key?(:related_uris)
6499
6538
  @remediations = args[:remediations] if args.key?(:remediations)
6500
6539
  @state = args[:state] if args.key?(:state)
6540
+ @vulnerability_id = args[:vulnerability_id] if args.key?(:vulnerability_id)
6501
6541
  end
6502
6542
  end
6503
6543
 
@@ -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.42.0"
19
+ GEM_VERSION = "0.44.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 = "20230707"
25
+ REVISION = "20230721"
26
26
  end
27
27
  end
28
28
  end
@@ -1022,6 +1022,7 @@ module Google
1022
1022
 
1023
1023
  property :short_description, as: 'shortDescription'
1024
1024
  property :state, as: 'state'
1025
+ property :vulnerability_id, as: 'vulnerabilityId'
1025
1026
  end
1026
1027
  end
1027
1028
 
@@ -1161,6 +1162,7 @@ module Google
1161
1162
  collection :allow_exit_codes, as: 'allowExitCodes'
1162
1163
  property :allow_failure, as: 'allowFailure'
1163
1164
  collection :args, as: 'args'
1165
+ property :automap_substitutions, as: 'automapSubstitutions'
1164
1166
  property :dir, as: 'dir'
1165
1167
  property :entrypoint, as: 'entrypoint'
1166
1168
  collection :env, as: 'env'
@@ -1385,6 +1387,7 @@ module Google
1385
1387
  class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptions
1386
1388
  # @private
1387
1389
  class Representation < Google::Apis::Core::JsonRepresentation
1390
+ property :automap_substitutions, as: 'automapSubstitutions'
1388
1391
  property :default_logs_bucket_behavior, as: 'defaultLogsBucketBehavior'
1389
1392
  property :disk_size_gb, :numeric_string => true, as: 'diskSizeGb'
1390
1393
  property :dynamic_substitutions, as: 'dynamicSubstitutions'
@@ -1417,6 +1420,7 @@ module Google
1417
1420
  collection :allow_exit_codes, as: 'allowExitCodes'
1418
1421
  property :allow_failure, as: 'allowFailure'
1419
1422
  collection :args, as: 'args'
1423
+ property :automap_substitutions, as: 'automapSubstitutions'
1420
1424
  property :dir, as: 'dir'
1421
1425
  property :entrypoint, as: 'entrypoint'
1422
1426
  collection :env, as: 'env'
@@ -2668,6 +2672,7 @@ module Google
2668
2672
  collection :remediations, as: 'remediations', class: Google::Apis::ContaineranalysisV1beta1::Remediation, decorator: Google::Apis::ContaineranalysisV1beta1::Remediation::Representation
2669
2673
 
2670
2674
  property :state, as: 'state'
2675
+ property :vulnerability_id, as: 'vulnerabilityId'
2671
2676
  end
2672
2677
  end
2673
2678
 
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.42.0
4
+ version: 0.44.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-07-16 00:00:00.000000000 Z
11
+ date: 2023-08-06 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.42.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1beta1/v0.44.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: []