google-apis-cloudbuild_v1alpha2 0.24.0 → 0.26.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: 5d44573d61f4538737ae5d068c1c6d2ee4f5ccae6995cce9457ad99fb854c76d
|
4
|
+
data.tar.gz: 43c932955c35f73691f4cc227b4e064e589101548ab22f5b1465db1a451c9833
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 36afabdf8205d5198fffdfd2edd27ebc3a692fee0888778c882b526bcc0f6f652272237691088071a83f02a13a53c0fd8bbac82c5486213da1260da03066e771
|
7
|
+
data.tar.gz: 2f9562a34037af42d93d59108b421d4432e81a2f8d72b20a24457d9ffef571815822e8afee514d4a3aee58a7b7fbe51411faf5bfbe0a6c7fd84f856c88e5ce09
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,15 @@
|
|
1
1
|
# Release history for google-apis-cloudbuild_v1alpha2
|
2
2
|
|
3
|
+
### v0.26.0 (2022-09-28)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220916
|
6
|
+
* Regenerated using generator version 0.10.0
|
7
|
+
|
8
|
+
### v0.25.0 (2022-08-31)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20220826
|
11
|
+
* Regenerated using generator version 0.9.0
|
12
|
+
|
3
13
|
### v0.24.0 (2022-07-01)
|
4
14
|
|
5
15
|
* Regenerated using generator version 0.8.0
|
@@ -237,6 +237,57 @@ module Google
|
|
237
237
|
end
|
238
238
|
end
|
239
239
|
|
240
|
+
# Response of BatchCreateGitLabConnectedRepositories RPC method.
|
241
|
+
class BatchCreateGitLabConnectedRepositoriesResponse
|
242
|
+
include Google::Apis::Core::Hashable
|
243
|
+
|
244
|
+
# The GitLab connected repository requests' responses.
|
245
|
+
# Corresponds to the JSON property `gitlabConnectedRepositories`
|
246
|
+
# @return [Array<Google::Apis::CloudbuildV1alpha2::GitLabConnectedRepository>]
|
247
|
+
attr_accessor :gitlab_connected_repositories
|
248
|
+
|
249
|
+
def initialize(**args)
|
250
|
+
update!(**args)
|
251
|
+
end
|
252
|
+
|
253
|
+
# Update properties of this object
|
254
|
+
def update!(**args)
|
255
|
+
@gitlab_connected_repositories = args[:gitlab_connected_repositories] if args.key?(:gitlab_connected_repositories)
|
256
|
+
end
|
257
|
+
end
|
258
|
+
|
259
|
+
# Metadata for `BatchCreateGitLabConnectedRepositories` operation.
|
260
|
+
class BatchCreateGitLabConnectedRepositoriesResponseMetadata
|
261
|
+
include Google::Apis::Core::Hashable
|
262
|
+
|
263
|
+
# Time the operation was completed.
|
264
|
+
# Corresponds to the JSON property `completeTime`
|
265
|
+
# @return [String]
|
266
|
+
attr_accessor :complete_time
|
267
|
+
|
268
|
+
# The name of the `GitLabConfig` that added connected repositories. Format: `
|
269
|
+
# projects/`project`/locations/`location`/gitLabConfigs/`config``
|
270
|
+
# Corresponds to the JSON property `config`
|
271
|
+
# @return [String]
|
272
|
+
attr_accessor :config
|
273
|
+
|
274
|
+
# Time the operation was created.
|
275
|
+
# Corresponds to the JSON property `createTime`
|
276
|
+
# @return [String]
|
277
|
+
attr_accessor :create_time
|
278
|
+
|
279
|
+
def initialize(**args)
|
280
|
+
update!(**args)
|
281
|
+
end
|
282
|
+
|
283
|
+
# Update properties of this object
|
284
|
+
def update!(**args)
|
285
|
+
@complete_time = args[:complete_time] if args.key?(:complete_time)
|
286
|
+
@config = args[:config] if args.key?(:config)
|
287
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
288
|
+
end
|
289
|
+
end
|
290
|
+
|
240
291
|
# / BitbucketServerConnectedRepository represents a connected Bitbucket Server /
|
241
292
|
# repository.
|
242
293
|
class BitbucketServerConnectedRepository
|
@@ -716,6 +767,22 @@ module Google
|
|
716
767
|
class BuildStep
|
717
768
|
include Google::Apis::Core::Hashable
|
718
769
|
|
770
|
+
# Allow this build step to fail without failing the entire build if and only if
|
771
|
+
# the exit code is one of the specified codes. If allow_failure is also
|
772
|
+
# specified, this field will take precedence.
|
773
|
+
# Corresponds to the JSON property `allowExitCodes`
|
774
|
+
# @return [Array<Fixnum>]
|
775
|
+
attr_accessor :allow_exit_codes
|
776
|
+
|
777
|
+
# Allow this build step to fail without failing the entire build. If false, the
|
778
|
+
# entire build will fail if this step fails. Otherwise, the build will succeed,
|
779
|
+
# but this step will still have a failure status. Error information will be
|
780
|
+
# reported in the failure_detail field.
|
781
|
+
# Corresponds to the JSON property `allowFailure`
|
782
|
+
# @return [Boolean]
|
783
|
+
attr_accessor :allow_failure
|
784
|
+
alias_method :allow_failure?, :allow_failure
|
785
|
+
|
719
786
|
# A list of arguments that will be presented to the step when it is started. If
|
720
787
|
# the image used to run the step's container has an entrypoint, the `args` are
|
721
788
|
# used as arguments to that entrypoint. If the image does not define an
|
@@ -749,6 +816,11 @@ module Google
|
|
749
816
|
# @return [Array<String>]
|
750
817
|
attr_accessor :env
|
751
818
|
|
819
|
+
# Output only. Return code from running the step.
|
820
|
+
# Corresponds to the JSON property `exitCode`
|
821
|
+
# @return [Fixnum]
|
822
|
+
attr_accessor :exit_code
|
823
|
+
|
752
824
|
# Unique identifier for this build step, used in `wait_for` to reference this
|
753
825
|
# build step as a dependency.
|
754
826
|
# Corresponds to the JSON property `id`
|
@@ -830,10 +902,13 @@ module Google
|
|
830
902
|
|
831
903
|
# Update properties of this object
|
832
904
|
def update!(**args)
|
905
|
+
@allow_exit_codes = args[:allow_exit_codes] if args.key?(:allow_exit_codes)
|
906
|
+
@allow_failure = args[:allow_failure] if args.key?(:allow_failure)
|
833
907
|
@args = args[:args] if args.key?(:args)
|
834
908
|
@dir = args[:dir] if args.key?(:dir)
|
835
909
|
@entrypoint = args[:entrypoint] if args.key?(:entrypoint)
|
836
910
|
@env = args[:env] if args.key?(:env)
|
911
|
+
@exit_code = args[:exit_code] if args.key?(:exit_code)
|
837
912
|
@id = args[:id] if args.key?(:id)
|
838
913
|
@name = args[:name] if args.key?(:name)
|
839
914
|
@pull_timing = args[:pull_timing] if args.key?(:pull_timing)
|
@@ -956,6 +1031,38 @@ module Google
|
|
956
1031
|
end
|
957
1032
|
end
|
958
1033
|
|
1034
|
+
# Metadata for `CreateGitLabConfig` operation.
|
1035
|
+
class CreateGitLabConfigOperationMetadata
|
1036
|
+
include Google::Apis::Core::Hashable
|
1037
|
+
|
1038
|
+
# Time the operation was completed.
|
1039
|
+
# Corresponds to the JSON property `completeTime`
|
1040
|
+
# @return [String]
|
1041
|
+
attr_accessor :complete_time
|
1042
|
+
|
1043
|
+
# Time the operation was created.
|
1044
|
+
# Corresponds to the JSON property `createTime`
|
1045
|
+
# @return [String]
|
1046
|
+
attr_accessor :create_time
|
1047
|
+
|
1048
|
+
# The resource name of the GitLabConfig to be created. Format: `projects/`
|
1049
|
+
# project`/locations/`location`/gitlabConfigs/`id``.
|
1050
|
+
# Corresponds to the JSON property `gitlabConfig`
|
1051
|
+
# @return [String]
|
1052
|
+
attr_accessor :gitlab_config
|
1053
|
+
|
1054
|
+
def initialize(**args)
|
1055
|
+
update!(**args)
|
1056
|
+
end
|
1057
|
+
|
1058
|
+
# Update properties of this object
|
1059
|
+
def update!(**args)
|
1060
|
+
@complete_time = args[:complete_time] if args.key?(:complete_time)
|
1061
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
1062
|
+
@gitlab_config = args[:gitlab_config] if args.key?(:gitlab_config)
|
1063
|
+
end
|
1064
|
+
end
|
1065
|
+
|
959
1066
|
# Metadata for the `CreateWorkerPool` operation.
|
960
1067
|
class CreateWorkerPoolOperationMetadata
|
961
1068
|
include Google::Apis::Core::Hashable
|
@@ -1052,6 +1159,38 @@ module Google
|
|
1052
1159
|
end
|
1053
1160
|
end
|
1054
1161
|
|
1162
|
+
# Metadata for `DeleteGitLabConfig` operation.
|
1163
|
+
class DeleteGitLabConfigOperationMetadata
|
1164
|
+
include Google::Apis::Core::Hashable
|
1165
|
+
|
1166
|
+
# Time the operation was completed.
|
1167
|
+
# Corresponds to the JSON property `completeTime`
|
1168
|
+
# @return [String]
|
1169
|
+
attr_accessor :complete_time
|
1170
|
+
|
1171
|
+
# Time the operation was created.
|
1172
|
+
# Corresponds to the JSON property `createTime`
|
1173
|
+
# @return [String]
|
1174
|
+
attr_accessor :create_time
|
1175
|
+
|
1176
|
+
# The resource name of the GitLabConfig to be created. Format: `projects/`
|
1177
|
+
# project`/locations/`location`/gitlabConfigs/`id``.
|
1178
|
+
# Corresponds to the JSON property `gitlabConfig`
|
1179
|
+
# @return [String]
|
1180
|
+
attr_accessor :gitlab_config
|
1181
|
+
|
1182
|
+
def initialize(**args)
|
1183
|
+
update!(**args)
|
1184
|
+
end
|
1185
|
+
|
1186
|
+
# Update properties of this object
|
1187
|
+
def update!(**args)
|
1188
|
+
@complete_time = args[:complete_time] if args.key?(:complete_time)
|
1189
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
1190
|
+
@gitlab_config = args[:gitlab_config] if args.key?(:gitlab_config)
|
1191
|
+
end
|
1192
|
+
end
|
1193
|
+
|
1055
1194
|
# Metadata for the `DeleteWorkerPool` operation.
|
1056
1195
|
class DeleteWorkerPoolOperationMetadata
|
1057
1196
|
include Google::Apis::Core::Hashable
|
@@ -1145,6 +1284,73 @@ module Google
|
|
1145
1284
|
end
|
1146
1285
|
end
|
1147
1286
|
|
1287
|
+
# GitLabConnectedRepository represents a GitLab connected repository request
|
1288
|
+
# response.
|
1289
|
+
class GitLabConnectedRepository
|
1290
|
+
include Google::Apis::Core::Hashable
|
1291
|
+
|
1292
|
+
# The name of the `GitLabConfig` that added connected repository. Format: `
|
1293
|
+
# projects/`project`/locations/`location`/gitLabConfigs/`config``
|
1294
|
+
# Corresponds to the JSON property `parent`
|
1295
|
+
# @return [String]
|
1296
|
+
attr_accessor :parent
|
1297
|
+
|
1298
|
+
# GitLabRepositoryId identifies a specific repository hosted on GitLab.com or
|
1299
|
+
# GitLabEnterprise
|
1300
|
+
# Corresponds to the JSON property `repo`
|
1301
|
+
# @return [Google::Apis::CloudbuildV1alpha2::GitLabRepositoryId]
|
1302
|
+
attr_accessor :repo
|
1303
|
+
|
1304
|
+
# The `Status` type defines a logical error model that is suitable for different
|
1305
|
+
# programming environments, including REST APIs and RPC APIs. It is used by [
|
1306
|
+
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
1307
|
+
# data: error code, error message, and error details. You can find out more
|
1308
|
+
# about this error model and how to work with it in the [API Design Guide](https:
|
1309
|
+
# //cloud.google.com/apis/design/errors).
|
1310
|
+
# Corresponds to the JSON property `status`
|
1311
|
+
# @return [Google::Apis::CloudbuildV1alpha2::Status]
|
1312
|
+
attr_accessor :status
|
1313
|
+
|
1314
|
+
def initialize(**args)
|
1315
|
+
update!(**args)
|
1316
|
+
end
|
1317
|
+
|
1318
|
+
# Update properties of this object
|
1319
|
+
def update!(**args)
|
1320
|
+
@parent = args[:parent] if args.key?(:parent)
|
1321
|
+
@repo = args[:repo] if args.key?(:repo)
|
1322
|
+
@status = args[:status] if args.key?(:status)
|
1323
|
+
end
|
1324
|
+
end
|
1325
|
+
|
1326
|
+
# GitLabRepositoryId identifies a specific repository hosted on GitLab.com or
|
1327
|
+
# GitLabEnterprise
|
1328
|
+
class GitLabRepositoryId
|
1329
|
+
include Google::Apis::Core::Hashable
|
1330
|
+
|
1331
|
+
# Required. Identifier for the repository. example: "namespace/project-slug",
|
1332
|
+
# namespace is usually the username or group ID
|
1333
|
+
# Corresponds to the JSON property `id`
|
1334
|
+
# @return [String]
|
1335
|
+
attr_accessor :id
|
1336
|
+
|
1337
|
+
# Output only. The ID of the webhook that was created for receiving events from
|
1338
|
+
# this repo. We only create and manage a single webhook for each repo.
|
1339
|
+
# Corresponds to the JSON property `webhookId`
|
1340
|
+
# @return [Fixnum]
|
1341
|
+
attr_accessor :webhook_id
|
1342
|
+
|
1343
|
+
def initialize(**args)
|
1344
|
+
update!(**args)
|
1345
|
+
end
|
1346
|
+
|
1347
|
+
# Update properties of this object
|
1348
|
+
def update!(**args)
|
1349
|
+
@id = args[:id] if args.key?(:id)
|
1350
|
+
@webhook_id = args[:webhook_id] if args.key?(:webhook_id)
|
1351
|
+
end
|
1352
|
+
end
|
1353
|
+
|
1148
1354
|
# Represents the metadata of the long-running operation.
|
1149
1355
|
class GoogleDevtoolsCloudbuildV2OperationMetadata
|
1150
1356
|
include Google::Apis::Core::Hashable
|
@@ -2307,6 +2513,38 @@ module Google
|
|
2307
2513
|
end
|
2308
2514
|
end
|
2309
2515
|
|
2516
|
+
# Metadata for `UpdateGitLabConfig` operation.
|
2517
|
+
class UpdateGitLabConfigOperationMetadata
|
2518
|
+
include Google::Apis::Core::Hashable
|
2519
|
+
|
2520
|
+
# Time the operation was completed.
|
2521
|
+
# Corresponds to the JSON property `completeTime`
|
2522
|
+
# @return [String]
|
2523
|
+
attr_accessor :complete_time
|
2524
|
+
|
2525
|
+
# Time the operation was created.
|
2526
|
+
# Corresponds to the JSON property `createTime`
|
2527
|
+
# @return [String]
|
2528
|
+
attr_accessor :create_time
|
2529
|
+
|
2530
|
+
# The resource name of the GitLabConfig to be created. Format: `projects/`
|
2531
|
+
# project`/locations/`location`/gitlabConfigs/`id``.
|
2532
|
+
# Corresponds to the JSON property `gitlabConfig`
|
2533
|
+
# @return [String]
|
2534
|
+
attr_accessor :gitlab_config
|
2535
|
+
|
2536
|
+
def initialize(**args)
|
2537
|
+
update!(**args)
|
2538
|
+
end
|
2539
|
+
|
2540
|
+
# Update properties of this object
|
2541
|
+
def update!(**args)
|
2542
|
+
@complete_time = args[:complete_time] if args.key?(:complete_time)
|
2543
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
2544
|
+
@gitlab_config = args[:gitlab_config] if args.key?(:gitlab_config)
|
2545
|
+
end
|
2546
|
+
end
|
2547
|
+
|
2310
2548
|
# Metadata for the `UpdateWorkerPool` operation.
|
2311
2549
|
class UpdateWorkerPoolOperationMetadata
|
2312
2550
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module CloudbuildV1alpha2
|
18
18
|
# Version of the google-apis-cloudbuild_v1alpha2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.26.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.10.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220916"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -64,6 +64,18 @@ module Google
|
|
64
64
|
include Google::Apis::Core::JsonObjectSupport
|
65
65
|
end
|
66
66
|
|
67
|
+
class BatchCreateGitLabConnectedRepositoriesResponse
|
68
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
|
+
|
70
|
+
include Google::Apis::Core::JsonObjectSupport
|
71
|
+
end
|
72
|
+
|
73
|
+
class BatchCreateGitLabConnectedRepositoriesResponseMetadata
|
74
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
|
+
|
76
|
+
include Google::Apis::Core::JsonObjectSupport
|
77
|
+
end
|
78
|
+
|
67
79
|
class BitbucketServerConnectedRepository
|
68
80
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
81
|
|
@@ -130,6 +142,12 @@ module Google
|
|
130
142
|
include Google::Apis::Core::JsonObjectSupport
|
131
143
|
end
|
132
144
|
|
145
|
+
class CreateGitLabConfigOperationMetadata
|
146
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
147
|
+
|
148
|
+
include Google::Apis::Core::JsonObjectSupport
|
149
|
+
end
|
150
|
+
|
133
151
|
class CreateWorkerPoolOperationMetadata
|
134
152
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
135
153
|
|
@@ -148,6 +166,12 @@ module Google
|
|
148
166
|
include Google::Apis::Core::JsonObjectSupport
|
149
167
|
end
|
150
168
|
|
169
|
+
class DeleteGitLabConfigOperationMetadata
|
170
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
171
|
+
|
172
|
+
include Google::Apis::Core::JsonObjectSupport
|
173
|
+
end
|
174
|
+
|
151
175
|
class DeleteWorkerPoolOperationMetadata
|
152
176
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
153
177
|
|
@@ -172,6 +196,18 @@ module Google
|
|
172
196
|
include Google::Apis::Core::JsonObjectSupport
|
173
197
|
end
|
174
198
|
|
199
|
+
class GitLabConnectedRepository
|
200
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
201
|
+
|
202
|
+
include Google::Apis::Core::JsonObjectSupport
|
203
|
+
end
|
204
|
+
|
205
|
+
class GitLabRepositoryId
|
206
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
207
|
+
|
208
|
+
include Google::Apis::Core::JsonObjectSupport
|
209
|
+
end
|
210
|
+
|
175
211
|
class GoogleDevtoolsCloudbuildV2OperationMetadata
|
176
212
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
177
213
|
|
@@ -364,6 +400,12 @@ module Google
|
|
364
400
|
include Google::Apis::Core::JsonObjectSupport
|
365
401
|
end
|
366
402
|
|
403
|
+
class UpdateGitLabConfigOperationMetadata
|
404
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
405
|
+
|
406
|
+
include Google::Apis::Core::JsonObjectSupport
|
407
|
+
end
|
408
|
+
|
367
409
|
class UpdateWorkerPoolOperationMetadata
|
368
410
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
369
411
|
|
@@ -457,6 +499,23 @@ module Google
|
|
457
499
|
end
|
458
500
|
end
|
459
501
|
|
502
|
+
class BatchCreateGitLabConnectedRepositoriesResponse
|
503
|
+
# @private
|
504
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
505
|
+
collection :gitlab_connected_repositories, as: 'gitlabConnectedRepositories', class: Google::Apis::CloudbuildV1alpha2::GitLabConnectedRepository, decorator: Google::Apis::CloudbuildV1alpha2::GitLabConnectedRepository::Representation
|
506
|
+
|
507
|
+
end
|
508
|
+
end
|
509
|
+
|
510
|
+
class BatchCreateGitLabConnectedRepositoriesResponseMetadata
|
511
|
+
# @private
|
512
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
513
|
+
property :complete_time, as: 'completeTime'
|
514
|
+
property :config, as: 'config'
|
515
|
+
property :create_time, as: 'createTime'
|
516
|
+
end
|
517
|
+
end
|
518
|
+
|
460
519
|
class BitbucketServerConnectedRepository
|
461
520
|
# @private
|
462
521
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -567,10 +626,13 @@ module Google
|
|
567
626
|
class BuildStep
|
568
627
|
# @private
|
569
628
|
class Representation < Google::Apis::Core::JsonRepresentation
|
629
|
+
collection :allow_exit_codes, as: 'allowExitCodes'
|
630
|
+
property :allow_failure, as: 'allowFailure'
|
570
631
|
collection :args, as: 'args'
|
571
632
|
property :dir, as: 'dir'
|
572
633
|
property :entrypoint, as: 'entrypoint'
|
573
634
|
collection :env, as: 'env'
|
635
|
+
property :exit_code, as: 'exitCode'
|
574
636
|
property :id, as: 'id'
|
575
637
|
property :name, as: 'name'
|
576
638
|
property :pull_timing, as: 'pullTiming', class: Google::Apis::CloudbuildV1alpha2::TimeSpan, decorator: Google::Apis::CloudbuildV1alpha2::TimeSpan::Representation
|
@@ -621,6 +683,15 @@ module Google
|
|
621
683
|
end
|
622
684
|
end
|
623
685
|
|
686
|
+
class CreateGitLabConfigOperationMetadata
|
687
|
+
# @private
|
688
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
689
|
+
property :complete_time, as: 'completeTime'
|
690
|
+
property :create_time, as: 'createTime'
|
691
|
+
property :gitlab_config, as: 'gitlabConfig'
|
692
|
+
end
|
693
|
+
end
|
694
|
+
|
624
695
|
class CreateWorkerPoolOperationMetadata
|
625
696
|
# @private
|
626
697
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -648,6 +719,15 @@ module Google
|
|
648
719
|
end
|
649
720
|
end
|
650
721
|
|
722
|
+
class DeleteGitLabConfigOperationMetadata
|
723
|
+
# @private
|
724
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
725
|
+
property :complete_time, as: 'completeTime'
|
726
|
+
property :create_time, as: 'createTime'
|
727
|
+
property :gitlab_config, as: 'gitlabConfig'
|
728
|
+
end
|
729
|
+
end
|
730
|
+
|
651
731
|
class DeleteWorkerPoolOperationMetadata
|
652
732
|
# @private
|
653
733
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -679,6 +759,25 @@ module Google
|
|
679
759
|
end
|
680
760
|
end
|
681
761
|
|
762
|
+
class GitLabConnectedRepository
|
763
|
+
# @private
|
764
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
765
|
+
property :parent, as: 'parent'
|
766
|
+
property :repo, as: 'repo', class: Google::Apis::CloudbuildV1alpha2::GitLabRepositoryId, decorator: Google::Apis::CloudbuildV1alpha2::GitLabRepositoryId::Representation
|
767
|
+
|
768
|
+
property :status, as: 'status', class: Google::Apis::CloudbuildV1alpha2::Status, decorator: Google::Apis::CloudbuildV1alpha2::Status::Representation
|
769
|
+
|
770
|
+
end
|
771
|
+
end
|
772
|
+
|
773
|
+
class GitLabRepositoryId
|
774
|
+
# @private
|
775
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
776
|
+
property :id, as: 'id'
|
777
|
+
property :webhook_id, as: 'webhookId'
|
778
|
+
end
|
779
|
+
end
|
780
|
+
|
682
781
|
class GoogleDevtoolsCloudbuildV2OperationMetadata
|
683
782
|
# @private
|
684
783
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -997,6 +1096,15 @@ module Google
|
|
997
1096
|
end
|
998
1097
|
end
|
999
1098
|
|
1099
|
+
class UpdateGitLabConfigOperationMetadata
|
1100
|
+
# @private
|
1101
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1102
|
+
property :complete_time, as: 'completeTime'
|
1103
|
+
property :create_time, as: 'createTime'
|
1104
|
+
property :gitlab_config, as: 'gitlabConfig'
|
1105
|
+
end
|
1106
|
+
end
|
1107
|
+
|
1000
1108
|
class UpdateWorkerPoolOperationMetadata
|
1001
1109
|
# @private
|
1002
1110
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-cloudbuild_v1alpha2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.26.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: 2022-
|
11
|
+
date: 2022-10-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 0.9.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version:
|
29
|
+
version: 0.9.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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_v1alpha2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1alpha2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1alpha2/v0.26.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudbuild_v1alpha2
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|