google-cloud-apigee_connect-v1 1.1.0 → 1.2.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: 1faaf84e28617e83287a298abb20d0c72fe66ada882920c5a4c4cbb2a80aa890
4
- data.tar.gz: 79bad71d018b97e750a3f659e98ed1926db7b0ed45b7bef9eb5fe2df275bbe06
3
+ metadata.gz: f5a9fbc2b2228e1cf7b3889a96f207a1a2217c032dcd617d01cedb7249a83e0d
4
+ data.tar.gz: 005a99e9108fcfd4f5bd724cf9dad846e97bec164c5617f747a53be281e8e85b
5
5
  SHA512:
6
- metadata.gz: dcfd5850f90a61ab0b18964729d7f45fb4513663e0479f1f33bfc05245a0202361a41a9963e2f5ebef9e6e688a8fcbcf0d237b18901397728de1bf588529b6fb
7
- data.tar.gz: e8f9b86c17a43964b3bcfeac6e9b59d940d6f960154e3ac075689c479d5d66ac2dbe3e179303afba6ce0105aa3ea0a08e3cbe5dbe75cb334bb2e2b50f0bcf0ff
6
+ metadata.gz: 5b6cd337d426a7b4319c9008aec0b9bb37bdc633c7f185ff6e58fb437c05396faaf360e0dd98b55dd6626dab6c1a5c2f9118df5c2cf77b74fc024a3496369f4d
7
+ data.tar.gz: f217da215d0a709995f30184239883df551daab2b17eca628f5f2e96aeebbd591c47c3bf33b1bc1624ed4195461d50efb8b79cbac3e2ee863fddff9947c9de27
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
@@ -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
@@ -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
@@ -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
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module ApigeeConnect
23
23
  module V1
24
- VERSION = "1.1.0"
24
+ VERSION = "1.2.0"
25
25
  end
26
26
  end
27
27
  end
@@ -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.0
4
+ version: 1.2.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-12-10 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.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
@@ -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: '2.7'
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.5.23
111
- signing_key:
108
+ rubygems_version: 3.6.2
112
109
  specification_version: 4
113
110
  summary: API Client library for the Apigee Connect V1 API
114
111
  test_files: []