google-apis-cloudbuild_v1alpha2 0.13.0 → 0.17.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: 467b56aa1927f2fa0fe8cccc6db85c09008f617914a13356fe37dc517e7c0d72
|
4
|
+
data.tar.gz: 61ed17a8683a275694c88c301dfca3ceaf40e5429aba914a50b75b676655be6e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7b4d51dbac4872bbd89b718a6d58859536f46dc611aeee99deeccc9fb744cfaf18353109c5ba97c343970be9a6b8fe1179e12e328c10510987e8989388455e1e
|
7
|
+
data.tar.gz: 62a837690f7800cd2858e52f3147a2bbc3c1f190da84ebd06b338a2790a6a4cdd47af9545b2b62aa26b060eaeb25041c967bf29ffa3fc7b50e2f7c1571fe6966
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,22 @@
|
|
1
1
|
# Release history for google-apis-cloudbuild_v1alpha2
|
2
2
|
|
3
|
+
### v0.17.0 (2022-02-05)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220126
|
6
|
+
* Regenerated using generator version 0.4.1
|
7
|
+
|
8
|
+
### v0.16.0 (2022-01-11)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20211230
|
11
|
+
|
12
|
+
### v0.15.0 (2021-12-14)
|
13
|
+
|
14
|
+
* Unspecified changes
|
15
|
+
|
16
|
+
### v0.14.0 (2021-11-18)
|
17
|
+
|
18
|
+
* Regenerated from discovery document revision 20211115
|
19
|
+
|
3
20
|
### v0.13.0 (2021-10-20)
|
4
21
|
|
5
22
|
* Unspecified changes
|
data/OVERVIEW.md
CHANGED
@@ -51,7 +51,7 @@ require "google/apis/cloudbuild_v1alpha2"
|
|
51
51
|
client = Google::Apis::CloudbuildV1alpha2::CloudBuildService.new
|
52
52
|
|
53
53
|
# Authenticate calls
|
54
|
-
client.
|
54
|
+
client.authorization = # ... use the googleauth gem to create credentials
|
55
55
|
```
|
56
56
|
|
57
57
|
See the class reference docs for information on the methods you can call from a client.
|
@@ -184,6 +184,132 @@ 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
|
+
|
207
|
+
# Metadata for `BatchCreateBitbucketServerConnectedRepositories` operation.
|
208
|
+
class BatchCreateBitbucketServerConnectedRepositoriesResponseMetadata
|
209
|
+
include Google::Apis::Core::Hashable
|
210
|
+
|
211
|
+
# Time the operation was completed.
|
212
|
+
# Corresponds to the JSON property `completeTime`
|
213
|
+
# @return [String]
|
214
|
+
attr_accessor :complete_time
|
215
|
+
|
216
|
+
# The name of the `BitbucketServerConfig` that added connected repositories.
|
217
|
+
# Format: `projects/`project`/locations/`location`/bitbucketServerConfigs/`
|
218
|
+
# config``
|
219
|
+
# Corresponds to the JSON property `config`
|
220
|
+
# @return [String]
|
221
|
+
attr_accessor :config
|
222
|
+
|
223
|
+
# Time the operation was created.
|
224
|
+
# Corresponds to the JSON property `createTime`
|
225
|
+
# @return [String]
|
226
|
+
attr_accessor :create_time
|
227
|
+
|
228
|
+
def initialize(**args)
|
229
|
+
update!(**args)
|
230
|
+
end
|
231
|
+
|
232
|
+
# Update properties of this object
|
233
|
+
def update!(**args)
|
234
|
+
@complete_time = args[:complete_time] if args.key?(:complete_time)
|
235
|
+
@config = args[:config] if args.key?(:config)
|
236
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
237
|
+
end
|
238
|
+
end
|
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
|
+
|
187
313
|
# A build resource in the Cloud Build API. At a high level, a `Build` describes
|
188
314
|
# where to find source code, how to build it (for example, the builder image to
|
189
315
|
# run on the source), and where to store the built artifacts. Fields can include
|
@@ -766,6 +892,38 @@ module Google
|
|
766
892
|
end
|
767
893
|
end
|
768
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
|
+
|
769
927
|
# Metadata for `CreateGithubEnterpriseConfig` operation.
|
770
928
|
class CreateGitHubEnterpriseConfigOperationMetadata
|
771
929
|
include Google::Apis::Core::Hashable
|
@@ -798,6 +956,38 @@ module Google
|
|
798
956
|
end
|
799
957
|
end
|
800
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
|
+
|
801
991
|
# Metadata for the `CreateWorkerPool` operation.
|
802
992
|
class CreateWorkerPoolOperationMetadata
|
803
993
|
include Google::Apis::Core::Hashable
|
@@ -830,6 +1020,38 @@ module Google
|
|
830
1020
|
end
|
831
1021
|
end
|
832
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
|
+
|
833
1055
|
# Metadata for `DeleteGitHubEnterpriseConfig` operation.
|
834
1056
|
class DeleteGitHubEnterpriseConfigOperationMetadata
|
835
1057
|
include Google::Apis::Core::Hashable
|
@@ -862,6 +1084,38 @@ module Google
|
|
862
1084
|
end
|
863
1085
|
end
|
864
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
|
+
|
865
1119
|
# Metadata for the `DeleteWorkerPool` operation.
|
866
1120
|
class DeleteWorkerPoolOperationMetadata
|
867
1121
|
include Google::Apis::Core::Hashable
|
@@ -956,6 +1210,40 @@ module Google
|
|
956
1210
|
end
|
957
1211
|
end
|
958
1212
|
|
1213
|
+
# Configuration per workload for both Private Pools and Hybrid Pools.
|
1214
|
+
class GoogleDevtoolsCloudbuildV1BuildOptionsPoolOptionWorkerConfig
|
1215
|
+
include Google::Apis::Core::Hashable
|
1216
|
+
|
1217
|
+
# The disk size (in GB) which is requested for the build container. If unset, a
|
1218
|
+
# value of 10 GB will be used.
|
1219
|
+
# Corresponds to the JSON property `diskSizeGb`
|
1220
|
+
# @return [Fixnum]
|
1221
|
+
attr_accessor :disk_size_gb
|
1222
|
+
|
1223
|
+
# The memory (in GB) which is requested for the build container. If unset, a
|
1224
|
+
# value of 4 GB will be used.
|
1225
|
+
# Corresponds to the JSON property `memoryGb`
|
1226
|
+
# @return [Float]
|
1227
|
+
attr_accessor :memory_gb
|
1228
|
+
|
1229
|
+
# The number of vCPUs which are requested for the build container. If unset, a
|
1230
|
+
# value of 1 will be used.
|
1231
|
+
# Corresponds to the JSON property `vcpuCount`
|
1232
|
+
# @return [Float]
|
1233
|
+
attr_accessor :vcpu_count
|
1234
|
+
|
1235
|
+
def initialize(**args)
|
1236
|
+
update!(**args)
|
1237
|
+
end
|
1238
|
+
|
1239
|
+
# Update properties of this object
|
1240
|
+
def update!(**args)
|
1241
|
+
@disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
|
1242
|
+
@memory_gb = args[:memory_gb] if args.key?(:memory_gb)
|
1243
|
+
@vcpu_count = args[:vcpu_count] if args.key?(:vcpu_count)
|
1244
|
+
end
|
1245
|
+
end
|
1246
|
+
|
959
1247
|
# Represents the metadata of the long-running operation.
|
960
1248
|
class GoogleDevtoolsCloudbuildV2OperationMetadata
|
961
1249
|
include Google::Apis::Core::Hashable
|
@@ -1458,6 +1746,11 @@ module Google
|
|
1458
1746
|
# @return [String]
|
1459
1747
|
attr_accessor :name
|
1460
1748
|
|
1749
|
+
# Configuration per workload for both Private Pools and Hybrid Pools.
|
1750
|
+
# Corresponds to the JSON property `workerConfig`
|
1751
|
+
# @return [Google::Apis::CloudbuildV1alpha2::GoogleDevtoolsCloudbuildV1BuildOptionsPoolOptionWorkerConfig]
|
1752
|
+
attr_accessor :worker_config
|
1753
|
+
|
1461
1754
|
def initialize(**args)
|
1462
1755
|
update!(**args)
|
1463
1756
|
end
|
@@ -1465,6 +1758,7 @@ module Google
|
|
1465
1758
|
# Update properties of this object
|
1466
1759
|
def update!(**args)
|
1467
1760
|
@name = args[:name] if args.key?(:name)
|
1761
|
+
@worker_config = args[:worker_config] if args.key?(:worker_config)
|
1468
1762
|
end
|
1469
1763
|
end
|
1470
1764
|
|
@@ -1995,6 +2289,38 @@ module Google
|
|
1995
2289
|
end
|
1996
2290
|
end
|
1997
2291
|
|
2292
|
+
# Metadata for `UpdateBitbucketServerConfig` operation.
|
2293
|
+
class UpdateBitbucketServerConfigOperationMetadata
|
2294
|
+
include Google::Apis::Core::Hashable
|
2295
|
+
|
2296
|
+
# The resource name of the BitbucketServerConfig to be updated. Format: `
|
2297
|
+
# projects/`project`/locations/`location`/bitbucketServerConfigs/`id``.
|
2298
|
+
# Corresponds to the JSON property `bitbucketServerConfig`
|
2299
|
+
# @return [String]
|
2300
|
+
attr_accessor :bitbucket_server_config
|
2301
|
+
|
2302
|
+
# Time the operation was completed.
|
2303
|
+
# Corresponds to the JSON property `completeTime`
|
2304
|
+
# @return [String]
|
2305
|
+
attr_accessor :complete_time
|
2306
|
+
|
2307
|
+
# Time the operation was created.
|
2308
|
+
# Corresponds to the JSON property `createTime`
|
2309
|
+
# @return [String]
|
2310
|
+
attr_accessor :create_time
|
2311
|
+
|
2312
|
+
def initialize(**args)
|
2313
|
+
update!(**args)
|
2314
|
+
end
|
2315
|
+
|
2316
|
+
# Update properties of this object
|
2317
|
+
def update!(**args)
|
2318
|
+
@bitbucket_server_config = args[:bitbucket_server_config] if args.key?(:bitbucket_server_config)
|
2319
|
+
@complete_time = args[:complete_time] if args.key?(:complete_time)
|
2320
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
2321
|
+
end
|
2322
|
+
end
|
2323
|
+
|
1998
2324
|
# Metadata for `UpdateGitHubEnterpriseConfig` operation.
|
1999
2325
|
class UpdateGitHubEnterpriseConfigOperationMetadata
|
2000
2326
|
include Google::Apis::Core::Hashable
|
@@ -2027,6 +2353,38 @@ module Google
|
|
2027
2353
|
end
|
2028
2354
|
end
|
2029
2355
|
|
2356
|
+
# Metadata for `UpdateGitLabConfig` operation.
|
2357
|
+
class UpdateGitLabConfigOperationMetadata
|
2358
|
+
include Google::Apis::Core::Hashable
|
2359
|
+
|
2360
|
+
# Time the operation was completed.
|
2361
|
+
# Corresponds to the JSON property `completeTime`
|
2362
|
+
# @return [String]
|
2363
|
+
attr_accessor :complete_time
|
2364
|
+
|
2365
|
+
# Time the operation was created.
|
2366
|
+
# Corresponds to the JSON property `createTime`
|
2367
|
+
# @return [String]
|
2368
|
+
attr_accessor :create_time
|
2369
|
+
|
2370
|
+
# The resource name of the GitLabConfig to be created. Format: `projects/`
|
2371
|
+
# project`/locations/`location`/gitlabConfigs/`id``.
|
2372
|
+
# Corresponds to the JSON property `gitlabConfig`
|
2373
|
+
# @return [String]
|
2374
|
+
attr_accessor :gitlab_config
|
2375
|
+
|
2376
|
+
def initialize(**args)
|
2377
|
+
update!(**args)
|
2378
|
+
end
|
2379
|
+
|
2380
|
+
# Update properties of this object
|
2381
|
+
def update!(**args)
|
2382
|
+
@complete_time = args[:complete_time] if args.key?(:complete_time)
|
2383
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
2384
|
+
@gitlab_config = args[:gitlab_config] if args.key?(:gitlab_config)
|
2385
|
+
end
|
2386
|
+
end
|
2387
|
+
|
2030
2388
|
# Metadata for the `UpdateWorkerPool` operation.
|
2031
2389
|
class UpdateWorkerPoolOperationMetadata
|
2032
2390
|
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.17.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.4.
|
22
|
+
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220126"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -52,6 +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
|
+
|
61
|
+
class BatchCreateBitbucketServerConnectedRepositoriesResponseMetadata
|
62
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
63
|
+
|
64
|
+
include Google::Apis::Core::JsonObjectSupport
|
65
|
+
end
|
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
|
+
|
55
79
|
class Build
|
56
80
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
57
81
|
|
@@ -94,24 +118,48 @@ module Google
|
|
94
118
|
include Google::Apis::Core::JsonObjectSupport
|
95
119
|
end
|
96
120
|
|
121
|
+
class CreateBitbucketServerConfigOperationMetadata
|
122
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
123
|
+
|
124
|
+
include Google::Apis::Core::JsonObjectSupport
|
125
|
+
end
|
126
|
+
|
97
127
|
class CreateGitHubEnterpriseConfigOperationMetadata
|
98
128
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
99
129
|
|
100
130
|
include Google::Apis::Core::JsonObjectSupport
|
101
131
|
end
|
102
132
|
|
133
|
+
class CreateGitLabConfigOperationMetadata
|
134
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
135
|
+
|
136
|
+
include Google::Apis::Core::JsonObjectSupport
|
137
|
+
end
|
138
|
+
|
103
139
|
class CreateWorkerPoolOperationMetadata
|
104
140
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
105
141
|
|
106
142
|
include Google::Apis::Core::JsonObjectSupport
|
107
143
|
end
|
108
144
|
|
145
|
+
class DeleteBitbucketServerConfigOperationMetadata
|
146
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
147
|
+
|
148
|
+
include Google::Apis::Core::JsonObjectSupport
|
149
|
+
end
|
150
|
+
|
109
151
|
class DeleteGitHubEnterpriseConfigOperationMetadata
|
110
152
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
111
153
|
|
112
154
|
include Google::Apis::Core::JsonObjectSupport
|
113
155
|
end
|
114
156
|
|
157
|
+
class DeleteGitLabConfigOperationMetadata
|
158
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
159
|
+
|
160
|
+
include Google::Apis::Core::JsonObjectSupport
|
161
|
+
end
|
162
|
+
|
115
163
|
class DeleteWorkerPoolOperationMetadata
|
116
164
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
117
165
|
|
@@ -136,6 +184,12 @@ module Google
|
|
136
184
|
include Google::Apis::Core::JsonObjectSupport
|
137
185
|
end
|
138
186
|
|
187
|
+
class GoogleDevtoolsCloudbuildV1BuildOptionsPoolOptionWorkerConfig
|
188
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
|
+
|
190
|
+
include Google::Apis::Core::JsonObjectSupport
|
191
|
+
end
|
192
|
+
|
139
193
|
class GoogleDevtoolsCloudbuildV2OperationMetadata
|
140
194
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
141
195
|
|
@@ -310,12 +364,24 @@ module Google
|
|
310
364
|
include Google::Apis::Core::JsonObjectSupport
|
311
365
|
end
|
312
366
|
|
367
|
+
class UpdateBitbucketServerConfigOperationMetadata
|
368
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
369
|
+
|
370
|
+
include Google::Apis::Core::JsonObjectSupport
|
371
|
+
end
|
372
|
+
|
313
373
|
class UpdateGitHubEnterpriseConfigOperationMetadata
|
314
374
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
315
375
|
|
316
376
|
include Google::Apis::Core::JsonObjectSupport
|
317
377
|
end
|
318
378
|
|
379
|
+
class UpdateGitLabConfigOperationMetadata
|
380
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
381
|
+
|
382
|
+
include Google::Apis::Core::JsonObjectSupport
|
383
|
+
end
|
384
|
+
|
319
385
|
class UpdateWorkerPoolOperationMetadata
|
320
386
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
321
387
|
|
@@ -392,6 +458,43 @@ module Google
|
|
392
458
|
end
|
393
459
|
end
|
394
460
|
|
461
|
+
class BatchCreateBitbucketServerConnectedRepositoriesResponse
|
462
|
+
# @private
|
463
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
464
|
+
collection :bitbucket_server_connected_repositories, as: 'bitbucketServerConnectedRepositories', class: Google::Apis::CloudbuildV1alpha2::BitbucketServerConnectedRepository, decorator: Google::Apis::CloudbuildV1alpha2::BitbucketServerConnectedRepository::Representation
|
465
|
+
|
466
|
+
end
|
467
|
+
end
|
468
|
+
|
469
|
+
class BatchCreateBitbucketServerConnectedRepositoriesResponseMetadata
|
470
|
+
# @private
|
471
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
472
|
+
property :complete_time, as: 'completeTime'
|
473
|
+
property :config, as: 'config'
|
474
|
+
property :create_time, as: 'createTime'
|
475
|
+
end
|
476
|
+
end
|
477
|
+
|
478
|
+
class BitbucketServerConnectedRepository
|
479
|
+
# @private
|
480
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
481
|
+
property :parent, as: 'parent'
|
482
|
+
property :repo, as: 'repo', class: Google::Apis::CloudbuildV1alpha2::BitbucketServerRepositoryId, decorator: Google::Apis::CloudbuildV1alpha2::BitbucketServerRepositoryId::Representation
|
483
|
+
|
484
|
+
property :status, as: 'status', class: Google::Apis::CloudbuildV1alpha2::Status, decorator: Google::Apis::CloudbuildV1alpha2::Status::Representation
|
485
|
+
|
486
|
+
end
|
487
|
+
end
|
488
|
+
|
489
|
+
class BitbucketServerRepositoryId
|
490
|
+
# @private
|
491
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
492
|
+
property :project_key, as: 'projectKey'
|
493
|
+
property :repo_slug, as: 'repoSlug'
|
494
|
+
property :webhook_id, as: 'webhookId'
|
495
|
+
end
|
496
|
+
end
|
497
|
+
|
395
498
|
class Build
|
396
499
|
# @private
|
397
500
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -518,6 +621,15 @@ module Google
|
|
518
621
|
end
|
519
622
|
end
|
520
623
|
|
624
|
+
class CreateBitbucketServerConfigOperationMetadata
|
625
|
+
# @private
|
626
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
627
|
+
property :bitbucket_server_config, as: 'bitbucketServerConfig'
|
628
|
+
property :complete_time, as: 'completeTime'
|
629
|
+
property :create_time, as: 'createTime'
|
630
|
+
end
|
631
|
+
end
|
632
|
+
|
521
633
|
class CreateGitHubEnterpriseConfigOperationMetadata
|
522
634
|
# @private
|
523
635
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -527,6 +639,15 @@ module Google
|
|
527
639
|
end
|
528
640
|
end
|
529
641
|
|
642
|
+
class CreateGitLabConfigOperationMetadata
|
643
|
+
# @private
|
644
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
645
|
+
property :complete_time, as: 'completeTime'
|
646
|
+
property :create_time, as: 'createTime'
|
647
|
+
property :gitlab_config, as: 'gitlabConfig'
|
648
|
+
end
|
649
|
+
end
|
650
|
+
|
530
651
|
class CreateWorkerPoolOperationMetadata
|
531
652
|
# @private
|
532
653
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -536,6 +657,15 @@ module Google
|
|
536
657
|
end
|
537
658
|
end
|
538
659
|
|
660
|
+
class DeleteBitbucketServerConfigOperationMetadata
|
661
|
+
# @private
|
662
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
663
|
+
property :bitbucket_server_config, as: 'bitbucketServerConfig'
|
664
|
+
property :complete_time, as: 'completeTime'
|
665
|
+
property :create_time, as: 'createTime'
|
666
|
+
end
|
667
|
+
end
|
668
|
+
|
539
669
|
class DeleteGitHubEnterpriseConfigOperationMetadata
|
540
670
|
# @private
|
541
671
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -545,6 +675,15 @@ module Google
|
|
545
675
|
end
|
546
676
|
end
|
547
677
|
|
678
|
+
class DeleteGitLabConfigOperationMetadata
|
679
|
+
# @private
|
680
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
681
|
+
property :complete_time, as: 'completeTime'
|
682
|
+
property :create_time, as: 'createTime'
|
683
|
+
property :gitlab_config, as: 'gitlabConfig'
|
684
|
+
end
|
685
|
+
end
|
686
|
+
|
548
687
|
class DeleteWorkerPoolOperationMetadata
|
549
688
|
# @private
|
550
689
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -576,6 +715,15 @@ module Google
|
|
576
715
|
end
|
577
716
|
end
|
578
717
|
|
718
|
+
class GoogleDevtoolsCloudbuildV1BuildOptionsPoolOptionWorkerConfig
|
719
|
+
# @private
|
720
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
721
|
+
property :disk_size_gb, :numeric_string => true, as: 'diskSizeGb'
|
722
|
+
property :memory_gb, as: 'memoryGb'
|
723
|
+
property :vcpu_count, as: 'vcpuCount'
|
724
|
+
end
|
725
|
+
end
|
726
|
+
|
579
727
|
class GoogleDevtoolsCloudbuildV2OperationMetadata
|
580
728
|
# @private
|
581
729
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -715,6 +863,8 @@ module Google
|
|
715
863
|
# @private
|
716
864
|
class Representation < Google::Apis::Core::JsonRepresentation
|
717
865
|
property :name, as: 'name'
|
866
|
+
property :worker_config, as: 'workerConfig', class: Google::Apis::CloudbuildV1alpha2::GoogleDevtoolsCloudbuildV1BuildOptionsPoolOptionWorkerConfig, decorator: Google::Apis::CloudbuildV1alpha2::GoogleDevtoolsCloudbuildV1BuildOptionsPoolOptionWorkerConfig::Representation
|
867
|
+
|
718
868
|
end
|
719
869
|
end
|
720
870
|
|
@@ -863,6 +1013,15 @@ module Google
|
|
863
1013
|
end
|
864
1014
|
end
|
865
1015
|
|
1016
|
+
class UpdateBitbucketServerConfigOperationMetadata
|
1017
|
+
# @private
|
1018
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1019
|
+
property :bitbucket_server_config, as: 'bitbucketServerConfig'
|
1020
|
+
property :complete_time, as: 'completeTime'
|
1021
|
+
property :create_time, as: 'createTime'
|
1022
|
+
end
|
1023
|
+
end
|
1024
|
+
|
866
1025
|
class UpdateGitHubEnterpriseConfigOperationMetadata
|
867
1026
|
# @private
|
868
1027
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -872,6 +1031,15 @@ module Google
|
|
872
1031
|
end
|
873
1032
|
end
|
874
1033
|
|
1034
|
+
class UpdateGitLabConfigOperationMetadata
|
1035
|
+
# @private
|
1036
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1037
|
+
property :complete_time, as: 'completeTime'
|
1038
|
+
property :create_time, as: 'createTime'
|
1039
|
+
property :gitlab_config, as: 'gitlabConfig'
|
1040
|
+
end
|
1041
|
+
end
|
1042
|
+
|
875
1043
|
class UpdateWorkerPoolOperationMetadata
|
876
1044
|
# @private
|
877
1045
|
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.17.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:
|
11
|
+
date: 2022-02-07 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1alpha2/v0.17.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.
|
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
|