google-apis-cloudbuild_v1 0.52.0 → 0.53.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: a52b722c06e3c6b3d635fe497bdbfe48978129867af22cd7236dff8cdf504dc6
|
4
|
+
data.tar.gz: 4243cee2bac819d1688c643a05ea145fa689888411b7021fecfae41bfbb4ee36
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f320b140b543c97f95e15b61bb646feb4a240a369bdd2086b9cf92740cf4121b54fbbb49aec965ad94caedd822a4c9be32694273bf3cae44659eeef2320b398f
|
7
|
+
data.tar.gz: 8e4d853dbc4b89c20e70a714519f3f64ca2f74b95453b81aae4417ba7f8334620acfa991992f681b7ca34c1b8bc6d20ff98e380e9061d1eea4fc7e04ee5140b7
|
data/CHANGELOG.md
CHANGED
@@ -961,6 +961,13 @@ module Google
|
|
961
961
|
class BuildOptions
|
962
962
|
include Google::Apis::Core::Hashable
|
963
963
|
|
964
|
+
# Option to include built-in and custom substitutions as env variables for all
|
965
|
+
# build steps.
|
966
|
+
# Corresponds to the JSON property `automapSubstitutions`
|
967
|
+
# @return [Boolean]
|
968
|
+
attr_accessor :automap_substitutions
|
969
|
+
alias_method :automap_substitutions?, :automap_substitutions
|
970
|
+
|
964
971
|
# Optional. Option to specify how default logs buckets are setup.
|
965
972
|
# Corresponds to the JSON property `defaultLogsBucketBehavior`
|
966
973
|
# @return [String]
|
@@ -1061,6 +1068,7 @@ module Google
|
|
1061
1068
|
|
1062
1069
|
# Update properties of this object
|
1063
1070
|
def update!(**args)
|
1071
|
+
@automap_substitutions = args[:automap_substitutions] if args.key?(:automap_substitutions)
|
1064
1072
|
@default_logs_bucket_behavior = args[:default_logs_bucket_behavior] if args.key?(:default_logs_bucket_behavior)
|
1065
1073
|
@disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
|
1066
1074
|
@dynamic_substitutions = args[:dynamic_substitutions] if args.key?(:dynamic_substitutions)
|
@@ -1107,6 +1115,13 @@ module Google
|
|
1107
1115
|
# @return [Array<String>]
|
1108
1116
|
attr_accessor :args
|
1109
1117
|
|
1118
|
+
# Option to include built-in and custom substitutions as env variables for this
|
1119
|
+
# build step. This option will override the global option in BuildOption.
|
1120
|
+
# Corresponds to the JSON property `automapSubstitutions`
|
1121
|
+
# @return [Boolean]
|
1122
|
+
attr_accessor :automap_substitutions
|
1123
|
+
alias_method :automap_substitutions?, :automap_substitutions
|
1124
|
+
|
1110
1125
|
# Working directory to use when running this step's container. If this value is
|
1111
1126
|
# a relative path, it is relative to the build's working directory. If this
|
1112
1127
|
# value is absolute, it may be outside the build's working directory, in which
|
@@ -1220,6 +1235,7 @@ module Google
|
|
1220
1235
|
@allow_exit_codes = args[:allow_exit_codes] if args.key?(:allow_exit_codes)
|
1221
1236
|
@allow_failure = args[:allow_failure] if args.key?(:allow_failure)
|
1222
1237
|
@args = args[:args] if args.key?(:args)
|
1238
|
+
@automap_substitutions = args[:automap_substitutions] if args.key?(:automap_substitutions)
|
1223
1239
|
@dir = args[:dir] if args.key?(:dir)
|
1224
1240
|
@entrypoint = args[:entrypoint] if args.key?(:entrypoint)
|
1225
1241
|
@env = args[:env] if args.key?(:env)
|
@@ -3014,13 +3030,13 @@ module Google
|
|
3014
3030
|
# @return [String]
|
3015
3031
|
attr_accessor :name
|
3016
3032
|
|
3017
|
-
# The normal response of the operation
|
3018
|
-
#
|
3019
|
-
#
|
3020
|
-
#
|
3021
|
-
#
|
3022
|
-
#
|
3023
|
-
#
|
3033
|
+
# The normal, successful response of the operation. If the original method
|
3034
|
+
# returns no data on success, such as `Delete`, the response is `google.protobuf.
|
3035
|
+
# Empty`. If the original method is standard `Get`/`Create`/`Update`, the
|
3036
|
+
# response should be the resource. For other methods, the response should have
|
3037
|
+
# the type `XxxResponse`, where `Xxx` is the original method name. For example,
|
3038
|
+
# if the original method name is `TakeSnapshot()`, the inferred response type is
|
3039
|
+
# `TakeSnapshotResponse`.
|
3024
3040
|
# Corresponds to the JSON property `response`
|
3025
3041
|
# @return [Hash<String,Object>]
|
3026
3042
|
attr_accessor :response
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module CloudbuildV1
|
18
18
|
# Version of the google-apis-cloudbuild_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.53.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 = "20230801"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -911,6 +911,7 @@ module Google
|
|
911
911
|
class BuildOptions
|
912
912
|
# @private
|
913
913
|
class Representation < Google::Apis::Core::JsonRepresentation
|
914
|
+
property :automap_substitutions, as: 'automapSubstitutions'
|
914
915
|
property :default_logs_bucket_behavior, as: 'defaultLogsBucketBehavior'
|
915
916
|
property :disk_size_gb, :numeric_string => true, as: 'diskSizeGb'
|
916
917
|
property :dynamic_substitutions, as: 'dynamicSubstitutions'
|
@@ -936,6 +937,7 @@ module Google
|
|
936
937
|
collection :allow_exit_codes, as: 'allowExitCodes'
|
937
938
|
property :allow_failure, as: 'allowFailure'
|
938
939
|
collection :args, as: 'args'
|
940
|
+
property :automap_substitutions, as: 'automapSubstitutions'
|
939
941
|
property :dir, as: 'dir'
|
940
942
|
property :entrypoint, as: 'entrypoint'
|
941
943
|
collection :env, as: 'env'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-cloudbuild_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.53.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-cloudbuild_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1/v0.53.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudbuild_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|