google-apis-cloudbuild_v1beta1 0.8.0 → 0.9.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0526762b28ea5241a58e97aceab2c376ac32ce74c28c4be5f889c4f8926fb4b4
|
4
|
+
data.tar.gz: 68ff261f7d4a6586d21ce2161e9bac273bde2bfc03f948f0de5e1820a5b98cd0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5b10a7155b44ec63bf3e7b401817652fa1edd1604e189d39765244ef9c48a5fdecdaaabdafbd03fede13eb54a9910ac646bc3182a3b4d7f6ce1648b8d98ed382
|
7
|
+
data.tar.gz: 6cb92c2ef2035b6d54ee30c93cce0c4d03d21b15807efa90af29f13ed1ae804836d5a201c54375f7c558e1ddca68e4e4c864a823b3cd491ddee3f002a2cbd7e0
|
data/CHANGELOG.md
CHANGED
@@ -283,9 +283,10 @@ module Google
|
|
283
283
|
attr_accessor :timeout
|
284
284
|
|
285
285
|
# 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
|
286
|
+
# * BUILD: time to execute all build steps. * PUSH: time to push all specified
|
287
|
+
# images. * FETCHSOURCE: time to fetch source. * SETUPBUILD: time to set up
|
288
|
+
# build. If the build does not specify source or images, these keys will not be
|
289
|
+
# included.
|
289
290
|
# Corresponds to the JSON property `timing`
|
290
291
|
# @return [Hash<String,Google::Apis::CloudbuildV1beta1::TimeSpan>]
|
291
292
|
attr_accessor :timing
|
@@ -649,6 +650,38 @@ module Google
|
|
649
650
|
end
|
650
651
|
end
|
651
652
|
|
653
|
+
# Metadata for `CreateGithubEnterpriseConfig` operation.
|
654
|
+
class CreateGitHubEnterpriseConfigOperationMetadata
|
655
|
+
include Google::Apis::Core::Hashable
|
656
|
+
|
657
|
+
# Time the operation was completed.
|
658
|
+
# Corresponds to the JSON property `completeTime`
|
659
|
+
# @return [String]
|
660
|
+
attr_accessor :complete_time
|
661
|
+
|
662
|
+
# Time the operation was created.
|
663
|
+
# Corresponds to the JSON property `createTime`
|
664
|
+
# @return [String]
|
665
|
+
attr_accessor :create_time
|
666
|
+
|
667
|
+
# The resource name of the GitHubEnterprise to be created. Format: `projects/`
|
668
|
+
# project`/locations/`location`/githubEnterpriseConfigs/`id``.
|
669
|
+
# Corresponds to the JSON property `githubEnterpriseConfig`
|
670
|
+
# @return [String]
|
671
|
+
attr_accessor :github_enterprise_config
|
672
|
+
|
673
|
+
def initialize(**args)
|
674
|
+
update!(**args)
|
675
|
+
end
|
676
|
+
|
677
|
+
# Update properties of this object
|
678
|
+
def update!(**args)
|
679
|
+
@complete_time = args[:complete_time] if args.key?(:complete_time)
|
680
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
681
|
+
@github_enterprise_config = args[:github_enterprise_config] if args.key?(:github_enterprise_config)
|
682
|
+
end
|
683
|
+
end
|
684
|
+
|
652
685
|
# Metadata for the `CreateWorkerPool` operation.
|
653
686
|
class CreateWorkerPoolOperationMetadata
|
654
687
|
include Google::Apis::Core::Hashable
|
@@ -681,6 +714,38 @@ module Google
|
|
681
714
|
end
|
682
715
|
end
|
683
716
|
|
717
|
+
# Metadata for `DeleteGitHubEnterpriseConfig` operation.
|
718
|
+
class DeleteGitHubEnterpriseConfigOperationMetadata
|
719
|
+
include Google::Apis::Core::Hashable
|
720
|
+
|
721
|
+
# Time the operation was completed.
|
722
|
+
# Corresponds to the JSON property `completeTime`
|
723
|
+
# @return [String]
|
724
|
+
attr_accessor :complete_time
|
725
|
+
|
726
|
+
# Time the operation was created.
|
727
|
+
# Corresponds to the JSON property `createTime`
|
728
|
+
# @return [String]
|
729
|
+
attr_accessor :create_time
|
730
|
+
|
731
|
+
# The resource name of the GitHubEnterprise to be deleted. Format: `projects/`
|
732
|
+
# project`/locations/`location`/githubEnterpriseConfigs/`id``.
|
733
|
+
# Corresponds to the JSON property `githubEnterpriseConfig`
|
734
|
+
# @return [String]
|
735
|
+
attr_accessor :github_enterprise_config
|
736
|
+
|
737
|
+
def initialize(**args)
|
738
|
+
update!(**args)
|
739
|
+
end
|
740
|
+
|
741
|
+
# Update properties of this object
|
742
|
+
def update!(**args)
|
743
|
+
@complete_time = args[:complete_time] if args.key?(:complete_time)
|
744
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
745
|
+
@github_enterprise_config = args[:github_enterprise_config] if args.key?(:github_enterprise_config)
|
746
|
+
end
|
747
|
+
end
|
748
|
+
|
684
749
|
# Metadata for the `DeleteWorkerPool` operation.
|
685
750
|
class DeleteWorkerPoolOperationMetadata
|
686
751
|
include Google::Apis::Core::Hashable
|
@@ -1290,6 +1355,38 @@ module Google
|
|
1290
1355
|
end
|
1291
1356
|
end
|
1292
1357
|
|
1358
|
+
# Metadata for `ProcessAppManifestCallback` operation.
|
1359
|
+
class ProcessAppManifestCallbackOperationMetadata
|
1360
|
+
include Google::Apis::Core::Hashable
|
1361
|
+
|
1362
|
+
# Time the operation was completed.
|
1363
|
+
# Corresponds to the JSON property `completeTime`
|
1364
|
+
# @return [String]
|
1365
|
+
attr_accessor :complete_time
|
1366
|
+
|
1367
|
+
# Time the operation was created.
|
1368
|
+
# Corresponds to the JSON property `createTime`
|
1369
|
+
# @return [String]
|
1370
|
+
attr_accessor :create_time
|
1371
|
+
|
1372
|
+
# The resource name of the GitHubEnterprise to be created. Format: `projects/`
|
1373
|
+
# project`/locations/`location`/githubEnterpriseConfigs/`id``.
|
1374
|
+
# Corresponds to the JSON property `githubEnterpriseConfig`
|
1375
|
+
# @return [String]
|
1376
|
+
attr_accessor :github_enterprise_config
|
1377
|
+
|
1378
|
+
def initialize(**args)
|
1379
|
+
update!(**args)
|
1380
|
+
end
|
1381
|
+
|
1382
|
+
# Update properties of this object
|
1383
|
+
def update!(**args)
|
1384
|
+
@complete_time = args[:complete_time] if args.key?(:complete_time)
|
1385
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
1386
|
+
@github_enterprise_config = args[:github_enterprise_config] if args.key?(:github_enterprise_config)
|
1387
|
+
end
|
1388
|
+
end
|
1389
|
+
|
1293
1390
|
# Location of the source in a Google Cloud Source Repository.
|
1294
1391
|
class RepoSource
|
1295
1392
|
include Google::Apis::Core::Hashable
|
@@ -1785,6 +1882,38 @@ module Google
|
|
1785
1882
|
end
|
1786
1883
|
end
|
1787
1884
|
|
1885
|
+
# Metadata for `UpdateGitHubEnterpriseConfig` operation.
|
1886
|
+
class UpdateGitHubEnterpriseConfigOperationMetadata
|
1887
|
+
include Google::Apis::Core::Hashable
|
1888
|
+
|
1889
|
+
# Time the operation was completed.
|
1890
|
+
# Corresponds to the JSON property `completeTime`
|
1891
|
+
# @return [String]
|
1892
|
+
attr_accessor :complete_time
|
1893
|
+
|
1894
|
+
# Time the operation was created.
|
1895
|
+
# Corresponds to the JSON property `createTime`
|
1896
|
+
# @return [String]
|
1897
|
+
attr_accessor :create_time
|
1898
|
+
|
1899
|
+
# The resource name of the GitHubEnterprise to be updated. Format: `projects/`
|
1900
|
+
# project`/locations/`location`/githubEnterpriseConfigs/`id``.
|
1901
|
+
# Corresponds to the JSON property `githubEnterpriseConfig`
|
1902
|
+
# @return [String]
|
1903
|
+
attr_accessor :github_enterprise_config
|
1904
|
+
|
1905
|
+
def initialize(**args)
|
1906
|
+
update!(**args)
|
1907
|
+
end
|
1908
|
+
|
1909
|
+
# Update properties of this object
|
1910
|
+
def update!(**args)
|
1911
|
+
@complete_time = args[:complete_time] if args.key?(:complete_time)
|
1912
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
1913
|
+
@github_enterprise_config = args[:github_enterprise_config] if args.key?(:github_enterprise_config)
|
1914
|
+
end
|
1915
|
+
end
|
1916
|
+
|
1788
1917
|
# Metadata for the `UpdateWorkerPool` operation.
|
1789
1918
|
class UpdateWorkerPoolOperationMetadata
|
1790
1919
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module CloudbuildV1beta1
|
18
18
|
# Version of the google-apis-cloudbuild_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.9.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 = "20210723"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -76,12 +76,24 @@ module Google
|
|
76
76
|
include Google::Apis::Core::JsonObjectSupport
|
77
77
|
end
|
78
78
|
|
79
|
+
class CreateGitHubEnterpriseConfigOperationMetadata
|
80
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
81
|
+
|
82
|
+
include Google::Apis::Core::JsonObjectSupport
|
83
|
+
end
|
84
|
+
|
79
85
|
class CreateWorkerPoolOperationMetadata
|
80
86
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
81
87
|
|
82
88
|
include Google::Apis::Core::JsonObjectSupport
|
83
89
|
end
|
84
90
|
|
91
|
+
class DeleteGitHubEnterpriseConfigOperationMetadata
|
92
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
93
|
+
|
94
|
+
include Google::Apis::Core::JsonObjectSupport
|
95
|
+
end
|
96
|
+
|
85
97
|
class DeleteWorkerPoolOperationMetadata
|
86
98
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
87
99
|
|
@@ -196,6 +208,12 @@ module Google
|
|
196
208
|
include Google::Apis::Core::JsonObjectSupport
|
197
209
|
end
|
198
210
|
|
211
|
+
class ProcessAppManifestCallbackOperationMetadata
|
212
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
213
|
+
|
214
|
+
include Google::Apis::Core::JsonObjectSupport
|
215
|
+
end
|
216
|
+
|
199
217
|
class RepoSource
|
200
218
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
201
219
|
|
@@ -274,6 +292,12 @@ module Google
|
|
274
292
|
include Google::Apis::Core::JsonObjectSupport
|
275
293
|
end
|
276
294
|
|
295
|
+
class UpdateGitHubEnterpriseConfigOperationMetadata
|
296
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
297
|
+
|
298
|
+
include Google::Apis::Core::JsonObjectSupport
|
299
|
+
end
|
300
|
+
|
277
301
|
class UpdateWorkerPoolOperationMetadata
|
278
302
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
279
303
|
|
@@ -444,6 +468,15 @@ module Google
|
|
444
468
|
end
|
445
469
|
end
|
446
470
|
|
471
|
+
class CreateGitHubEnterpriseConfigOperationMetadata
|
472
|
+
# @private
|
473
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
474
|
+
property :complete_time, as: 'completeTime'
|
475
|
+
property :create_time, as: 'createTime'
|
476
|
+
property :github_enterprise_config, as: 'githubEnterpriseConfig'
|
477
|
+
end
|
478
|
+
end
|
479
|
+
|
447
480
|
class CreateWorkerPoolOperationMetadata
|
448
481
|
# @private
|
449
482
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -453,6 +486,15 @@ module Google
|
|
453
486
|
end
|
454
487
|
end
|
455
488
|
|
489
|
+
class DeleteGitHubEnterpriseConfigOperationMetadata
|
490
|
+
# @private
|
491
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
492
|
+
property :complete_time, as: 'completeTime'
|
493
|
+
property :create_time, as: 'createTime'
|
494
|
+
property :github_enterprise_config, as: 'githubEnterpriseConfig'
|
495
|
+
end
|
496
|
+
end
|
497
|
+
|
456
498
|
class DeleteWorkerPoolOperationMetadata
|
457
499
|
# @private
|
458
500
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -626,6 +668,15 @@ module Google
|
|
626
668
|
end
|
627
669
|
end
|
628
670
|
|
671
|
+
class ProcessAppManifestCallbackOperationMetadata
|
672
|
+
# @private
|
673
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
674
|
+
property :complete_time, as: 'completeTime'
|
675
|
+
property :create_time, as: 'createTime'
|
676
|
+
property :github_enterprise_config, as: 'githubEnterpriseConfig'
|
677
|
+
end
|
678
|
+
end
|
679
|
+
|
629
680
|
class RepoSource
|
630
681
|
# @private
|
631
682
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -762,6 +813,15 @@ module Google
|
|
762
813
|
end
|
763
814
|
end
|
764
815
|
|
816
|
+
class UpdateGitHubEnterpriseConfigOperationMetadata
|
817
|
+
# @private
|
818
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
819
|
+
property :complete_time, as: 'completeTime'
|
820
|
+
property :create_time, as: 'createTime'
|
821
|
+
property :github_enterprise_config, as: 'githubEnterpriseConfig'
|
822
|
+
end
|
823
|
+
end
|
824
|
+
|
765
825
|
class UpdateWorkerPoolOperationMetadata
|
766
826
|
# @private
|
767
827
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-cloudbuild_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.9.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-08-02 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/master/generated/google-apis-cloudbuild_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1beta1/v0.9.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudbuild_v1beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|