google-apis-run_v2 0.82.0 → 0.84.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/run_v2/classes.rb +989 -62
- data/lib/google/apis/run_v2/gem_version.rb +2 -2
- data/lib/google/apis/run_v2/representations.rb +279 -0
- data/lib/google/apis/run_v2/service.rb +364 -1
- metadata +4 -4
@@ -59,11 +59,115 @@ module Google
|
|
59
59
|
end
|
60
60
|
end
|
61
61
|
|
62
|
+
# Describes the Build step of the function that builds a container from the
|
63
|
+
# given source.
|
64
|
+
class GoogleCloudRunV2BuildConfig
|
65
|
+
include Google::Apis::Core::Hashable
|
66
|
+
|
67
|
+
# Optional. The base image used to build the function.
|
68
|
+
# Corresponds to the JSON property `baseImage`
|
69
|
+
# @return [String]
|
70
|
+
attr_accessor :base_image
|
71
|
+
|
72
|
+
# Optional. Sets whether the function will receive automatic base image updates.
|
73
|
+
# Corresponds to the JSON property `enableAutomaticUpdates`
|
74
|
+
# @return [Boolean]
|
75
|
+
attr_accessor :enable_automatic_updates
|
76
|
+
alias_method :enable_automatic_updates?, :enable_automatic_updates
|
77
|
+
|
78
|
+
# Optional. User-provided build-time environment variables for the function
|
79
|
+
# Corresponds to the JSON property `environmentVariables`
|
80
|
+
# @return [Hash<String,String>]
|
81
|
+
attr_accessor :environment_variables
|
82
|
+
|
83
|
+
# Optional. The name of the function (as defined in source code) that will be
|
84
|
+
# executed. Defaults to the resource name suffix, if not specified. For backward
|
85
|
+
# compatibility, if function with given name is not found, then the system will
|
86
|
+
# try to use function named "function".
|
87
|
+
# Corresponds to the JSON property `functionTarget`
|
88
|
+
# @return [String]
|
89
|
+
attr_accessor :function_target
|
90
|
+
|
91
|
+
# Optional. Artifact Registry URI to store the built image.
|
92
|
+
# Corresponds to the JSON property `imageUri`
|
93
|
+
# @return [String]
|
94
|
+
attr_accessor :image_uri
|
95
|
+
|
96
|
+
# Output only. The Cloud Build name of the latest successful deployment of the
|
97
|
+
# function.
|
98
|
+
# Corresponds to the JSON property `name`
|
99
|
+
# @return [String]
|
100
|
+
attr_accessor :name
|
101
|
+
|
102
|
+
# Optional. Service account to be used for building the container. The format of
|
103
|
+
# this field is `projects/`projectId`/serviceAccounts/`serviceAccountEmail``.
|
104
|
+
# Corresponds to the JSON property `serviceAccount`
|
105
|
+
# @return [String]
|
106
|
+
attr_accessor :service_account
|
107
|
+
|
108
|
+
# The Cloud Storage bucket URI where the function source code is located.
|
109
|
+
# Corresponds to the JSON property `sourceLocation`
|
110
|
+
# @return [String]
|
111
|
+
attr_accessor :source_location
|
112
|
+
|
113
|
+
# Optional. Name of the Cloud Build Custom Worker Pool that should be used to
|
114
|
+
# build the Cloud Run function. The format of this field is `projects/`project`/
|
115
|
+
# locations/`region`/workerPools/`workerPool`` where ``project`` and ``region``
|
116
|
+
# are the project id and region respectively where the worker pool is defined
|
117
|
+
# and ``workerPool`` is the short name of the worker pool.
|
118
|
+
# Corresponds to the JSON property `workerPool`
|
119
|
+
# @return [String]
|
120
|
+
attr_accessor :worker_pool
|
121
|
+
|
122
|
+
def initialize(**args)
|
123
|
+
update!(**args)
|
124
|
+
end
|
125
|
+
|
126
|
+
# Update properties of this object
|
127
|
+
def update!(**args)
|
128
|
+
@base_image = args[:base_image] if args.key?(:base_image)
|
129
|
+
@enable_automatic_updates = args[:enable_automatic_updates] if args.key?(:enable_automatic_updates)
|
130
|
+
@environment_variables = args[:environment_variables] if args.key?(:environment_variables)
|
131
|
+
@function_target = args[:function_target] if args.key?(:function_target)
|
132
|
+
@image_uri = args[:image_uri] if args.key?(:image_uri)
|
133
|
+
@name = args[:name] if args.key?(:name)
|
134
|
+
@service_account = args[:service_account] if args.key?(:service_account)
|
135
|
+
@source_location = args[:source_location] if args.key?(:source_location)
|
136
|
+
@worker_pool = args[:worker_pool] if args.key?(:worker_pool)
|
137
|
+
end
|
138
|
+
end
|
139
|
+
|
140
|
+
# Build information of the image.
|
141
|
+
class GoogleCloudRunV2BuildInfo
|
142
|
+
include Google::Apis::Core::Hashable
|
143
|
+
|
144
|
+
# Output only. Entry point of the function when the image is a Cloud Run
|
145
|
+
# function.
|
146
|
+
# Corresponds to the JSON property `functionTarget`
|
147
|
+
# @return [String]
|
148
|
+
attr_accessor :function_target
|
149
|
+
|
150
|
+
# Output only. Source code location of the image.
|
151
|
+
# Corresponds to the JSON property `sourceLocation`
|
152
|
+
# @return [String]
|
153
|
+
attr_accessor :source_location
|
154
|
+
|
155
|
+
def initialize(**args)
|
156
|
+
update!(**args)
|
157
|
+
end
|
158
|
+
|
159
|
+
# Update properties of this object
|
160
|
+
def update!(**args)
|
161
|
+
@function_target = args[:function_target] if args.key?(:function_target)
|
162
|
+
@source_location = args[:source_location] if args.key?(:source_location)
|
163
|
+
end
|
164
|
+
end
|
165
|
+
|
62
166
|
# Build the source using Buildpacks.
|
63
167
|
class GoogleCloudRunV2BuildpacksBuild
|
64
168
|
include Google::Apis::Core::Hashable
|
65
169
|
|
66
|
-
# Optional. The base image
|
170
|
+
# Optional. The base image to use for the build.
|
67
171
|
# Corresponds to the JSON property `baseImage`
|
68
172
|
# @return [String]
|
69
173
|
attr_accessor :base_image
|
@@ -251,6 +355,17 @@ module Google
|
|
251
355
|
# @return [Array<String>]
|
252
356
|
attr_accessor :args
|
253
357
|
|
358
|
+
# Base image for this container. Only supported for services. If set, it
|
359
|
+
# indicates that the service is enrolled into automatic base image update.
|
360
|
+
# Corresponds to the JSON property `baseImageUri`
|
361
|
+
# @return [String]
|
362
|
+
attr_accessor :base_image_uri
|
363
|
+
|
364
|
+
# Build information of the image.
|
365
|
+
# Corresponds to the JSON property `buildInfo`
|
366
|
+
# @return [Google::Apis::RunV2::GoogleCloudRunV2BuildInfo]
|
367
|
+
attr_accessor :build_info
|
368
|
+
|
254
369
|
# Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT
|
255
370
|
# is used if this is not provided.
|
256
371
|
# Corresponds to the JSON property `command`
|
@@ -323,6 +438,8 @@ module Google
|
|
323
438
|
# Update properties of this object
|
324
439
|
def update!(**args)
|
325
440
|
@args = args[:args] if args.key?(:args)
|
441
|
+
@base_image_uri = args[:base_image_uri] if args.key?(:base_image_uri)
|
442
|
+
@build_info = args[:build_info] if args.key?(:build_info)
|
326
443
|
@command = args[:command] if args.key?(:command)
|
327
444
|
@depends_on = args[:depends_on] if args.key?(:depends_on)
|
328
445
|
@env = args[:env] if args.key?(:env)
|
@@ -539,6 +656,11 @@ module Google
|
|
539
656
|
# @return [String]
|
540
657
|
attr_accessor :create_time
|
541
658
|
|
659
|
+
# Output only. Email address of the authenticated creator.
|
660
|
+
# Corresponds to the JSON property `creator`
|
661
|
+
# @return [String]
|
662
|
+
attr_accessor :creator
|
663
|
+
|
542
664
|
# Output only. For a deleted resource, the deletion time. It is only populated
|
543
665
|
# as a response to a Delete request.
|
544
666
|
# Corresponds to the JSON property `deleteTime`
|
@@ -689,6 +811,7 @@ module Google
|
|
689
811
|
@completion_time = args[:completion_time] if args.key?(:completion_time)
|
690
812
|
@conditions = args[:conditions] if args.key?(:conditions)
|
691
813
|
@create_time = args[:create_time] if args.key?(:create_time)
|
814
|
+
@creator = args[:creator] if args.key?(:creator)
|
692
815
|
@delete_time = args[:delete_time] if args.key?(:delete_time)
|
693
816
|
@etag = args[:etag] if args.key?(:etag)
|
694
817
|
@expire_time = args[:expire_time] if args.key?(:expire_time)
|
@@ -788,12 +911,12 @@ module Google
|
|
788
911
|
# @return [Hash<String,String>]
|
789
912
|
attr_accessor :labels
|
790
913
|
|
791
|
-
# Specifies the maximum desired number of tasks the execution should
|
792
|
-
# given time.
|
793
|
-
#
|
794
|
-
#
|
795
|
-
#
|
796
|
-
#
|
914
|
+
# Optional. Specifies the maximum desired number of tasks the execution should
|
915
|
+
# run at given time. When the job is run, if this field is 0 or unset, the
|
916
|
+
# maximum possible value will be used for that execution. The actual number of
|
917
|
+
# tasks running in steady state will be less than this number when there are
|
918
|
+
# fewer tasks waiting to be completed remaining, i.e. when the work left to do
|
919
|
+
# is less than max parallelism.
|
797
920
|
# Corresponds to the JSON property `parallelism`
|
798
921
|
# @return [Fixnum]
|
799
922
|
attr_accessor :parallelism
|
@@ -1056,6 +1179,71 @@ module Google
|
|
1056
1179
|
end
|
1057
1180
|
end
|
1058
1181
|
|
1182
|
+
# Holds a single instance split entry for the Worker. Allocations can be done to
|
1183
|
+
# a specific Revision name, or pointing to the latest Ready Revision.
|
1184
|
+
class GoogleCloudRunV2InstanceSplit
|
1185
|
+
include Google::Apis::Core::Hashable
|
1186
|
+
|
1187
|
+
# Specifies percent of the instance split to this Revision. This defaults to
|
1188
|
+
# zero if unspecified.
|
1189
|
+
# Corresponds to the JSON property `percent`
|
1190
|
+
# @return [Fixnum]
|
1191
|
+
attr_accessor :percent
|
1192
|
+
|
1193
|
+
# Revision to which to assign this portion of instances, if split allocation is
|
1194
|
+
# by revision.
|
1195
|
+
# Corresponds to the JSON property `revision`
|
1196
|
+
# @return [String]
|
1197
|
+
attr_accessor :revision
|
1198
|
+
|
1199
|
+
# The allocation type for this instance split.
|
1200
|
+
# Corresponds to the JSON property `type`
|
1201
|
+
# @return [String]
|
1202
|
+
attr_accessor :type
|
1203
|
+
|
1204
|
+
def initialize(**args)
|
1205
|
+
update!(**args)
|
1206
|
+
end
|
1207
|
+
|
1208
|
+
# Update properties of this object
|
1209
|
+
def update!(**args)
|
1210
|
+
@percent = args[:percent] if args.key?(:percent)
|
1211
|
+
@revision = args[:revision] if args.key?(:revision)
|
1212
|
+
@type = args[:type] if args.key?(:type)
|
1213
|
+
end
|
1214
|
+
end
|
1215
|
+
|
1216
|
+
# Represents the observed state of a single `InstanceSplit` entry.
|
1217
|
+
class GoogleCloudRunV2InstanceSplitStatus
|
1218
|
+
include Google::Apis::Core::Hashable
|
1219
|
+
|
1220
|
+
# Specifies percent of the instance split to this Revision.
|
1221
|
+
# Corresponds to the JSON property `percent`
|
1222
|
+
# @return [Fixnum]
|
1223
|
+
attr_accessor :percent
|
1224
|
+
|
1225
|
+
# Revision to which this instance split is assigned.
|
1226
|
+
# Corresponds to the JSON property `revision`
|
1227
|
+
# @return [String]
|
1228
|
+
attr_accessor :revision
|
1229
|
+
|
1230
|
+
# The allocation type for this instance split.
|
1231
|
+
# Corresponds to the JSON property `type`
|
1232
|
+
# @return [String]
|
1233
|
+
attr_accessor :type
|
1234
|
+
|
1235
|
+
def initialize(**args)
|
1236
|
+
update!(**args)
|
1237
|
+
end
|
1238
|
+
|
1239
|
+
# Update properties of this object
|
1240
|
+
def update!(**args)
|
1241
|
+
@percent = args[:percent] if args.key?(:percent)
|
1242
|
+
@revision = args[:revision] if args.key?(:revision)
|
1243
|
+
@type = args[:type] if args.key?(:type)
|
1244
|
+
end
|
1245
|
+
end
|
1246
|
+
|
1059
1247
|
# Job represents the configuration of a single job, which references a container
|
1060
1248
|
# image that is run to completion.
|
1061
1249
|
class GoogleCloudRunV2Job
|
@@ -1410,6 +1598,32 @@ module Google
|
|
1410
1598
|
end
|
1411
1599
|
end
|
1412
1600
|
|
1601
|
+
# Response message containing a list of WorkerPools.
|
1602
|
+
class GoogleCloudRunV2ListWorkerPoolsResponse
|
1603
|
+
include Google::Apis::Core::Hashable
|
1604
|
+
|
1605
|
+
# A token indicating there are more items than page_size. Use it in the next
|
1606
|
+
# ListWorkerPools request to continue.
|
1607
|
+
# Corresponds to the JSON property `nextPageToken`
|
1608
|
+
# @return [String]
|
1609
|
+
attr_accessor :next_page_token
|
1610
|
+
|
1611
|
+
# The resulting list of WorkerPools.
|
1612
|
+
# Corresponds to the JSON property `workerPools`
|
1613
|
+
# @return [Array<Google::Apis::RunV2::GoogleCloudRunV2WorkerPool>]
|
1614
|
+
attr_accessor :worker_pools
|
1615
|
+
|
1616
|
+
def initialize(**args)
|
1617
|
+
update!(**args)
|
1618
|
+
end
|
1619
|
+
|
1620
|
+
# Update properties of this object
|
1621
|
+
def update!(**args)
|
1622
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
1623
|
+
@worker_pools = args[:worker_pools] if args.key?(:worker_pools)
|
1624
|
+
end
|
1625
|
+
end
|
1626
|
+
|
1413
1627
|
# Metadata represents the JSON encoded generated customer metadata.
|
1414
1628
|
class GoogleCloudRunV2Metadata
|
1415
1629
|
include Google::Apis::Core::Hashable
|
@@ -1687,6 +1901,11 @@ module Google
|
|
1687
1901
|
# @return [String]
|
1688
1902
|
attr_accessor :create_time
|
1689
1903
|
|
1904
|
+
# Output only. Email address of the authenticated creator.
|
1905
|
+
# Corresponds to the JSON property `creator`
|
1906
|
+
# @return [String]
|
1907
|
+
attr_accessor :creator
|
1908
|
+
|
1690
1909
|
# Output only. For a deleted resource, the deletion time. It is only populated
|
1691
1910
|
# as a response to a Delete request.
|
1692
1911
|
# Corresponds to the JSON property `deleteTime`
|
@@ -1734,6 +1953,13 @@ module Google
|
|
1734
1953
|
# @return [Fixnum]
|
1735
1954
|
attr_accessor :generation
|
1736
1955
|
|
1956
|
+
# Optional. Output only. True if GPU zonal redundancy is disabled on this
|
1957
|
+
# revision.
|
1958
|
+
# Corresponds to the JSON property `gpuZonalRedundancyDisabled`
|
1959
|
+
# @return [Boolean]
|
1960
|
+
attr_accessor :gpu_zonal_redundancy_disabled
|
1961
|
+
alias_method :gpu_zonal_redundancy_disabled?, :gpu_zonal_redundancy_disabled
|
1962
|
+
|
1737
1963
|
# Output only. Unstructured key value map that can be used to organize and
|
1738
1964
|
# categorize objects. User-provided labels are shared with Google's billing
|
1739
1965
|
# system, so they can be used to filter, or break down billing charges by team,
|
@@ -1867,6 +2093,7 @@ module Google
|
|
1867
2093
|
@conditions = args[:conditions] if args.key?(:conditions)
|
1868
2094
|
@containers = args[:containers] if args.key?(:containers)
|
1869
2095
|
@create_time = args[:create_time] if args.key?(:create_time)
|
2096
|
+
@creator = args[:creator] if args.key?(:creator)
|
1870
2097
|
@delete_time = args[:delete_time] if args.key?(:delete_time)
|
1871
2098
|
@encryption_key = args[:encryption_key] if args.key?(:encryption_key)
|
1872
2099
|
@encryption_key_revocation_action = args[:encryption_key_revocation_action] if args.key?(:encryption_key_revocation_action)
|
@@ -1875,6 +2102,7 @@ module Google
|
|
1875
2102
|
@execution_environment = args[:execution_environment] if args.key?(:execution_environment)
|
1876
2103
|
@expire_time = args[:expire_time] if args.key?(:expire_time)
|
1877
2104
|
@generation = args[:generation] if args.key?(:generation)
|
2105
|
+
@gpu_zonal_redundancy_disabled = args[:gpu_zonal_redundancy_disabled] if args.key?(:gpu_zonal_redundancy_disabled)
|
1878
2106
|
@labels = args[:labels] if args.key?(:labels)
|
1879
2107
|
@launch_stage = args[:launch_stage] if args.key?(:launch_stage)
|
1880
2108
|
@log_uri = args[:log_uri] if args.key?(:log_uri)
|
@@ -1990,6 +2218,12 @@ module Google
|
|
1990
2218
|
# @return [String]
|
1991
2219
|
attr_accessor :execution_environment
|
1992
2220
|
|
2221
|
+
# Optional. True if GPU zonal redundancy is disabled on this revision.
|
2222
|
+
# Corresponds to the JSON property `gpuZonalRedundancyDisabled`
|
2223
|
+
# @return [Boolean]
|
2224
|
+
attr_accessor :gpu_zonal_redundancy_disabled
|
2225
|
+
alias_method :gpu_zonal_redundancy_disabled?, :gpu_zonal_redundancy_disabled
|
2226
|
+
|
1993
2227
|
# Optional. Disables health checking containers during deployment.
|
1994
2228
|
# Corresponds to the JSON property `healthCheckDisabled`
|
1995
2229
|
# @return [Boolean]
|
@@ -2080,6 +2314,7 @@ module Google
|
|
2080
2314
|
@encryption_key_revocation_action = args[:encryption_key_revocation_action] if args.key?(:encryption_key_revocation_action)
|
2081
2315
|
@encryption_key_shutdown_duration = args[:encryption_key_shutdown_duration] if args.key?(:encryption_key_shutdown_duration)
|
2082
2316
|
@execution_environment = args[:execution_environment] if args.key?(:execution_environment)
|
2317
|
+
@gpu_zonal_redundancy_disabled = args[:gpu_zonal_redundancy_disabled] if args.key?(:gpu_zonal_redundancy_disabled)
|
2083
2318
|
@health_check_disabled = args[:health_check_disabled] if args.key?(:health_check_disabled)
|
2084
2319
|
@labels = args[:labels] if args.key?(:labels)
|
2085
2320
|
@max_instance_request_concurrency = args[:max_instance_request_concurrency] if args.key?(:max_instance_request_concurrency)
|
@@ -2232,6 +2467,12 @@ module Google
|
|
2232
2467
|
# @return [Google::Apis::RunV2::GoogleCloudRunV2BinaryAuthorization]
|
2233
2468
|
attr_accessor :binary_authorization
|
2234
2469
|
|
2470
|
+
# Describes the Build step of the function that builds a container from the
|
2471
|
+
# given source.
|
2472
|
+
# Corresponds to the JSON property `buildConfig`
|
2473
|
+
# @return [Google::Apis::RunV2::GoogleCloudRunV2BuildConfig]
|
2474
|
+
attr_accessor :build_config
|
2475
|
+
|
2235
2476
|
# Arbitrary identifier for the API client.
|
2236
2477
|
# Corresponds to the JSON property `client`
|
2237
2478
|
# @return [String]
|
@@ -2293,7 +2534,7 @@ module Google
|
|
2293
2534
|
attr_accessor :etag
|
2294
2535
|
|
2295
2536
|
# Output only. For a deleted resource, the time after which it will be
|
2296
|
-
#
|
2537
|
+
# permanently deleted.
|
2297
2538
|
# Corresponds to the JSON property `expireTime`
|
2298
2539
|
# @return [String]
|
2299
2540
|
attr_accessor :expire_time
|
@@ -2386,7 +2627,7 @@ module Google
|
|
2386
2627
|
# an existing one is updated, Cloud Run will asynchronously perform all
|
2387
2628
|
# necessary steps to bring the Service to the desired serving state. This
|
2388
2629
|
# process is called reconciliation. While reconciliation is in process, `
|
2389
|
-
# observed_generation`, `
|
2630
|
+
# observed_generation`, `latest_ready_revision`, `traffic_statuses`, and `uri`
|
2390
2631
|
# will have transient values that might mismatch the intended state: Once
|
2391
2632
|
# reconciliation is over (and this field is false), there are two possible
|
2392
2633
|
# outcomes: reconciliation succeeded and the serving state matches the Service,
|
@@ -2469,6 +2710,7 @@ module Google
|
|
2469
2710
|
def update!(**args)
|
2470
2711
|
@annotations = args[:annotations] if args.key?(:annotations)
|
2471
2712
|
@binary_authorization = args[:binary_authorization] if args.key?(:binary_authorization)
|
2713
|
+
@build_config = args[:build_config] if args.key?(:build_config)
|
2472
2714
|
@client = args[:client] if args.key?(:client)
|
2473
2715
|
@client_version = args[:client_version] if args.key?(:client_version)
|
2474
2716
|
@conditions = args[:conditions] if args.key?(:conditions)
|
@@ -2833,6 +3075,11 @@ module Google
|
|
2833
3075
|
# @return [String]
|
2834
3076
|
attr_accessor :name
|
2835
3077
|
|
3078
|
+
# Hardware constraints configuration.
|
3079
|
+
# Corresponds to the JSON property `nodeSelector`
|
3080
|
+
# @return [Google::Apis::RunV2::GoogleCloudRunV2NodeSelector]
|
3081
|
+
attr_accessor :node_selector
|
3082
|
+
|
2836
3083
|
# Output only. The generation of this Task. See comments in `Job.reconciling`
|
2837
3084
|
# for additional information on reconciliation process in Cloud Run.
|
2838
3085
|
# Corresponds to the JSON property `observedGeneration`
|
@@ -2934,6 +3181,7 @@ module Google
|
|
2934
3181
|
@log_uri = args[:log_uri] if args.key?(:log_uri)
|
2935
3182
|
@max_retries = args[:max_retries] if args.key?(:max_retries)
|
2936
3183
|
@name = args[:name] if args.key?(:name)
|
3184
|
+
@node_selector = args[:node_selector] if args.key?(:node_selector)
|
2937
3185
|
@observed_generation = args[:observed_generation] if args.key?(:observed_generation)
|
2938
3186
|
@reconciling = args[:reconciling] if args.key?(:reconciling)
|
2939
3187
|
@retried = args[:retried] if args.key?(:retried)
|
@@ -3009,6 +3257,11 @@ module Google
|
|
3009
3257
|
# @return [Fixnum]
|
3010
3258
|
attr_accessor :max_retries
|
3011
3259
|
|
3260
|
+
# Hardware constraints configuration.
|
3261
|
+
# Corresponds to the JSON property `nodeSelector`
|
3262
|
+
# @return [Google::Apis::RunV2::GoogleCloudRunV2NodeSelector]
|
3263
|
+
attr_accessor :node_selector
|
3264
|
+
|
3012
3265
|
# Optional. Email address of the IAM service account associated with the Task of
|
3013
3266
|
# a Job. The service account represents the identity of the running task, and
|
3014
3267
|
# determines what permissions the task has. If not provided, the task will use
|
@@ -3046,6 +3299,7 @@ module Google
|
|
3046
3299
|
@encryption_key = args[:encryption_key] if args.key?(:encryption_key)
|
3047
3300
|
@execution_environment = args[:execution_environment] if args.key?(:execution_environment)
|
3048
3301
|
@max_retries = args[:max_retries] if args.key?(:max_retries)
|
3302
|
+
@node_selector = args[:node_selector] if args.key?(:node_selector)
|
3049
3303
|
@service_account = args[:service_account] if args.key?(:service_account)
|
3050
3304
|
@timeout = args[:timeout] if args.key?(:timeout)
|
3051
3305
|
@volumes = args[:volumes] if args.key?(:volumes)
|
@@ -3298,64 +3552,506 @@ module Google
|
|
3298
3552
|
end
|
3299
3553
|
end
|
3300
3554
|
|
3301
|
-
#
|
3302
|
-
|
3555
|
+
# WorkerPool acts as a top-level container that manages a set of configurations
|
3556
|
+
# and revision templates which implement a pull-based workload. WorkerPool
|
3557
|
+
# exists to provide a singular abstraction which can be access controlled,
|
3558
|
+
# reasoned about, and which encapsulates software lifecycle decisions such as
|
3559
|
+
# rollout policy and team resource ownership.
|
3560
|
+
class GoogleCloudRunV2WorkerPool
|
3303
3561
|
include Google::Apis::Core::Hashable
|
3304
3562
|
|
3305
|
-
#
|
3306
|
-
#
|
3307
|
-
#
|
3308
|
-
#
|
3309
|
-
|
3310
|
-
|
3311
|
-
|
3312
|
-
|
3313
|
-
|
3314
|
-
|
3315
|
-
|
3316
|
-
# Update properties of this object
|
3317
|
-
def update!(**args)
|
3318
|
-
@approval_required = args[:approval_required] if args.key?(:approval_required)
|
3319
|
-
end
|
3320
|
-
end
|
3563
|
+
# Optional. Unstructured key value map that may be set by external tools to
|
3564
|
+
# store and arbitrary metadata. They are not queryable and should be preserved
|
3565
|
+
# when modifying objects. Cloud Run API v2 does not support annotations with `
|
3566
|
+
# run.googleapis.com`, `cloud.googleapis.com`, `serving.knative.dev`, or `
|
3567
|
+
# autoscaling.knative.dev` namespaces, and they will be rejected in new
|
3568
|
+
# resources. All system annotations in v1 now have a corresponding field in v2
|
3569
|
+
# WorkerPool. This field follows Kubernetes annotations' namespacing, limits,
|
3570
|
+
# and rules.
|
3571
|
+
# Corresponds to the JSON property `annotations`
|
3572
|
+
# @return [Hash<String,String>]
|
3573
|
+
attr_accessor :annotations
|
3321
3574
|
|
3322
|
-
|
3323
|
-
|
3324
|
-
|
3325
|
-
|
3575
|
+
# Settings for Binary Authorization feature.
|
3576
|
+
# Corresponds to the JSON property `binaryAuthorization`
|
3577
|
+
# @return [Google::Apis::RunV2::GoogleCloudRunV2BinaryAuthorization]
|
3578
|
+
attr_accessor :binary_authorization
|
3326
3579
|
|
3327
|
-
#
|
3328
|
-
# Corresponds to the JSON property `
|
3580
|
+
# Arbitrary identifier for the API client.
|
3581
|
+
# Corresponds to the JSON property `client`
|
3329
3582
|
# @return [String]
|
3330
|
-
attr_accessor :
|
3583
|
+
attr_accessor :client
|
3331
3584
|
|
3332
|
-
#
|
3333
|
-
#
|
3334
|
-
# Corresponds to the JSON property `approverAccount`
|
3585
|
+
# Arbitrary version identifier for the API client.
|
3586
|
+
# Corresponds to the JSON property `clientVersion`
|
3335
3587
|
# @return [String]
|
3336
|
-
attr_accessor :
|
3588
|
+
attr_accessor :client_version
|
3337
3589
|
|
3338
|
-
#
|
3339
|
-
#
|
3340
|
-
#
|
3341
|
-
|
3590
|
+
# Output only. The Conditions of all other associated sub-resources. They
|
3591
|
+
# contain additional diagnostics information in case the WorkerPool does not
|
3592
|
+
# reach its Serving state. See comments in `reconciling` for additional
|
3593
|
+
# information on reconciliation process in Cloud Run.
|
3594
|
+
# Corresponds to the JSON property `conditions`
|
3595
|
+
# @return [Array<Google::Apis::RunV2::GoogleCloudRunV2Condition>]
|
3596
|
+
attr_accessor :conditions
|
3342
3597
|
|
3343
|
-
#
|
3344
|
-
# Corresponds to the JSON property `
|
3598
|
+
# Output only. The creation time.
|
3599
|
+
# Corresponds to the JSON property `createTime`
|
3345
3600
|
# @return [String]
|
3346
|
-
attr_accessor :
|
3601
|
+
attr_accessor :create_time
|
3347
3602
|
|
3348
|
-
#
|
3349
|
-
#
|
3350
|
-
# differently. An example use case is a link to an external job that approved
|
3351
|
-
# this Build.
|
3352
|
-
# Corresponds to the JSON property `url`
|
3603
|
+
# Output only. Email address of the authenticated creator.
|
3604
|
+
# Corresponds to the JSON property `creator`
|
3353
3605
|
# @return [String]
|
3354
|
-
attr_accessor :
|
3355
|
-
|
3356
|
-
|
3357
|
-
|
3358
|
-
|
3606
|
+
attr_accessor :creator
|
3607
|
+
|
3608
|
+
# One or more custom audiences that you want this worker pool to support.
|
3609
|
+
# Specify each custom audience as the full URL in a string. The custom audiences
|
3610
|
+
# are encoded in the token and used to authenticate requests. For more
|
3611
|
+
# information, see https://cloud.google.com/run/docs/configuring/custom-
|
3612
|
+
# audiences.
|
3613
|
+
# Corresponds to the JSON property `customAudiences`
|
3614
|
+
# @return [Array<String>]
|
3615
|
+
attr_accessor :custom_audiences
|
3616
|
+
|
3617
|
+
# Output only. The deletion time. It is only populated as a response to a Delete
|
3618
|
+
# request.
|
3619
|
+
# Corresponds to the JSON property `deleteTime`
|
3620
|
+
# @return [String]
|
3621
|
+
attr_accessor :delete_time
|
3622
|
+
|
3623
|
+
# User-provided description of the WorkerPool. This field currently has a 512-
|
3624
|
+
# character limit.
|
3625
|
+
# Corresponds to the JSON property `description`
|
3626
|
+
# @return [String]
|
3627
|
+
attr_accessor :description
|
3628
|
+
|
3629
|
+
# Output only. A system-generated fingerprint for this version of the resource.
|
3630
|
+
# May be used to detect modification conflict during updates.
|
3631
|
+
# Corresponds to the JSON property `etag`
|
3632
|
+
# @return [String]
|
3633
|
+
attr_accessor :etag
|
3634
|
+
|
3635
|
+
# Output only. For a deleted resource, the time after which it will be
|
3636
|
+
# permamently deleted.
|
3637
|
+
# Corresponds to the JSON property `expireTime`
|
3638
|
+
# @return [String]
|
3639
|
+
attr_accessor :expire_time
|
3640
|
+
|
3641
|
+
# Output only. A number that monotonically increases every time the user
|
3642
|
+
# modifies the desired state. Please note that unlike v1, this is an int64 value.
|
3643
|
+
# As with most Google APIs, its JSON representation will be a `string` instead
|
3644
|
+
# of an `integer`.
|
3645
|
+
# Corresponds to the JSON property `generation`
|
3646
|
+
# @return [Fixnum]
|
3647
|
+
attr_accessor :generation
|
3648
|
+
|
3649
|
+
# Output only. Detailed status information for corresponding instance splits.
|
3650
|
+
# See comments in `reconciling` for additional information on reconciliation
|
3651
|
+
# process in Cloud Run.
|
3652
|
+
# Corresponds to the JSON property `instanceSplitStatuses`
|
3653
|
+
# @return [Array<Google::Apis::RunV2::GoogleCloudRunV2InstanceSplitStatus>]
|
3654
|
+
attr_accessor :instance_split_statuses
|
3655
|
+
|
3656
|
+
# Optional. Specifies how to distribute instances over a collection of Revisions
|
3657
|
+
# belonging to the WorkerPool. If instance split is empty or not provided,
|
3658
|
+
# defaults to 100% instances assigned to the latest `Ready` Revision.
|
3659
|
+
# Corresponds to the JSON property `instanceSplits`
|
3660
|
+
# @return [Array<Google::Apis::RunV2::GoogleCloudRunV2InstanceSplit>]
|
3661
|
+
attr_accessor :instance_splits
|
3662
|
+
|
3663
|
+
# Optional. Unstructured key value map that can be used to organize and
|
3664
|
+
# categorize objects. User-provided labels are shared with Google's billing
|
3665
|
+
# system, so they can be used to filter, or break down billing charges by team,
|
3666
|
+
# component, environment, state, etc. For more information, visit https://cloud.
|
3667
|
+
# google.com/resource-manager/docs/creating-managing-labels or https://cloud.
|
3668
|
+
# google.com/run/docs/configuring/labels. Cloud Run API v2 does not support
|
3669
|
+
# labels with `run.googleapis.com`, `cloud.googleapis.com`, `serving.knative.dev`
|
3670
|
+
# , or `autoscaling.knative.dev` namespaces, and they will be rejected. All
|
3671
|
+
# system labels in v1 now have a corresponding field in v2 WorkerPool.
|
3672
|
+
# Corresponds to the JSON property `labels`
|
3673
|
+
# @return [Hash<String,String>]
|
3674
|
+
attr_accessor :labels
|
3675
|
+
|
3676
|
+
# Output only. Email address of the last authenticated modifier.
|
3677
|
+
# Corresponds to the JSON property `lastModifier`
|
3678
|
+
# @return [String]
|
3679
|
+
attr_accessor :last_modifier
|
3680
|
+
|
3681
|
+
# Output only. Name of the last created revision. See comments in `reconciling`
|
3682
|
+
# for additional information on reconciliation process in Cloud Run.
|
3683
|
+
# Corresponds to the JSON property `latestCreatedRevision`
|
3684
|
+
# @return [String]
|
3685
|
+
attr_accessor :latest_created_revision
|
3686
|
+
|
3687
|
+
# Output only. Name of the latest revision that is serving traffic. See comments
|
3688
|
+
# in `reconciling` for additional information on reconciliation process in Cloud
|
3689
|
+
# Run.
|
3690
|
+
# Corresponds to the JSON property `latestReadyRevision`
|
3691
|
+
# @return [String]
|
3692
|
+
attr_accessor :latest_ready_revision
|
3693
|
+
|
3694
|
+
# Optional. The launch stage as defined by [Google Cloud Platform Launch Stages](
|
3695
|
+
# https://cloud.google.com/terms/launch-stages). Cloud Run supports `ALPHA`, `
|
3696
|
+
# BETA`, and `GA`. If no value is specified, GA is assumed. Set the launch stage
|
3697
|
+
# to a preview stage on input to allow use of preview features in that stage. On
|
3698
|
+
# read (or output), describes whether the resource uses preview features. For
|
3699
|
+
# example, if ALPHA is provided as input, but only BETA and GA-level features
|
3700
|
+
# are used, this field will be BETA on output.
|
3701
|
+
# Corresponds to the JSON property `launchStage`
|
3702
|
+
# @return [String]
|
3703
|
+
attr_accessor :launch_stage
|
3704
|
+
|
3705
|
+
# The fully qualified name of this WorkerPool. In CreateWorkerPoolRequest, this
|
3706
|
+
# field is ignored, and instead composed from CreateWorkerPoolRequest.parent and
|
3707
|
+
# CreateWorkerPoolRequest.worker_id. Format: projects/`project`/locations/`
|
3708
|
+
# location`/workerPools/`worker_id`
|
3709
|
+
# Corresponds to the JSON property `name`
|
3710
|
+
# @return [String]
|
3711
|
+
attr_accessor :name
|
3712
|
+
|
3713
|
+
# Output only. The generation of this WorkerPool currently serving traffic. See
|
3714
|
+
# comments in `reconciling` for additional information on reconciliation process
|
3715
|
+
# in Cloud Run. Please note that unlike v1, this is an int64 value. As with most
|
3716
|
+
# Google APIs, its JSON representation will be a `string` instead of an `integer`
|
3717
|
+
# .
|
3718
|
+
# Corresponds to the JSON property `observedGeneration`
|
3719
|
+
# @return [Fixnum]
|
3720
|
+
attr_accessor :observed_generation
|
3721
|
+
|
3722
|
+
# Output only. Returns true if the WorkerPool is currently being acted upon by
|
3723
|
+
# the system to bring it into the desired state. When a new WorkerPool is
|
3724
|
+
# created, or an existing one is updated, Cloud Run will asynchronously perform
|
3725
|
+
# all necessary steps to bring the WorkerPool to the desired serving state. This
|
3726
|
+
# process is called reconciliation. While reconciliation is in process, `
|
3727
|
+
# observed_generation`, `latest_ready_revison`, `traffic_statuses`, and `uri`
|
3728
|
+
# will have transient values that might mismatch the intended state: Once
|
3729
|
+
# reconciliation is over (and this field is false), there are two possible
|
3730
|
+
# outcomes: reconciliation succeeded and the serving state matches the
|
3731
|
+
# WorkerPool, or there was an error, and reconciliation failed. This state can
|
3732
|
+
# be found in `terminal_condition.state`. If reconciliation succeeded, the
|
3733
|
+
# following fields will match: `traffic` and `traffic_statuses`, `
|
3734
|
+
# observed_generation` and `generation`, `latest_ready_revision` and `
|
3735
|
+
# latest_created_revision`. If reconciliation failed, `traffic_statuses`, `
|
3736
|
+
# observed_generation`, and `latest_ready_revision` will have the state of the
|
3737
|
+
# last serving revision, or empty for newly created WorkerPools. Additional
|
3738
|
+
# information on the failure can be found in `terminal_condition` and `
|
3739
|
+
# conditions`.
|
3740
|
+
# Corresponds to the JSON property `reconciling`
|
3741
|
+
# @return [Boolean]
|
3742
|
+
attr_accessor :reconciling
|
3743
|
+
alias_method :reconciling?, :reconciling
|
3744
|
+
|
3745
|
+
# Output only. Reserved for future use.
|
3746
|
+
# Corresponds to the JSON property `satisfiesPzs`
|
3747
|
+
# @return [Boolean]
|
3748
|
+
attr_accessor :satisfies_pzs
|
3749
|
+
alias_method :satisfies_pzs?, :satisfies_pzs
|
3750
|
+
|
3751
|
+
# Worker pool scaling settings.
|
3752
|
+
# Corresponds to the JSON property `scaling`
|
3753
|
+
# @return [Google::Apis::RunV2::GoogleCloudRunV2WorkerPoolScaling]
|
3754
|
+
attr_accessor :scaling
|
3755
|
+
|
3756
|
+
# WorkerPoolRevisionTemplate describes the data a worker pool revision should
|
3757
|
+
# have when created from a template.
|
3758
|
+
# Corresponds to the JSON property `template`
|
3759
|
+
# @return [Google::Apis::RunV2::GoogleCloudRunV2WorkerPoolRevisionTemplate]
|
3760
|
+
attr_accessor :template
|
3761
|
+
|
3762
|
+
# Defines a status condition for a resource.
|
3763
|
+
# Corresponds to the JSON property `terminalCondition`
|
3764
|
+
# @return [Google::Apis::RunV2::GoogleCloudRunV2Condition]
|
3765
|
+
attr_accessor :terminal_condition
|
3766
|
+
|
3767
|
+
# Output only. Server assigned unique identifier for the trigger. The value is a
|
3768
|
+
# UUID4 string and guaranteed to remain unchanged until the resource is deleted.
|
3769
|
+
# Corresponds to the JSON property `uid`
|
3770
|
+
# @return [String]
|
3771
|
+
attr_accessor :uid
|
3772
|
+
|
3773
|
+
# Output only. The last-modified time.
|
3774
|
+
# Corresponds to the JSON property `updateTime`
|
3775
|
+
# @return [String]
|
3776
|
+
attr_accessor :update_time
|
3777
|
+
|
3778
|
+
def initialize(**args)
|
3779
|
+
update!(**args)
|
3780
|
+
end
|
3781
|
+
|
3782
|
+
# Update properties of this object
|
3783
|
+
def update!(**args)
|
3784
|
+
@annotations = args[:annotations] if args.key?(:annotations)
|
3785
|
+
@binary_authorization = args[:binary_authorization] if args.key?(:binary_authorization)
|
3786
|
+
@client = args[:client] if args.key?(:client)
|
3787
|
+
@client_version = args[:client_version] if args.key?(:client_version)
|
3788
|
+
@conditions = args[:conditions] if args.key?(:conditions)
|
3789
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
3790
|
+
@creator = args[:creator] if args.key?(:creator)
|
3791
|
+
@custom_audiences = args[:custom_audiences] if args.key?(:custom_audiences)
|
3792
|
+
@delete_time = args[:delete_time] if args.key?(:delete_time)
|
3793
|
+
@description = args[:description] if args.key?(:description)
|
3794
|
+
@etag = args[:etag] if args.key?(:etag)
|
3795
|
+
@expire_time = args[:expire_time] if args.key?(:expire_time)
|
3796
|
+
@generation = args[:generation] if args.key?(:generation)
|
3797
|
+
@instance_split_statuses = args[:instance_split_statuses] if args.key?(:instance_split_statuses)
|
3798
|
+
@instance_splits = args[:instance_splits] if args.key?(:instance_splits)
|
3799
|
+
@labels = args[:labels] if args.key?(:labels)
|
3800
|
+
@last_modifier = args[:last_modifier] if args.key?(:last_modifier)
|
3801
|
+
@latest_created_revision = args[:latest_created_revision] if args.key?(:latest_created_revision)
|
3802
|
+
@latest_ready_revision = args[:latest_ready_revision] if args.key?(:latest_ready_revision)
|
3803
|
+
@launch_stage = args[:launch_stage] if args.key?(:launch_stage)
|
3804
|
+
@name = args[:name] if args.key?(:name)
|
3805
|
+
@observed_generation = args[:observed_generation] if args.key?(:observed_generation)
|
3806
|
+
@reconciling = args[:reconciling] if args.key?(:reconciling)
|
3807
|
+
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
3808
|
+
@scaling = args[:scaling] if args.key?(:scaling)
|
3809
|
+
@template = args[:template] if args.key?(:template)
|
3810
|
+
@terminal_condition = args[:terminal_condition] if args.key?(:terminal_condition)
|
3811
|
+
@uid = args[:uid] if args.key?(:uid)
|
3812
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
3813
|
+
end
|
3814
|
+
end
|
3815
|
+
|
3816
|
+
# WorkerPoolRevisionTemplate describes the data a worker pool revision should
|
3817
|
+
# have when created from a template.
|
3818
|
+
class GoogleCloudRunV2WorkerPoolRevisionTemplate
|
3819
|
+
include Google::Apis::Core::Hashable
|
3820
|
+
|
3821
|
+
# Optional. Unstructured key value map that may be set by external tools to
|
3822
|
+
# store and arbitrary metadata. They are not queryable and should be preserved
|
3823
|
+
# when modifying objects. Cloud Run API v2 does not support annotations with `
|
3824
|
+
# run.googleapis.com`, `cloud.googleapis.com`, `serving.knative.dev`, or `
|
3825
|
+
# autoscaling.knative.dev` namespaces, and they will be rejected. All system
|
3826
|
+
# annotations in v1 now have a corresponding field in v2
|
3827
|
+
# WorkerPoolRevisionTemplate. This field follows Kubernetes annotations'
|
3828
|
+
# namespacing, limits, and rules.
|
3829
|
+
# Corresponds to the JSON property `annotations`
|
3830
|
+
# @return [Hash<String,String>]
|
3831
|
+
attr_accessor :annotations
|
3832
|
+
|
3833
|
+
# Holds list of the containers that defines the unit of execution for this
|
3834
|
+
# Revision.
|
3835
|
+
# Corresponds to the JSON property `containers`
|
3836
|
+
# @return [Array<Google::Apis::RunV2::GoogleCloudRunV2Container>]
|
3837
|
+
attr_accessor :containers
|
3838
|
+
|
3839
|
+
# A reference to a customer managed encryption key (CMEK) to use to encrypt this
|
3840
|
+
# container image. For more information, go to https://cloud.google.com/run/docs/
|
3841
|
+
# securing/using-cmek
|
3842
|
+
# Corresponds to the JSON property `encryptionKey`
|
3843
|
+
# @return [String]
|
3844
|
+
attr_accessor :encryption_key
|
3845
|
+
|
3846
|
+
# Optional. The action to take if the encryption key is revoked.
|
3847
|
+
# Corresponds to the JSON property `encryptionKeyRevocationAction`
|
3848
|
+
# @return [String]
|
3849
|
+
attr_accessor :encryption_key_revocation_action
|
3850
|
+
|
3851
|
+
# Optional. If encryption_key_revocation_action is SHUTDOWN, the duration before
|
3852
|
+
# shutting down all instances. The minimum increment is 1 hour.
|
3853
|
+
# Corresponds to the JSON property `encryptionKeyShutdownDuration`
|
3854
|
+
# @return [String]
|
3855
|
+
attr_accessor :encryption_key_shutdown_duration
|
3856
|
+
|
3857
|
+
# Optional. Unstructured key value map that can be used to organize and
|
3858
|
+
# categorize objects. User-provided labels are shared with Google's billing
|
3859
|
+
# system, so they can be used to filter, or break down billing charges by team,
|
3860
|
+
# component, environment, state, etc. For more information, visit https://cloud.
|
3861
|
+
# google.com/resource-manager/docs/creating-managing-labels or https://cloud.
|
3862
|
+
# google.com/run/docs/configuring/labels. Cloud Run API v2 does not support
|
3863
|
+
# labels with `run.googleapis.com`, `cloud.googleapis.com`, `serving.knative.dev`
|
3864
|
+
# , or `autoscaling.knative.dev` namespaces, and they will be rejected. All
|
3865
|
+
# system labels in v1 now have a corresponding field in v2
|
3866
|
+
# WorkerPoolRevisionTemplate.
|
3867
|
+
# Corresponds to the JSON property `labels`
|
3868
|
+
# @return [Hash<String,String>]
|
3869
|
+
attr_accessor :labels
|
3870
|
+
|
3871
|
+
# Hardware constraints configuration.
|
3872
|
+
# Corresponds to the JSON property `nodeSelector`
|
3873
|
+
# @return [Google::Apis::RunV2::GoogleCloudRunV2NodeSelector]
|
3874
|
+
attr_accessor :node_selector
|
3875
|
+
|
3876
|
+
# Optional. The unique name for the revision. If this field is omitted, it will
|
3877
|
+
# be automatically generated based on the WorkerPool name.
|
3878
|
+
# Corresponds to the JSON property `revision`
|
3879
|
+
# @return [String]
|
3880
|
+
attr_accessor :revision
|
3881
|
+
|
3882
|
+
# Optional. Email address of the IAM service account associated with the
|
3883
|
+
# revision of the service. The service account represents the identity of the
|
3884
|
+
# running revision, and determines what permissions the revision has. If not
|
3885
|
+
# provided, the revision will use the project's default service account.
|
3886
|
+
# Corresponds to the JSON property `serviceAccount`
|
3887
|
+
# @return [String]
|
3888
|
+
attr_accessor :service_account
|
3889
|
+
|
3890
|
+
# Settings for Cloud Service Mesh. For more information see https://cloud.google.
|
3891
|
+
# com/service-mesh/docs/overview.
|
3892
|
+
# Corresponds to the JSON property `serviceMesh`
|
3893
|
+
# @return [Google::Apis::RunV2::GoogleCloudRunV2ServiceMesh]
|
3894
|
+
attr_accessor :service_mesh
|
3895
|
+
|
3896
|
+
# Optional. Enable session affinity.
|
3897
|
+
# Corresponds to the JSON property `sessionAffinity`
|
3898
|
+
# @return [Boolean]
|
3899
|
+
attr_accessor :session_affinity
|
3900
|
+
alias_method :session_affinity?, :session_affinity
|
3901
|
+
|
3902
|
+
# Optional. A list of Volumes to make available to containers.
|
3903
|
+
# Corresponds to the JSON property `volumes`
|
3904
|
+
# @return [Array<Google::Apis::RunV2::GoogleCloudRunV2Volume>]
|
3905
|
+
attr_accessor :volumes
|
3906
|
+
|
3907
|
+
# VPC Access settings. For more information on sending traffic to a VPC network,
|
3908
|
+
# visit https://cloud.google.com/run/docs/configuring/connecting-vpc.
|
3909
|
+
# Corresponds to the JSON property `vpcAccess`
|
3910
|
+
# @return [Google::Apis::RunV2::GoogleCloudRunV2VpcAccess]
|
3911
|
+
attr_accessor :vpc_access
|
3912
|
+
|
3913
|
+
def initialize(**args)
|
3914
|
+
update!(**args)
|
3915
|
+
end
|
3916
|
+
|
3917
|
+
# Update properties of this object
|
3918
|
+
def update!(**args)
|
3919
|
+
@annotations = args[:annotations] if args.key?(:annotations)
|
3920
|
+
@containers = args[:containers] if args.key?(:containers)
|
3921
|
+
@encryption_key = args[:encryption_key] if args.key?(:encryption_key)
|
3922
|
+
@encryption_key_revocation_action = args[:encryption_key_revocation_action] if args.key?(:encryption_key_revocation_action)
|
3923
|
+
@encryption_key_shutdown_duration = args[:encryption_key_shutdown_duration] if args.key?(:encryption_key_shutdown_duration)
|
3924
|
+
@labels = args[:labels] if args.key?(:labels)
|
3925
|
+
@node_selector = args[:node_selector] if args.key?(:node_selector)
|
3926
|
+
@revision = args[:revision] if args.key?(:revision)
|
3927
|
+
@service_account = args[:service_account] if args.key?(:service_account)
|
3928
|
+
@service_mesh = args[:service_mesh] if args.key?(:service_mesh)
|
3929
|
+
@session_affinity = args[:session_affinity] if args.key?(:session_affinity)
|
3930
|
+
@volumes = args[:volumes] if args.key?(:volumes)
|
3931
|
+
@vpc_access = args[:vpc_access] if args.key?(:vpc_access)
|
3932
|
+
end
|
3933
|
+
end
|
3934
|
+
|
3935
|
+
# Worker pool scaling settings.
|
3936
|
+
class GoogleCloudRunV2WorkerPoolScaling
|
3937
|
+
include Google::Apis::Core::Hashable
|
3938
|
+
|
3939
|
+
# Optional. The total number of instances in manual scaling mode.
|
3940
|
+
# Corresponds to the JSON property `manualInstanceCount`
|
3941
|
+
# @return [Fixnum]
|
3942
|
+
attr_accessor :manual_instance_count
|
3943
|
+
|
3944
|
+
# Optional. The maximum count of instances distributed among revisions based on
|
3945
|
+
# the specified instance split percentages.
|
3946
|
+
# Corresponds to the JSON property `maxInstanceCount`
|
3947
|
+
# @return [Fixnum]
|
3948
|
+
attr_accessor :max_instance_count
|
3949
|
+
|
3950
|
+
# Optional. A maximum percentage of instances that will be moved in each step of
|
3951
|
+
# traffic split changes. When set to a positive value, the server will bring up,
|
3952
|
+
# at most, that percentage of new instances at a time before moving traffic to
|
3953
|
+
# them. After moving traffic, the server will bring down instances of the old
|
3954
|
+
# revision. This can reduce a spike of total active instances during changes
|
3955
|
+
# from one revision to another but specifying how many extra instances can be
|
3956
|
+
# brought up at a time.
|
3957
|
+
# Corresponds to the JSON property `maxSurge`
|
3958
|
+
# @return [Fixnum]
|
3959
|
+
attr_accessor :max_surge
|
3960
|
+
|
3961
|
+
# Optional. A maximum percentage of instances that may be unavailable during
|
3962
|
+
# changes from one revision to another. When set to a positive value, the server
|
3963
|
+
# may bring down instances before bringing up new instances. This can prevent a
|
3964
|
+
# spike of total active instances during changes from one revision by reducing
|
3965
|
+
# the pool of instances before bringing up new ones. Some requests may be slow
|
3966
|
+
# or fail to serve during the transition.
|
3967
|
+
# Corresponds to the JSON property `maxUnavailable`
|
3968
|
+
# @return [Fixnum]
|
3969
|
+
attr_accessor :max_unavailable
|
3970
|
+
|
3971
|
+
# Optional. The minimum count of instances distributed among revisions based on
|
3972
|
+
# the specified instance split percentages.
|
3973
|
+
# Corresponds to the JSON property `minInstanceCount`
|
3974
|
+
# @return [Fixnum]
|
3975
|
+
attr_accessor :min_instance_count
|
3976
|
+
|
3977
|
+
# Optional. The scaling mode for the worker pool.
|
3978
|
+
# Corresponds to the JSON property `scalingMode`
|
3979
|
+
# @return [String]
|
3980
|
+
attr_accessor :scaling_mode
|
3981
|
+
|
3982
|
+
def initialize(**args)
|
3983
|
+
update!(**args)
|
3984
|
+
end
|
3985
|
+
|
3986
|
+
# Update properties of this object
|
3987
|
+
def update!(**args)
|
3988
|
+
@manual_instance_count = args[:manual_instance_count] if args.key?(:manual_instance_count)
|
3989
|
+
@max_instance_count = args[:max_instance_count] if args.key?(:max_instance_count)
|
3990
|
+
@max_surge = args[:max_surge] if args.key?(:max_surge)
|
3991
|
+
@max_unavailable = args[:max_unavailable] if args.key?(:max_unavailable)
|
3992
|
+
@min_instance_count = args[:min_instance_count] if args.key?(:min_instance_count)
|
3993
|
+
@scaling_mode = args[:scaling_mode] if args.key?(:scaling_mode)
|
3994
|
+
end
|
3995
|
+
end
|
3996
|
+
|
3997
|
+
# ApprovalConfig describes configuration for manual approval of a build.
|
3998
|
+
class GoogleDevtoolsCloudbuildV1ApprovalConfig
|
3999
|
+
include Google::Apis::Core::Hashable
|
4000
|
+
|
4001
|
+
# Whether or not approval is needed. If this is set on a build, it will become
|
4002
|
+
# pending when created, and will need to be explicitly approved to start.
|
4003
|
+
# Corresponds to the JSON property `approvalRequired`
|
4004
|
+
# @return [Boolean]
|
4005
|
+
attr_accessor :approval_required
|
4006
|
+
alias_method :approval_required?, :approval_required
|
4007
|
+
|
4008
|
+
def initialize(**args)
|
4009
|
+
update!(**args)
|
4010
|
+
end
|
4011
|
+
|
4012
|
+
# Update properties of this object
|
4013
|
+
def update!(**args)
|
4014
|
+
@approval_required = args[:approval_required] if args.key?(:approval_required)
|
4015
|
+
end
|
4016
|
+
end
|
4017
|
+
|
4018
|
+
# ApprovalResult describes the decision and associated metadata of a manual
|
4019
|
+
# approval of a build.
|
4020
|
+
class GoogleDevtoolsCloudbuildV1ApprovalResult
|
4021
|
+
include Google::Apis::Core::Hashable
|
4022
|
+
|
4023
|
+
# Output only. The time when the approval decision was made.
|
4024
|
+
# Corresponds to the JSON property `approvalTime`
|
4025
|
+
# @return [String]
|
4026
|
+
attr_accessor :approval_time
|
4027
|
+
|
4028
|
+
# Output only. Email of the user that called the ApproveBuild API to approve or
|
4029
|
+
# reject a build at the time that the API was called.
|
4030
|
+
# Corresponds to the JSON property `approverAccount`
|
4031
|
+
# @return [String]
|
4032
|
+
attr_accessor :approver_account
|
4033
|
+
|
4034
|
+
# Optional. An optional comment for this manual approval result.
|
4035
|
+
# Corresponds to the JSON property `comment`
|
4036
|
+
# @return [String]
|
4037
|
+
attr_accessor :comment
|
4038
|
+
|
4039
|
+
# Required. The decision of this manual approval.
|
4040
|
+
# Corresponds to the JSON property `decision`
|
4041
|
+
# @return [String]
|
4042
|
+
attr_accessor :decision
|
4043
|
+
|
4044
|
+
# Optional. An optional URL tied to this manual approval result. This field is
|
4045
|
+
# essentially the same as comment, except that it will be rendered by the UI
|
4046
|
+
# differently. An example use case is a link to an external job that approved
|
4047
|
+
# this Build.
|
4048
|
+
# Corresponds to the JSON property `url`
|
4049
|
+
# @return [String]
|
4050
|
+
attr_accessor :url
|
4051
|
+
|
4052
|
+
def initialize(**args)
|
4053
|
+
update!(**args)
|
4054
|
+
end
|
3359
4055
|
|
3360
4056
|
# Update properties of this object
|
3361
4057
|
def update!(**args)
|
@@ -3407,6 +4103,13 @@ module Google
|
|
3407
4103
|
class GoogleDevtoolsCloudbuildV1Artifacts
|
3408
4104
|
include Google::Apis::Core::Hashable
|
3409
4105
|
|
4106
|
+
# Optional. A list of Go modules to be uploaded to Artifact Registry upon
|
4107
|
+
# successful completion of all build steps. If any objects fail to be pushed,
|
4108
|
+
# the build is marked FAILURE.
|
4109
|
+
# Corresponds to the JSON property `goModules`
|
4110
|
+
# @return [Array<Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1GoModule>]
|
4111
|
+
attr_accessor :go_modules
|
4112
|
+
|
3410
4113
|
# A list of images to be pushed upon the successful completion of all build
|
3411
4114
|
# steps. The images will be pushed using the builder service account's
|
3412
4115
|
# credentials. The digests of the pushed images will be stored in the Build
|
@@ -3454,6 +4157,7 @@ module Google
|
|
3454
4157
|
|
3455
4158
|
# Update properties of this object
|
3456
4159
|
def update!(**args)
|
4160
|
+
@go_modules = args[:go_modules] if args.key?(:go_modules)
|
3457
4161
|
@images = args[:images] if args.key?(:images)
|
3458
4162
|
@maven_artifacts = args[:maven_artifacts] if args.key?(:maven_artifacts)
|
3459
4163
|
@npm_packages = args[:npm_packages] if args.key?(:npm_packages)
|
@@ -3504,6 +4208,12 @@ module Google
|
|
3504
4208
|
# @return [String]
|
3505
4209
|
attr_accessor :create_time
|
3506
4210
|
|
4211
|
+
# Optional. Dependencies that the Cloud Build worker will fetch before executing
|
4212
|
+
# user steps.
|
4213
|
+
# Corresponds to the JSON property `dependencies`
|
4214
|
+
# @return [Array<Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1Dependency>]
|
4215
|
+
attr_accessor :dependencies
|
4216
|
+
|
3507
4217
|
# A fatal problem encountered during the execution of the build.
|
3508
4218
|
# Corresponds to the JSON property `failureInfo`
|
3509
4219
|
# @return [Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1FailureInfo]
|
@@ -3665,6 +4375,7 @@ module Google
|
|
3665
4375
|
@available_secrets = args[:available_secrets] if args.key?(:available_secrets)
|
3666
4376
|
@build_trigger_id = args[:build_trigger_id] if args.key?(:build_trigger_id)
|
3667
4377
|
@create_time = args[:create_time] if args.key?(:create_time)
|
4378
|
+
@dependencies = args[:dependencies] if args.key?(:dependencies)
|
3668
4379
|
@failure_info = args[:failure_info] if args.key?(:failure_info)
|
3669
4380
|
@finish_time = args[:finish_time] if args.key?(:finish_time)
|
3670
4381
|
@git_config = args[:git_config] if args.key?(:git_config)
|
@@ -3789,6 +4500,13 @@ module Google
|
|
3789
4500
|
attr_accessor :dynamic_substitutions
|
3790
4501
|
alias_method :dynamic_substitutions?, :dynamic_substitutions
|
3791
4502
|
|
4503
|
+
# Optional. Option to specify whether structured logging is enabled. If true,
|
4504
|
+
# JSON-formatted logs are parsed as structured logs.
|
4505
|
+
# Corresponds to the JSON property `enableStructuredLogging`
|
4506
|
+
# @return [Boolean]
|
4507
|
+
attr_accessor :enable_structured_logging
|
4508
|
+
alias_method :enable_structured_logging?, :enable_structured_logging
|
4509
|
+
|
3792
4510
|
# A list of global environment variable definitions that will exist for all
|
3793
4511
|
# build steps in this build. If a variable is defined in both globally and in a
|
3794
4512
|
# build step, the variable will use the build step value. The elements are of
|
@@ -3821,6 +4539,11 @@ module Google
|
|
3821
4539
|
# @return [Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1PoolOption]
|
3822
4540
|
attr_accessor :pool
|
3823
4541
|
|
4542
|
+
# Optional. Option to specify the Pub/Sub topic to receive build status updates.
|
4543
|
+
# Corresponds to the JSON property `pubsubTopic`
|
4544
|
+
# @return [String]
|
4545
|
+
attr_accessor :pubsub_topic
|
4546
|
+
|
3824
4547
|
# Requested verifiability options.
|
3825
4548
|
# Corresponds to the JSON property `requestedVerifyOption`
|
3826
4549
|
# @return [String]
|
@@ -3870,11 +4593,13 @@ module Google
|
|
3870
4593
|
@default_logs_bucket_behavior = args[:default_logs_bucket_behavior] if args.key?(:default_logs_bucket_behavior)
|
3871
4594
|
@disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
|
3872
4595
|
@dynamic_substitutions = args[:dynamic_substitutions] if args.key?(:dynamic_substitutions)
|
4596
|
+
@enable_structured_logging = args[:enable_structured_logging] if args.key?(:enable_structured_logging)
|
3873
4597
|
@env = args[:env] if args.key?(:env)
|
3874
4598
|
@log_streaming_option = args[:log_streaming_option] if args.key?(:log_streaming_option)
|
3875
4599
|
@logging = args[:logging] if args.key?(:logging)
|
3876
4600
|
@machine_type = args[:machine_type] if args.key?(:machine_type)
|
3877
4601
|
@pool = args[:pool] if args.key?(:pool)
|
4602
|
+
@pubsub_topic = args[:pubsub_topic] if args.key?(:pubsub_topic)
|
3878
4603
|
@requested_verify_option = args[:requested_verify_option] if args.key?(:requested_verify_option)
|
3879
4604
|
@secret_env = args[:secret_env] if args.key?(:secret_env)
|
3880
4605
|
@source_provenance_hash = args[:source_provenance_hash] if args.key?(:source_provenance_hash)
|
@@ -4116,6 +4841,34 @@ module Google
|
|
4116
4841
|
end
|
4117
4842
|
end
|
4118
4843
|
|
4844
|
+
# A dependency that the Cloud Build worker will fetch before executing user
|
4845
|
+
# steps.
|
4846
|
+
class GoogleDevtoolsCloudbuildV1Dependency
|
4847
|
+
include Google::Apis::Core::Hashable
|
4848
|
+
|
4849
|
+
# If set to true disable all dependency fetching (ignoring the default source as
|
4850
|
+
# well).
|
4851
|
+
# Corresponds to the JSON property `empty`
|
4852
|
+
# @return [Boolean]
|
4853
|
+
attr_accessor :empty
|
4854
|
+
alias_method :empty?, :empty
|
4855
|
+
|
4856
|
+
# Represents a git repository as a build dependency.
|
4857
|
+
# Corresponds to the JSON property `gitSource`
|
4858
|
+
# @return [Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1GitSourceDependency]
|
4859
|
+
attr_accessor :git_source
|
4860
|
+
|
4861
|
+
def initialize(**args)
|
4862
|
+
update!(**args)
|
4863
|
+
end
|
4864
|
+
|
4865
|
+
# Update properties of this object
|
4866
|
+
def update!(**args)
|
4867
|
+
@empty = args[:empty] if args.key?(:empty)
|
4868
|
+
@git_source = args[:git_source] if args.key?(:git_source)
|
4869
|
+
end
|
4870
|
+
end
|
4871
|
+
|
4119
4872
|
# This config defines the location of a source through Developer Connect.
|
4120
4873
|
class GoogleDevtoolsCloudbuildV1DeveloperConnectConfig
|
4121
4874
|
include Google::Apis::Core::Hashable
|
@@ -4253,6 +5006,136 @@ module Google
|
|
4253
5006
|
end
|
4254
5007
|
end
|
4255
5008
|
|
5009
|
+
# Represents a git repository as a build dependency.
|
5010
|
+
class GoogleDevtoolsCloudbuildV1GitSourceDependency
|
5011
|
+
include Google::Apis::Core::Hashable
|
5012
|
+
|
5013
|
+
# Optional. How much history should be fetched for the build (default 1, -1 for
|
5014
|
+
# all history).
|
5015
|
+
# Corresponds to the JSON property `depth`
|
5016
|
+
# @return [Fixnum]
|
5017
|
+
attr_accessor :depth
|
5018
|
+
|
5019
|
+
# Required. Where should the files be placed on the worker.
|
5020
|
+
# Corresponds to the JSON property `destPath`
|
5021
|
+
# @return [String]
|
5022
|
+
attr_accessor :dest_path
|
5023
|
+
|
5024
|
+
# Optional. True if submodules should be fetched too (default false).
|
5025
|
+
# Corresponds to the JSON property `recurseSubmodules`
|
5026
|
+
# @return [Boolean]
|
5027
|
+
attr_accessor :recurse_submodules
|
5028
|
+
alias_method :recurse_submodules?, :recurse_submodules
|
5029
|
+
|
5030
|
+
# A repository for a git source.
|
5031
|
+
# Corresponds to the JSON property `repository`
|
5032
|
+
# @return [Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1GitSourceRepository]
|
5033
|
+
attr_accessor :repository
|
5034
|
+
|
5035
|
+
# Required. The revision that we will fetch the repo at.
|
5036
|
+
# Corresponds to the JSON property `revision`
|
5037
|
+
# @return [String]
|
5038
|
+
attr_accessor :revision
|
5039
|
+
|
5040
|
+
def initialize(**args)
|
5041
|
+
update!(**args)
|
5042
|
+
end
|
5043
|
+
|
5044
|
+
# Update properties of this object
|
5045
|
+
def update!(**args)
|
5046
|
+
@depth = args[:depth] if args.key?(:depth)
|
5047
|
+
@dest_path = args[:dest_path] if args.key?(:dest_path)
|
5048
|
+
@recurse_submodules = args[:recurse_submodules] if args.key?(:recurse_submodules)
|
5049
|
+
@repository = args[:repository] if args.key?(:repository)
|
5050
|
+
@revision = args[:revision] if args.key?(:revision)
|
5051
|
+
end
|
5052
|
+
end
|
5053
|
+
|
5054
|
+
# A repository for a git source.
|
5055
|
+
class GoogleDevtoolsCloudbuildV1GitSourceRepository
|
5056
|
+
include Google::Apis::Core::Hashable
|
5057
|
+
|
5058
|
+
# The Developer Connect Git repository link or the url that matches a repository
|
5059
|
+
# link in the current project, formatted as `projects/*/locations/*/connections/*
|
5060
|
+
# /gitRepositoryLink/*`
|
5061
|
+
# Corresponds to the JSON property `developerConnect`
|
5062
|
+
# @return [String]
|
5063
|
+
attr_accessor :developer_connect
|
5064
|
+
|
5065
|
+
# Location of the Git repository.
|
5066
|
+
# Corresponds to the JSON property `url`
|
5067
|
+
# @return [String]
|
5068
|
+
attr_accessor :url
|
5069
|
+
|
5070
|
+
def initialize(**args)
|
5071
|
+
update!(**args)
|
5072
|
+
end
|
5073
|
+
|
5074
|
+
# Update properties of this object
|
5075
|
+
def update!(**args)
|
5076
|
+
@developer_connect = args[:developer_connect] if args.key?(:developer_connect)
|
5077
|
+
@url = args[:url] if args.key?(:url)
|
5078
|
+
end
|
5079
|
+
end
|
5080
|
+
|
5081
|
+
# Go module to upload to Artifact Registry upon successful completion of all
|
5082
|
+
# build steps. A module refers to all dependencies in a go.mod file.
|
5083
|
+
class GoogleDevtoolsCloudbuildV1GoModule
|
5084
|
+
include Google::Apis::Core::Hashable
|
5085
|
+
|
5086
|
+
# Optional. The Go module's "module path". e.g. example.com/foo/v2
|
5087
|
+
# Corresponds to the JSON property `modulePath`
|
5088
|
+
# @return [String]
|
5089
|
+
attr_accessor :module_path
|
5090
|
+
|
5091
|
+
# Optional. The Go module's semantic version in the form vX.Y.Z. e.g. v0.1.1 Pre-
|
5092
|
+
# release identifiers can also be added by appending a dash and dot separated
|
5093
|
+
# ASCII alphanumeric characters and hyphens. e.g. v0.2.3-alpha.x.12m.5
|
5094
|
+
# Corresponds to the JSON property `moduleVersion`
|
5095
|
+
# @return [String]
|
5096
|
+
attr_accessor :module_version
|
5097
|
+
|
5098
|
+
# Optional. Location of the Artifact Registry repository. i.e. us-east1 Defaults
|
5099
|
+
# to the build’s location.
|
5100
|
+
# Corresponds to the JSON property `repositoryLocation`
|
5101
|
+
# @return [String]
|
5102
|
+
attr_accessor :repository_location
|
5103
|
+
|
5104
|
+
# Optional. Artifact Registry repository name. Specified Go modules will be
|
5105
|
+
# zipped and uploaded to Artifact Registry with this location as a prefix. e.g.
|
5106
|
+
# my-go-repo
|
5107
|
+
# Corresponds to the JSON property `repositoryName`
|
5108
|
+
# @return [String]
|
5109
|
+
attr_accessor :repository_name
|
5110
|
+
|
5111
|
+
# Optional. Project ID of the Artifact Registry repository. Defaults to the
|
5112
|
+
# build project.
|
5113
|
+
# Corresponds to the JSON property `repositoryProjectId`
|
5114
|
+
# @return [String]
|
5115
|
+
attr_accessor :repository_project_id
|
5116
|
+
|
5117
|
+
# Optional. Source path of the go.mod file in the build's workspace. If not
|
5118
|
+
# specified, this will default to the current directory. e.g. ~/code/go/
|
5119
|
+
# mypackage
|
5120
|
+
# Corresponds to the JSON property `sourcePath`
|
5121
|
+
# @return [String]
|
5122
|
+
attr_accessor :source_path
|
5123
|
+
|
5124
|
+
def initialize(**args)
|
5125
|
+
update!(**args)
|
5126
|
+
end
|
5127
|
+
|
5128
|
+
# Update properties of this object
|
5129
|
+
def update!(**args)
|
5130
|
+
@module_path = args[:module_path] if args.key?(:module_path)
|
5131
|
+
@module_version = args[:module_version] if args.key?(:module_version)
|
5132
|
+
@repository_location = args[:repository_location] if args.key?(:repository_location)
|
5133
|
+
@repository_name = args[:repository_name] if args.key?(:repository_name)
|
5134
|
+
@repository_project_id = args[:repository_project_id] if args.key?(:repository_project_id)
|
5135
|
+
@source_path = args[:source_path] if args.key?(:source_path)
|
5136
|
+
end
|
5137
|
+
end
|
5138
|
+
|
4256
5139
|
# Container message for hash values.
|
4257
5140
|
class GoogleDevtoolsCloudbuildV1Hash
|
4258
5141
|
include Google::Apis::Core::Hashable
|
@@ -4561,6 +5444,12 @@ module Google
|
|
4561
5444
|
# @return [Array<String>]
|
4562
5445
|
attr_accessor :build_step_outputs
|
4563
5446
|
|
5447
|
+
# Optional. Go module artifacts uploaded to Artifact Registry at the end of the
|
5448
|
+
# build.
|
5449
|
+
# Corresponds to the JSON property `goModules`
|
5450
|
+
# @return [Array<Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1UploadedGoModule>]
|
5451
|
+
attr_accessor :go_modules
|
5452
|
+
|
4564
5453
|
# Container images that were built as a part of the build.
|
4565
5454
|
# Corresponds to the JSON property `images`
|
4566
5455
|
# @return [Array<Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1BuiltImage>]
|
@@ -4597,6 +5486,7 @@ module Google
|
|
4597
5486
|
@artifact_timing = args[:artifact_timing] if args.key?(:artifact_timing)
|
4598
5487
|
@build_step_images = args[:build_step_images] if args.key?(:build_step_images)
|
4599
5488
|
@build_step_outputs = args[:build_step_outputs] if args.key?(:build_step_outputs)
|
5489
|
+
@go_modules = args[:go_modules] if args.key?(:go_modules)
|
4600
5490
|
@images = args[:images] if args.key?(:images)
|
4601
5491
|
@maven_artifacts = args[:maven_artifacts] if args.key?(:maven_artifacts)
|
4602
5492
|
@npm_packages = args[:npm_packages] if args.key?(:npm_packages)
|
@@ -4900,6 +5790,39 @@ module Google
|
|
4900
5790
|
end
|
4901
5791
|
end
|
4902
5792
|
|
5793
|
+
# A Go module artifact uploaded to Artifact Registry using the GoModule
|
5794
|
+
# directive.
|
5795
|
+
class GoogleDevtoolsCloudbuildV1UploadedGoModule
|
5796
|
+
include Google::Apis::Core::Hashable
|
5797
|
+
|
5798
|
+
# Container message for hashes of byte content of files, used in
|
5799
|
+
# SourceProvenance messages to verify integrity of source input to the build.
|
5800
|
+
# Corresponds to the JSON property `fileHashes`
|
5801
|
+
# @return [Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1FileHashes]
|
5802
|
+
attr_accessor :file_hashes
|
5803
|
+
|
5804
|
+
# Start and end times for a build execution phase.
|
5805
|
+
# Corresponds to the JSON property `pushTiming`
|
5806
|
+
# @return [Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1TimeSpan]
|
5807
|
+
attr_accessor :push_timing
|
5808
|
+
|
5809
|
+
# URI of the uploaded artifact.
|
5810
|
+
# Corresponds to the JSON property `uri`
|
5811
|
+
# @return [String]
|
5812
|
+
attr_accessor :uri
|
5813
|
+
|
5814
|
+
def initialize(**args)
|
5815
|
+
update!(**args)
|
5816
|
+
end
|
5817
|
+
|
5818
|
+
# Update properties of this object
|
5819
|
+
def update!(**args)
|
5820
|
+
@file_hashes = args[:file_hashes] if args.key?(:file_hashes)
|
5821
|
+
@push_timing = args[:push_timing] if args.key?(:push_timing)
|
5822
|
+
@uri = args[:uri] if args.key?(:uri)
|
5823
|
+
end
|
5824
|
+
end
|
5825
|
+
|
4903
5826
|
# A Maven artifact uploaded using the MavenArtifact directive.
|
4904
5827
|
class GoogleDevtoolsCloudbuildV1UploadedMavenArtifact
|
4905
5828
|
include Google::Apis::Core::Hashable
|
@@ -5628,7 +6551,7 @@ module Google
|
|
5628
6551
|
end
|
5629
6552
|
end
|
5630
6553
|
|
5631
|
-
#
|
6554
|
+
#
|
5632
6555
|
class Proto2BridgeMessageSet
|
5633
6556
|
include Google::Apis::Core::Hashable
|
5634
6557
|
|
@@ -5645,15 +6568,16 @@ module Google
|
|
5645
6568
|
class UtilStatusProto
|
5646
6569
|
include Google::Apis::Core::Hashable
|
5647
6570
|
|
5648
|
-
#
|
5649
|
-
#
|
5650
|
-
# it definitely will be.
|
6571
|
+
# copybara:strip_begin(b/383363683) copybara:strip_end_and_replace optional
|
6572
|
+
# int32 canonical_code = 6;
|
5651
6573
|
# Corresponds to the JSON property `canonicalCode`
|
5652
6574
|
# @return [Fixnum]
|
5653
6575
|
attr_accessor :canonical_code
|
5654
6576
|
|
5655
6577
|
# Numeric code drawn from the space specified below. Often, this is the
|
5656
6578
|
# canonical error space, and code is drawn from google3/util/task/codes.proto
|
6579
|
+
# copybara:strip_begin(b/383363683) copybara:strip_end_and_replace optional
|
6580
|
+
# int32 code = 1;
|
5657
6581
|
# Corresponds to the JSON property `code`
|
5658
6582
|
# @return [Fixnum]
|
5659
6583
|
attr_accessor :code
|
@@ -5664,13 +6588,16 @@ module Google
|
|
5664
6588
|
# @return [String]
|
5665
6589
|
attr_accessor :message
|
5666
6590
|
|
5667
|
-
#
|
6591
|
+
# message_set associates an arbitrary proto message with the status. copybara:
|
6592
|
+
# strip_begin(b/383363683) copybara:strip_end_and_replace optional proto2.bridge.
|
6593
|
+
# MessageSet message_set = 5;
|
5668
6594
|
# Corresponds to the JSON property `messageSet`
|
5669
6595
|
# @return [Google::Apis::RunV2::Proto2BridgeMessageSet]
|
5670
6596
|
attr_accessor :message_set
|
5671
6597
|
|
5672
|
-
#
|
5673
|
-
# status
|
6598
|
+
# copybara:strip_begin(b/383363683) Space to which this status belongs copybara:
|
6599
|
+
# strip_end_and_replace optional string space = 2; // Space to which this status
|
6600
|
+
# belongs
|
5674
6601
|
# Corresponds to the JSON property `space`
|
5675
6602
|
# @return [String]
|
5676
6603
|
attr_accessor :space
|