google-apis-solar_v1 0.3.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: 230a31ceaec4098aa132cf099b7634345c6814d05865fe8fe046c7cb2e464bff
4
- data.tar.gz: c2fd56ffdcc4b5383427150f497582c9bef5b553e6703ffb7d3055f0ef273845
3
+ metadata.gz: 18b71eb25609e260917ee8e9c4a3d6a585887ffe7de81cec4037725172e6d22c
4
+ data.tar.gz: 277613cb7c687d76118277776e8f2442170baec86cd24c899b54410d6faefe77
5
5
  SHA512:
6
- metadata.gz: 37ef7a46df9c1789d232a1e4269c2961df8e4b29a253620ab70bc74cdbede08d8c3b35ca8332daa0182d16b013859adfe9123e848aeef0bcc97d05502f883dc5
7
- data.tar.gz: ea26c3c312bb4f280a853b8f500e2c47b3c0add7133f965e1bffefb8cb24949212b48b50656fe890fc8675eebc28f6a18b9cc42449f09173ee73f942100b73e6
6
+ metadata.gz: df400733541582314e5e5daee27737f50846b67fe30d851c138d840a528f04543436ef131366adb44824f50eed2b9f4afedc0b6537755fc0263fed9849fb19b0
7
+ data.tar.gz: bcad7d7463682dea1f5fa94db72249e17209eaf54e5aa491fd6ce3279568a507492b648f33627371fe3f47e8a7868fc56ead5bf52444f5cfcee270aee0a829d8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
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
+
3
8
  ### v0.3.0 (2024-05-19)
4
9
 
5
10
  * Regenerated using generator version 0.15.0
@@ -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.3.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.15.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.3.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-26 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
@@ -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.3.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: []