google-apis-cloudbuild_v1alpha2 0.15.0 → 0.16.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a422d52c1e6207e44f2a668afac3ad0ceb8cf469188321cd26cb175784757620
4
- data.tar.gz: 43e5b41940bff6f8c2d4a6a5da81487fbea419fc1df6ddc736b9bc918594e9f9
3
+ metadata.gz: 5da035ee1549eefba22894d69ad89f2b9ba2a34680043c1eef258b1942e8673e
4
+ data.tar.gz: c40ea62c66972527bdee9f5d900c3c8075a3b9198597c8d1935d2d8972f8fd60
5
5
  SHA512:
6
- metadata.gz: 0a47ad1cb39abf42d69827f2b25e4a0086c1e578a1bcf6a52999c55dcb88a6441dc12976f8ddaafee37d284ef7cc29e7a07d207c82de52927e0aaa08445557b7
7
- data.tar.gz: 8fcdb750de5637fc7e89b7edf2ac433da4932b25f9f22f219de79bac2e7f7c7704607714fb7c5be2589dd3a7ff650be25de697d195dbce58ce4d8d774a086210
6
+ metadata.gz: ea078a3bf330850b208a4bab7e166bb9c1155c5c991cc4d1bbc5427fdc440fac439cac46b85de04177a301faf23e0ebfea1381c99908bc09e5f956bc75c5e827
7
+ data.tar.gz: 30b8e7806bc174be749b47862bc706407db6ca75e9b9a2da27e40537b4ebfda0985c20a06fd69285c1e1e61eb29bdde02dd3afd3ccc1ceb6f079785948c2a974
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-cloudbuild_v1alpha2
2
2
 
3
+ ### v0.16.0 (2022-01-11)
4
+
5
+ * Regenerated from discovery document revision 20211230
6
+
3
7
  ### v0.15.0 (2021-12-14)
4
8
 
5
9
  * Unspecified changes
@@ -184,6 +184,26 @@ module Google
184
184
  end
185
185
  end
186
186
 
187
+ # Response of BatchCreateBitbucketServerConnectedRepositories RPC method
188
+ # including all successfully connected Bitbucket Server repositories.
189
+ class BatchCreateBitbucketServerConnectedRepositoriesResponse
190
+ include Google::Apis::Core::Hashable
191
+
192
+ # The connected Bitbucket Server repositories.
193
+ # Corresponds to the JSON property `bitbucketServerConnectedRepositories`
194
+ # @return [Array<Google::Apis::CloudbuildV1alpha2::BitbucketServerConnectedRepository>]
195
+ attr_accessor :bitbucket_server_connected_repositories
196
+
197
+ def initialize(**args)
198
+ update!(**args)
199
+ end
200
+
201
+ # Update properties of this object
202
+ def update!(**args)
203
+ @bitbucket_server_connected_repositories = args[:bitbucket_server_connected_repositories] if args.key?(:bitbucket_server_connected_repositories)
204
+ end
205
+ end
206
+
187
207
  # Metadata for `BatchCreateBitbucketServerConnectedRepositories` operation.
188
208
  class BatchCreateBitbucketServerConnectedRepositoriesResponseMetadata
189
209
  include Google::Apis::Core::Hashable
@@ -217,6 +237,79 @@ module Google
217
237
  end
218
238
  end
219
239
 
240
+ # / BitbucketServerConnectedRepository represents a connected Bitbucket Server /
241
+ # repository.
242
+ class BitbucketServerConnectedRepository
243
+ include Google::Apis::Core::Hashable
244
+
245
+ # The name of the `BitbucketServerConfig` that added connected repository.
246
+ # Format: `projects/`project`/locations/`location`/bitbucketServerConfigs/`
247
+ # config``
248
+ # Corresponds to the JSON property `parent`
249
+ # @return [String]
250
+ attr_accessor :parent
251
+
252
+ # BitbucketServerRepositoryId identifies a specific repository hosted on a
253
+ # Bitbucket Server.
254
+ # Corresponds to the JSON property `repo`
255
+ # @return [Google::Apis::CloudbuildV1alpha2::BitbucketServerRepositoryId]
256
+ attr_accessor :repo
257
+
258
+ # The `Status` type defines a logical error model that is suitable for different
259
+ # programming environments, including REST APIs and RPC APIs. It is used by [
260
+ # gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
261
+ # data: error code, error message, and error details. You can find out more
262
+ # about this error model and how to work with it in the [API Design Guide](https:
263
+ # //cloud.google.com/apis/design/errors).
264
+ # Corresponds to the JSON property `status`
265
+ # @return [Google::Apis::CloudbuildV1alpha2::Status]
266
+ attr_accessor :status
267
+
268
+ def initialize(**args)
269
+ update!(**args)
270
+ end
271
+
272
+ # Update properties of this object
273
+ def update!(**args)
274
+ @parent = args[:parent] if args.key?(:parent)
275
+ @repo = args[:repo] if args.key?(:repo)
276
+ @status = args[:status] if args.key?(:status)
277
+ end
278
+ end
279
+
280
+ # BitbucketServerRepositoryId identifies a specific repository hosted on a
281
+ # Bitbucket Server.
282
+ class BitbucketServerRepositoryId
283
+ include Google::Apis::Core::Hashable
284
+
285
+ # Required. Identifier for the project storing the repository.
286
+ # Corresponds to the JSON property `projectKey`
287
+ # @return [String]
288
+ attr_accessor :project_key
289
+
290
+ # Required. Identifier for the repository.
291
+ # Corresponds to the JSON property `repoSlug`
292
+ # @return [String]
293
+ attr_accessor :repo_slug
294
+
295
+ # Output only. The ID of the webhook that was created for receiving events from
296
+ # this repo. We only create and manage a single webhook for each repo.
297
+ # Corresponds to the JSON property `webhookId`
298
+ # @return [Fixnum]
299
+ attr_accessor :webhook_id
300
+
301
+ def initialize(**args)
302
+ update!(**args)
303
+ end
304
+
305
+ # Update properties of this object
306
+ def update!(**args)
307
+ @project_key = args[:project_key] if args.key?(:project_key)
308
+ @repo_slug = args[:repo_slug] if args.key?(:repo_slug)
309
+ @webhook_id = args[:webhook_id] if args.key?(:webhook_id)
310
+ end
311
+ end
312
+
220
313
  # A build resource in the Cloud Build API. At a high level, a `Build` describes
221
314
  # where to find source code, how to build it (for example, the builder image to
222
315
  # run on the source), and where to store the built artifacts. Fields can include
@@ -799,6 +892,38 @@ module Google
799
892
  end
800
893
  end
801
894
 
895
+ # Metadata for `CreateBitbucketServerConfig` operation.
896
+ class CreateBitbucketServerConfigOperationMetadata
897
+ include Google::Apis::Core::Hashable
898
+
899
+ # The resource name of the BitbucketServerConfig to be created. Format: `
900
+ # projects/`project`/locations/`location`/bitbucketServerConfigs/`id``.
901
+ # Corresponds to the JSON property `bitbucketServerConfig`
902
+ # @return [String]
903
+ attr_accessor :bitbucket_server_config
904
+
905
+ # Time the operation was completed.
906
+ # Corresponds to the JSON property `completeTime`
907
+ # @return [String]
908
+ attr_accessor :complete_time
909
+
910
+ # Time the operation was created.
911
+ # Corresponds to the JSON property `createTime`
912
+ # @return [String]
913
+ attr_accessor :create_time
914
+
915
+ def initialize(**args)
916
+ update!(**args)
917
+ end
918
+
919
+ # Update properties of this object
920
+ def update!(**args)
921
+ @bitbucket_server_config = args[:bitbucket_server_config] if args.key?(:bitbucket_server_config)
922
+ @complete_time = args[:complete_time] if args.key?(:complete_time)
923
+ @create_time = args[:create_time] if args.key?(:create_time)
924
+ end
925
+ end
926
+
802
927
  # Metadata for `CreateGithubEnterpriseConfig` operation.
803
928
  class CreateGitHubEnterpriseConfigOperationMetadata
804
929
  include Google::Apis::Core::Hashable
@@ -831,6 +956,38 @@ module Google
831
956
  end
832
957
  end
833
958
 
959
+ # Metadata for `CreateGitLabConfig` operation.
960
+ class CreateGitLabConfigOperationMetadata
961
+ include Google::Apis::Core::Hashable
962
+
963
+ # Time the operation was completed.
964
+ # Corresponds to the JSON property `completeTime`
965
+ # @return [String]
966
+ attr_accessor :complete_time
967
+
968
+ # Time the operation was created.
969
+ # Corresponds to the JSON property `createTime`
970
+ # @return [String]
971
+ attr_accessor :create_time
972
+
973
+ # The resource name of the GitLabConfig to be created. Format: `projects/`
974
+ # project`/locations/`location`/gitlabConfigs/`id``.
975
+ # Corresponds to the JSON property `gitlabConfig`
976
+ # @return [String]
977
+ attr_accessor :gitlab_config
978
+
979
+ def initialize(**args)
980
+ update!(**args)
981
+ end
982
+
983
+ # Update properties of this object
984
+ def update!(**args)
985
+ @complete_time = args[:complete_time] if args.key?(:complete_time)
986
+ @create_time = args[:create_time] if args.key?(:create_time)
987
+ @gitlab_config = args[:gitlab_config] if args.key?(:gitlab_config)
988
+ end
989
+ end
990
+
834
991
  # Metadata for the `CreateWorkerPool` operation.
835
992
  class CreateWorkerPoolOperationMetadata
836
993
  include Google::Apis::Core::Hashable
@@ -863,6 +1020,38 @@ module Google
863
1020
  end
864
1021
  end
865
1022
 
1023
+ # Metadata for `DeleteBitbucketServerConfig` operation.
1024
+ class DeleteBitbucketServerConfigOperationMetadata
1025
+ include Google::Apis::Core::Hashable
1026
+
1027
+ # The resource name of the BitbucketServerConfig to be deleted. Format: `
1028
+ # projects/`project`/locations/`location`/bitbucketServerConfigs/`id``.
1029
+ # Corresponds to the JSON property `bitbucketServerConfig`
1030
+ # @return [String]
1031
+ attr_accessor :bitbucket_server_config
1032
+
1033
+ # Time the operation was completed.
1034
+ # Corresponds to the JSON property `completeTime`
1035
+ # @return [String]
1036
+ attr_accessor :complete_time
1037
+
1038
+ # Time the operation was created.
1039
+ # Corresponds to the JSON property `createTime`
1040
+ # @return [String]
1041
+ attr_accessor :create_time
1042
+
1043
+ def initialize(**args)
1044
+ update!(**args)
1045
+ end
1046
+
1047
+ # Update properties of this object
1048
+ def update!(**args)
1049
+ @bitbucket_server_config = args[:bitbucket_server_config] if args.key?(:bitbucket_server_config)
1050
+ @complete_time = args[:complete_time] if args.key?(:complete_time)
1051
+ @create_time = args[:create_time] if args.key?(:create_time)
1052
+ end
1053
+ end
1054
+
866
1055
  # Metadata for `DeleteGitHubEnterpriseConfig` operation.
867
1056
  class DeleteGitHubEnterpriseConfigOperationMetadata
868
1057
  include Google::Apis::Core::Hashable
@@ -895,6 +1084,38 @@ module Google
895
1084
  end
896
1085
  end
897
1086
 
1087
+ # Metadata for `DeleteGitLabConfig` operation.
1088
+ class DeleteGitLabConfigOperationMetadata
1089
+ include Google::Apis::Core::Hashable
1090
+
1091
+ # Time the operation was completed.
1092
+ # Corresponds to the JSON property `completeTime`
1093
+ # @return [String]
1094
+ attr_accessor :complete_time
1095
+
1096
+ # Time the operation was created.
1097
+ # Corresponds to the JSON property `createTime`
1098
+ # @return [String]
1099
+ attr_accessor :create_time
1100
+
1101
+ # The resource name of the GitLabConfig to be created. Format: `projects/`
1102
+ # project`/locations/`location`/gitlabConfigs/`id``.
1103
+ # Corresponds to the JSON property `gitlabConfig`
1104
+ # @return [String]
1105
+ attr_accessor :gitlab_config
1106
+
1107
+ def initialize(**args)
1108
+ update!(**args)
1109
+ end
1110
+
1111
+ # Update properties of this object
1112
+ def update!(**args)
1113
+ @complete_time = args[:complete_time] if args.key?(:complete_time)
1114
+ @create_time = args[:create_time] if args.key?(:create_time)
1115
+ @gitlab_config = args[:gitlab_config] if args.key?(:gitlab_config)
1116
+ end
1117
+ end
1118
+
898
1119
  # Metadata for the `DeleteWorkerPool` operation.
899
1120
  class DeleteWorkerPoolOperationMetadata
900
1121
  include Google::Apis::Core::Hashable
@@ -2028,6 +2249,38 @@ module Google
2028
2249
  end
2029
2250
  end
2030
2251
 
2252
+ # Metadata for `UpdateBitbucketServerConfig` operation.
2253
+ class UpdateBitbucketServerConfigOperationMetadata
2254
+ include Google::Apis::Core::Hashable
2255
+
2256
+ # The resource name of the BitbucketServerConfig to be updated. Format: `
2257
+ # projects/`project`/locations/`location`/bitbucketServerConfigs/`id``.
2258
+ # Corresponds to the JSON property `bitbucketServerConfig`
2259
+ # @return [String]
2260
+ attr_accessor :bitbucket_server_config
2261
+
2262
+ # Time the operation was completed.
2263
+ # Corresponds to the JSON property `completeTime`
2264
+ # @return [String]
2265
+ attr_accessor :complete_time
2266
+
2267
+ # Time the operation was created.
2268
+ # Corresponds to the JSON property `createTime`
2269
+ # @return [String]
2270
+ attr_accessor :create_time
2271
+
2272
+ def initialize(**args)
2273
+ update!(**args)
2274
+ end
2275
+
2276
+ # Update properties of this object
2277
+ def update!(**args)
2278
+ @bitbucket_server_config = args[:bitbucket_server_config] if args.key?(:bitbucket_server_config)
2279
+ @complete_time = args[:complete_time] if args.key?(:complete_time)
2280
+ @create_time = args[:create_time] if args.key?(:create_time)
2281
+ end
2282
+ end
2283
+
2031
2284
  # Metadata for `UpdateGitHubEnterpriseConfig` operation.
2032
2285
  class UpdateGitHubEnterpriseConfigOperationMetadata
2033
2286
  include Google::Apis::Core::Hashable
@@ -2060,6 +2313,38 @@ module Google
2060
2313
  end
2061
2314
  end
2062
2315
 
2316
+ # Metadata for `UpdateGitLabConfig` operation.
2317
+ class UpdateGitLabConfigOperationMetadata
2318
+ include Google::Apis::Core::Hashable
2319
+
2320
+ # Time the operation was completed.
2321
+ # Corresponds to the JSON property `completeTime`
2322
+ # @return [String]
2323
+ attr_accessor :complete_time
2324
+
2325
+ # Time the operation was created.
2326
+ # Corresponds to the JSON property `createTime`
2327
+ # @return [String]
2328
+ attr_accessor :create_time
2329
+
2330
+ # The resource name of the GitLabConfig to be created. Format: `projects/`
2331
+ # project`/locations/`location`/gitlabConfigs/`id``.
2332
+ # Corresponds to the JSON property `gitlabConfig`
2333
+ # @return [String]
2334
+ attr_accessor :gitlab_config
2335
+
2336
+ def initialize(**args)
2337
+ update!(**args)
2338
+ end
2339
+
2340
+ # Update properties of this object
2341
+ def update!(**args)
2342
+ @complete_time = args[:complete_time] if args.key?(:complete_time)
2343
+ @create_time = args[:create_time] if args.key?(:create_time)
2344
+ @gitlab_config = args[:gitlab_config] if args.key?(:gitlab_config)
2345
+ end
2346
+ end
2347
+
2063
2348
  # Metadata for the `UpdateWorkerPool` operation.
2064
2349
  class UpdateWorkerPoolOperationMetadata
2065
2350
  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.15.0"
19
+ GEM_VERSION = "0.16.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20211115"
25
+ REVISION = "20211230"
26
26
  end
27
27
  end
28
28
  end
@@ -52,12 +52,30 @@ module Google
52
52
  include Google::Apis::Core::JsonObjectSupport
53
53
  end
54
54
 
55
+ class BatchCreateBitbucketServerConnectedRepositoriesResponse
56
+ class Representation < Google::Apis::Core::JsonRepresentation; end
57
+
58
+ include Google::Apis::Core::JsonObjectSupport
59
+ end
60
+
55
61
  class BatchCreateBitbucketServerConnectedRepositoriesResponseMetadata
56
62
  class Representation < Google::Apis::Core::JsonRepresentation; end
57
63
 
58
64
  include Google::Apis::Core::JsonObjectSupport
59
65
  end
60
66
 
67
+ class BitbucketServerConnectedRepository
68
+ class Representation < Google::Apis::Core::JsonRepresentation; end
69
+
70
+ include Google::Apis::Core::JsonObjectSupport
71
+ end
72
+
73
+ class BitbucketServerRepositoryId
74
+ class Representation < Google::Apis::Core::JsonRepresentation; end
75
+
76
+ include Google::Apis::Core::JsonObjectSupport
77
+ end
78
+
61
79
  class Build
62
80
  class Representation < Google::Apis::Core::JsonRepresentation; end
63
81
 
@@ -100,24 +118,48 @@ module Google
100
118
  include Google::Apis::Core::JsonObjectSupport
101
119
  end
102
120
 
121
+ class CreateBitbucketServerConfigOperationMetadata
122
+ class Representation < Google::Apis::Core::JsonRepresentation; end
123
+
124
+ include Google::Apis::Core::JsonObjectSupport
125
+ end
126
+
103
127
  class CreateGitHubEnterpriseConfigOperationMetadata
104
128
  class Representation < Google::Apis::Core::JsonRepresentation; end
105
129
 
106
130
  include Google::Apis::Core::JsonObjectSupport
107
131
  end
108
132
 
133
+ class CreateGitLabConfigOperationMetadata
134
+ class Representation < Google::Apis::Core::JsonRepresentation; end
135
+
136
+ include Google::Apis::Core::JsonObjectSupport
137
+ end
138
+
109
139
  class CreateWorkerPoolOperationMetadata
110
140
  class Representation < Google::Apis::Core::JsonRepresentation; end
111
141
 
112
142
  include Google::Apis::Core::JsonObjectSupport
113
143
  end
114
144
 
145
+ class DeleteBitbucketServerConfigOperationMetadata
146
+ class Representation < Google::Apis::Core::JsonRepresentation; end
147
+
148
+ include Google::Apis::Core::JsonObjectSupport
149
+ end
150
+
115
151
  class DeleteGitHubEnterpriseConfigOperationMetadata
116
152
  class Representation < Google::Apis::Core::JsonRepresentation; end
117
153
 
118
154
  include Google::Apis::Core::JsonObjectSupport
119
155
  end
120
156
 
157
+ class DeleteGitLabConfigOperationMetadata
158
+ class Representation < Google::Apis::Core::JsonRepresentation; end
159
+
160
+ include Google::Apis::Core::JsonObjectSupport
161
+ end
162
+
121
163
  class DeleteWorkerPoolOperationMetadata
122
164
  class Representation < Google::Apis::Core::JsonRepresentation; end
123
165
 
@@ -316,12 +358,24 @@ module Google
316
358
  include Google::Apis::Core::JsonObjectSupport
317
359
  end
318
360
 
361
+ class UpdateBitbucketServerConfigOperationMetadata
362
+ class Representation < Google::Apis::Core::JsonRepresentation; end
363
+
364
+ include Google::Apis::Core::JsonObjectSupport
365
+ end
366
+
319
367
  class UpdateGitHubEnterpriseConfigOperationMetadata
320
368
  class Representation < Google::Apis::Core::JsonRepresentation; end
321
369
 
322
370
  include Google::Apis::Core::JsonObjectSupport
323
371
  end
324
372
 
373
+ class UpdateGitLabConfigOperationMetadata
374
+ class Representation < Google::Apis::Core::JsonRepresentation; end
375
+
376
+ include Google::Apis::Core::JsonObjectSupport
377
+ end
378
+
325
379
  class UpdateWorkerPoolOperationMetadata
326
380
  class Representation < Google::Apis::Core::JsonRepresentation; end
327
381
 
@@ -398,6 +452,14 @@ module Google
398
452
  end
399
453
  end
400
454
 
455
+ class BatchCreateBitbucketServerConnectedRepositoriesResponse
456
+ # @private
457
+ class Representation < Google::Apis::Core::JsonRepresentation
458
+ collection :bitbucket_server_connected_repositories, as: 'bitbucketServerConnectedRepositories', class: Google::Apis::CloudbuildV1alpha2::BitbucketServerConnectedRepository, decorator: Google::Apis::CloudbuildV1alpha2::BitbucketServerConnectedRepository::Representation
459
+
460
+ end
461
+ end
462
+
401
463
  class BatchCreateBitbucketServerConnectedRepositoriesResponseMetadata
402
464
  # @private
403
465
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -407,6 +469,26 @@ module Google
407
469
  end
408
470
  end
409
471
 
472
+ class BitbucketServerConnectedRepository
473
+ # @private
474
+ class Representation < Google::Apis::Core::JsonRepresentation
475
+ property :parent, as: 'parent'
476
+ property :repo, as: 'repo', class: Google::Apis::CloudbuildV1alpha2::BitbucketServerRepositoryId, decorator: Google::Apis::CloudbuildV1alpha2::BitbucketServerRepositoryId::Representation
477
+
478
+ property :status, as: 'status', class: Google::Apis::CloudbuildV1alpha2::Status, decorator: Google::Apis::CloudbuildV1alpha2::Status::Representation
479
+
480
+ end
481
+ end
482
+
483
+ class BitbucketServerRepositoryId
484
+ # @private
485
+ class Representation < Google::Apis::Core::JsonRepresentation
486
+ property :project_key, as: 'projectKey'
487
+ property :repo_slug, as: 'repoSlug'
488
+ property :webhook_id, as: 'webhookId'
489
+ end
490
+ end
491
+
410
492
  class Build
411
493
  # @private
412
494
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -533,6 +615,15 @@ module Google
533
615
  end
534
616
  end
535
617
 
618
+ class CreateBitbucketServerConfigOperationMetadata
619
+ # @private
620
+ class Representation < Google::Apis::Core::JsonRepresentation
621
+ property :bitbucket_server_config, as: 'bitbucketServerConfig'
622
+ property :complete_time, as: 'completeTime'
623
+ property :create_time, as: 'createTime'
624
+ end
625
+ end
626
+
536
627
  class CreateGitHubEnterpriseConfigOperationMetadata
537
628
  # @private
538
629
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -542,6 +633,15 @@ module Google
542
633
  end
543
634
  end
544
635
 
636
+ class CreateGitLabConfigOperationMetadata
637
+ # @private
638
+ class Representation < Google::Apis::Core::JsonRepresentation
639
+ property :complete_time, as: 'completeTime'
640
+ property :create_time, as: 'createTime'
641
+ property :gitlab_config, as: 'gitlabConfig'
642
+ end
643
+ end
644
+
545
645
  class CreateWorkerPoolOperationMetadata
546
646
  # @private
547
647
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -551,6 +651,15 @@ module Google
551
651
  end
552
652
  end
553
653
 
654
+ class DeleteBitbucketServerConfigOperationMetadata
655
+ # @private
656
+ class Representation < Google::Apis::Core::JsonRepresentation
657
+ property :bitbucket_server_config, as: 'bitbucketServerConfig'
658
+ property :complete_time, as: 'completeTime'
659
+ property :create_time, as: 'createTime'
660
+ end
661
+ end
662
+
554
663
  class DeleteGitHubEnterpriseConfigOperationMetadata
555
664
  # @private
556
665
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -560,6 +669,15 @@ module Google
560
669
  end
561
670
  end
562
671
 
672
+ class DeleteGitLabConfigOperationMetadata
673
+ # @private
674
+ class Representation < Google::Apis::Core::JsonRepresentation
675
+ property :complete_time, as: 'completeTime'
676
+ property :create_time, as: 'createTime'
677
+ property :gitlab_config, as: 'gitlabConfig'
678
+ end
679
+ end
680
+
563
681
  class DeleteWorkerPoolOperationMetadata
564
682
  # @private
565
683
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -878,6 +996,15 @@ module Google
878
996
  end
879
997
  end
880
998
 
999
+ class UpdateBitbucketServerConfigOperationMetadata
1000
+ # @private
1001
+ class Representation < Google::Apis::Core::JsonRepresentation
1002
+ property :bitbucket_server_config, as: 'bitbucketServerConfig'
1003
+ property :complete_time, as: 'completeTime'
1004
+ property :create_time, as: 'createTime'
1005
+ end
1006
+ end
1007
+
881
1008
  class UpdateGitHubEnterpriseConfigOperationMetadata
882
1009
  # @private
883
1010
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -887,6 +1014,15 @@ module Google
887
1014
  end
888
1015
  end
889
1016
 
1017
+ class UpdateGitLabConfigOperationMetadata
1018
+ # @private
1019
+ class Representation < Google::Apis::Core::JsonRepresentation
1020
+ property :complete_time, as: 'completeTime'
1021
+ property :create_time, as: 'createTime'
1022
+ property :gitlab_config, as: 'gitlabConfig'
1023
+ end
1024
+ end
1025
+
890
1026
  class UpdateWorkerPoolOperationMetadata
891
1027
  # @private
892
1028
  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.15.0
4
+ version: 0.16.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-01-10 00:00:00.000000000 Z
11
+ date: 2022-01-17 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_v1alpha2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1alpha2/v0.15.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1alpha2/v0.16.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.3.4
78
+ rubygems_version: 3.3.5
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Build API V1alpha2