google-maps-isochrones-v1 0.a → 0.1.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 +4 -4
- data/.yardopts +12 -0
- data/AUTHENTICATION.md +122 -0
- data/README.md +153 -8
- data/lib/google/maps/isochrones/v1/isochrone_service/client.rb +497 -0
- data/lib/google/maps/isochrones/v1/isochrone_service/credentials.rb +48 -0
- data/lib/google/maps/isochrones/v1/isochrone_service/paths.rb +47 -0
- data/lib/google/maps/isochrones/v1/isochrone_service/rest/client.rb +455 -0
- data/lib/google/maps/isochrones/v1/isochrone_service/rest/service_stub.rb +141 -0
- data/lib/google/maps/isochrones/v1/isochrone_service/rest.rb +53 -0
- data/lib/google/maps/isochrones/v1/isochrone_service.rb +56 -0
- data/lib/google/maps/isochrones/v1/isochrones_service_pb.rb +35 -0
- data/lib/google/maps/isochrones/v1/isochrones_service_services_pb.rb +46 -0
- data/lib/google/maps/isochrones/v1/rest.rb +37 -0
- data/lib/google/maps/isochrones/v1/version.rb +7 -2
- data/lib/google/maps/isochrones/v1.rb +45 -0
- data/lib/google-maps-isochrones-v1.rb +21 -0
- data/proto_docs/README.md +4 -0
- data/proto_docs/google/api/client.rb +593 -0
- data/proto_docs/google/api/field_behavior.rb +85 -0
- data/proto_docs/google/api/launch_stage.rb +71 -0
- data/proto_docs/google/api/resource.rb +227 -0
- data/proto_docs/google/maps/isochrones/v1/isochrones_service.rb +147 -0
- data/proto_docs/google/protobuf/duration.rb +98 -0
- data/proto_docs/google/protobuf/struct.rb +108 -0
- data/proto_docs/google/type/latlng.rb +38 -0
- metadata +58 -9
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# Copyright 2026 Google LLC
|
|
4
|
+
#
|
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
# you may not use this file except in compliance with the License.
|
|
7
|
+
# You may obtain a copy of the License at
|
|
8
|
+
#
|
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
#
|
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
+
# See the License for the specific language governing permissions and
|
|
15
|
+
# limitations under the License.
|
|
16
|
+
|
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
module Google
|
|
21
|
+
module Type
|
|
22
|
+
# An object that represents a latitude/longitude pair. This is expressed as a
|
|
23
|
+
# pair of doubles to represent degrees latitude and degrees longitude. Unless
|
|
24
|
+
# specified otherwise, this object must conform to the
|
|
25
|
+
# <a href="https://en.wikipedia.org/wiki/World_Geodetic_System#1984_version">
|
|
26
|
+
# WGS84 standard</a>. Values must be within normalized ranges.
|
|
27
|
+
# @!attribute [rw] latitude
|
|
28
|
+
# @return [::Float]
|
|
29
|
+
# The latitude in degrees. It must be in the range [-90.0, +90.0].
|
|
30
|
+
# @!attribute [rw] longitude
|
|
31
|
+
# @return [::Float]
|
|
32
|
+
# The longitude in degrees. It must be in the range [-180.0, +180.0].
|
|
33
|
+
class LatLng
|
|
34
|
+
include ::Google::Protobuf::MessageExts
|
|
35
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
36
|
+
end
|
|
37
|
+
end
|
|
38
|
+
end
|
metadata
CHANGED
|
@@ -1,27 +1,76 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-maps-isochrones-v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
8
8
|
bindir: bin
|
|
9
9
|
cert_chain: []
|
|
10
10
|
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
-
dependencies:
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
11
|
+
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: gapic-common
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - "~>"
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: '1.3'
|
|
19
|
+
type: :runtime
|
|
20
|
+
prerelease: false
|
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
22
|
+
requirements:
|
|
23
|
+
- - "~>"
|
|
24
|
+
- !ruby/object:Gem::Version
|
|
25
|
+
version: '1.3'
|
|
26
|
+
- !ruby/object:Gem::Dependency
|
|
27
|
+
name: google-cloud-errors
|
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
|
29
|
+
requirements:
|
|
30
|
+
- - "~>"
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '1.0'
|
|
33
|
+
type: :runtime
|
|
34
|
+
prerelease: false
|
|
35
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - "~>"
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '1.0'
|
|
40
|
+
description: isochrones.googleapis.com API. Note that google-maps-isochrones-v1 is
|
|
41
|
+
a version-specific client library. For most uses, we recommend installing the main
|
|
42
|
+
client library google-maps-isochrones instead. See the readme for more details.
|
|
17
43
|
email: googleapis-packages@google.com
|
|
18
44
|
executables: []
|
|
19
45
|
extensions: []
|
|
20
46
|
extra_rdoc_files: []
|
|
21
47
|
files:
|
|
48
|
+
- ".yardopts"
|
|
49
|
+
- AUTHENTICATION.md
|
|
22
50
|
- LICENSE.md
|
|
23
51
|
- README.md
|
|
52
|
+
- lib/google-maps-isochrones-v1.rb
|
|
53
|
+
- lib/google/maps/isochrones/v1.rb
|
|
54
|
+
- lib/google/maps/isochrones/v1/isochrone_service.rb
|
|
55
|
+
- lib/google/maps/isochrones/v1/isochrone_service/client.rb
|
|
56
|
+
- lib/google/maps/isochrones/v1/isochrone_service/credentials.rb
|
|
57
|
+
- lib/google/maps/isochrones/v1/isochrone_service/paths.rb
|
|
58
|
+
- lib/google/maps/isochrones/v1/isochrone_service/rest.rb
|
|
59
|
+
- lib/google/maps/isochrones/v1/isochrone_service/rest/client.rb
|
|
60
|
+
- lib/google/maps/isochrones/v1/isochrone_service/rest/service_stub.rb
|
|
61
|
+
- lib/google/maps/isochrones/v1/isochrones_service_pb.rb
|
|
62
|
+
- lib/google/maps/isochrones/v1/isochrones_service_services_pb.rb
|
|
63
|
+
- lib/google/maps/isochrones/v1/rest.rb
|
|
24
64
|
- lib/google/maps/isochrones/v1/version.rb
|
|
65
|
+
- proto_docs/README.md
|
|
66
|
+
- proto_docs/google/api/client.rb
|
|
67
|
+
- proto_docs/google/api/field_behavior.rb
|
|
68
|
+
- proto_docs/google/api/launch_stage.rb
|
|
69
|
+
- proto_docs/google/api/resource.rb
|
|
70
|
+
- proto_docs/google/maps/isochrones/v1/isochrones_service.rb
|
|
71
|
+
- proto_docs/google/protobuf/duration.rb
|
|
72
|
+
- proto_docs/google/protobuf/struct.rb
|
|
73
|
+
- proto_docs/google/type/latlng.rb
|
|
25
74
|
homepage: https://github.com/googleapis/google-cloud-ruby
|
|
26
75
|
licenses:
|
|
27
76
|
- Apache-2.0
|
|
@@ -33,7 +82,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
33
82
|
requirements:
|
|
34
83
|
- - ">="
|
|
35
84
|
- !ruby/object:Gem::Version
|
|
36
|
-
version: '3.
|
|
85
|
+
version: '3.2'
|
|
37
86
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
38
87
|
requirements:
|
|
39
88
|
- - ">="
|
|
@@ -42,5 +91,5 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
42
91
|
requirements: []
|
|
43
92
|
rubygems_version: 3.6.9
|
|
44
93
|
specification_version: 4
|
|
45
|
-
summary:
|
|
94
|
+
summary: isochrones.googleapis.com API.
|
|
46
95
|
test_files: []
|