Skip to content

Commit 44a1c65

Browse files
feat(all): auto-regenerate discovery clients (#2984)
1 parent d0e0254 commit 44a1c65

32 files changed

+1171
-447
lines changed

datafusion/v1/datafusion-api.json

Lines changed: 45 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -732,7 +732,7 @@
732732
}
733733
}
734734
},
735-
"revision": "20250117",
735+
"revision": "20250122",
736736
"rootUrl": "https://datafusion.googleapis.com/",
737737
"schemas": {
738738
"Accelerator": {
@@ -1035,6 +1035,14 @@
10351035
"description": "The resource labels for instance to use to annotate any related underlying resources such as Compute Engine VMs. The character '=' is not allowed to be used within the labels.",
10361036
"type": "object"
10371037
},
1038+
"maintenanceEvents": {
1039+
"description": "Output only. The maintenance events for this instance.",
1040+
"items": {
1041+
"$ref": "MaintenanceEvent"
1042+
},
1043+
"readOnly": true,
1044+
"type": "array"
1045+
},
10381046
"maintenancePolicy": {
10391047
"$ref": "MaintenancePolicy",
10401048
"description": "Optional. Configure the maintenance policy for this instance."
@@ -1302,6 +1310,42 @@
13021310
},
13031311
"type": "object"
13041312
},
1313+
"MaintenanceEvent": {
1314+
"description": "Represents a maintenance event.",
1315+
"id": "MaintenanceEvent",
1316+
"properties": {
1317+
"endTime": {
1318+
"description": "Output only. The end time of the maintenance event provided in [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. Example: \"2024-01-02T12:04:06-06:00\" This field will be empty if the maintenance event is not yet complete.",
1319+
"format": "google-datetime",
1320+
"readOnly": true,
1321+
"type": "string"
1322+
},
1323+
"startTime": {
1324+
"description": "Output only. The start time of the maintenance event provided in [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. Example: \"2024-01-01T12:04:06-04:00\"",
1325+
"format": "google-datetime",
1326+
"readOnly": true,
1327+
"type": "string"
1328+
},
1329+
"state": {
1330+
"description": "Output only. The state of the maintenance event.",
1331+
"enum": [
1332+
"STATE_UNSPECIFIED",
1333+
"SCHEDULED",
1334+
"STARTED",
1335+
"COMPLETED"
1336+
],
1337+
"enumDescriptions": [
1338+
"The state of the maintenance event is unspecified.",
1339+
"The maintenance is scheduled but has not started.",
1340+
"The maintenance has been started.",
1341+
"The maintenance has been completed."
1342+
],
1343+
"readOnly": true,
1344+
"type": "string"
1345+
}
1346+
},
1347+
"type": "object"
1348+
},
13051349
"MaintenancePolicy": {
13061350
"description": "Maintenance policy of the instance.",
13071351
"id": "MaintenancePolicy",

datafusion/v1/datafusion-gen.go

Lines changed: 39 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

datafusion/v1beta1/datafusion-api.json

Lines changed: 45 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -930,7 +930,7 @@
930930
}
931931
}
932932
},
933-
"revision": "20241204",
933+
"revision": "20250122",
934934
"rootUrl": "https://datafusion.googleapis.com/",
935935
"schemas": {
936936
"Accelerator": {
@@ -1247,6 +1247,14 @@
12471247
"description": "The resource labels for instance to use to annotate any related underlying resources such as Compute Engine VMs. The character '=' is not allowed to be used within the labels.",
12481248
"type": "object"
12491249
},
1250+
"maintenanceEvents": {
1251+
"description": "Output only. The maintenance events for this instance.",
1252+
"items": {
1253+
"$ref": "MaintenanceEvent"
1254+
},
1255+
"readOnly": true,
1256+
"type": "array"
1257+
},
12501258
"maintenancePolicy": {
12511259
"$ref": "MaintenancePolicy",
12521260
"description": "Optional. Configure the maintenance policy for this instance."
@@ -1532,6 +1540,42 @@
15321540
},
15331541
"type": "object"
15341542
},
1543+
"MaintenanceEvent": {
1544+
"description": "Represents a maintenance event.",
1545+
"id": "MaintenanceEvent",
1546+
"properties": {
1547+
"endTime": {
1548+
"description": "Output only. The end time of the maintenance event provided in [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. Example: \"2024-01-02T12:04:06-06:00\" This field will be empty if the maintenance event is not yet complete.",
1549+
"format": "google-datetime",
1550+
"readOnly": true,
1551+
"type": "string"
1552+
},
1553+
"startTime": {
1554+
"description": "Output only. The start time of the maintenance event provided in [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. Example: \"2024-01-01T12:04:06-04:00\"",
1555+
"format": "google-datetime",
1556+
"readOnly": true,
1557+
"type": "string"
1558+
},
1559+
"state": {
1560+
"description": "Output only. The state of the maintenance event.",
1561+
"enum": [
1562+
"STATE_UNSPECIFIED",
1563+
"SCHEDULED",
1564+
"STARTED",
1565+
"COMPLETED"
1566+
],
1567+
"enumDescriptions": [
1568+
"The state of the maintenance event is unspecified.",
1569+
"The maintenance is scheduled but has not started.",
1570+
"The maintenance has been started.",
1571+
"The maintenance has been completed."
1572+
],
1573+
"readOnly": true,
1574+
"type": "string"
1575+
}
1576+
},
1577+
"type": "object"
1578+
},
15351579
"MaintenancePolicy": {
15361580
"description": "Maintenance policy of the instance.",
15371581
"id": "MaintenancePolicy",

datafusion/v1beta1/datafusion-gen.go

Lines changed: 39 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

firestore/v1/firestore-api.json

Lines changed: 25 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1711,7 +1711,7 @@
17111711
}
17121712
}
17131713
},
1714-
"revision": "20241204",
1714+
"revision": "20250120",
17151715
"rootUrl": "https://firestore.googleapis.com/",
17161716
"schemas": {
17171717
"Aggregation": {
@@ -3150,11 +3150,29 @@
31503150
"description": "The API scope supported by this index.",
31513151
"enum": [
31523152
"ANY_API",
3153-
"DATASTORE_MODE_API"
3153+
"DATASTORE_MODE_API",
3154+
"IGNITE_API"
31543155
],
31553156
"enumDescriptions": [
31563157
"The index can only be used by the Firestore Native query API. This is the default.",
3157-
"The index can only be used by the Firestore in Datastore Mode query API."
3158+
"The index can only be used by the Firestore in Datastore Mode query API.",
3159+
"The index can only be used by Ignite."
3160+
],
3161+
"type": "string"
3162+
},
3163+
"density": {
3164+
"description": "Immutable. The density configuration of the index.",
3165+
"enum": [
3166+
"DENSITY_UNSPECIFIED",
3167+
"SPARSE_ALL",
3168+
"SPARSE_ANY",
3169+
"DENSE"
3170+
],
3171+
"enumDescriptions": [
3172+
"Unspecified. It will use database default setting. This value is input only.",
3173+
"In order for an index entry to be added, the document must contain all fields specified in the index. This is the only allowed value for indexes having ApiScope `ANY_API` and `DATASTORE_MODE_API`.",
3174+
"In order for an index entry to be added, the document must contain at least one of the fields specified in the index. Non-existent fields are treated as having a NULL value when generating index entries.",
3175+
"An index entry will be added regardless of whether the document contains any of the fields specified in the index. Non-existent fields are treated as having a NULL value when generating index entries."
31583176
],
31593177
"type": "string"
31603178
},
@@ -3165,6 +3183,10 @@
31653183
},
31663184
"type": "array"
31673185
},
3186+
"multikey": {
3187+
"description": "Optional. Whether the index is multikey. By default, the index is not multikey. For non-multikey indexes, none of the paths in the index definition reach or traverse an array, except via an explicit array index. For multikey indexes, at most one of the paths in the index definition reach or traverse an array, except via an explicit array index. Violations will result in errors. Note this field only applies to index with IGNITE_API ApiScope.",
3188+
"type": "boolean"
3189+
},
31683190
"name": {
31693191
"description": "Output only. A server defined name for this index. The form of this name for composite indexes will be: `projects/{project_id}/databases/{database_id}/collectionGroups/{collection_id}/indexes/{composite_index_id}` For single field indexes, this field will be empty.",
31703192
"type": "string"

firestore/v1/firestore-gen.go

Lines changed: 24 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)