google-apis-solar_v1 0.7.0 → 0.8.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/CHANGELOG.md +5 -0
- data/lib/google/apis/solar_v1/gem_version.rb +3 -3
- data/lib/google/apis/solar_v1/service.rb +9 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: be7cf9a5ebb7398dfe7ec5ce6474aeed7e40fb0b1ac88f30400344aa93d8a0e2
|
|
4
|
+
data.tar.gz: adc24d1252ddc375c71586a540001d0507870c3e721808bb74d78422426b03f7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 127b21e9edc54d3363965d756ee9b95dea1cd9f5f56101e0f9a4e224a545551e5c8cd9e353ab50779141e2c0715a508b01d075c93f8fbcb650be12c9f67dfcc1
|
|
7
|
+
data.tar.gz: 80d3ca2953248ea6daca623ce62d258c8efb9bc0bec6c1d294238882656626c91b6e3316a9db1ce3d0d48ba74f3a029d1ef64bd8f358ddba45fe8d88ac35e30a
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Release history for google-apis-solar_v1
|
|
2
2
|
|
|
3
|
+
### v0.8.0 (2025-11-02)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251027
|
|
6
|
+
* Regenerated using generator version 0.18.0
|
|
7
|
+
|
|
3
8
|
### v0.7.0 (2025-05-04)
|
|
4
9
|
|
|
5
10
|
* Regenerated from discovery document revision 20250427
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module SolarV1
|
|
18
18
|
# Version of the google-apis-solar_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.8.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20251027"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -54,6 +54,13 @@ module Google
|
|
|
54
54
|
# Locates the building whose centroid is closest to a query point. Returns an
|
|
55
55
|
# error with code `NOT_FOUND` if there are no buildings within approximately 50m
|
|
56
56
|
# of the query point.
|
|
57
|
+
# @param [Boolean] exact_quality_required
|
|
58
|
+
# Optional. Whether to require exact quality of the imagery. If set to false,
|
|
59
|
+
# the `required_quality` field is interpreted as the minimum required quality,
|
|
60
|
+
# such that HIGH quality imagery may be returned when `required_quality` is set
|
|
61
|
+
# to MEDIUM. If set to true, `required_quality` is interpreted as the exact
|
|
62
|
+
# required quality and only `MEDIUM` quality imagery is returned if `
|
|
63
|
+
# required_quality` is set to `MEDIUM`.
|
|
57
64
|
# @param [Array<String>, String] experiments
|
|
58
65
|
# Optional. Specifies the pre-GA features to enable.
|
|
59
66
|
# @param [Float] location_latitude
|
|
@@ -81,10 +88,11 @@ module Google
|
|
|
81
88
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
82
89
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
83
90
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
84
|
-
def find_building_insight_closest(experiments: nil, location_latitude: nil, location_longitude: nil, required_quality: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
91
|
+
def find_building_insight_closest(exact_quality_required: nil, experiments: nil, location_latitude: nil, location_longitude: nil, required_quality: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
85
92
|
command = make_simple_command(:get, 'v1/buildingInsights:findClosest', options)
|
|
86
93
|
command.response_representation = Google::Apis::SolarV1::BuildingInsights::Representation
|
|
87
94
|
command.response_class = Google::Apis::SolarV1::BuildingInsights
|
|
95
|
+
command.query['exactQualityRequired'] = exact_quality_required unless exact_quality_required.nil?
|
|
88
96
|
command.query['experiments'] = experiments unless experiments.nil?
|
|
89
97
|
command.query['location.latitude'] = location_latitude unless location_latitude.nil?
|
|
90
98
|
command.query['location.longitude'] = location_longitude unless location_longitude.nil?
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-solar_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.8.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-solar_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-solar_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-solar_v1/v0.8.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-solar_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
73
73
|
- !ruby/object:Gem::Version
|
|
74
74
|
version: '0'
|
|
75
75
|
requirements: []
|
|
76
|
-
rubygems_version: 3.6.
|
|
76
|
+
rubygems_version: 3.6.9
|
|
77
77
|
specification_version: 4
|
|
78
78
|
summary: Simple REST client for Solar API V1
|
|
79
79
|
test_files: []
|