google-apis-cloudbuild_v1alpha1 0.10.0 → 0.11.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: 6e3e3ab46918e94aae22e2d3b371331d5af71ced9be41d4a573ab5cac9f5098c
|
4
|
+
data.tar.gz: 91ee25900efec90e7cd6dff771c71b3f7c32c81d80c457b6b52b63b0d3a24f48
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 74dade062550c3e2caf4d550de37fda3d34376a51bcbf12d1d32ff71a589480f989f7b972344d04492666d1d6e7a36818b5d5d5040aff1a4ad8a3289ae96f804
|
7
|
+
data.tar.gz: 54548620ddc4f68e7fc5a34e3a8a2f0a73f9d9d13c9dc29046ee04c6e95a71ade09de84931b783fd3cf33e6b663e6276a1f0be31edb3a50561f49798b802f73a
|
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::CloudbuildV1alpha1::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
|
@@ -1300,6 +1365,38 @@ module Google
|
|
1300
1365
|
end
|
1301
1366
|
end
|
1302
1367
|
|
1368
|
+
# Metadata for `ProcessAppManifestCallback` operation.
|
1369
|
+
class ProcessAppManifestCallbackOperationMetadata
|
1370
|
+
include Google::Apis::Core::Hashable
|
1371
|
+
|
1372
|
+
# Time the operation was completed.
|
1373
|
+
# Corresponds to the JSON property `completeTime`
|
1374
|
+
# @return [String]
|
1375
|
+
attr_accessor :complete_time
|
1376
|
+
|
1377
|
+
# Time the operation was created.
|
1378
|
+
# Corresponds to the JSON property `createTime`
|
1379
|
+
# @return [String]
|
1380
|
+
attr_accessor :create_time
|
1381
|
+
|
1382
|
+
# The resource name of the GitHubEnterprise to be created. Format: `projects/`
|
1383
|
+
# project`/locations/`location`/githubEnterpriseConfigs/`id``.
|
1384
|
+
# Corresponds to the JSON property `githubEnterpriseConfig`
|
1385
|
+
# @return [String]
|
1386
|
+
attr_accessor :github_enterprise_config
|
1387
|
+
|
1388
|
+
def initialize(**args)
|
1389
|
+
update!(**args)
|
1390
|
+
end
|
1391
|
+
|
1392
|
+
# Update properties of this object
|
1393
|
+
def update!(**args)
|
1394
|
+
@complete_time = args[:complete_time] if args.key?(:complete_time)
|
1395
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
1396
|
+
@github_enterprise_config = args[:github_enterprise_config] if args.key?(:github_enterprise_config)
|
1397
|
+
end
|
1398
|
+
end
|
1399
|
+
|
1303
1400
|
# Location of the source in a Google Cloud Source Repository.
|
1304
1401
|
class RepoSource
|
1305
1402
|
include Google::Apis::Core::Hashable
|
@@ -1795,6 +1892,38 @@ module Google
|
|
1795
1892
|
end
|
1796
1893
|
end
|
1797
1894
|
|
1895
|
+
# Metadata for `UpdateGitHubEnterpriseConfig` operation.
|
1896
|
+
class UpdateGitHubEnterpriseConfigOperationMetadata
|
1897
|
+
include Google::Apis::Core::Hashable
|
1898
|
+
|
1899
|
+
# Time the operation was completed.
|
1900
|
+
# Corresponds to the JSON property `completeTime`
|
1901
|
+
# @return [String]
|
1902
|
+
attr_accessor :complete_time
|
1903
|
+
|
1904
|
+
# Time the operation was created.
|
1905
|
+
# Corresponds to the JSON property `createTime`
|
1906
|
+
# @return [String]
|
1907
|
+
attr_accessor :create_time
|
1908
|
+
|
1909
|
+
# The resource name of the GitHubEnterprise to be updated. Format: `projects/`
|
1910
|
+
# project`/locations/`location`/githubEnterpriseConfigs/`id``.
|
1911
|
+
# Corresponds to the JSON property `githubEnterpriseConfig`
|
1912
|
+
# @return [String]
|
1913
|
+
attr_accessor :github_enterprise_config
|
1914
|
+
|
1915
|
+
def initialize(**args)
|
1916
|
+
update!(**args)
|
1917
|
+
end
|
1918
|
+
|
1919
|
+
# Update properties of this object
|
1920
|
+
def update!(**args)
|
1921
|
+
@complete_time = args[:complete_time] if args.key?(:complete_time)
|
1922
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
1923
|
+
@github_enterprise_config = args[:github_enterprise_config] if args.key?(:github_enterprise_config)
|
1924
|
+
end
|
1925
|
+
end
|
1926
|
+
|
1798
1927
|
# Metadata for the `UpdateWorkerPool` operation.
|
1799
1928
|
class UpdateWorkerPoolOperationMetadata
|
1800
1929
|
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.11.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
|
@@ -628,6 +670,15 @@ module Google
|
|
628
670
|
end
|
629
671
|
end
|
630
672
|
|
673
|
+
class ProcessAppManifestCallbackOperationMetadata
|
674
|
+
# @private
|
675
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
676
|
+
property :complete_time, as: 'completeTime'
|
677
|
+
property :create_time, as: 'createTime'
|
678
|
+
property :github_enterprise_config, as: 'githubEnterpriseConfig'
|
679
|
+
end
|
680
|
+
end
|
681
|
+
|
631
682
|
class RepoSource
|
632
683
|
# @private
|
633
684
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -764,6 +815,15 @@ module Google
|
|
764
815
|
end
|
765
816
|
end
|
766
817
|
|
818
|
+
class UpdateGitHubEnterpriseConfigOperationMetadata
|
819
|
+
# @private
|
820
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
821
|
+
property :complete_time, as: 'completeTime'
|
822
|
+
property :create_time, as: 'createTime'
|
823
|
+
property :github_enterprise_config, as: 'githubEnterpriseConfig'
|
824
|
+
end
|
825
|
+
end
|
826
|
+
|
767
827
|
class UpdateWorkerPoolOperationMetadata
|
768
828
|
# @private
|
769
829
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-cloudbuild_v1alpha1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.11.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_v1alpha1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1alpha1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1alpha1/v0.11.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudbuild_v1alpha1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|