google-apis-cloudbuild_v1alpha1 0.26.0 → 0.27.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: cd5fe178fa25fadb52cdda351e2198eab5f902217af4eae19207120f0c6e2a56
4
- data.tar.gz: 18a7d55c3dd6b2b773f4dda637113a9588b270ac6bd2a26007c9060f3a1414a1
3
+ metadata.gz: 17aac0e489a9d87cb9d5b08eb7d8a0ae7aba2dc24e8381851ad7ac95fe22dc64
4
+ data.tar.gz: 671519bd346208b4dfd5bb945d9c88e1340b6083d5443cffbec9e73174b75e61
5
5
  SHA512:
6
- metadata.gz: 2418f44d81440361a2fd8d77c775958d5bd266c65f72411dedffa0304674e210e3ba94c9b299551d3d2f14d53efd9c38ab7e6d1647fa92fd1856bbd18e56dd8a
7
- data.tar.gz: f9b5e138d3f67165b648cea804ffa7c6171fa49e5287a29059af08e9a7ce49d6a3079e5c59c32878f0b5e0851b3ca93ddf551fb46327a5eb367529caa54153eb
6
+ metadata.gz: c19f319ed5213461b835fb505e0f3dc33fb993542547e36f8fcb95e28707433efeea25dcec1f8bc973d923c10f727f319d6ed3ad456337cdf3b9c96ade099bd4
7
+ data.tar.gz: b701d9a7032ee53a45c38a88611d2afc8dc964d4b6753c658281b96fe44d4e2927c91c3f9203e4dc516af7ecbb49bf6a93467966e2ba46511036a43bd82d9491
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Release history for google-apis-cloudbuild_v1alpha1
2
2
 
3
+ ### v0.27.0 (2022-09-22)
4
+
5
+ * Regenerated from discovery document revision 20220916
6
+ * Regenerated using generator version 0.10.0
7
+ * Unspecified changes
8
+
3
9
  ### v0.26.0 (2022-09-17)
4
10
 
5
11
  * Unspecified changes
@@ -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::CloudbuildV1alpha1::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
@@ -980,6 +1031,38 @@ module Google
980
1031
  end
981
1032
  end
982
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
+
983
1066
  # Metadata for the `CreateWorkerPool` operation.
984
1067
  class CreateWorkerPoolOperationMetadata
985
1068
  include Google::Apis::Core::Hashable
@@ -1076,6 +1159,38 @@ module Google
1076
1159
  end
1077
1160
  end
1078
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
+
1079
1194
  # Metadata for the `DeleteWorkerPool` operation.
1080
1195
  class DeleteWorkerPoolOperationMetadata
1081
1196
  include Google::Apis::Core::Hashable
@@ -1169,6 +1284,73 @@ module Google
1169
1284
  end
1170
1285
  end
1171
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::CloudbuildV1alpha1::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::CloudbuildV1alpha1::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
+
1172
1354
  # Represents the metadata of the long-running operation.
1173
1355
  class GoogleDevtoolsCloudbuildV2OperationMetadata
1174
1356
  include Google::Apis::Core::Hashable
@@ -2344,6 +2526,38 @@ module Google
2344
2526
  end
2345
2527
  end
2346
2528
 
2529
+ # Metadata for `UpdateGitLabConfig` operation.
2530
+ class UpdateGitLabConfigOperationMetadata
2531
+ include Google::Apis::Core::Hashable
2532
+
2533
+ # Time the operation was completed.
2534
+ # Corresponds to the JSON property `completeTime`
2535
+ # @return [String]
2536
+ attr_accessor :complete_time
2537
+
2538
+ # Time the operation was created.
2539
+ # Corresponds to the JSON property `createTime`
2540
+ # @return [String]
2541
+ attr_accessor :create_time
2542
+
2543
+ # The resource name of the GitLabConfig to be created. Format: `projects/`
2544
+ # project`/locations/`location`/gitlabConfigs/`id``.
2545
+ # Corresponds to the JSON property `gitlabConfig`
2546
+ # @return [String]
2547
+ attr_accessor :gitlab_config
2548
+
2549
+ def initialize(**args)
2550
+ update!(**args)
2551
+ end
2552
+
2553
+ # Update properties of this object
2554
+ def update!(**args)
2555
+ @complete_time = args[:complete_time] if args.key?(:complete_time)
2556
+ @create_time = args[:create_time] if args.key?(:create_time)
2557
+ @gitlab_config = args[:gitlab_config] if args.key?(:gitlab_config)
2558
+ end
2559
+ end
2560
+
2347
2561
  # Metadata for the `UpdateWorkerPool` operation.
2348
2562
  class UpdateWorkerPoolOperationMetadata
2349
2563
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudbuildV1alpha1
18
18
  # Version of the google-apis-cloudbuild_v1alpha1 gem
19
- GEM_VERSION = "0.26.0"
19
+ GEM_VERSION = "0.27.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.9.0"
22
+ GENERATOR_VERSION = "0.10.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220826"
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::CloudbuildV1alpha1::GitLabConnectedRepository, decorator: Google::Apis::CloudbuildV1alpha1::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
@@ -624,6 +683,15 @@ module Google
624
683
  end
625
684
  end
626
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
+
627
695
  class CreateWorkerPoolOperationMetadata
628
696
  # @private
629
697
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -651,6 +719,15 @@ module Google
651
719
  end
652
720
  end
653
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
+
654
731
  class DeleteWorkerPoolOperationMetadata
655
732
  # @private
656
733
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -682,6 +759,25 @@ module Google
682
759
  end
683
760
  end
684
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::CloudbuildV1alpha1::GitLabRepositoryId, decorator: Google::Apis::CloudbuildV1alpha1::GitLabRepositoryId::Representation
767
+
768
+ property :status, as: 'status', class: Google::Apis::CloudbuildV1alpha1::Status, decorator: Google::Apis::CloudbuildV1alpha1::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
+
685
781
  class GoogleDevtoolsCloudbuildV2OperationMetadata
686
782
  # @private
687
783
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1002,6 +1098,15 @@ module Google
1002
1098
  end
1003
1099
  end
1004
1100
 
1101
+ class UpdateGitLabConfigOperationMetadata
1102
+ # @private
1103
+ class Representation < Google::Apis::Core::JsonRepresentation
1104
+ property :complete_time, as: 'completeTime'
1105
+ property :create_time, as: 'createTime'
1106
+ property :gitlab_config, as: 'gitlabConfig'
1107
+ end
1108
+ end
1109
+
1005
1110
  class UpdateWorkerPoolOperationMetadata
1006
1111
  # @private
1007
1112
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudbuild_v1alpha1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.26.0
4
+ version: 0.27.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-09-19 00:00:00.000000000 Z
11
+ date: 2022-09-26 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: 0.7.2
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: 0.7.2
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_v1alpha1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1alpha1/v0.26.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1alpha1/v0.27.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudbuild_v1alpha1
63
63
  post_install_message:
64
64
  rdoc_options: []