google-apis-cloudbuild_v1alpha2 0.10.0 → 0.11.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: 4aefd9eb352be620a25e9ef50de0d1993d467ba1768cbc16d5036fa7ee67a7cb
4
- data.tar.gz: f244189e90396f597d449ab9633450c5726f07c4139bd39eaf4d3b677b176ed6
3
+ metadata.gz: e81b3fbc91b9a4390c9f30b16fe4373293cc5af1dbc315c3f87f7993c8da0293
4
+ data.tar.gz: e2cc1f1a232f1d265263063e3ea1554dbc5116109514217192cb690b08265c1b
5
5
  SHA512:
6
- metadata.gz: 5099abde21eb41dee7afef48c935e69212e7dc7e6d9ef24e25312953d2e896015cf4c16a02e441c12156635998dbed10d52fd0700f4d1ac468071f33195f79d2
7
- data.tar.gz: fef736851315d874d889fdbd68cf1574edfd2c2c6a81e235b135c54b18a8e15c3255f9f1dd06e667498281f01d09a90dc1eaadb5422eb7e7baaa59abaf78aee4
6
+ metadata.gz: d219364f16dbf032683a52f2dbe7502f04ae9792c506f899c2c3b3fffa63382c1879ef1c844465332f446625e9b51b7a783c74d28034f4a89e866a89196a4c3f
7
+ data.tar.gz: 733e2014580838d9134fa5bc6c79392b356c09ea452ec629f34f1c35f49301bc15fe00e954b59ddfb8f9723805384ec195d0ea579e8a1ada428c43153c13a766
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-cloudbuild_v1alpha2
2
2
 
3
+ ### v0.11.0 (2021-07-27)
4
+
5
+ * Regenerated from discovery document revision 20210723
6
+
3
7
  ### v0.10.0 (2021-07-20)
4
8
 
5
9
  * Regenerated from discovery document revision 20210715
@@ -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. If the build does not specify
288
- # source or images, these keys will not be included.
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::CloudbuildV1alpha2::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
@@ -1287,6 +1352,38 @@ module Google
1287
1352
  end
1288
1353
  end
1289
1354
 
1355
+ # Metadata for `ProcessAppManifestCallback` operation.
1356
+ class ProcessAppManifestCallbackOperationMetadata
1357
+ include Google::Apis::Core::Hashable
1358
+
1359
+ # Time the operation was completed.
1360
+ # Corresponds to the JSON property `completeTime`
1361
+ # @return [String]
1362
+ attr_accessor :complete_time
1363
+
1364
+ # Time the operation was created.
1365
+ # Corresponds to the JSON property `createTime`
1366
+ # @return [String]
1367
+ attr_accessor :create_time
1368
+
1369
+ # The resource name of the GitHubEnterprise to be created. Format: `projects/`
1370
+ # project`/locations/`location`/githubEnterpriseConfigs/`id``.
1371
+ # Corresponds to the JSON property `githubEnterpriseConfig`
1372
+ # @return [String]
1373
+ attr_accessor :github_enterprise_config
1374
+
1375
+ def initialize(**args)
1376
+ update!(**args)
1377
+ end
1378
+
1379
+ # Update properties of this object
1380
+ def update!(**args)
1381
+ @complete_time = args[:complete_time] if args.key?(:complete_time)
1382
+ @create_time = args[:create_time] if args.key?(:create_time)
1383
+ @github_enterprise_config = args[:github_enterprise_config] if args.key?(:github_enterprise_config)
1384
+ end
1385
+ end
1386
+
1290
1387
  # Location of the source in a Google Cloud Source Repository.
1291
1388
  class RepoSource
1292
1389
  include Google::Apis::Core::Hashable
@@ -1782,6 +1879,38 @@ module Google
1782
1879
  end
1783
1880
  end
1784
1881
 
1882
+ # Metadata for `UpdateGitHubEnterpriseConfig` operation.
1883
+ class UpdateGitHubEnterpriseConfigOperationMetadata
1884
+ include Google::Apis::Core::Hashable
1885
+
1886
+ # Time the operation was completed.
1887
+ # Corresponds to the JSON property `completeTime`
1888
+ # @return [String]
1889
+ attr_accessor :complete_time
1890
+
1891
+ # Time the operation was created.
1892
+ # Corresponds to the JSON property `createTime`
1893
+ # @return [String]
1894
+ attr_accessor :create_time
1895
+
1896
+ # The resource name of the GitHubEnterprise to be updated. Format: `projects/`
1897
+ # project`/locations/`location`/githubEnterpriseConfigs/`id``.
1898
+ # Corresponds to the JSON property `githubEnterpriseConfig`
1899
+ # @return [String]
1900
+ attr_accessor :github_enterprise_config
1901
+
1902
+ def initialize(**args)
1903
+ update!(**args)
1904
+ end
1905
+
1906
+ # Update properties of this object
1907
+ def update!(**args)
1908
+ @complete_time = args[:complete_time] if args.key?(:complete_time)
1909
+ @create_time = args[:create_time] if args.key?(:create_time)
1910
+ @github_enterprise_config = args[:github_enterprise_config] if args.key?(:github_enterprise_config)
1911
+ end
1912
+ end
1913
+
1785
1914
  # Metadata for the `UpdateWorkerPool` operation.
1786
1915
  class UpdateWorkerPoolOperationMetadata
1787
1916
  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.10.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 = "20210715"
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_v1alpha2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.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-07-26 00:00:00.000000000 Z
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_v1alpha2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1alpha2/v0.10.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1alpha2/v0.11.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudbuild_v1alpha2
63
63
  post_install_message:
64
64
  rdoc_options: []