google-apis-containeranalysis_v1beta1 0.43.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: 12b2735e005d101516f2a7c5cea833c3ca81ebfe2082a80e343487d77e7ba5b6
4
- data.tar.gz: 18f0362131f4c37abe38ffa0b02d039278d5c92029a7004d68decf66742a7f69
3
+ metadata.gz: 2b9860ab0df8df99908c5dd186c4ea5ebf500405c11835f17a80d35746703fb7
4
+ data.tar.gz: ebc45c79cced4174fdd73bd878229220be8022c6de72053f0439f3304e567725
5
5
  SHA512:
6
- metadata.gz: 7c68c0350d01efe7cd74a3ea7c128fdc44c2cb87f86360e4a08fcc8343de94d7ff404aaf1fe32173f20df8c5fd68ab755a319433badd70ce5410542dc70a684e
7
- data.tar.gz: 59fa76699e92385cb86ebb599d3c52f6c28da1731283f581cb973ad1eecfe208f8a39ac881c5da8cae3787a1fac33659787a5811c6341a4a2aa9c53e56b93ff6
6
+ metadata.gz: fe86418c93d591e0182b3a16d3058cb496937b2ddded4d52c62d2af0a64800e2eaf0cc1692ca5ab266fb7df48f361f138388a15c611db92e39cef09ae81d2e0c
7
+ data.tar.gz: 5660ff94efdb0721548b2c31f539d35ee53b5dada8b3c597fc8289fcb2a3fd0f5b2c85cfa3cbb231ec93b3b57f8fa225468941ba1902f663554d8e62fbb92068
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.43.0 (2023-07-23)
4
8
 
5
9
  * Regenerated from discovery document revision 20230717
@@ -706,7 +706,7 @@ module Google
706
706
  end
707
707
  end
708
708
 
709
- # A step in the build pipeline. Next ID: 20
709
+ # A step in the build pipeline. Next ID: 21
710
710
  class BuildStep
711
711
  include Google::Apis::Core::Hashable
712
712
 
@@ -735,6 +735,13 @@ module Google
735
735
  # @return [Array<String>]
736
736
  attr_accessor :args
737
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
+
738
745
  # Working directory to use when running this step's container. If this value is
739
746
  # a relative path, it is relative to the build's working directory. If this
740
747
  # value is absolute, it may be outside the build's working directory, in which
@@ -848,6 +855,7 @@ module Google
848
855
  @allow_exit_codes = args[:allow_exit_codes] if args.key?(:allow_exit_codes)
849
856
  @allow_failure = args[:allow_failure] if args.key?(:allow_failure)
850
857
  @args = args[:args] if args.key?(:args)
858
+ @automap_substitutions = args[:automap_substitutions] if args.key?(:automap_substitutions)
851
859
  @dir = args[:dir] if args.key?(:dir)
852
860
  @entrypoint = args[:entrypoint] if args.key?(:entrypoint)
853
861
  @env = args[:env] if args.key?(:env)
@@ -1698,6 +1706,13 @@ module Google
1698
1706
  class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptions
1699
1707
  include Google::Apis::Core::Hashable
1700
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
+
1701
1716
  # Optional. Option to specify how default logs buckets are setup.
1702
1717
  # Corresponds to the JSON property `defaultLogsBucketBehavior`
1703
1718
  # @return [String]
@@ -1798,6 +1813,7 @@ module Google
1798
1813
 
1799
1814
  # Update properties of this object
1800
1815
  def update!(**args)
1816
+ @automap_substitutions = args[:automap_substitutions] if args.key?(:automap_substitutions)
1801
1817
  @default_logs_bucket_behavior = args[:default_logs_bucket_behavior] if args.key?(:default_logs_bucket_behavior)
1802
1818
  @disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
1803
1819
  @dynamic_substitutions = args[:dynamic_substitutions] if args.key?(:dynamic_substitutions)
@@ -1867,6 +1883,13 @@ module Google
1867
1883
  # @return [Array<String>]
1868
1884
  attr_accessor :args
1869
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
+
1870
1893
  # Working directory to use when running this step's container. If this value is
1871
1894
  # a relative path, it is relative to the build's working directory. If this
1872
1895
  # value is absolute, it may be outside the build's working directory, in which
@@ -1980,6 +2003,7 @@ module Google
1980
2003
  @allow_exit_codes = args[:allow_exit_codes] if args.key?(:allow_exit_codes)
1981
2004
  @allow_failure = args[:allow_failure] if args.key?(:allow_failure)
1982
2005
  @args = args[:args] if args.key?(:args)
2006
+ @automap_substitutions = args[:automap_substitutions] if args.key?(:automap_substitutions)
1983
2007
  @dir = args[:dir] if args.key?(:dir)
1984
2008
  @entrypoint = args[:entrypoint] if args.key?(:entrypoint)
1985
2009
  @env = args[:env] if args.key?(:env)
@@ -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.43.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 = "20230717"
25
+ REVISION = "20230721"
26
26
  end
27
27
  end
28
28
  end
@@ -1162,6 +1162,7 @@ module Google
1162
1162
  collection :allow_exit_codes, as: 'allowExitCodes'
1163
1163
  property :allow_failure, as: 'allowFailure'
1164
1164
  collection :args, as: 'args'
1165
+ property :automap_substitutions, as: 'automapSubstitutions'
1165
1166
  property :dir, as: 'dir'
1166
1167
  property :entrypoint, as: 'entrypoint'
1167
1168
  collection :env, as: 'env'
@@ -1386,6 +1387,7 @@ module Google
1386
1387
  class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptions
1387
1388
  # @private
1388
1389
  class Representation < Google::Apis::Core::JsonRepresentation
1390
+ property :automap_substitutions, as: 'automapSubstitutions'
1389
1391
  property :default_logs_bucket_behavior, as: 'defaultLogsBucketBehavior'
1390
1392
  property :disk_size_gb, :numeric_string => true, as: 'diskSizeGb'
1391
1393
  property :dynamic_substitutions, as: 'dynamicSubstitutions'
@@ -1418,6 +1420,7 @@ module Google
1418
1420
  collection :allow_exit_codes, as: 'allowExitCodes'
1419
1421
  property :allow_failure, as: 'allowFailure'
1420
1422
  collection :args, as: 'args'
1423
+ property :automap_substitutions, as: 'automapSubstitutions'
1421
1424
  property :dir, as: 'dir'
1422
1425
  property :entrypoint, as: 'entrypoint'
1423
1426
  collection :env, as: 'env'
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.43.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-23 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.43.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: []