google-maps-fleet_engine-delivery-v1 0.3.0 → 0.4.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: 445ee0892d25ca589960dda16b11718ef3d24094fbc52bbdbfb8d0474e4460a7
4
- data.tar.gz: fe96d593a3c3b7b79d9be4f29d6d67506a74334c2b5f5243c953d8a345771a68
3
+ metadata.gz: 35d6cf5977b23c42bc2d80dc591a99c15d29c59c09d3459fc1960804fa253de6
4
+ data.tar.gz: 34d0c33c0a6fda2cdf20aa789d31954d393b1b8143310e00117d925a3e9317c6
5
5
  SHA512:
6
- metadata.gz: d5bad960d07dba88e85ee86b2c55e1d019add8559d15df91da3687906602b3a0699b387ee6cb5eb0b45579b4c81c1514c56fb75efaee69ae83a0060681684168
7
- data.tar.gz: 35b03da17ed3deebce83521a3f8a257524dcbdc166d8a31b743bd920c1fe0bc091f804b1e5bb2ab7f61fd24805a279a41586e4826a4cdc7c84c1d36a5ea781cf
6
+ metadata.gz: b1ab0fbe8bd0e5b07ccb1394d1997837173c8ca984bf1f71331daf633d196d7e920dc41a171ba5fc79cff83b5e9921700b8ba50e3b0a4d6e8fb9fd22797a7a2a
7
+ data.tar.gz: 196c220d50e5e684e260c4a8dde9549ff3108e3e335b79435d26cc17638a7ee450091ddc924fd74652bb83eeb7def50e421dd4be4769bdc27c3bf14fe2300923
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
@@ -1322,6 +1322,13 @@ module Google
1322
1322
  # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
1323
1323
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
1324
1324
  # * (`nil`) indicating no credentials
1325
+ #
1326
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
1327
+ # external source for authentication to Google Cloud, you must validate it before
1328
+ # providing it to a Google API client library. Providing an unvalidated credential
1329
+ # configuration to Google APIs can compromise the security of your systems and data.
1330
+ # For more information, refer to [Validate credential configurations from external
1331
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
1325
1332
  # @return [::Object]
1326
1333
  # @!attribute [rw] scope
1327
1334
  # The OAuth scopes
@@ -1233,6 +1233,13 @@ module Google
1233
1233
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
1234
1234
  # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
1235
1235
  # * (`nil`) indicating no credentials
1236
+ #
1237
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
1238
+ # external source for authentication to Google Cloud, you must validate it before
1239
+ # providing it to a Google API client library. Providing an unvalidated credential
1240
+ # configuration to Google APIs can compromise the security of your systems and data.
1241
+ # For more information, refer to [Validate credential configurations from external
1242
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
1236
1243
  # @return [::Object]
1237
1244
  # @!attribute [rw] scope
1238
1245
  # The OAuth scopes
@@ -22,7 +22,7 @@ module Google
22
22
  module FleetEngine
23
23
  module Delivery
24
24
  module V1
25
- VERSION = "0.3.0"
25
+ VERSION = "0.4.0"
26
26
  end
27
27
  end
28
28
  end
@@ -39,12 +39,18 @@ module Google
39
39
  # it's strongly recommended to use `string_value`. If both `string_value`
40
40
  # and `value` are set, they must be identical or an error will be thrown.
41
41
  # Both fields are populated in responses.
42
+ #
43
+ # Note: The following fields are mutually exclusive: `string_value`, `bool_value`, `number_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
42
44
  # @!attribute [rw] bool_value
43
45
  # @return [::Boolean]
44
46
  # Boolean typed attribute value.
47
+ #
48
+ # Note: The following fields are mutually exclusive: `bool_value`, `string_value`, `number_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
45
49
  # @!attribute [rw] number_value
46
50
  # @return [::Float]
47
51
  # Double typed attribute value.
52
+ #
53
+ # Note: The following fields are mutually exclusive: `number_value`, `string_value`, `bool_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
48
54
  class DeliveryVehicleAttribute
49
55
  include ::Google::Protobuf::MessageExts
50
56
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -178,12 +184,18 @@ module Google
178
184
  # @!attribute [rw] string_value
179
185
  # @return [::String]
180
186
  # String typed attribute value.
187
+ #
188
+ # Note: The following fields are mutually exclusive: `string_value`, `bool_value`, `number_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
181
189
  # @!attribute [rw] bool_value
182
190
  # @return [::Boolean]
183
191
  # Boolean typed attribute value.
192
+ #
193
+ # Note: The following fields are mutually exclusive: `bool_value`, `string_value`, `number_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
184
194
  # @!attribute [rw] number_value
185
195
  # @return [::Float]
186
196
  # Double typed attribute value.
197
+ #
198
+ # Note: The following fields are mutually exclusive: `number_value`, `string_value`, `bool_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
187
199
  class TaskAttribute
188
200
  include ::Google::Protobuf::MessageExts
189
201
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -252,23 +252,33 @@ module Google
252
252
  # @return [::Integer]
253
253
  # This data element is visible to the end users if the remaining stop
254
254
  # count <= remaining_stop_count_threshold.
255
+ #
256
+ # Note: The following fields are mutually exclusive: `remaining_stop_count_threshold`, `duration_until_estimated_arrival_time_threshold`, `remaining_driving_distance_meters_threshold`, `always`, `never`. If a field in that set is populated, all other fields in the set will automatically be cleared.
255
257
  # @!attribute [rw] duration_until_estimated_arrival_time_threshold
256
258
  # @return [::Google::Protobuf::Duration]
257
259
  # This data element is visible to the end users if the ETA to the stop
258
260
  # <= duration_until_estimated_arrival_time_threshold.
261
+ #
262
+ # Note: The following fields are mutually exclusive: `duration_until_estimated_arrival_time_threshold`, `remaining_stop_count_threshold`, `remaining_driving_distance_meters_threshold`, `always`, `never`. If a field in that set is populated, all other fields in the set will automatically be cleared.
259
263
  # @!attribute [rw] remaining_driving_distance_meters_threshold
260
264
  # @return [::Integer]
261
265
  # This data element is visible to the end users if the remaining
262
266
  # driving distance in meters <=
263
267
  # remaining_driving_distance_meters_threshold.
268
+ #
269
+ # Note: The following fields are mutually exclusive: `remaining_driving_distance_meters_threshold`, `remaining_stop_count_threshold`, `duration_until_estimated_arrival_time_threshold`, `always`, `never`. If a field in that set is populated, all other fields in the set will automatically be cleared.
264
270
  # @!attribute [rw] always
265
271
  # @return [::Boolean]
266
272
  # If set to true, this data element is always visible to the end users
267
273
  # with no thresholds. This field cannot be set to false.
274
+ #
275
+ # Note: The following fields are mutually exclusive: `always`, `remaining_stop_count_threshold`, `duration_until_estimated_arrival_time_threshold`, `remaining_driving_distance_meters_threshold`, `never`. If a field in that set is populated, all other fields in the set will automatically be cleared.
268
276
  # @!attribute [rw] never
269
277
  # @return [::Boolean]
270
278
  # If set to true, this data element is always hidden from the end users
271
279
  # with no thresholds. This field cannot be set to false.
280
+ #
281
+ # Note: The following fields are mutually exclusive: `never`, `remaining_stop_count_threshold`, `duration_until_estimated_arrival_time_threshold`, `remaining_driving_distance_meters_threshold`, `always`. If a field in that set is populated, all other fields in the set will automatically be cleared.
272
282
  class VisibilityOption
273
283
  include ::Google::Protobuf::MessageExts
274
284
  extend ::Google::Protobuf::MessageExts::ClassMethods
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-maps-fleet_engine-delivery-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.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
@@ -120,7 +119,6 @@ homepage: https://github.com/googleapis/google-cloud-ruby
120
119
  licenses:
121
120
  - Apache-2.0
122
121
  metadata: {}
123
- post_install_message:
124
122
  rdoc_options: []
125
123
  require_paths:
126
124
  - lib
@@ -128,15 +126,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
128
126
  requirements:
129
127
  - - ">="
130
128
  - !ruby/object:Gem::Version
131
- version: '2.7'
129
+ version: '3.0'
132
130
  required_rubygems_version: !ruby/object:Gem::Requirement
133
131
  requirements:
134
132
  - - ">="
135
133
  - !ruby/object:Gem::Version
136
134
  version: '0'
137
135
  requirements: []
138
- rubygems_version: 3.5.23
139
- signing_key:
136
+ rubygems_version: 3.6.2
140
137
  specification_version: 4
141
138
  summary: Enables Fleet Engine for access to the On Demand Rides and Deliveries and
142
139
  Last Mile Fleet Solution APIs. Customer's use of Google Maps Content in the Cloud