google-apis-containeranalysis_v1alpha1 0.50.0 → 0.51.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: 1d79a63e2c5a0836da29831be630634f0406867a44cc79173585e7a2820219b6
|
4
|
+
data.tar.gz: 76c859d0c7c267c3b45ac7f302fe4e193d6cfa56ac9a0663942cf88db43b6f11
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ac4045d4be2d4004ddf61dd8d66ca2526920a099dcafc0bf22629f7672cb6f4b33be6e5ace92f3a74cec5ceede3384b774f7d8b911ecc30f8b3c6a03d0d85573
|
7
|
+
data.tar.gz: 67bde609136ab3446e18c754e9c86331e0feae263f7ed17a378b5a14a5df3774b068214ea6931d5f4bf4c2f3d032fe4cddf655352f7ab0841c61d4a2a8bc05fc
|
data/CHANGELOG.md
CHANGED
@@ -623,7 +623,7 @@ module Google
|
|
623
623
|
end
|
624
624
|
end
|
625
625
|
|
626
|
-
# A step in the build pipeline. Next ID:
|
626
|
+
# A step in the build pipeline. Next ID: 21
|
627
627
|
class BuildStep
|
628
628
|
include Google::Apis::Core::Hashable
|
629
629
|
|
@@ -652,6 +652,13 @@ module Google
|
|
652
652
|
# @return [Array<String>]
|
653
653
|
attr_accessor :args
|
654
654
|
|
655
|
+
# Option to include built-in and custom substitutions as env variables for this
|
656
|
+
# build step. This option will override the global option in BuildOption.
|
657
|
+
# Corresponds to the JSON property `automapSubstitutions`
|
658
|
+
# @return [Boolean]
|
659
|
+
attr_accessor :automap_substitutions
|
660
|
+
alias_method :automap_substitutions?, :automap_substitutions
|
661
|
+
|
655
662
|
# Working directory to use when running this step's container. If this value is
|
656
663
|
# a relative path, it is relative to the build's working directory. If this
|
657
664
|
# value is absolute, it may be outside the build's working directory, in which
|
@@ -765,6 +772,7 @@ module Google
|
|
765
772
|
@allow_exit_codes = args[:allow_exit_codes] if args.key?(:allow_exit_codes)
|
766
773
|
@allow_failure = args[:allow_failure] if args.key?(:allow_failure)
|
767
774
|
@args = args[:args] if args.key?(:args)
|
775
|
+
@automap_substitutions = args[:automap_substitutions] if args.key?(:automap_substitutions)
|
768
776
|
@dir = args[:dir] if args.key?(:dir)
|
769
777
|
@entrypoint = args[:entrypoint] if args.key?(:entrypoint)
|
770
778
|
@env = args[:env] if args.key?(:env)
|
@@ -1706,6 +1714,13 @@ module Google
|
|
1706
1714
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptions
|
1707
1715
|
include Google::Apis::Core::Hashable
|
1708
1716
|
|
1717
|
+
# Option to include built-in and custom substitutions as env variables for all
|
1718
|
+
# build steps.
|
1719
|
+
# Corresponds to the JSON property `automapSubstitutions`
|
1720
|
+
# @return [Boolean]
|
1721
|
+
attr_accessor :automap_substitutions
|
1722
|
+
alias_method :automap_substitutions?, :automap_substitutions
|
1723
|
+
|
1709
1724
|
# Optional. Option to specify how default logs buckets are setup.
|
1710
1725
|
# Corresponds to the JSON property `defaultLogsBucketBehavior`
|
1711
1726
|
# @return [String]
|
@@ -1806,6 +1821,7 @@ module Google
|
|
1806
1821
|
|
1807
1822
|
# Update properties of this object
|
1808
1823
|
def update!(**args)
|
1824
|
+
@automap_substitutions = args[:automap_substitutions] if args.key?(:automap_substitutions)
|
1809
1825
|
@default_logs_bucket_behavior = args[:default_logs_bucket_behavior] if args.key?(:default_logs_bucket_behavior)
|
1810
1826
|
@disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
|
1811
1827
|
@dynamic_substitutions = args[:dynamic_substitutions] if args.key?(:dynamic_substitutions)
|
@@ -1875,6 +1891,13 @@ module Google
|
|
1875
1891
|
# @return [Array<String>]
|
1876
1892
|
attr_accessor :args
|
1877
1893
|
|
1894
|
+
# Option to include built-in and custom substitutions as env variables for this
|
1895
|
+
# build step. This option will override the global option in BuildOption.
|
1896
|
+
# Corresponds to the JSON property `automapSubstitutions`
|
1897
|
+
# @return [Boolean]
|
1898
|
+
attr_accessor :automap_substitutions
|
1899
|
+
alias_method :automap_substitutions?, :automap_substitutions
|
1900
|
+
|
1878
1901
|
# Working directory to use when running this step's container. If this value is
|
1879
1902
|
# a relative path, it is relative to the build's working directory. If this
|
1880
1903
|
# value is absolute, it may be outside the build's working directory, in which
|
@@ -1988,6 +2011,7 @@ module Google
|
|
1988
2011
|
@allow_exit_codes = args[:allow_exit_codes] if args.key?(:allow_exit_codes)
|
1989
2012
|
@allow_failure = args[:allow_failure] if args.key?(:allow_failure)
|
1990
2013
|
@args = args[:args] if args.key?(:args)
|
2014
|
+
@automap_substitutions = args[:automap_substitutions] if args.key?(:automap_substitutions)
|
1991
2015
|
@dir = args[:dir] if args.key?(:dir)
|
1992
2016
|
@entrypoint = args[:entrypoint] if args.key?(:entrypoint)
|
1993
2017
|
@env = args[:env] if args.key?(:env)
|
@@ -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.51.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 = "20230721"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1186,6 +1186,7 @@ module Google
|
|
1186
1186
|
collection :allow_exit_codes, as: 'allowExitCodes'
|
1187
1187
|
property :allow_failure, as: 'allowFailure'
|
1188
1188
|
collection :args, as: 'args'
|
1189
|
+
property :automap_substitutions, as: 'automapSubstitutions'
|
1189
1190
|
property :dir, as: 'dir'
|
1190
1191
|
property :entrypoint, as: 'entrypoint'
|
1191
1192
|
collection :env, as: 'env'
|
@@ -1441,6 +1442,7 @@ module Google
|
|
1441
1442
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptions
|
1442
1443
|
# @private
|
1443
1444
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1445
|
+
property :automap_substitutions, as: 'automapSubstitutions'
|
1444
1446
|
property :default_logs_bucket_behavior, as: 'defaultLogsBucketBehavior'
|
1445
1447
|
property :disk_size_gb, :numeric_string => true, as: 'diskSizeGb'
|
1446
1448
|
property :dynamic_substitutions, as: 'dynamicSubstitutions'
|
@@ -1473,6 +1475,7 @@ module Google
|
|
1473
1475
|
collection :allow_exit_codes, as: 'allowExitCodes'
|
1474
1476
|
property :allow_failure, as: 'allowFailure'
|
1475
1477
|
collection :args, as: 'args'
|
1478
|
+
property :automap_substitutions, as: 'automapSubstitutions'
|
1476
1479
|
property :dir, as: 'dir'
|
1477
1480
|
property :entrypoint, as: 'entrypoint'
|
1478
1481
|
collection :env, as: 'env'
|
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.51.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-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_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.51.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: []
|