google-cloud-build-v2 0.7.2 → 0.9.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: 31b74006e8fae8145bbeb9a0df3e9f2300837e18b120509da90c1aa127bf5331
4
- data.tar.gz: 95b238a99d3fb1cc591fea2a049fe2d9c6354c0dda3bfa0843b60270df43c57a
3
+ metadata.gz: d95342a23ea61fa4936ffcee84e6175ba668eeaf3017f004ae64f02c1a47c7d5
4
+ data.tar.gz: 9ae51032363f870437c09a45e4ed45c2d8672c8eb4046662942892865e74a482
5
5
  SHA512:
6
- metadata.gz: 6887e563c2fb67b266f89581052a22474c0cb3706b61852f8e1277df59441a6ebe19b599843598aed8d29edd4cc6d78f200d63c8dcc11dd57d118d8df1e9e8e0
7
- data.tar.gz: c7919dbebe240841a00c0a3825e40610f9e20a421ca13ebe537cf27ff79348441f6e677665d22c6e35ad91872f4a45ba6885f019de2f6f2c113a01ce06ac0111
6
+ metadata.gz: 1674333adcd5d905cd34ea0b7b739f8e7902c979640ef41ad5e52be277caf3836b59abc8e19b30a9e0aae3ceb9583cc907430d966bfad9a116fd102f693bc1af
7
+ data.tar.gz: 6400486af20da63e0b3ae35c95ec046d20a1706c3dd130fa273ba844af67e6883895c3af30c845fe0ae61959486e0b0aa25de4cda97d525cf57d0705b35b6351
data/README.md CHANGED
@@ -43,40 +43,50 @@ for class and method documentation.
43
43
  See also the [Product Documentation](https://cloud.google.com/build/docs)
44
44
  for general usage information.
45
45
 
46
- ## Enabling Logging
47
-
48
- To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
49
- The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/current/stdlibs/logger/Logger.html) as shown below,
50
- or a [`Google::Cloud::Logging::Logger`](https://cloud.google.com/ruby/docs/reference/google-cloud-logging/latest)
51
- that will write logs to [Cloud Logging](https://cloud.google.com/logging/). See [grpc/logconfig.rb](https://github.com/grpc/grpc/blob/master/src/ruby/lib/grpc/logconfig.rb)
52
- and the gRPC [spec_helper.rb](https://github.com/grpc/grpc/blob/master/src/ruby/spec/spec_helper.rb) for additional information.
53
-
54
- Configuring a Ruby stdlib logger:
46
+ ## Debug Logging
47
+
48
+ This library comes with opt-in Debug Logging that can help you troubleshoot
49
+ your application's integration with the API. When logging is activated, key
50
+ events such as requests and responses, along with data payloads and metadata
51
+ such as headers and client configuration, are logged to the standard error
52
+ stream.
53
+
54
+ **WARNING:** Client Library Debug Logging includes your data payloads in
55
+ plaintext, which could include sensitive data such as PII for yourself or your
56
+ customers, private keys, or other security data that could be compromising if
57
+ leaked. Always practice good data hygiene with your application logs, and follow
58
+ the principle of least access. Google also recommends that Client Library Debug
59
+ Logging be enabled only temporarily during active debugging, and not used
60
+ permanently in production.
61
+
62
+ To enable logging, set the environment variable `GOOGLE_SDK_RUBY_LOGGING_GEMS`
63
+ to the value `all`. Alternatively, you can set the value to a comma-delimited
64
+ list of client library gem names. This will select the default logging behavior,
65
+ which writes logs to the standard error stream. On a local workstation, this may
66
+ result in logs appearing on the console. When running on a Google Cloud hosting
67
+ service such as [Google Cloud Run](https://cloud.google.com/run), this generally
68
+ results in logs appearing alongside your application logs in the
69
+ [Google Cloud Logging](https://cloud.google.com/logging/) service.
70
+
71
+ You can customize logging by modifying the `logger` configuration when
72
+ constructing a client object. For example:
55
73
 
56
74
  ```ruby
75
+ require "google/cloud/build/v2"
57
76
  require "logger"
58
77
 
59
- module MyLogger
60
- LOGGER = Logger.new $stderr, level: Logger::WARN
61
- def logger
62
- LOGGER
63
- end
64
- end
65
-
66
- # Define a gRPC module-level logger method before grpc/logconfig.rb loads.
67
- module GRPC
68
- extend MyLogger
78
+ client = ::Google::Cloud::Build::V2::RepositoryManager::Client.new do |config|
79
+ config.logger = Logger.new "my-app.log"
69
80
  end
70
81
  ```
71
82
 
72
-
73
83
  ## Google Cloud Samples
74
84
 
75
85
  To browse ready to use code samples check [Google Cloud Samples](https://cloud.google.com/docs/samples).
76
86
 
77
87
  ## Supported Ruby Versions
78
88
 
79
- This library is supported on Ruby 2.7+.
89
+ This library is supported on Ruby 3.0+.
80
90
 
81
91
  Google provides official support for Ruby versions that are actively supported
82
92
  by Ruby Core—that is, Ruby versions that are either in normal maintenance or
@@ -211,14 +211,26 @@ module Google
211
211
  universe_domain: @config.universe_domain,
212
212
  channel_args: @config.channel_args,
213
213
  interceptors: @config.interceptors,
214
- channel_pool_config: @config.channel_pool
214
+ channel_pool_config: @config.channel_pool,
215
+ logger: @config.logger
215
216
  )
216
217
 
218
+ @repository_manager_stub.stub_logger&.info do |entry|
219
+ entry.set_system_name
220
+ entry.set_service
221
+ entry.message = "Created client for #{entry.service}"
222
+ entry.set_credentials_fields credentials
223
+ entry.set "customEndpoint", @config.endpoint if @config.endpoint
224
+ entry.set "defaultTimeout", @config.timeout if @config.timeout
225
+ entry.set "quotaProject", @quota_project_id if @quota_project_id
226
+ end
227
+
217
228
  @location_client = Google::Cloud::Location::Locations::Client.new do |config|
218
229
  config.credentials = credentials
219
230
  config.quota_project = @quota_project_id
220
231
  config.endpoint = @repository_manager_stub.endpoint
221
232
  config.universe_domain = @repository_manager_stub.universe_domain
233
+ config.logger = @repository_manager_stub.logger if config.respond_to? :logger=
222
234
  end
223
235
 
224
236
  @iam_policy_client = Google::Iam::V1::IAMPolicy::Client.new do |config|
@@ -226,6 +238,7 @@ module Google
226
238
  config.quota_project = @quota_project_id
227
239
  config.endpoint = @repository_manager_stub.endpoint
228
240
  config.universe_domain = @repository_manager_stub.universe_domain
241
+ config.logger = @repository_manager_stub.logger if config.respond_to? :logger=
229
242
  end
230
243
  end
231
244
 
@@ -250,6 +263,15 @@ module Google
250
263
  #
251
264
  attr_reader :iam_policy_client
252
265
 
266
+ ##
267
+ # The logger used for request/response debug logging.
268
+ #
269
+ # @return [Logger]
270
+ #
271
+ def logger
272
+ @repository_manager_stub.logger
273
+ end
274
+
253
275
  # Service calls
254
276
 
255
277
  ##
@@ -348,7 +370,7 @@ module Google
348
370
  @repository_manager_stub.call_rpc :create_connection, request, options: options do |response, operation|
349
371
  response = ::Gapic::Operation.new response, @operations_client, options: options
350
372
  yield response, operation if block_given?
351
- return response
373
+ throw :response, response
352
374
  end
353
375
  rescue ::GRPC::BadStatus => e
354
376
  raise ::Google::Cloud::Error.from_error(e)
@@ -435,7 +457,6 @@ module Google
435
457
 
436
458
  @repository_manager_stub.call_rpc :get_connection, request, options: options do |response, operation|
437
459
  yield response, operation if block_given?
438
- return response
439
460
  end
440
461
  rescue ::GRPC::BadStatus => e
441
462
  raise ::Google::Cloud::Error.from_error(e)
@@ -531,7 +552,7 @@ module Google
531
552
  @repository_manager_stub.call_rpc :list_connections, request, options: options do |response, operation|
532
553
  response = ::Gapic::PagedEnumerable.new @repository_manager_stub, :list_connections, request, response, operation, options
533
554
  yield response, operation if block_given?
534
- return response
555
+ throw :response, response
535
556
  end
536
557
  rescue ::GRPC::BadStatus => e
537
558
  raise ::Google::Cloud::Error.from_error(e)
@@ -637,7 +658,7 @@ module Google
637
658
  @repository_manager_stub.call_rpc :update_connection, request, options: options do |response, operation|
638
659
  response = ::Gapic::Operation.new response, @operations_client, options: options
639
660
  yield response, operation if block_given?
640
- return response
661
+ throw :response, response
641
662
  end
642
663
  rescue ::GRPC::BadStatus => e
643
664
  raise ::Google::Cloud::Error.from_error(e)
@@ -738,7 +759,7 @@ module Google
738
759
  @repository_manager_stub.call_rpc :delete_connection, request, options: options do |response, operation|
739
760
  response = ::Gapic::Operation.new response, @operations_client, options: options
740
761
  yield response, operation if block_given?
741
- return response
762
+ throw :response, response
742
763
  end
743
764
  rescue ::GRPC::BadStatus => e
744
765
  raise ::Google::Cloud::Error.from_error(e)
@@ -841,7 +862,7 @@ module Google
841
862
  @repository_manager_stub.call_rpc :create_repository, request, options: options do |response, operation|
842
863
  response = ::Gapic::Operation.new response, @operations_client, options: options
843
864
  yield response, operation if block_given?
844
- return response
865
+ throw :response, response
845
866
  end
846
867
  rescue ::GRPC::BadStatus => e
847
868
  raise ::Google::Cloud::Error.from_error(e)
@@ -940,7 +961,7 @@ module Google
940
961
  @repository_manager_stub.call_rpc :batch_create_repositories, request, options: options do |response, operation|
941
962
  response = ::Gapic::Operation.new response, @operations_client, options: options
942
963
  yield response, operation if block_given?
943
- return response
964
+ throw :response, response
944
965
  end
945
966
  rescue ::GRPC::BadStatus => e
946
967
  raise ::Google::Cloud::Error.from_error(e)
@@ -1027,7 +1048,6 @@ module Google
1027
1048
 
1028
1049
  @repository_manager_stub.call_rpc :get_repository, request, options: options do |response, operation|
1029
1050
  yield response, operation if block_given?
1030
- return response
1031
1051
  end
1032
1052
  rescue ::GRPC::BadStatus => e
1033
1053
  raise ::Google::Cloud::Error.from_error(e)
@@ -1128,7 +1148,7 @@ module Google
1128
1148
  @repository_manager_stub.call_rpc :list_repositories, request, options: options do |response, operation|
1129
1149
  response = ::Gapic::PagedEnumerable.new @repository_manager_stub, :list_repositories, request, response, operation, options
1130
1150
  yield response, operation if block_given?
1131
- return response
1151
+ throw :response, response
1132
1152
  end
1133
1153
  rescue ::GRPC::BadStatus => e
1134
1154
  raise ::Google::Cloud::Error.from_error(e)
@@ -1229,7 +1249,7 @@ module Google
1229
1249
  @repository_manager_stub.call_rpc :delete_repository, request, options: options do |response, operation|
1230
1250
  response = ::Gapic::Operation.new response, @operations_client, options: options
1231
1251
  yield response, operation if block_given?
1232
- return response
1252
+ throw :response, response
1233
1253
  end
1234
1254
  rescue ::GRPC::BadStatus => e
1235
1255
  raise ::Google::Cloud::Error.from_error(e)
@@ -1316,7 +1336,6 @@ module Google
1316
1336
 
1317
1337
  @repository_manager_stub.call_rpc :fetch_read_write_token, request, options: options do |response, operation|
1318
1338
  yield response, operation if block_given?
1319
- return response
1320
1339
  end
1321
1340
  rescue ::GRPC::BadStatus => e
1322
1341
  raise ::Google::Cloud::Error.from_error(e)
@@ -1403,7 +1422,6 @@ module Google
1403
1422
 
1404
1423
  @repository_manager_stub.call_rpc :fetch_read_token, request, options: options do |response, operation|
1405
1424
  yield response, operation if block_given?
1406
- return response
1407
1425
  end
1408
1426
  rescue ::GRPC::BadStatus => e
1409
1427
  raise ::Google::Cloud::Error.from_error(e)
@@ -1500,7 +1518,7 @@ module Google
1500
1518
  @repository_manager_stub.call_rpc :fetch_linkable_repositories, request, options: options do |response, operation|
1501
1519
  response = ::Gapic::PagedEnumerable.new @repository_manager_stub, :fetch_linkable_repositories, request, response, operation, options
1502
1520
  yield response, operation if block_given?
1503
- return response
1521
+ throw :response, response
1504
1522
  end
1505
1523
  rescue ::GRPC::BadStatus => e
1506
1524
  raise ::Google::Cloud::Error.from_error(e)
@@ -1589,7 +1607,6 @@ module Google
1589
1607
 
1590
1608
  @repository_manager_stub.call_rpc :fetch_git_refs, request, options: options do |response, operation|
1591
1609
  yield response, operation if block_given?
1592
- return response
1593
1610
  end
1594
1611
  rescue ::GRPC::BadStatus => e
1595
1612
  raise ::Google::Cloud::Error.from_error(e)
@@ -1639,6 +1656,13 @@ module Google
1639
1656
  # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
1640
1657
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
1641
1658
  # * (`nil`) indicating no credentials
1659
+ #
1660
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
1661
+ # external source for authentication to Google Cloud, you must validate it before
1662
+ # providing it to a Google API client library. Providing an unvalidated credential
1663
+ # configuration to Google APIs can compromise the security of your systems and data.
1664
+ # For more information, refer to [Validate credential configurations from external
1665
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
1642
1666
  # @return [::Object]
1643
1667
  # @!attribute [rw] scope
1644
1668
  # The OAuth scopes
@@ -1678,6 +1702,11 @@ module Google
1678
1702
  # default endpoint URL. The default value of nil uses the environment
1679
1703
  # universe (usually the default "googleapis.com" universe).
1680
1704
  # @return [::String,nil]
1705
+ # @!attribute [rw] logger
1706
+ # A custom logger to use for request/response debug logging, or the value
1707
+ # `:default` (the default) to construct a default logger, or `nil` to
1708
+ # explicitly disable logging.
1709
+ # @return [::Logger,:default,nil]
1681
1710
  #
1682
1711
  class Configuration
1683
1712
  extend ::Gapic::Config
@@ -1702,6 +1731,7 @@ module Google
1702
1731
  config_attr :retry_policy, nil, ::Hash, ::Proc, nil
1703
1732
  config_attr :quota_project, nil, ::String, nil
1704
1733
  config_attr :universe_domain, nil, ::String, nil
1734
+ config_attr :logger, :default, ::Logger, nil, :default
1705
1735
 
1706
1736
  # @private
1707
1737
  def initialize parent_config = nil
@@ -124,14 +124,6 @@ module Google
124
124
  # Lists operations that match the specified filter in the request. If the
125
125
  # server doesn't support this method, it returns `UNIMPLEMENTED`.
126
126
  #
127
- # NOTE: the `name` binding allows API services to override the binding
128
- # to use different resource name schemes, such as `users/*/operations`. To
129
- # override the binding, API services can add a binding such as
130
- # `"/v1/{name=users/*}/operations"` to their service configuration.
131
- # For backwards compatibility, the default name includes the operations
132
- # collection id, however overriding users must ensure the name binding
133
- # is the parent resource, without the operations collection id.
134
- #
135
127
  # @overload list_operations(request, options = nil)
136
128
  # Pass arguments to `list_operations` via a request object, either of type
137
129
  # {::Google::Longrunning::ListOperationsRequest} or an equivalent Hash.
@@ -221,7 +213,7 @@ module Google
221
213
  wrap_lro_operation = ->(op_response) { ::Gapic::Operation.new op_response, @operations_client }
222
214
  response = ::Gapic::PagedEnumerable.new @operations_stub, :list_operations, request, response, operation, options, format_resource: wrap_lro_operation
223
215
  yield response, operation if block_given?
224
- return response
216
+ throw :response, response
225
217
  end
226
218
  rescue ::GRPC::BadStatus => e
227
219
  raise ::Google::Cloud::Error.from_error(e)
@@ -317,7 +309,7 @@ module Google
317
309
  @operations_stub.call_rpc :get_operation, request, options: options do |response, operation|
318
310
  response = ::Gapic::Operation.new response, @operations_client, options: options
319
311
  yield response, operation if block_given?
320
- return response
312
+ throw :response, response
321
313
  end
322
314
  rescue ::GRPC::BadStatus => e
323
315
  raise ::Google::Cloud::Error.from_error(e)
@@ -406,7 +398,6 @@ module Google
406
398
 
407
399
  @operations_stub.call_rpc :delete_operation, request, options: options do |response, operation|
408
400
  yield response, operation if block_given?
409
- return response
410
401
  end
411
402
  rescue ::GRPC::BadStatus => e
412
403
  raise ::Google::Cloud::Error.from_error(e)
@@ -421,8 +412,9 @@ module Google
421
412
  # other methods to check whether the cancellation succeeded or whether the
422
413
  # operation completed despite cancellation. On successful cancellation,
423
414
  # the operation is not deleted; instead, it becomes an operation with
424
- # an {::Google::Longrunning::Operation#error Operation.error} value with a {::Google::Rpc::Status#code google.rpc.Status.code} of 1,
425
- # corresponding to `Code.CANCELLED`.
415
+ # an {::Google::Longrunning::Operation#error Operation.error} value with a
416
+ # {::Google::Rpc::Status#code google.rpc.Status.code} of `1`, corresponding to
417
+ # `Code.CANCELLED`.
426
418
  #
427
419
  # @overload cancel_operation(request, options = nil)
428
420
  # Pass arguments to `cancel_operation` via a request object, either of type
@@ -501,7 +493,6 @@ module Google
501
493
 
502
494
  @operations_stub.call_rpc :cancel_operation, request, options: options do |response, operation|
503
495
  yield response, operation if block_given?
504
- return response
505
496
  end
506
497
  rescue ::GRPC::BadStatus => e
507
498
  raise ::Google::Cloud::Error.from_error(e)
@@ -599,7 +590,7 @@ module Google
599
590
  @operations_stub.call_rpc :wait_operation, request, options: options do |response, operation|
600
591
  response = ::Gapic::Operation.new response, @operations_client, options: options
601
592
  yield response, operation if block_given?
602
- return response
593
+ throw :response, response
603
594
  end
604
595
  rescue ::GRPC::BadStatus => e
605
596
  raise ::Google::Cloud::Error.from_error(e)
@@ -649,6 +640,13 @@ module Google
649
640
  # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
650
641
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
651
642
  # * (`nil`) indicating no credentials
643
+ #
644
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
645
+ # external source for authentication to Google Cloud, you must validate it before
646
+ # providing it to a Google API client library. Providing an unvalidated credential
647
+ # configuration to Google APIs can compromise the security of your systems and data.
648
+ # For more information, refer to [Validate credential configurations from external
649
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
652
650
  # @return [::Object]
653
651
  # @!attribute [rw] scope
654
652
  # The OAuth scopes
@@ -688,6 +686,11 @@ module Google
688
686
  # default endpoint URL. The default value of nil uses the environment
689
687
  # universe (usually the default "googleapis.com" universe).
690
688
  # @return [::String,nil]
689
+ # @!attribute [rw] logger
690
+ # A custom logger to use for request/response debug logging, or the value
691
+ # `:default` (the default) to construct a default logger, or `nil` to
692
+ # explicitly disable logging.
693
+ # @return [::Logger,:default,nil]
691
694
  #
692
695
  class Configuration
693
696
  extend ::Gapic::Config
@@ -712,6 +715,7 @@ module Google
712
715
  config_attr :retry_policy, nil, ::Hash, ::Proc, nil
713
716
  config_attr :quota_project, nil, ::String, nil
714
717
  config_attr :universe_domain, nil, ::String, nil
718
+ config_attr :logger, :default, ::Logger, nil, :default
715
719
 
716
720
  # @private
717
721
  def initialize parent_config = nil
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Build
23
23
  module V2
24
- VERSION = "0.7.2"
24
+ VERSION = "0.9.0"
25
25
  end
26
26
  end
27
27
  end
@@ -28,6 +28,9 @@ module Google
28
28
  # @!attribute [rw] destinations
29
29
  # @return [::Array<::Google::Api::ClientLibraryDestination>]
30
30
  # The destination where API teams want this client library to be published.
31
+ # @!attribute [rw] selective_gapic_generation
32
+ # @return [::Google::Api::SelectiveGapicGeneration]
33
+ # Configuration for which RPCs should be generated in the GAPIC client.
31
34
  class CommonLanguageSettings
32
35
  include ::Google::Protobuf::MessageExts
33
36
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -212,6 +215,12 @@ module Google
212
215
  # enabled. By default, asynchronous REST clients will not be generated.
213
216
  # This feature will be enabled by default 1 month after launching the
214
217
  # feature in preview packages.
218
+ # @!attribute [rw] protobuf_pythonic_types_enabled
219
+ # @return [::Boolean]
220
+ # Enables generation of protobuf code using new types that are more
221
+ # Pythonic which are included in `protobuf>=5.29.x`. This feature will be
222
+ # enabled by default 1 month after launching the feature in preview
223
+ # packages.
215
224
  class ExperimentalFeatures
216
225
  include ::Google::Protobuf::MessageExts
217
226
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -297,9 +306,28 @@ module Google
297
306
  # @!attribute [rw] common
298
307
  # @return [::Google::Api::CommonLanguageSettings]
299
308
  # Some settings.
309
+ # @!attribute [rw] renamed_services
310
+ # @return [::Google::Protobuf::Map{::String => ::String}]
311
+ # Map of service names to renamed services. Keys are the package relative
312
+ # service names and values are the name to be used for the service client
313
+ # and call options.
314
+ #
315
+ # publishing:
316
+ # go_settings:
317
+ # renamed_services:
318
+ # Publisher: TopicAdmin
300
319
  class GoSettings
301
320
  include ::Google::Protobuf::MessageExts
302
321
  extend ::Google::Protobuf::MessageExts::ClassMethods
322
+
323
+ # @!attribute [rw] key
324
+ # @return [::String]
325
+ # @!attribute [rw] value
326
+ # @return [::String]
327
+ class RenamedServicesEntry
328
+ include ::Google::Protobuf::MessageExts
329
+ extend ::Google::Protobuf::MessageExts::ClassMethods
330
+ end
303
331
  end
304
332
 
305
333
  # Describes the generator configuration for a method.
@@ -375,6 +403,17 @@ module Google
375
403
  end
376
404
  end
377
405
 
406
+ # This message is used to configure the generation of a subset of the RPCs in
407
+ # a service for client libraries.
408
+ # @!attribute [rw] methods
409
+ # @return [::Array<::String>]
410
+ # An allowlist of the fully qualified names of RPCs that should be included
411
+ # on public client surfaces.
412
+ class SelectiveGapicGeneration
413
+ include ::Google::Protobuf::MessageExts
414
+ extend ::Google::Protobuf::MessageExts::ClassMethods
415
+ end
416
+
378
417
  # The organization for which the client libraries are being published.
379
418
  # Affects the url where generated docs are published, etc.
380
419
  module ClientLibraryOrganization
@@ -36,19 +36,29 @@ module Google
36
36
  # @!attribute [rw] github_config
37
37
  # @return [::Google::Cloud::Build::V2::GitHubConfig]
38
38
  # Configuration for connections to github.com.
39
+ #
40
+ # Note: The following fields are mutually exclusive: `github_config`, `github_enterprise_config`, `gitlab_config`, `bitbucket_data_center_config`, `bitbucket_cloud_config`. If a field in that set is populated, all other fields in the set will automatically be cleared.
39
41
  # @!attribute [rw] github_enterprise_config
40
42
  # @return [::Google::Cloud::Build::V2::GitHubEnterpriseConfig]
41
43
  # Configuration for connections to an instance of GitHub Enterprise.
44
+ #
45
+ # Note: The following fields are mutually exclusive: `github_enterprise_config`, `github_config`, `gitlab_config`, `bitbucket_data_center_config`, `bitbucket_cloud_config`. If a field in that set is populated, all other fields in the set will automatically be cleared.
42
46
  # @!attribute [rw] gitlab_config
43
47
  # @return [::Google::Cloud::Build::V2::GitLabConfig]
44
48
  # Configuration for connections to gitlab.com or an instance of GitLab
45
49
  # Enterprise.
50
+ #
51
+ # Note: The following fields are mutually exclusive: `gitlab_config`, `github_config`, `github_enterprise_config`, `bitbucket_data_center_config`, `bitbucket_cloud_config`. If a field in that set is populated, all other fields in the set will automatically be cleared.
46
52
  # @!attribute [rw] bitbucket_data_center_config
47
53
  # @return [::Google::Cloud::Build::V2::BitbucketDataCenterConfig]
48
54
  # Configuration for connections to Bitbucket Data Center.
55
+ #
56
+ # Note: The following fields are mutually exclusive: `bitbucket_data_center_config`, `github_config`, `github_enterprise_config`, `gitlab_config`, `bitbucket_cloud_config`. If a field in that set is populated, all other fields in the set will automatically be cleared.
49
57
  # @!attribute [rw] bitbucket_cloud_config
50
58
  # @return [::Google::Cloud::Build::V2::BitbucketCloudConfig]
51
59
  # Configuration for connections to Bitbucket Cloud.
60
+ #
61
+ # Note: The following fields are mutually exclusive: `bitbucket_cloud_config`, `github_config`, `github_enterprise_config`, `gitlab_config`, `bitbucket_data_center_config`. If a field in that set is populated, all other fields in the set will automatically be cleared.
52
62
  # @!attribute [r] installation_state
53
63
  # @return [::Google::Cloud::Build::V2::InstallationState]
54
64
  # Output only. Installation state of the Connection.
@@ -40,9 +40,11 @@ module Google
40
40
  # @!attribute [rw] error
41
41
  # @return [::Google::Rpc::Status]
42
42
  # The error result of the operation in case of failure or cancellation.
43
+ #
44
+ # Note: The following fields are mutually exclusive: `error`, `response`. If a field in that set is populated, all other fields in the set will automatically be cleared.
43
45
  # @!attribute [rw] response
44
46
  # @return [::Google::Protobuf::Any]
45
- # The normal response of the operation in case of success. If the original
47
+ # The normal, successful response of the operation. If the original
46
48
  # method returns no data on success, such as `Delete`, the response is
47
49
  # `google.protobuf.Empty`. If the original method is standard
48
50
  # `Get`/`Create`/`Update`, the response should be the resource. For other
@@ -50,12 +52,15 @@ module Google
50
52
  # is the original method name. For example, if the original method name
51
53
  # is `TakeSnapshot()`, the inferred response type is
52
54
  # `TakeSnapshotResponse`.
55
+ #
56
+ # Note: The following fields are mutually exclusive: `response`, `error`. If a field in that set is populated, all other fields in the set will automatically be cleared.
53
57
  class Operation
54
58
  include ::Google::Protobuf::MessageExts
55
59
  extend ::Google::Protobuf::MessageExts::ClassMethods
56
60
  end
57
61
 
58
- # The request message for Operations.GetOperation.
62
+ # The request message for
63
+ # Operations.GetOperation.
59
64
  # @!attribute [rw] name
60
65
  # @return [::String]
61
66
  # The name of the operation resource.
@@ -64,7 +69,8 @@ module Google
64
69
  extend ::Google::Protobuf::MessageExts::ClassMethods
65
70
  end
66
71
 
67
- # The request message for Operations.ListOperations.
72
+ # The request message for
73
+ # Operations.ListOperations.
68
74
  # @!attribute [rw] name
69
75
  # @return [::String]
70
76
  # The name of the operation's parent resource.
@@ -82,7 +88,8 @@ module Google
82
88
  extend ::Google::Protobuf::MessageExts::ClassMethods
83
89
  end
84
90
 
85
- # The response message for Operations.ListOperations.
91
+ # The response message for
92
+ # Operations.ListOperations.
86
93
  # @!attribute [rw] operations
87
94
  # @return [::Array<::Google::Longrunning::Operation>]
88
95
  # A list of operations that matches the specified filter in the request.
@@ -94,7 +101,8 @@ module Google
94
101
  extend ::Google::Protobuf::MessageExts::ClassMethods
95
102
  end
96
103
 
97
- # The request message for Operations.CancelOperation.
104
+ # The request message for
105
+ # Operations.CancelOperation.
98
106
  # @!attribute [rw] name
99
107
  # @return [::String]
100
108
  # The name of the operation resource to be cancelled.
@@ -103,7 +111,8 @@ module Google
103
111
  extend ::Google::Protobuf::MessageExts::ClassMethods
104
112
  end
105
113
 
106
- # The request message for Operations.DeleteOperation.
114
+ # The request message for
115
+ # Operations.DeleteOperation.
107
116
  # @!attribute [rw] name
108
117
  # @return [::String]
109
118
  # The name of the operation resource to be deleted.
@@ -112,7 +121,8 @@ module Google
112
121
  extend ::Google::Protobuf::MessageExts::ClassMethods
113
122
  end
114
123
 
115
- # The request message for Operations.WaitOperation.
124
+ # The request message for
125
+ # Operations.WaitOperation.
116
126
  # @!attribute [rw] name
117
127
  # @return [::String]
118
128
  # The name of the operation resource to wait on.
@@ -130,13 +140,12 @@ module Google
130
140
  #
131
141
  # Example:
132
142
  #
133
- # rpc LongRunningRecognize(LongRunningRecognizeRequest)
134
- # returns (google.longrunning.Operation) {
135
- # option (google.longrunning.operation_info) = {
136
- # response_type: "LongRunningRecognizeResponse"
137
- # metadata_type: "LongRunningRecognizeMetadata"
138
- # };
139
- # }
143
+ # rpc Export(ExportRequest) returns (google.longrunning.Operation) {
144
+ # option (google.longrunning.operation_info) = {
145
+ # response_type: "ExportResponse"
146
+ # metadata_type: "ExportMetadata"
147
+ # };
148
+ # }
140
149
  # @!attribute [rw] response_type
141
150
  # @return [::String]
142
151
  # Required. The message name of the primary return type for this
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-build-v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.2
4
+ version: 0.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-08-30 00:00:00.000000000 Z
10
+ date: 2025-01-29 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: gapic-common
@@ -16,7 +15,7 @@ dependencies:
16
15
  requirements:
17
16
  - - ">="
18
17
  - !ruby/object:Gem::Version
19
- version: 0.21.1
18
+ version: 0.25.0
20
19
  - - "<"
21
20
  - !ruby/object:Gem::Version
22
21
  version: 2.a
@@ -26,7 +25,7 @@ dependencies:
26
25
  requirements:
27
26
  - - ">="
28
27
  - !ruby/object:Gem::Version
29
- version: 0.21.1
28
+ version: 0.25.0
30
29
  - - "<"
31
30
  - !ruby/object:Gem::Version
32
31
  version: 2.a
@@ -130,7 +129,6 @@ homepage: https://github.com/googleapis/google-cloud-ruby
130
129
  licenses:
131
130
  - Apache-2.0
132
131
  metadata: {}
133
- post_install_message:
134
132
  rdoc_options: []
135
133
  require_paths:
136
134
  - lib
@@ -138,15 +136,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
138
136
  requirements:
139
137
  - - ">="
140
138
  - !ruby/object:Gem::Version
141
- version: '2.7'
139
+ version: '3.0'
142
140
  required_rubygems_version: !ruby/object:Gem::Requirement
143
141
  requirements:
144
142
  - - ">="
145
143
  - !ruby/object:Gem::Version
146
144
  version: '0'
147
145
  requirements: []
148
- rubygems_version: 3.5.6
149
- signing_key:
146
+ rubygems_version: 3.6.2
150
147
  specification_version: 4
151
148
  summary: Creates and manages builds on Google Cloud Platform.
152
149
  test_files: []