google-apis-solar_v1 0.7.0 → 0.9.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: b8900cecc654473a5c6516cee09a929510f16dafdc50ea6062d8e8cee0d6f421
4
- data.tar.gz: ee8ca768898601de6c0e544f62b39f08f6faa0ae4561afc2b4504f45809962c2
3
+ metadata.gz: 269272bdc49e1b4fc08f67c4c6946732093175eb9a3d058acf0a106af43cfa14
4
+ data.tar.gz: 61fe4a9a9ecb0e7eb6b6974ef1e9ec00592e8da954f4e950f538d55c112d3cf6
5
5
  SHA512:
6
- metadata.gz: fba4916d53e0cafe832fb732efe5e64227f6d85a6737f5e15120ff206d58b1254649c88babbffb8551bca0a9654e0b6b0989587407d5072eb62ecdb09ba2e340
7
- data.tar.gz: df32a71e931b8c51dbf244678dc14ada6653ecab7f517ff6d9c6066531da80c95aee41e747fae0f21d4f01b3fea32e266fccc96643784fbaaed472107680215b
6
+ metadata.gz: a0c0bb7e7062fb4f90733b853ac3a1dcbbecb8718d37c1408c648dd707f032666eb82559de2073dccaaf7899a851c7b1b3d3b35fe50d96920e688da338b02650
7
+ data.tar.gz: 49252d5f763e9ac9deb3fc9cd393d6d831a60a7033e3799403c30292f59adfbaa3948f72013bc350d23808c410356c8d7893bd39f9f430112728613bf57bae15
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-solar_v1
2
2
 
3
+ ### v0.9.0 (2026-02-01)
4
+
5
+ * Regenerated from discovery document revision 20260125
6
+
7
+ ### v0.8.0 (2025-11-02)
8
+
9
+ * Regenerated from discovery document revision 20251027
10
+ * Regenerated using generator version 0.18.0
11
+
3
12
  ### v0.7.0 (2025-05-04)
4
13
 
5
14
  * 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.7.0"
19
+ GEM_VERSION = "0.9.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.17.0"
22
+ GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250427"
25
+ REVISION = "20260125"
26
26
  end
27
27
  end
28
28
  end
@@ -54,8 +54,19 @@ 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
- # Optional. Specifies the pre-GA features to enable.
65
+ # Optional. Specifies the pre-GA experiments to enable. Requests using this
66
+ # field are classified as a pre-GA offering under the [Google Maps Platform
67
+ # Service Specific Terms](https://cloud.google.com/maps-platform/terms/maps-
68
+ # service-terms). See [launch stage descriptions](https://cloud.google.com/maps-
69
+ # platform/terms/launch-stages) for more details.
59
70
  # @param [Float] location_latitude
60
71
  # The latitude in degrees. It must be in the range [-90.0, +90.0].
61
72
  # @param [Float] location_longitude
@@ -81,10 +92,11 @@ module Google
81
92
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
82
93
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
83
94
  # @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)
95
+ 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
96
  command = make_simple_command(:get, 'v1/buildingInsights:findClosest', options)
86
97
  command.response_representation = Google::Apis::SolarV1::BuildingInsights::Representation
87
98
  command.response_class = Google::Apis::SolarV1::BuildingInsights
99
+ command.query['exactQualityRequired'] = exact_quality_required unless exact_quality_required.nil?
88
100
  command.query['experiments'] = experiments unless experiments.nil?
89
101
  command.query['location.latitude'] = location_latitude unless location_latitude.nil?
90
102
  command.query['location.longitude'] = location_longitude unless location_longitude.nil?
@@ -104,7 +116,11 @@ module Google
104
116
  # required quality and only `MEDIUM` quality imagery is returned if `
105
117
  # required_quality` is set to `MEDIUM`.
106
118
  # @param [Array<String>, String] experiments
107
- # Optional. Specifies the pre-GA experiments to enable.
119
+ # Optional. Specifies the pre-GA experiments to enable. Requests using this
120
+ # field are classified as a pre-GA offering under the [Google Maps Platform
121
+ # Service Specific Terms](https://cloud.google.com/maps-platform/terms/maps-
122
+ # service-terms). See [launch stage descriptions]( https://cloud.google.com/maps-
123
+ # platform/terms/launch-stages) for more details.
108
124
  # @param [Float] location_latitude
109
125
  # The latitude in degrees. It must be in the range [-90.0, +90.0].
110
126
  # @param [Float] location_longitude
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.7.0
4
+ version: 0.9.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.7.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-solar_v1/v0.9.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.8
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: []