Skip to content

Commit a345662

Browse files
yoshi-automationmiguelvelezsa
authored andcommitted
feat(solar): update the API
#### solar:v1 The following keys were added: - resources.buildingInsights.methods.findClosest.parameters.exactQualityRequired.description - resources.buildingInsights.methods.findClosest.parameters.exactQualityRequired.location - resources.buildingInsights.methods.findClosest.parameters.exactQualityRequired.type
1 parent a8bdeb6 commit a345662

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

discovery/solar-v1.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,11 @@
114114
"id": "solar.buildingInsights.findClosest",
115115
"parameterOrder": [],
116116
"parameters": {
117+
"exactQualityRequired": {
118+
"description": "Optional. Whether to require exact quality of the imagery. If set to false, the `required_quality` field is interpreted as the minimum required quality, such that HIGH quality imagery may be returned when `required_quality` is set to MEDIUM. If set to true, `required_quality` is interpreted as the exact required quality and only `MEDIUM` quality imagery is returned if `required_quality` is set to `MEDIUM`.",
119+
"location": "query",
120+
"type": "boolean"
121+
},
117122
"experiments": {
118123
"description": "Optional. Specifies the pre-GA features to enable.",
119124
"enum": [
@@ -299,7 +304,7 @@
299304
}
300305
}
301306
},
302-
"revision": "20250804",
307+
"revision": "20251027",
303308
"rootUrl": "https://solar.googleapis.com/",
304309
"schemas": {
305310
"BuildingInsights": {

src/apis/solar/v1.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -681,6 +681,8 @@ export namespace solar_v1 {
681681
*
682682
* // Do the magic
683683
* const res = await solar.buildingInsights.findClosest({
684+
* // Optional. Whether to require exact quality of the imagery. If set to false, the `required_quality` field is interpreted as the minimum required quality, such that HIGH quality imagery may be returned when `required_quality` is set to MEDIUM. If set to true, `required_quality` is interpreted as the exact required quality and only `MEDIUM` quality imagery is returned if `required_quality` is set to `MEDIUM`.
685+
* exactQualityRequired: 'placeholder-value',
684686
* // Optional. Specifies the pre-GA features to enable.
685687
* experiments: 'placeholder-value',
686688
* // The latitude in degrees. It must be in the range [-90.0, +90.0].
@@ -806,6 +808,10 @@ export namespace solar_v1 {
806808

807809
export interface Params$Resource$Buildinginsights$Findclosest
808810
extends StandardParameters {
811+
/**
812+
* Optional. Whether to require exact quality of the imagery. If set to false, the `required_quality` field is interpreted as the minimum required quality, such that HIGH quality imagery may be returned when `required_quality` is set to MEDIUM. If set to true, `required_quality` is interpreted as the exact required quality and only `MEDIUM` quality imagery is returned if `required_quality` is set to `MEDIUM`.
813+
*/
814+
exactQualityRequired?: boolean;
809815
/**
810816
* Optional. Specifies the pre-GA features to enable.
811817
*/

0 commit comments

Comments
 (0)