google-cloud-gke_multi_cloud-v1 0.13.0 → 0.14.1

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: bf1897bae5458260e6a2ed53ccd4b3ff884dc7110995f10b8bf6c3000b8f08f8
4
- data.tar.gz: de27e6d1d1719579c8b2efefb52fa6c216e9c69b00708ec00ca41b97ce43ae62
3
+ metadata.gz: 283cee69ae575eab75e3a9da9b810fb8c0c4f9e6dc404af5af2ea745817644cc
4
+ data.tar.gz: 3e2136b8cb12ca5d2d18259ec7bbfe609eaa70f0cb02c6da563cece0fc219dde
5
5
  SHA512:
6
- metadata.gz: 7541b69ca94ab1edd8c3379b402c065ee7e38d10138e394532280fc88d6714c9ba087ce6283d0b8a70fb532ddf4d5756765c85c6d010b5b187230ae287bc6e4e
7
- data.tar.gz: c00a8ff6da73ef97774e87d5b2b4e2d1bda4d797710cd5873db508b1495ac890256bc5df661113b046cd5dbb1840015d6fbdae27248c026a4127700b7378593c
6
+ metadata.gz: 116659f01835fd0df78003e9c9b2ec8a9d99e73c25097469a9562c967076f4a465fc0939d7546f33acfe194511ac2411778ca87f212ab997c9ebac79543e92ef
7
+ data.tar.gz: a2ff191b3be9bc4a2eae8ddda35b47d16d98765b6c43101f23632c289bef108303784e0dd91cb85f11b56b5971cc246e18d3e4689e28d9e11b6184fdf41e1fd1
data/README.md CHANGED
@@ -86,7 +86,7 @@ To browse ready to use code samples check [Google Cloud Samples](https://cloud.g
86
86
 
87
87
  ## Supported Ruby Versions
88
88
 
89
- This library is supported on Ruby 2.7+.
89
+ This library is supported on Ruby 3.0+.
90
90
 
91
91
  Google provides official support for Ruby versions that are actively supported
92
92
  by Ruby Core—that is, Ruby versions that are either in normal maintenance or
@@ -1285,6 +1285,13 @@ module Google
1285
1285
  # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
1286
1286
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
1287
1287
  # * (`nil`) indicating no credentials
1288
+ #
1289
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
1290
+ # external source for authentication to Google Cloud, you must validate it before
1291
+ # providing it to a Google API client library. Providing an unvalidated credential
1292
+ # configuration to Google APIs can compromise the security of your systems and data.
1293
+ # For more information, refer to [Validate credential configurations from external
1294
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
1288
1295
  # @return [::Object]
1289
1296
  # @!attribute [rw] scope
1290
1297
  # The OAuth scopes
@@ -1339,8 +1346,8 @@ module Google
1339
1346
 
1340
1347
  config_attr :endpoint, nil, ::String, nil
1341
1348
  config_attr :credentials, nil do |value|
1342
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
1343
- allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
1349
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
1350
+ allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel
1344
1351
  allowed.any? { |klass| klass === value }
1345
1352
  end
1346
1353
  config_attr :scope, nil, ::String, ::Array, nil
@@ -640,6 +640,13 @@ module Google
640
640
  # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
641
641
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
642
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).
643
650
  # @return [::Object]
644
651
  # @!attribute [rw] scope
645
652
  # The OAuth scopes
@@ -694,8 +701,8 @@ module Google
694
701
 
695
702
  config_attr :endpoint, nil, ::String, nil
696
703
  config_attr :credentials, nil do |value|
697
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
698
- allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
704
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
705
+ allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel
699
706
  allowed.any? { |klass| klass === value }
700
707
  end
701
708
  config_attr :scope, nil, ::String, ::Array, nil
@@ -1213,6 +1213,13 @@ module Google
1213
1213
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
1214
1214
  # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
1215
1215
  # * (`nil`) indicating no credentials
1216
+ #
1217
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
1218
+ # external source for authentication to Google Cloud, you must validate it before
1219
+ # providing it to a Google API client library. Providing an unvalidated credential
1220
+ # configuration to Google APIs can compromise the security of your systems and data.
1221
+ # For more information, refer to [Validate credential configurations from external
1222
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
1216
1223
  # @return [::Object]
1217
1224
  # @!attribute [rw] scope
1218
1225
  # The OAuth scopes
@@ -1260,7 +1267,7 @@ module Google
1260
1267
 
1261
1268
  config_attr :endpoint, nil, ::String, nil
1262
1269
  config_attr :credentials, nil do |value|
1263
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
1270
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
1264
1271
  allowed.any? { |klass| klass === value }
1265
1272
  end
1266
1273
  config_attr :scope, nil, ::String, ::Array, nil
@@ -502,6 +502,13 @@ module Google
502
502
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
503
503
  # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
504
504
  # * (`nil`) indicating no credentials
505
+ #
506
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
507
+ # external source for authentication to Google Cloud, you must validate it before
508
+ # providing it to a Google API client library. Providing an unvalidated credential
509
+ # configuration to Google APIs can compromise the security of your systems and data.
510
+ # For more information, refer to [Validate credential configurations from external
511
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
505
512
  # @return [::Object]
506
513
  # @!attribute [rw] scope
507
514
  # The OAuth scopes
@@ -549,7 +556,7 @@ module Google
549
556
 
550
557
  config_attr :endpoint, nil, ::String, nil
551
558
  config_attr :credentials, nil do |value|
552
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
559
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
553
560
  allowed.any? { |klass| klass === value }
554
561
  end
555
562
  config_attr :scope, nil, ::String, ::Array, nil
@@ -2055,6 +2055,13 @@ module Google
2055
2055
  # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
2056
2056
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
2057
2057
  # * (`nil`) indicating no credentials
2058
+ #
2059
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
2060
+ # external source for authentication to Google Cloud, you must validate it before
2061
+ # providing it to a Google API client library. Providing an unvalidated credential
2062
+ # configuration to Google APIs can compromise the security of your systems and data.
2063
+ # For more information, refer to [Validate credential configurations from external
2064
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
2058
2065
  # @return [::Object]
2059
2066
  # @!attribute [rw] scope
2060
2067
  # The OAuth scopes
@@ -2109,8 +2116,8 @@ module Google
2109
2116
 
2110
2117
  config_attr :endpoint, nil, ::String, nil
2111
2118
  config_attr :credentials, nil do |value|
2112
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
2113
- allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
2119
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
2120
+ allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel
2114
2121
  allowed.any? { |klass| klass === value }
2115
2122
  end
2116
2123
  config_attr :scope, nil, ::String, ::Array, nil
@@ -640,6 +640,13 @@ module Google
640
640
  # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
641
641
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
642
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).
643
650
  # @return [::Object]
644
651
  # @!attribute [rw] scope
645
652
  # The OAuth scopes
@@ -694,8 +701,8 @@ module Google
694
701
 
695
702
  config_attr :endpoint, nil, ::String, nil
696
703
  config_attr :credentials, nil do |value|
697
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
698
- allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
704
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
705
+ allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel
699
706
  allowed.any? { |klass| klass === value }
700
707
  end
701
708
  config_attr :scope, nil, ::String, ::Array, nil
@@ -1934,6 +1934,13 @@ module Google
1934
1934
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
1935
1935
  # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
1936
1936
  # * (`nil`) indicating no credentials
1937
+ #
1938
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
1939
+ # external source for authentication to Google Cloud, you must validate it before
1940
+ # providing it to a Google API client library. Providing an unvalidated credential
1941
+ # configuration to Google APIs can compromise the security of your systems and data.
1942
+ # For more information, refer to [Validate credential configurations from external
1943
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
1937
1944
  # @return [::Object]
1938
1945
  # @!attribute [rw] scope
1939
1946
  # The OAuth scopes
@@ -1981,7 +1988,7 @@ module Google
1981
1988
 
1982
1989
  config_attr :endpoint, nil, ::String, nil
1983
1990
  config_attr :credentials, nil do |value|
1984
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
1991
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
1985
1992
  allowed.any? { |klass| klass === value }
1986
1993
  end
1987
1994
  config_attr :scope, nil, ::String, ::Array, nil
@@ -502,6 +502,13 @@ module Google
502
502
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
503
503
  # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
504
504
  # * (`nil`) indicating no credentials
505
+ #
506
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
507
+ # external source for authentication to Google Cloud, you must validate it before
508
+ # providing it to a Google API client library. Providing an unvalidated credential
509
+ # configuration to Google APIs can compromise the security of your systems and data.
510
+ # For more information, refer to [Validate credential configurations from external
511
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
505
512
  # @return [::Object]
506
513
  # @!attribute [rw] scope
507
514
  # The OAuth scopes
@@ -549,7 +556,7 @@ module Google
549
556
 
550
557
  config_attr :endpoint, nil, ::String, nil
551
558
  config_attr :credentials, nil do |value|
552
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
559
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
553
560
  allowed.any? { |klass| klass === value }
554
561
  end
555
562
  config_attr :scope, nil, ::String, ::Array, nil
@@ -2375,6 +2375,13 @@ module Google
2375
2375
  # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
2376
2376
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
2377
2377
  # * (`nil`) indicating no credentials
2378
+ #
2379
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
2380
+ # external source for authentication to Google Cloud, you must validate it before
2381
+ # providing it to a Google API client library. Providing an unvalidated credential
2382
+ # configuration to Google APIs can compromise the security of your systems and data.
2383
+ # For more information, refer to [Validate credential configurations from external
2384
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
2378
2385
  # @return [::Object]
2379
2386
  # @!attribute [rw] scope
2380
2387
  # The OAuth scopes
@@ -2429,8 +2436,8 @@ module Google
2429
2436
 
2430
2437
  config_attr :endpoint, nil, ::String, nil
2431
2438
  config_attr :credentials, nil do |value|
2432
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
2433
- allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
2439
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
2440
+ allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel
2434
2441
  allowed.any? { |klass| klass === value }
2435
2442
  end
2436
2443
  config_attr :scope, nil, ::String, ::Array, nil
@@ -640,6 +640,13 @@ module Google
640
640
  # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
641
641
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
642
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).
643
650
  # @return [::Object]
644
651
  # @!attribute [rw] scope
645
652
  # The OAuth scopes
@@ -694,8 +701,8 @@ module Google
694
701
 
695
702
  config_attr :endpoint, nil, ::String, nil
696
703
  config_attr :credentials, nil do |value|
697
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
698
- allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
704
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
705
+ allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel
699
706
  allowed.any? { |klass| klass === value }
700
707
  end
701
708
  config_attr :scope, nil, ::String, ::Array, nil
@@ -2233,6 +2233,13 @@ module Google
2233
2233
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
2234
2234
  # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
2235
2235
  # * (`nil`) indicating no credentials
2236
+ #
2237
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
2238
+ # external source for authentication to Google Cloud, you must validate it before
2239
+ # providing it to a Google API client library. Providing an unvalidated credential
2240
+ # configuration to Google APIs can compromise the security of your systems and data.
2241
+ # For more information, refer to [Validate credential configurations from external
2242
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
2236
2243
  # @return [::Object]
2237
2244
  # @!attribute [rw] scope
2238
2245
  # The OAuth scopes
@@ -2280,7 +2287,7 @@ module Google
2280
2287
 
2281
2288
  config_attr :endpoint, nil, ::String, nil
2282
2289
  config_attr :credentials, nil do |value|
2283
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
2290
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
2284
2291
  allowed.any? { |klass| klass === value }
2285
2292
  end
2286
2293
  config_attr :scope, nil, ::String, ::Array, nil
@@ -502,6 +502,13 @@ module Google
502
502
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
503
503
  # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
504
504
  # * (`nil`) indicating no credentials
505
+ #
506
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
507
+ # external source for authentication to Google Cloud, you must validate it before
508
+ # providing it to a Google API client library. Providing an unvalidated credential
509
+ # configuration to Google APIs can compromise the security of your systems and data.
510
+ # For more information, refer to [Validate credential configurations from external
511
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
505
512
  # @return [::Object]
506
513
  # @!attribute [rw] scope
507
514
  # The OAuth scopes
@@ -549,7 +556,7 @@ module Google
549
556
 
550
557
  config_attr :endpoint, nil, ::String, nil
551
558
  config_attr :credentials, nil do |value|
552
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
559
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
553
560
  allowed.any? { |klass| klass === value }
554
561
  end
555
562
  config_attr :scope, nil, ::String, ::Array, nil
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module GkeMultiCloud
23
23
  module V1
24
- VERSION = "0.13.0"
24
+ VERSION = "0.14.1"
25
25
  end
26
26
  end
27
27
  end
@@ -221,6 +221,12 @@ module Google
221
221
  # Pythonic which are included in `protobuf>=5.29.x`. This feature will be
222
222
  # enabled by default 1 month after launching the feature in preview
223
223
  # packages.
224
+ # @!attribute [rw] unversioned_package_disabled
225
+ # @return [::Boolean]
226
+ # Disables generation of an unversioned Python package for this client
227
+ # library. This means that the module names will need to be versioned in
228
+ # import statements. For example `import google.cloud.library_v2` instead
229
+ # of `import google.cloud.library`.
224
230
  class ExperimentalFeatures
225
231
  include ::Google::Protobuf::MessageExts
226
232
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -409,6 +415,14 @@ module Google
409
415
  # @return [::Array<::String>]
410
416
  # An allowlist of the fully qualified names of RPCs that should be included
411
417
  # on public client surfaces.
418
+ # @!attribute [rw] generate_omitted_as_internal
419
+ # @return [::Boolean]
420
+ # Setting this to true indicates to the client generators that methods
421
+ # that would be excluded from the generation should instead be generated
422
+ # in a way that indicates these methods should not be consumed by
423
+ # end users. How this is expressed is up to individual language
424
+ # implementations to decide. Some examples may be: added annotations,
425
+ # obfuscated identifiers, or other language idiomatic patterns.
412
426
  class SelectiveGapicGeneration
413
427
  include ::Google::Protobuf::MessageExts
414
428
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -131,7 +131,8 @@ module Google
131
131
  # encoded Unicode characters except single quotes ('), double quotes ("),
132
132
  # backslashes (\), and forward slashes (/).
133
133
  #
134
- # See [Tags](http://cloud/resource-manager/docs/tags/tags-overview)
134
+ # See
135
+ # [Tags](https://cloud.google.com/resource-manager/docs/tags/tags-overview)
135
136
  # for more details on Google Cloud Platform tags.
136
137
  class AttachedCluster
137
138
  include ::Google::Protobuf::MessageExts
@@ -40,6 +40,8 @@ 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
47
  # The normal, successful response of the operation. If the original
@@ -50,6 +52,8 @@ 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
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-gke_multi_cloud-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.0
4
+ version: 0.14.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2025-01-08 00:00:00.000000000 Z
10
+ date: 1980-01-02 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.24.0
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.24.0
28
+ version: 0.25.0
30
29
  - - "<"
31
30
  - !ruby/object:Gem::Version
32
31
  version: 2.a
@@ -124,7 +123,6 @@ homepage: https://github.com/googleapis/google-cloud-ruby
124
123
  licenses:
125
124
  - Apache-2.0
126
125
  metadata: {}
127
- post_install_message:
128
126
  rdoc_options: []
129
127
  require_paths:
130
128
  - lib
@@ -132,15 +130,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
132
130
  requirements:
133
131
  - - ">="
134
132
  - !ruby/object:Gem::Version
135
- version: '2.7'
133
+ version: '3.0'
136
134
  required_rubygems_version: !ruby/object:Gem::Requirement
137
135
  requirements:
138
136
  - - ">="
139
137
  - !ruby/object:Gem::Version
140
138
  version: '0'
141
139
  requirements: []
142
- rubygems_version: 3.5.23
143
- signing_key:
140
+ rubygems_version: 3.6.8
144
141
  specification_version: 4
145
142
  summary: GKE Multi-Cloud provides a way to manage Kubernetes clusters that run on
146
143
  AWS and Azure infrastructure using the GKE Multi-Cloud API. Combined with Connect,