google-apis-solar_v1 0.2.0 → 0.4.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: f4798dd9c7e9b4e77b186e8adf629469df2501a54d71591172d41c2f5a2aa2df
4
- data.tar.gz: 758a16e80dd18228b030866caa0e26cfdb254404b7c0a704a275a0697add6595
3
+ metadata.gz: 18b71eb25609e260917ee8e9c4a3d6a585887ffe7de81cec4037725172e6d22c
4
+ data.tar.gz: 277613cb7c687d76118277776e8f2442170baec86cd24c899b54410d6faefe77
5
5
  SHA512:
6
- metadata.gz: 6a6ca5898900e87189f120a3ba1cdc2f618cd7c1ae7f64c9b2fe1198394b5aaa22a0bbd422f4f52e12c97c706fbbfc552946114a826feced7a99e64a9b7be4ea
7
- data.tar.gz: 244da807e33110c2df506a5f61356de4861a999568c3e38a8781e8bd8fae9e968e6552b116ae87f5cb4502ca2721b87ec4ee3fff1838bbdec150600f2594c45a
6
+ metadata.gz: df400733541582314e5e5daee27737f50846b67fe30d851c138d840a528f04543436ef131366adb44824f50eed2b9f4afedc0b6537755fc0263fed9849fb19b0
7
+ data.tar.gz: bcad7d7463682dea1f5fa94db72249e17209eaf54e5aa491fd6ce3279568a507492b648f33627371fe3f47e8a7868fc56ead5bf52444f5cfcee270aee0a829d8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-solar_v1
2
2
 
3
+ ### v0.4.0 (2024-08-25)
4
+
5
+ * Regenerated from discovery document revision 20240820
6
+ * Regenerated using generator version 0.15.1
7
+
8
+ ### v0.3.0 (2024-05-19)
9
+
10
+ * Regenerated using generator version 0.15.0
11
+
3
12
  ### v0.2.0 (2024-05-05)
4
13
 
5
14
  * Regenerated from discovery document revision 20240430
@@ -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.2.0"
19
+ GEM_VERSION = "0.4.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.14.0"
22
+ GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240430"
25
+ REVISION = "20240820"
26
26
  end
27
27
  end
28
28
  end
@@ -54,6 +54,8 @@ module Google
54
54
  # Locates the closest building to a query point. Returns an error with code `
55
55
  # NOT_FOUND` if there are no buildings within approximately 50m of the query
56
56
  # point.
57
+ # @param [Array<String>, String] experiments
58
+ # Optional. Specifies the pre-GA features to enable.
57
59
  # @param [Float] location_latitude
58
60
  # The latitude in degrees. It must be in the range [-90.0, +90.0].
59
61
  # @param [Float] location_longitude
@@ -79,10 +81,11 @@ module Google
79
81
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
80
82
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
81
83
  # @raise [Google::Apis::AuthorizationError] Authorization is required
82
- def find_building_insight_closest(location_latitude: nil, location_longitude: nil, required_quality: nil, fields: nil, quota_user: nil, options: nil, &block)
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)
83
85
  command = make_simple_command(:get, 'v1/buildingInsights:findClosest', options)
84
86
  command.response_representation = Google::Apis::SolarV1::BuildingInsights::Representation
85
87
  command.response_class = Google::Apis::SolarV1::BuildingInsights
88
+ command.query['experiments'] = experiments unless experiments.nil?
86
89
  command.query['location.latitude'] = location_latitude unless location_latitude.nil?
87
90
  command.query['location.longitude'] = location_longitude unless location_longitude.nil?
88
91
  command.query['requiredQuality'] = required_quality unless required_quality.nil?
@@ -100,6 +103,8 @@ module Google
100
103
  # to MEDIUM. If set to true, `required_quality` is interpreted as the exact
101
104
  # required quality and only `MEDIUM` quality imagery is returned if `
102
105
  # required_quality` is set to `MEDIUM`.
106
+ # @param [Array<String>, String] experiments
107
+ # Optional. Specifies the pre-GA experiments to enable.
103
108
  # @param [Float] location_latitude
104
109
  # The latitude in degrees. It must be in the range [-90.0, +90.0].
105
110
  # @param [Float] location_longitude
@@ -141,11 +146,12 @@ module Google
141
146
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
142
147
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
143
148
  # @raise [Google::Apis::AuthorizationError] Authorization is required
144
- def get_data_layer(exact_quality_required: nil, location_latitude: nil, location_longitude: nil, pixel_size_meters: nil, radius_meters: nil, required_quality: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
149
+ def get_data_layer(exact_quality_required: nil, experiments: nil, location_latitude: nil, location_longitude: nil, pixel_size_meters: nil, radius_meters: nil, required_quality: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
145
150
  command = make_simple_command(:get, 'v1/dataLayers:get', options)
146
151
  command.response_representation = Google::Apis::SolarV1::DataLayers::Representation
147
152
  command.response_class = Google::Apis::SolarV1::DataLayers
148
153
  command.query['exactQualityRequired'] = exact_quality_required unless exact_quality_required.nil?
154
+ command.query['experiments'] = experiments unless experiments.nil?
149
155
  command.query['location.latitude'] = location_latitude unless location_latitude.nil?
150
156
  command.query['location.longitude'] = location_longitude unless location_longitude.nil?
151
157
  command.query['pixelSizeMeters'] = pixel_size_meters unless pixel_size_meters.nil?
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-solar_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-05-05 00:00:00.000000000 Z
11
+ date: 2024-08-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.14.0
19
+ version: 0.15.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.14.0
29
+ version: 0.15.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-solar_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-solar_v1/v0.2.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-solar_v1/v0.4.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-solar_v1
63
63
  post_install_message:
64
64
  rdoc_options: []