google-cloud-apigee_connect-v1 1.1.0 → 1.2.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 +4 -4
- data/README.md +1 -1
- data/lib/google/cloud/apigee_connect/v1/connection_service/client.rb +9 -2
- data/lib/google/cloud/apigee_connect/v1/connection_service/rest/client.rb +8 -1
- data/lib/google/cloud/apigee_connect/v1/tether/client.rb +9 -2
- data/lib/google/cloud/apigee_connect/v1/version.rb +1 -1
- data/proto_docs/google/api/client.rb +14 -0
- data/proto_docs/google/cloud/apigeeconnect/v1/tether.rb +6 -0
- metadata +6 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 91d3a43a4ff825eea5964431fe3b5c97382f1daff027124841ab445462cd7afa
|
4
|
+
data.tar.gz: 2e9ed2b00591af8d59d00a816f0208c0731a6b11cc651541ed88f0d3b5cfab72
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f34c97bed662f6a4341e2020fc7e18929aa51cd485c3c189e8bfa83148a5da47bffc5ea44e379e4bfa09e4cbe43b70b6e397cdf0fd2083af4ce52a0044536998
|
7
|
+
data.tar.gz: 8484bc2c0d2b50cef3d07833faeb059f995179ae17f168a5275dac906d9dfd0c5dbd3b0999f59ff27dfc7aae2f8526c29e756c3557c8359a89c12870ab01a62d
|
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
|
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
|
@@ -335,6 +335,13 @@ module Google
|
|
335
335
|
# * (`GRPC::Core::Channel`) a gRPC channel with included credentials
|
336
336
|
# * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
|
337
337
|
# * (`nil`) indicating no credentials
|
338
|
+
#
|
339
|
+
# Warning: If you accept a credential configuration (JSON file or Hash) from an
|
340
|
+
# external source for authentication to Google Cloud, you must validate it before
|
341
|
+
# providing it to a Google API client library. Providing an unvalidated credential
|
342
|
+
# configuration to Google APIs can compromise the security of your systems and data.
|
343
|
+
# For more information, refer to [Validate credential configurations from external
|
344
|
+
# sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
|
338
345
|
# @return [::Object]
|
339
346
|
# @!attribute [rw] scope
|
340
347
|
# The OAuth scopes
|
@@ -389,8 +396,8 @@ module Google
|
|
389
396
|
|
390
397
|
config_attr :endpoint, nil, ::String, nil
|
391
398
|
config_attr :credentials, nil do |value|
|
392
|
-
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
393
|
-
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
|
399
|
+
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
|
400
|
+
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel
|
394
401
|
allowed.any? { |klass| klass === value }
|
395
402
|
end
|
396
403
|
config_attr :scope, nil, ::String, ::Array, nil
|
@@ -319,6 +319,13 @@ module Google
|
|
319
319
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
320
320
|
# (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
|
321
321
|
# * (`nil`) indicating no credentials
|
322
|
+
#
|
323
|
+
# Warning: If you accept a credential configuration (JSON file or Hash) from an
|
324
|
+
# external source for authentication to Google Cloud, you must validate it before
|
325
|
+
# providing it to a Google API client library. Providing an unvalidated credential
|
326
|
+
# configuration to Google APIs can compromise the security of your systems and data.
|
327
|
+
# For more information, refer to [Validate credential configurations from external
|
328
|
+
# sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
|
322
329
|
# @return [::Object]
|
323
330
|
# @!attribute [rw] scope
|
324
331
|
# The OAuth scopes
|
@@ -366,7 +373,7 @@ module Google
|
|
366
373
|
|
367
374
|
config_attr :endpoint, nil, ::String, nil
|
368
375
|
config_attr :credentials, nil do |value|
|
369
|
-
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
376
|
+
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
|
370
377
|
allowed.any? { |klass| klass === value }
|
371
378
|
end
|
372
379
|
config_attr :scope, nil, ::String, ::Array, nil
|
@@ -311,6 +311,13 @@ module Google
|
|
311
311
|
# * (`GRPC::Core::Channel`) a gRPC channel with included credentials
|
312
312
|
# * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
|
313
313
|
# * (`nil`) indicating no credentials
|
314
|
+
#
|
315
|
+
# Warning: If you accept a credential configuration (JSON file or Hash) from an
|
316
|
+
# external source for authentication to Google Cloud, you must validate it before
|
317
|
+
# providing it to a Google API client library. Providing an unvalidated credential
|
318
|
+
# configuration to Google APIs can compromise the security of your systems and data.
|
319
|
+
# For more information, refer to [Validate credential configurations from external
|
320
|
+
# sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
|
314
321
|
# @return [::Object]
|
315
322
|
# @!attribute [rw] scope
|
316
323
|
# The OAuth scopes
|
@@ -365,8 +372,8 @@ module Google
|
|
365
372
|
|
366
373
|
config_attr :endpoint, nil, ::String, nil
|
367
374
|
config_attr :credentials, nil do |value|
|
368
|
-
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
369
|
-
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
|
375
|
+
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
|
376
|
+
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel
|
370
377
|
allowed.any? { |klass| klass === value }
|
371
378
|
end
|
372
379
|
config_attr :scope, nil, ::String, ::Array, nil
|
@@ -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
|
@@ -50,12 +50,18 @@ module Google
|
|
50
50
|
# @!attribute [rw] http_request
|
51
51
|
# @return [::Google::Cloud::ApigeeConnect::V1::HttpRequest]
|
52
52
|
# The HttpRequest proto.
|
53
|
+
#
|
54
|
+
# Note: The following fields are mutually exclusive: `http_request`, `stream_info`, `action`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
53
55
|
# @!attribute [rw] stream_info
|
54
56
|
# @return [::Google::Cloud::ApigeeConnect::V1::StreamInfo]
|
55
57
|
# The information of stream.
|
58
|
+
#
|
59
|
+
# Note: The following fields are mutually exclusive: `stream_info`, `http_request`, `action`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
56
60
|
# @!attribute [rw] action
|
57
61
|
# @return [::Google::Cloud::ApigeeConnect::V1::Action]
|
58
62
|
# The action taken by agent.
|
63
|
+
#
|
64
|
+
# Note: The following fields are mutually exclusive: `action`, `http_request`, `stream_info`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
59
65
|
class Payload
|
60
66
|
include ::Google::Protobuf::MessageExts
|
61
67
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-apigee_connect-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1
|
4
|
+
version: 1.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
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.
|
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.
|
28
|
+
version: 0.25.0
|
30
29
|
- - "<"
|
31
30
|
- !ruby/object:Gem::Version
|
32
31
|
version: 2.a
|
@@ -92,7 +91,6 @@ homepage: https://github.com/googleapis/google-cloud-ruby
|
|
92
91
|
licenses:
|
93
92
|
- Apache-2.0
|
94
93
|
metadata: {}
|
95
|
-
post_install_message:
|
96
94
|
rdoc_options: []
|
97
95
|
require_paths:
|
98
96
|
- lib
|
@@ -100,15 +98,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
100
98
|
requirements:
|
101
99
|
- - ">="
|
102
100
|
- !ruby/object:Gem::Version
|
103
|
-
version: '
|
101
|
+
version: '3.0'
|
104
102
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
105
103
|
requirements:
|
106
104
|
- - ">="
|
107
105
|
- !ruby/object:Gem::Version
|
108
106
|
version: '0'
|
109
107
|
requirements: []
|
110
|
-
rubygems_version: 3.
|
111
|
-
signing_key:
|
108
|
+
rubygems_version: 3.6.8
|
112
109
|
specification_version: 4
|
113
110
|
summary: API Client library for the Apigee Connect V1 API
|
114
111
|
test_files: []
|