google-apis-containeranalysis_v1 0.37.0 → 0.38.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: 9d23fd5d12174e5912a02474875dd96559a3c021ba48023073969b2185c68f11
4
- data.tar.gz: 0bef5a52b6ef3de049bec5585c943afaf9c09a15152a12a2e2bfbabcb85dbe73
3
+ metadata.gz: b84237236b8315306c696348752fb259e33d0279acaad35f4114cfc5340caedc
4
+ data.tar.gz: '088d918fbe120408dcb822371f8754591b90d00802637ba6fcbfb25cef19abc6'
5
5
  SHA512:
6
- metadata.gz: 127b888975b3de3c728f74779a4ae4977750ec59d648d667f9c7bce72a46d7ec3ff67c92619d4f6433a2a907974f0e0ed66d4150e7778c7717de0d73a0774dab
7
- data.tar.gz: 942a2a68dd598983147b46984a3f6f8d86e5a750839aa124d49538b45e17fab983ebbdf52891c0912df7200786606e01c14f1595570661e980e6db4eead5881e
6
+ metadata.gz: c15aa7b3bb99b37cec69a60d06f66c11c0e5b9794763dd489adfc0890289efde46be388f1d3329f75418bd35f39be112bd33fb6d10dd15a8af07ce29a87da45f
7
+ data.tar.gz: 9764f444ef663da8623a8f4e454340b8d63aa4895f55fd1e7931df7ca0b3ce0c6676e6b4bcd8412d7ad8222565e311a338328a9afc62e879dd35fdc507715765
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-containeranalysis_v1
2
2
 
3
+ ### v0.38.0 (2023-08-03)
4
+
5
+ * Regenerated from discovery document revision 20230721
6
+
3
7
  ### v0.37.0 (2023-07-23)
4
8
 
5
9
  * Regenerated from discovery document revision 20230717
@@ -649,7 +649,7 @@ module Google
649
649
  end
650
650
  end
651
651
 
652
- # A step in the build pipeline. Next ID: 20
652
+ # A step in the build pipeline. Next ID: 21
653
653
  class BuildStep
654
654
  include Google::Apis::Core::Hashable
655
655
 
@@ -678,6 +678,13 @@ module Google
678
678
  # @return [Array<String>]
679
679
  attr_accessor :args
680
680
 
681
+ # Option to include built-in and custom substitutions as env variables for this
682
+ # build step. This option will override the global option in BuildOption.
683
+ # Corresponds to the JSON property `automapSubstitutions`
684
+ # @return [Boolean]
685
+ attr_accessor :automap_substitutions
686
+ alias_method :automap_substitutions?, :automap_substitutions
687
+
681
688
  # Working directory to use when running this step's container. If this value is
682
689
  # a relative path, it is relative to the build's working directory. If this
683
690
  # value is absolute, it may be outside the build's working directory, in which
@@ -791,6 +798,7 @@ module Google
791
798
  @allow_exit_codes = args[:allow_exit_codes] if args.key?(:allow_exit_codes)
792
799
  @allow_failure = args[:allow_failure] if args.key?(:allow_failure)
793
800
  @args = args[:args] if args.key?(:args)
801
+ @automap_substitutions = args[:automap_substitutions] if args.key?(:automap_substitutions)
794
802
  @dir = args[:dir] if args.key?(:dir)
795
803
  @entrypoint = args[:entrypoint] if args.key?(:entrypoint)
796
804
  @env = args[:env] if args.key?(:env)
@@ -1842,6 +1850,13 @@ module Google
1842
1850
  class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptions
1843
1851
  include Google::Apis::Core::Hashable
1844
1852
 
1853
+ # Option to include built-in and custom substitutions as env variables for all
1854
+ # build steps.
1855
+ # Corresponds to the JSON property `automapSubstitutions`
1856
+ # @return [Boolean]
1857
+ attr_accessor :automap_substitutions
1858
+ alias_method :automap_substitutions?, :automap_substitutions
1859
+
1845
1860
  # Optional. Option to specify how default logs buckets are setup.
1846
1861
  # Corresponds to the JSON property `defaultLogsBucketBehavior`
1847
1862
  # @return [String]
@@ -1942,6 +1957,7 @@ module Google
1942
1957
 
1943
1958
  # Update properties of this object
1944
1959
  def update!(**args)
1960
+ @automap_substitutions = args[:automap_substitutions] if args.key?(:automap_substitutions)
1945
1961
  @default_logs_bucket_behavior = args[:default_logs_bucket_behavior] if args.key?(:default_logs_bucket_behavior)
1946
1962
  @disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
1947
1963
  @dynamic_substitutions = args[:dynamic_substitutions] if args.key?(:dynamic_substitutions)
@@ -2011,6 +2027,13 @@ module Google
2011
2027
  # @return [Array<String>]
2012
2028
  attr_accessor :args
2013
2029
 
2030
+ # Option to include built-in and custom substitutions as env variables for this
2031
+ # build step. This option will override the global option in BuildOption.
2032
+ # Corresponds to the JSON property `automapSubstitutions`
2033
+ # @return [Boolean]
2034
+ attr_accessor :automap_substitutions
2035
+ alias_method :automap_substitutions?, :automap_substitutions
2036
+
2014
2037
  # Working directory to use when running this step's container. If this value is
2015
2038
  # a relative path, it is relative to the build's working directory. If this
2016
2039
  # value is absolute, it may be outside the build's working directory, in which
@@ -2124,6 +2147,7 @@ module Google
2124
2147
  @allow_exit_codes = args[:allow_exit_codes] if args.key?(:allow_exit_codes)
2125
2148
  @allow_failure = args[:allow_failure] if args.key?(:allow_failure)
2126
2149
  @args = args[:args] if args.key?(:args)
2150
+ @automap_substitutions = args[:automap_substitutions] if args.key?(:automap_substitutions)
2127
2151
  @dir = args[:dir] if args.key?(:dir)
2128
2152
  @entrypoint = args[:entrypoint] if args.key?(:entrypoint)
2129
2153
  @env = args[:env] if args.key?(:env)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ContaineranalysisV1
18
18
  # Version of the google-apis-containeranalysis_v1 gem
19
- GEM_VERSION = "0.37.0"
19
+ GEM_VERSION = "0.38.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
@@ -1149,6 +1149,7 @@ module Google
1149
1149
  collection :allow_exit_codes, as: 'allowExitCodes'
1150
1150
  property :allow_failure, as: 'allowFailure'
1151
1151
  collection :args, as: 'args'
1152
+ property :automap_substitutions, as: 'automapSubstitutions'
1152
1153
  property :dir, as: 'dir'
1153
1154
  property :entrypoint, as: 'entrypoint'
1154
1155
  collection :env, as: 'env'
@@ -1431,6 +1432,7 @@ module Google
1431
1432
  class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptions
1432
1433
  # @private
1433
1434
  class Representation < Google::Apis::Core::JsonRepresentation
1435
+ property :automap_substitutions, as: 'automapSubstitutions'
1434
1436
  property :default_logs_bucket_behavior, as: 'defaultLogsBucketBehavior'
1435
1437
  property :disk_size_gb, :numeric_string => true, as: 'diskSizeGb'
1436
1438
  property :dynamic_substitutions, as: 'dynamicSubstitutions'
@@ -1463,6 +1465,7 @@ module Google
1463
1465
  collection :allow_exit_codes, as: 'allowExitCodes'
1464
1466
  property :allow_failure, as: 'allowFailure'
1465
1467
  collection :args, as: 'args'
1468
+ property :automap_substitutions, as: 'automapSubstitutions'
1466
1469
  property :dir, as: 'dir'
1467
1470
  property :entrypoint, as: 'entrypoint'
1468
1471
  collection :env, as: 'env'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-containeranalysis_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.37.0
4
+ version: 0.38.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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1/v0.37.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1/v0.38.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1
63
63
  post_install_message:
64
64
  rdoc_options: []