google-apis-cloudbuild_v1alpha1 0.10.0 → 0.14.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +16 -0
- data/OVERVIEW.md +2 -2
- data/lib/google/apis/cloudbuild_v1alpha1/classes.rb +294 -16
- data/lib/google/apis/cloudbuild_v1alpha1/gem_version.rb +2 -2
- data/lib/google/apis/cloudbuild_v1alpha1/representations.rb +125 -0
- data/lib/google/apis/cloudbuild_v1alpha1.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1ebdcb41f38877d2d6b34a1d5f33e0183314f84306e500a89aff38caa512f912
|
4
|
+
data.tar.gz: a1735fec239f30d88815f57e8d87adf4e70fe31b3cf4b05a4880fc848678a7b0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8a12a6c06c7e386afee8f6fc1e7824761b77b6ebccd874e225f6c2ea8f35f9b91667d1e2b0a671d28c71ff54b49c9308a92310e5addd14abfe352c1c80734116
|
7
|
+
data.tar.gz: 9594e37276d09b3c51d7f635043b088a3e91852678451c433501e9e0b1a5962e9c4797a877b64dd6569dc25f9d03a863699210ed9f0582d21674886caca975dc
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Release history for google-apis-cloudbuild_v1alpha1
|
2
2
|
|
3
|
+
### v0.14.0 (2021-11-18)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20211115
|
6
|
+
|
7
|
+
### v0.13.0 (2021-10-20)
|
8
|
+
|
9
|
+
* Unspecified changes
|
10
|
+
|
11
|
+
### v0.12.0 (2021-09-01)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20210813
|
14
|
+
|
15
|
+
### v0.11.0 (2021-07-27)
|
16
|
+
|
17
|
+
* Regenerated from discovery document revision 20210723
|
18
|
+
|
3
19
|
### v0.10.0 (2021-07-20)
|
4
20
|
|
5
21
|
* Regenerated from discovery document revision 20210715
|
data/OVERVIEW.md
CHANGED
@@ -60,8 +60,8 @@ See the class reference docs for information on the methods you can call from a
|
|
60
60
|
|
61
61
|
More detailed descriptions of the Google simple REST clients are available in two documents.
|
62
62
|
|
63
|
-
* The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/
|
64
|
-
* The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/
|
63
|
+
* The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
|
64
|
+
* The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
|
65
65
|
|
66
66
|
(Note: the above documents are written for the simple REST clients in general, and their examples may not reflect the Cloudbuild service in particular.)
|
67
67
|
|
@@ -22,6 +22,75 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module CloudbuildV1alpha1
|
24
24
|
|
25
|
+
# ApprovalConfig describes configuration for manual approval of a build.
|
26
|
+
class ApprovalConfig
|
27
|
+
include Google::Apis::Core::Hashable
|
28
|
+
|
29
|
+
# Whether or not approval is needed. If this is set on a build, it will become
|
30
|
+
# pending when created, and will need to be explicitly approved to start.
|
31
|
+
# Corresponds to the JSON property `approvalRequired`
|
32
|
+
# @return [Boolean]
|
33
|
+
attr_accessor :approval_required
|
34
|
+
alias_method :approval_required?, :approval_required
|
35
|
+
|
36
|
+
def initialize(**args)
|
37
|
+
update!(**args)
|
38
|
+
end
|
39
|
+
|
40
|
+
# Update properties of this object
|
41
|
+
def update!(**args)
|
42
|
+
@approval_required = args[:approval_required] if args.key?(:approval_required)
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
# ApprovalResult describes the decision and associated metadata of a manual
|
47
|
+
# approval of a build.
|
48
|
+
class ApprovalResult
|
49
|
+
include Google::Apis::Core::Hashable
|
50
|
+
|
51
|
+
# Output only. The time when the approval decision was made.
|
52
|
+
# Corresponds to the JSON property `approvalTime`
|
53
|
+
# @return [String]
|
54
|
+
attr_accessor :approval_time
|
55
|
+
|
56
|
+
# Output only. Email of the user that called the ApproveBuild API to approve or
|
57
|
+
# reject a build at the time that the API was called.
|
58
|
+
# Corresponds to the JSON property `approverAccount`
|
59
|
+
# @return [String]
|
60
|
+
attr_accessor :approver_account
|
61
|
+
|
62
|
+
# Optional. An optional comment for this manual approval result.
|
63
|
+
# Corresponds to the JSON property `comment`
|
64
|
+
# @return [String]
|
65
|
+
attr_accessor :comment
|
66
|
+
|
67
|
+
# Required. The decision of this manual approval.
|
68
|
+
# Corresponds to the JSON property `decision`
|
69
|
+
# @return [String]
|
70
|
+
attr_accessor :decision
|
71
|
+
|
72
|
+
# Optional. An optional URL tied to this manual approval result. This field is
|
73
|
+
# essentially the same as comment, except that it will be rendered by the UI
|
74
|
+
# differently. An example use case is a link to an external job that approved
|
75
|
+
# this Build.
|
76
|
+
# Corresponds to the JSON property `url`
|
77
|
+
# @return [String]
|
78
|
+
attr_accessor :url
|
79
|
+
|
80
|
+
def initialize(**args)
|
81
|
+
update!(**args)
|
82
|
+
end
|
83
|
+
|
84
|
+
# Update properties of this object
|
85
|
+
def update!(**args)
|
86
|
+
@approval_time = args[:approval_time] if args.key?(:approval_time)
|
87
|
+
@approver_account = args[:approver_account] if args.key?(:approver_account)
|
88
|
+
@comment = args[:comment] if args.key?(:comment)
|
89
|
+
@decision = args[:decision] if args.key?(:decision)
|
90
|
+
@url = args[:url] if args.key?(:url)
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
25
94
|
# Files in the workspace to upload to Cloud Storage upon successful completion
|
26
95
|
# of all build steps.
|
27
96
|
class ArtifactObjects
|
@@ -115,20 +184,59 @@ module Google
|
|
115
184
|
end
|
116
185
|
end
|
117
186
|
|
187
|
+
# Metadata for `BatchCreateBitbucketServerConnectedRepositories` operation.
|
188
|
+
class BatchCreateBitbucketServerConnectedRepositoriesResponseMetadata
|
189
|
+
include Google::Apis::Core::Hashable
|
190
|
+
|
191
|
+
# Time the operation was completed.
|
192
|
+
# Corresponds to the JSON property `completeTime`
|
193
|
+
# @return [String]
|
194
|
+
attr_accessor :complete_time
|
195
|
+
|
196
|
+
# The name of the `BitbucketServerConfig` that added connected repositories.
|
197
|
+
# Format: `projects/`project`/locations/`location`/bitbucketServerConfigs/`
|
198
|
+
# config``
|
199
|
+
# Corresponds to the JSON property `config`
|
200
|
+
# @return [String]
|
201
|
+
attr_accessor :config
|
202
|
+
|
203
|
+
# Time the operation was created.
|
204
|
+
# Corresponds to the JSON property `createTime`
|
205
|
+
# @return [String]
|
206
|
+
attr_accessor :create_time
|
207
|
+
|
208
|
+
def initialize(**args)
|
209
|
+
update!(**args)
|
210
|
+
end
|
211
|
+
|
212
|
+
# Update properties of this object
|
213
|
+
def update!(**args)
|
214
|
+
@complete_time = args[:complete_time] if args.key?(:complete_time)
|
215
|
+
@config = args[:config] if args.key?(:config)
|
216
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
217
|
+
end
|
218
|
+
end
|
219
|
+
|
118
220
|
# A build resource in the Cloud Build API. At a high level, a `Build` describes
|
119
221
|
# where to find source code, how to build it (for example, the builder image to
|
120
222
|
# run on the source), and where to store the built artifacts. Fields can include
|
121
223
|
# the following variables, which will be expanded when the build is created: - $
|
122
224
|
# PROJECT_ID: the project ID of the build. - $PROJECT_NUMBER: the project number
|
123
|
-
# of the build. - $
|
124
|
-
#
|
125
|
-
#
|
126
|
-
# RepoSource. - $
|
127
|
-
#
|
128
|
-
# characters of $REVISION_ID or $
|
225
|
+
# of the build. - $LOCATION: the location/region of the build. - $BUILD_ID: the
|
226
|
+
# autogenerated ID of the build. - $REPO_NAME: the source repository name
|
227
|
+
# specified by RepoSource. - $BRANCH_NAME: the branch name specified by
|
228
|
+
# RepoSource. - $TAG_NAME: the tag name specified by RepoSource. - $REVISION_ID
|
229
|
+
# or $COMMIT_SHA: the commit SHA specified by RepoSource or resolved from the
|
230
|
+
# specified branch or tag. - $SHORT_SHA: first 7 characters of $REVISION_ID or $
|
231
|
+
# COMMIT_SHA.
|
129
232
|
class Build
|
130
233
|
include Google::Apis::Core::Hashable
|
131
234
|
|
235
|
+
# BuildApproval describes a build's approval configuration, state, and result.
|
236
|
+
# Corresponds to the JSON property `approval`
|
237
|
+
# @return [Google::Apis::CloudbuildV1alpha1::BuildApproval]
|
238
|
+
attr_accessor :approval
|
239
|
+
|
132
240
|
# Artifacts produced by a build that should be uploaded upon successful
|
133
241
|
# completion of all build steps.
|
134
242
|
# Corresponds to the JSON property `artifacts`
|
@@ -283,9 +391,10 @@ module Google
|
|
283
391
|
attr_accessor :timeout
|
284
392
|
|
285
393
|
# Output only. Stores timing information for phases of the build. Valid keys are:
|
286
|
-
# * BUILD: time to execute all build steps * PUSH: time to push all specified
|
287
|
-
# images. * FETCHSOURCE: time to fetch source.
|
288
|
-
# source or images, these keys will not be
|
394
|
+
# * BUILD: time to execute all build steps. * PUSH: time to push all specified
|
395
|
+
# images. * FETCHSOURCE: time to fetch source. * SETUPBUILD: time to set up
|
396
|
+
# build. If the build does not specify source or images, these keys will not be
|
397
|
+
# included.
|
289
398
|
# Corresponds to the JSON property `timing`
|
290
399
|
# @return [Hash<String,Google::Apis::CloudbuildV1alpha1::TimeSpan>]
|
291
400
|
attr_accessor :timing
|
@@ -301,6 +410,7 @@ module Google
|
|
301
410
|
|
302
411
|
# Update properties of this object
|
303
412
|
def update!(**args)
|
413
|
+
@approval = args[:approval] if args.key?(:approval)
|
304
414
|
@artifacts = args[:artifacts] if args.key?(:artifacts)
|
305
415
|
@available_secrets = args[:available_secrets] if args.key?(:available_secrets)
|
306
416
|
@build_trigger_id = args[:build_trigger_id] if args.key?(:build_trigger_id)
|
@@ -332,6 +442,38 @@ module Google
|
|
332
442
|
end
|
333
443
|
end
|
334
444
|
|
445
|
+
# BuildApproval describes a build's approval configuration, state, and result.
|
446
|
+
class BuildApproval
|
447
|
+
include Google::Apis::Core::Hashable
|
448
|
+
|
449
|
+
# ApprovalConfig describes configuration for manual approval of a build.
|
450
|
+
# Corresponds to the JSON property `config`
|
451
|
+
# @return [Google::Apis::CloudbuildV1alpha1::ApprovalConfig]
|
452
|
+
attr_accessor :config
|
453
|
+
|
454
|
+
# ApprovalResult describes the decision and associated metadata of a manual
|
455
|
+
# approval of a build.
|
456
|
+
# Corresponds to the JSON property `result`
|
457
|
+
# @return [Google::Apis::CloudbuildV1alpha1::ApprovalResult]
|
458
|
+
attr_accessor :result
|
459
|
+
|
460
|
+
# Output only. The state of this build's approval.
|
461
|
+
# Corresponds to the JSON property `state`
|
462
|
+
# @return [String]
|
463
|
+
attr_accessor :state
|
464
|
+
|
465
|
+
def initialize(**args)
|
466
|
+
update!(**args)
|
467
|
+
end
|
468
|
+
|
469
|
+
# Update properties of this object
|
470
|
+
def update!(**args)
|
471
|
+
@config = args[:config] if args.key?(:config)
|
472
|
+
@result = args[:result] if args.key?(:result)
|
473
|
+
@state = args[:state] if args.key?(:state)
|
474
|
+
end
|
475
|
+
end
|
476
|
+
|
335
477
|
# Metadata for build operations.
|
336
478
|
class BuildOperationMetadata
|
337
479
|
include Google::Apis::Core::Hashable
|
@@ -341,12 +483,13 @@ module Google
|
|
341
483
|
# run on the source), and where to store the built artifacts. Fields can include
|
342
484
|
# the following variables, which will be expanded when the build is created: - $
|
343
485
|
# PROJECT_ID: the project ID of the build. - $PROJECT_NUMBER: the project number
|
344
|
-
# of the build. - $
|
345
|
-
#
|
346
|
-
#
|
347
|
-
# RepoSource. - $
|
348
|
-
#
|
349
|
-
# characters of $REVISION_ID or $
|
486
|
+
# of the build. - $LOCATION: the location/region of the build. - $BUILD_ID: the
|
487
|
+
# autogenerated ID of the build. - $REPO_NAME: the source repository name
|
488
|
+
# specified by RepoSource. - $BRANCH_NAME: the branch name specified by
|
489
|
+
# RepoSource. - $TAG_NAME: the tag name specified by RepoSource. - $REVISION_ID
|
490
|
+
# or $COMMIT_SHA: the commit SHA specified by RepoSource or resolved from the
|
491
|
+
# specified branch or tag. - $SHORT_SHA: first 7 characters of $REVISION_ID or $
|
492
|
+
# COMMIT_SHA.
|
350
493
|
# Corresponds to the JSON property `build`
|
351
494
|
# @return [Google::Apis::CloudbuildV1alpha1::Build]
|
352
495
|
attr_accessor :build
|
@@ -539,6 +682,12 @@ module Google
|
|
539
682
|
# @return [Google::Apis::CloudbuildV1alpha1::TimeSpan]
|
540
683
|
attr_accessor :pull_timing
|
541
684
|
|
685
|
+
# A shell script to be executed in the step. When script is provided, the user
|
686
|
+
# cannot specify the entrypoint or args.
|
687
|
+
# Corresponds to the JSON property `script`
|
688
|
+
# @return [String]
|
689
|
+
attr_accessor :script
|
690
|
+
|
542
691
|
# A list of environment variables which are encrypted using a Cloud Key
|
543
692
|
# Management Service crypto key. These values must be specified in the build's `
|
544
693
|
# Secret`.
|
@@ -595,6 +744,7 @@ module Google
|
|
595
744
|
@id = args[:id] if args.key?(:id)
|
596
745
|
@name = args[:name] if args.key?(:name)
|
597
746
|
@pull_timing = args[:pull_timing] if args.key?(:pull_timing)
|
747
|
+
@script = args[:script] if args.key?(:script)
|
598
748
|
@secret_env = args[:secret_env] if args.key?(:secret_env)
|
599
749
|
@status = args[:status] if args.key?(:status)
|
600
750
|
@timeout = args[:timeout] if args.key?(:timeout)
|
@@ -649,6 +799,38 @@ module Google
|
|
649
799
|
end
|
650
800
|
end
|
651
801
|
|
802
|
+
# Metadata for `CreateGithubEnterpriseConfig` operation.
|
803
|
+
class CreateGitHubEnterpriseConfigOperationMetadata
|
804
|
+
include Google::Apis::Core::Hashable
|
805
|
+
|
806
|
+
# Time the operation was completed.
|
807
|
+
# Corresponds to the JSON property `completeTime`
|
808
|
+
# @return [String]
|
809
|
+
attr_accessor :complete_time
|
810
|
+
|
811
|
+
# Time the operation was created.
|
812
|
+
# Corresponds to the JSON property `createTime`
|
813
|
+
# @return [String]
|
814
|
+
attr_accessor :create_time
|
815
|
+
|
816
|
+
# The resource name of the GitHubEnterprise to be created. Format: `projects/`
|
817
|
+
# project`/locations/`location`/githubEnterpriseConfigs/`id``.
|
818
|
+
# Corresponds to the JSON property `githubEnterpriseConfig`
|
819
|
+
# @return [String]
|
820
|
+
attr_accessor :github_enterprise_config
|
821
|
+
|
822
|
+
def initialize(**args)
|
823
|
+
update!(**args)
|
824
|
+
end
|
825
|
+
|
826
|
+
# Update properties of this object
|
827
|
+
def update!(**args)
|
828
|
+
@complete_time = args[:complete_time] if args.key?(:complete_time)
|
829
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
830
|
+
@github_enterprise_config = args[:github_enterprise_config] if args.key?(:github_enterprise_config)
|
831
|
+
end
|
832
|
+
end
|
833
|
+
|
652
834
|
# Metadata for the `CreateWorkerPool` operation.
|
653
835
|
class CreateWorkerPoolOperationMetadata
|
654
836
|
include Google::Apis::Core::Hashable
|
@@ -681,6 +863,38 @@ module Google
|
|
681
863
|
end
|
682
864
|
end
|
683
865
|
|
866
|
+
# Metadata for `DeleteGitHubEnterpriseConfig` operation.
|
867
|
+
class DeleteGitHubEnterpriseConfigOperationMetadata
|
868
|
+
include Google::Apis::Core::Hashable
|
869
|
+
|
870
|
+
# Time the operation was completed.
|
871
|
+
# Corresponds to the JSON property `completeTime`
|
872
|
+
# @return [String]
|
873
|
+
attr_accessor :complete_time
|
874
|
+
|
875
|
+
# Time the operation was created.
|
876
|
+
# Corresponds to the JSON property `createTime`
|
877
|
+
# @return [String]
|
878
|
+
attr_accessor :create_time
|
879
|
+
|
880
|
+
# The resource name of the GitHubEnterprise to be deleted. Format: `projects/`
|
881
|
+
# project`/locations/`location`/githubEnterpriseConfigs/`id``.
|
882
|
+
# Corresponds to the JSON property `githubEnterpriseConfig`
|
883
|
+
# @return [String]
|
884
|
+
attr_accessor :github_enterprise_config
|
885
|
+
|
886
|
+
def initialize(**args)
|
887
|
+
update!(**args)
|
888
|
+
end
|
889
|
+
|
890
|
+
# Update properties of this object
|
891
|
+
def update!(**args)
|
892
|
+
@complete_time = args[:complete_time] if args.key?(:complete_time)
|
893
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
894
|
+
@github_enterprise_config = args[:github_enterprise_config] if args.key?(:github_enterprise_config)
|
895
|
+
end
|
896
|
+
end
|
897
|
+
|
684
898
|
# Metadata for the `DeleteWorkerPool` operation.
|
685
899
|
class DeleteWorkerPoolOperationMetadata
|
686
900
|
include Google::Apis::Core::Hashable
|
@@ -1228,7 +1442,7 @@ module Google
|
|
1228
1442
|
attr_accessor :api_version
|
1229
1443
|
|
1230
1444
|
# Output only. Identifies whether the user has requested cancellation of the
|
1231
|
-
# operation. Operations that have
|
1445
|
+
# operation. Operations that have been cancelled successfully have Operation.
|
1232
1446
|
# error value with a google.rpc.Status.code of 1, corresponding to `Code.
|
1233
1447
|
# CANCELLED`.
|
1234
1448
|
# Corresponds to the JSON property `cancelRequested`
|
@@ -1300,6 +1514,38 @@ module Google
|
|
1300
1514
|
end
|
1301
1515
|
end
|
1302
1516
|
|
1517
|
+
# Metadata for `ProcessAppManifestCallback` operation.
|
1518
|
+
class ProcessAppManifestCallbackOperationMetadata
|
1519
|
+
include Google::Apis::Core::Hashable
|
1520
|
+
|
1521
|
+
# Time the operation was completed.
|
1522
|
+
# Corresponds to the JSON property `completeTime`
|
1523
|
+
# @return [String]
|
1524
|
+
attr_accessor :complete_time
|
1525
|
+
|
1526
|
+
# Time the operation was created.
|
1527
|
+
# Corresponds to the JSON property `createTime`
|
1528
|
+
# @return [String]
|
1529
|
+
attr_accessor :create_time
|
1530
|
+
|
1531
|
+
# The resource name of the GitHubEnterprise to be created. Format: `projects/`
|
1532
|
+
# project`/locations/`location`/githubEnterpriseConfigs/`id``.
|
1533
|
+
# Corresponds to the JSON property `githubEnterpriseConfig`
|
1534
|
+
# @return [String]
|
1535
|
+
attr_accessor :github_enterprise_config
|
1536
|
+
|
1537
|
+
def initialize(**args)
|
1538
|
+
update!(**args)
|
1539
|
+
end
|
1540
|
+
|
1541
|
+
# Update properties of this object
|
1542
|
+
def update!(**args)
|
1543
|
+
@complete_time = args[:complete_time] if args.key?(:complete_time)
|
1544
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
1545
|
+
@github_enterprise_config = args[:github_enterprise_config] if args.key?(:github_enterprise_config)
|
1546
|
+
end
|
1547
|
+
end
|
1548
|
+
|
1303
1549
|
# Location of the source in a Google Cloud Source Repository.
|
1304
1550
|
class RepoSource
|
1305
1551
|
include Google::Apis::Core::Hashable
|
@@ -1795,6 +2041,38 @@ module Google
|
|
1795
2041
|
end
|
1796
2042
|
end
|
1797
2043
|
|
2044
|
+
# Metadata for `UpdateGitHubEnterpriseConfig` operation.
|
2045
|
+
class UpdateGitHubEnterpriseConfigOperationMetadata
|
2046
|
+
include Google::Apis::Core::Hashable
|
2047
|
+
|
2048
|
+
# Time the operation was completed.
|
2049
|
+
# Corresponds to the JSON property `completeTime`
|
2050
|
+
# @return [String]
|
2051
|
+
attr_accessor :complete_time
|
2052
|
+
|
2053
|
+
# Time the operation was created.
|
2054
|
+
# Corresponds to the JSON property `createTime`
|
2055
|
+
# @return [String]
|
2056
|
+
attr_accessor :create_time
|
2057
|
+
|
2058
|
+
# The resource name of the GitHubEnterprise to be updated. Format: `projects/`
|
2059
|
+
# project`/locations/`location`/githubEnterpriseConfigs/`id``.
|
2060
|
+
# Corresponds to the JSON property `githubEnterpriseConfig`
|
2061
|
+
# @return [String]
|
2062
|
+
attr_accessor :github_enterprise_config
|
2063
|
+
|
2064
|
+
def initialize(**args)
|
2065
|
+
update!(**args)
|
2066
|
+
end
|
2067
|
+
|
2068
|
+
# Update properties of this object
|
2069
|
+
def update!(**args)
|
2070
|
+
@complete_time = args[:complete_time] if args.key?(:complete_time)
|
2071
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
2072
|
+
@github_enterprise_config = args[:github_enterprise_config] if args.key?(:github_enterprise_config)
|
2073
|
+
end
|
2074
|
+
end
|
2075
|
+
|
1798
2076
|
# Metadata for the `UpdateWorkerPool` operation.
|
1799
2077
|
class UpdateWorkerPoolOperationMetadata
|
1800
2078
|
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.
|
19
|
+
GEM_VERSION = "0.14.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 = "
|
25
|
+
REVISION = "20211115"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -22,6 +22,18 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module CloudbuildV1alpha1
|
24
24
|
|
25
|
+
class ApprovalConfig
|
26
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
27
|
+
|
28
|
+
include Google::Apis::Core::JsonObjectSupport
|
29
|
+
end
|
30
|
+
|
31
|
+
class ApprovalResult
|
32
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
|
+
|
34
|
+
include Google::Apis::Core::JsonObjectSupport
|
35
|
+
end
|
36
|
+
|
25
37
|
class ArtifactObjects
|
26
38
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
27
39
|
|
@@ -40,12 +52,24 @@ module Google
|
|
40
52
|
include Google::Apis::Core::JsonObjectSupport
|
41
53
|
end
|
42
54
|
|
55
|
+
class BatchCreateBitbucketServerConnectedRepositoriesResponseMetadata
|
56
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
57
|
+
|
58
|
+
include Google::Apis::Core::JsonObjectSupport
|
59
|
+
end
|
60
|
+
|
43
61
|
class Build
|
44
62
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
45
63
|
|
46
64
|
include Google::Apis::Core::JsonObjectSupport
|
47
65
|
end
|
48
66
|
|
67
|
+
class BuildApproval
|
68
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
|
+
|
70
|
+
include Google::Apis::Core::JsonObjectSupport
|
71
|
+
end
|
72
|
+
|
49
73
|
class BuildOperationMetadata
|
50
74
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
51
75
|
|
@@ -76,12 +100,24 @@ module Google
|
|
76
100
|
include Google::Apis::Core::JsonObjectSupport
|
77
101
|
end
|
78
102
|
|
103
|
+
class CreateGitHubEnterpriseConfigOperationMetadata
|
104
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
105
|
+
|
106
|
+
include Google::Apis::Core::JsonObjectSupport
|
107
|
+
end
|
108
|
+
|
79
109
|
class CreateWorkerPoolOperationMetadata
|
80
110
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
81
111
|
|
82
112
|
include Google::Apis::Core::JsonObjectSupport
|
83
113
|
end
|
84
114
|
|
115
|
+
class DeleteGitHubEnterpriseConfigOperationMetadata
|
116
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
117
|
+
|
118
|
+
include Google::Apis::Core::JsonObjectSupport
|
119
|
+
end
|
120
|
+
|
85
121
|
class DeleteWorkerPoolOperationMetadata
|
86
122
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
87
123
|
|
@@ -196,6 +232,12 @@ module Google
|
|
196
232
|
include Google::Apis::Core::JsonObjectSupport
|
197
233
|
end
|
198
234
|
|
235
|
+
class ProcessAppManifestCallbackOperationMetadata
|
236
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
237
|
+
|
238
|
+
include Google::Apis::Core::JsonObjectSupport
|
239
|
+
end
|
240
|
+
|
199
241
|
class RepoSource
|
200
242
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
201
243
|
|
@@ -274,6 +316,12 @@ module Google
|
|
274
316
|
include Google::Apis::Core::JsonObjectSupport
|
275
317
|
end
|
276
318
|
|
319
|
+
class UpdateGitHubEnterpriseConfigOperationMetadata
|
320
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
321
|
+
|
322
|
+
include Google::Apis::Core::JsonObjectSupport
|
323
|
+
end
|
324
|
+
|
277
325
|
class UpdateWorkerPoolOperationMetadata
|
278
326
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
279
327
|
|
@@ -304,6 +352,24 @@ module Google
|
|
304
352
|
include Google::Apis::Core::JsonObjectSupport
|
305
353
|
end
|
306
354
|
|
355
|
+
class ApprovalConfig
|
356
|
+
# @private
|
357
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
358
|
+
property :approval_required, as: 'approvalRequired'
|
359
|
+
end
|
360
|
+
end
|
361
|
+
|
362
|
+
class ApprovalResult
|
363
|
+
# @private
|
364
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
365
|
+
property :approval_time, as: 'approvalTime'
|
366
|
+
property :approver_account, as: 'approverAccount'
|
367
|
+
property :comment, as: 'comment'
|
368
|
+
property :decision, as: 'decision'
|
369
|
+
property :url, as: 'url'
|
370
|
+
end
|
371
|
+
end
|
372
|
+
|
307
373
|
class ArtifactObjects
|
308
374
|
# @private
|
309
375
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -332,9 +398,20 @@ module Google
|
|
332
398
|
end
|
333
399
|
end
|
334
400
|
|
401
|
+
class BatchCreateBitbucketServerConnectedRepositoriesResponseMetadata
|
402
|
+
# @private
|
403
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
404
|
+
property :complete_time, as: 'completeTime'
|
405
|
+
property :config, as: 'config'
|
406
|
+
property :create_time, as: 'createTime'
|
407
|
+
end
|
408
|
+
end
|
409
|
+
|
335
410
|
class Build
|
336
411
|
# @private
|
337
412
|
class Representation < Google::Apis::Core::JsonRepresentation
|
413
|
+
property :approval, as: 'approval', class: Google::Apis::CloudbuildV1alpha1::BuildApproval, decorator: Google::Apis::CloudbuildV1alpha1::BuildApproval::Representation
|
414
|
+
|
338
415
|
property :artifacts, as: 'artifacts', class: Google::Apis::CloudbuildV1alpha1::Artifacts, decorator: Google::Apis::CloudbuildV1alpha1::Artifacts::Representation
|
339
416
|
|
340
417
|
property :available_secrets, as: 'availableSecrets', class: Google::Apis::CloudbuildV1alpha1::Secrets, decorator: Google::Apis::CloudbuildV1alpha1::Secrets::Representation
|
@@ -377,6 +454,17 @@ module Google
|
|
377
454
|
end
|
378
455
|
end
|
379
456
|
|
457
|
+
class BuildApproval
|
458
|
+
# @private
|
459
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
460
|
+
property :config, as: 'config', class: Google::Apis::CloudbuildV1alpha1::ApprovalConfig, decorator: Google::Apis::CloudbuildV1alpha1::ApprovalConfig::Representation
|
461
|
+
|
462
|
+
property :result, as: 'result', class: Google::Apis::CloudbuildV1alpha1::ApprovalResult, decorator: Google::Apis::CloudbuildV1alpha1::ApprovalResult::Representation
|
463
|
+
|
464
|
+
property :state, as: 'state'
|
465
|
+
end
|
466
|
+
end
|
467
|
+
|
380
468
|
class BuildOperationMetadata
|
381
469
|
# @private
|
382
470
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -417,6 +505,7 @@ module Google
|
|
417
505
|
property :name, as: 'name'
|
418
506
|
property :pull_timing, as: 'pullTiming', class: Google::Apis::CloudbuildV1alpha1::TimeSpan, decorator: Google::Apis::CloudbuildV1alpha1::TimeSpan::Representation
|
419
507
|
|
508
|
+
property :script, as: 'script'
|
420
509
|
collection :secret_env, as: 'secretEnv'
|
421
510
|
property :status, as: 'status'
|
422
511
|
property :timeout, as: 'timeout'
|
@@ -444,6 +533,15 @@ module Google
|
|
444
533
|
end
|
445
534
|
end
|
446
535
|
|
536
|
+
class CreateGitHubEnterpriseConfigOperationMetadata
|
537
|
+
# @private
|
538
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
539
|
+
property :complete_time, as: 'completeTime'
|
540
|
+
property :create_time, as: 'createTime'
|
541
|
+
property :github_enterprise_config, as: 'githubEnterpriseConfig'
|
542
|
+
end
|
543
|
+
end
|
544
|
+
|
447
545
|
class CreateWorkerPoolOperationMetadata
|
448
546
|
# @private
|
449
547
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -453,6 +551,15 @@ module Google
|
|
453
551
|
end
|
454
552
|
end
|
455
553
|
|
554
|
+
class DeleteGitHubEnterpriseConfigOperationMetadata
|
555
|
+
# @private
|
556
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
557
|
+
property :complete_time, as: 'completeTime'
|
558
|
+
property :create_time, as: 'createTime'
|
559
|
+
property :github_enterprise_config, as: 'githubEnterpriseConfig'
|
560
|
+
end
|
561
|
+
end
|
562
|
+
|
456
563
|
class DeleteWorkerPoolOperationMetadata
|
457
564
|
# @private
|
458
565
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -628,6 +735,15 @@ module Google
|
|
628
735
|
end
|
629
736
|
end
|
630
737
|
|
738
|
+
class ProcessAppManifestCallbackOperationMetadata
|
739
|
+
# @private
|
740
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
741
|
+
property :complete_time, as: 'completeTime'
|
742
|
+
property :create_time, as: 'createTime'
|
743
|
+
property :github_enterprise_config, as: 'githubEnterpriseConfig'
|
744
|
+
end
|
745
|
+
end
|
746
|
+
|
631
747
|
class RepoSource
|
632
748
|
# @private
|
633
749
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -764,6 +880,15 @@ module Google
|
|
764
880
|
end
|
765
881
|
end
|
766
882
|
|
883
|
+
class UpdateGitHubEnterpriseConfigOperationMetadata
|
884
|
+
# @private
|
885
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
886
|
+
property :complete_time, as: 'completeTime'
|
887
|
+
property :create_time, as: 'createTime'
|
888
|
+
property :github_enterprise_config, as: 'githubEnterpriseConfig'
|
889
|
+
end
|
890
|
+
end
|
891
|
+
|
767
892
|
class UpdateWorkerPoolOperationMetadata
|
768
893
|
# @private
|
769
894
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -29,7 +29,7 @@ module Google
|
|
29
29
|
# This is NOT the gem version.
|
30
30
|
VERSION = 'V1alpha1'
|
31
31
|
|
32
|
-
# See, edit, configure, and delete your Google Cloud
|
32
|
+
# See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
|
33
33
|
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
34
34
|
end
|
35
35
|
end
|
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.
|
4
|
+
version: 0.14.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: 2021-
|
11
|
+
date: 2021-12-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -57,9 +57,9 @@ licenses:
|
|
57
57
|
- Apache-2.0
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
|
-
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1alpha1/v0.
|
62
|
-
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/
|
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.14.0
|
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: []
|
65
65
|
require_paths:
|