google-apis-cloudbuild_v1alpha2 0.25.0 → 0.26.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: 1cea180113e798e88a1a4e9f82fa4f369195976e723ff4df6ccd230bcefe91d9
4
- data.tar.gz: f361ea1c5a52c517b4ac126e26b24c1ba75da5fc074cc38db7bdcfc135e01e94
3
+ metadata.gz: 5d44573d61f4538737ae5d068c1c6d2ee4f5ccae6995cce9457ad99fb854c76d
4
+ data.tar.gz: 43c932955c35f73691f4cc227b4e064e589101548ab22f5b1465db1a451c9833
5
5
  SHA512:
6
- metadata.gz: eeb85ba526f77f2c8cd4ff853cd937845fe28995caa666277ea04998d5f9d6cef740e462b83b5c5dd76e4ccaf675eee073262ebe4ab3d7b0531e4c828bff7f36
7
- data.tar.gz: bb4991067b23d809fd595d5e2edead8c88906bd6fbed902ce78fe1e886d29892a797b5bd425f489c6fb546c744cf14785139b19e97fbca30c7c64a74b0da44d9
6
+ metadata.gz: 36afabdf8205d5198fffdfd2edd27ebc3a692fee0888778c882b526bcc0f6f652272237691088071a83f02a13a53c0fd8bbac82c5486213da1260da03066e771
7
+ data.tar.gz: 2f9562a34037af42d93d59108b421d4432e81a2f8d72b20a24457d9ffef571815822e8afee514d4a3aee58a7b7fbe51411faf5bfbe0a6c7fd84f856c88e5ce09
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
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
+
3
8
  ### v0.25.0 (2022-08-31)
4
9
 
5
10
  * Regenerated from discovery document revision 20220826
@@ -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
@@ -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::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
+
1172
1354
  # Represents the metadata of the long-running operation.
1173
1355
  class GoogleDevtoolsCloudbuildV2OperationMetadata
1174
1356
  include Google::Apis::Core::Hashable
@@ -2331,6 +2513,38 @@ module Google
2331
2513
  end
2332
2514
  end
2333
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
+
2334
2548
  # Metadata for the `UpdateWorkerPool` operation.
2335
2549
  class UpdateWorkerPoolOperationMetadata
2336
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.25.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.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::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
@@ -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::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
+
685
781
  class GoogleDevtoolsCloudbuildV2OperationMetadata
686
782
  # @private
687
783
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1000,6 +1096,15 @@ module Google
1000
1096
  end
1001
1097
  end
1002
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
+
1003
1108
  class UpdateWorkerPoolOperationMetadata
1004
1109
  # @private
1005
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.25.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-09-05 00:00:00.000000000 Z
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: '0.7'
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'
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.25.0
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: []