Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(all): auto-regenerate discovery clients #2984

Merged
merged 1 commit into from
Jan 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 45 additions & 1 deletion datafusion/v1/datafusion-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -732,7 +732,7 @@
}
}
},
"revision": "20250117",
"revision": "20250122",
"rootUrl": "https://datafusion.googleapis.com/",
"schemas": {
"Accelerator": {
Expand Down Expand Up @@ -1035,6 +1035,14 @@
"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.",
"type": "object"
},
"maintenanceEvents": {
"description": "Output only. The maintenance events for this instance.",
"items": {
"$ref": "MaintenanceEvent"
},
"readOnly": true,
"type": "array"
},
"maintenancePolicy": {
"$ref": "MaintenancePolicy",
"description": "Optional. Configure the maintenance policy for this instance."
Expand Down Expand Up @@ -1302,6 +1310,42 @@
},
"type": "object"
},
"MaintenanceEvent": {
"description": "Represents a maintenance event.",
"id": "MaintenanceEvent",
"properties": {
"endTime": {
"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.",
"format": "google-datetime",
"readOnly": true,
"type": "string"
},
"startTime": {
"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\"",
"format": "google-datetime",
"readOnly": true,
"type": "string"
},
"state": {
"description": "Output only. The state of the maintenance event.",
"enum": [
"STATE_UNSPECIFIED",
"SCHEDULED",
"STARTED",
"COMPLETED"
],
"enumDescriptions": [
"The state of the maintenance event is unspecified.",
"The maintenance is scheduled but has not started.",
"The maintenance has been started.",
"The maintenance has been completed."
],
"readOnly": true,
"type": "string"
}
},
"type": "object"
},
"MaintenancePolicy": {
"description": "Maintenance policy of the instance.",
"id": "MaintenancePolicy",
Expand Down
39 changes: 39 additions & 0 deletions datafusion/v1/datafusion-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

46 changes: 45 additions & 1 deletion datafusion/v1beta1/datafusion-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -930,7 +930,7 @@
}
}
},
"revision": "20241204",
"revision": "20250122",
"rootUrl": "https://datafusion.googleapis.com/",
"schemas": {
"Accelerator": {
Expand Down Expand Up @@ -1247,6 +1247,14 @@
"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.",
"type": "object"
},
"maintenanceEvents": {
"description": "Output only. The maintenance events for this instance.",
"items": {
"$ref": "MaintenanceEvent"
},
"readOnly": true,
"type": "array"
},
"maintenancePolicy": {
"$ref": "MaintenancePolicy",
"description": "Optional. Configure the maintenance policy for this instance."
Expand Down Expand Up @@ -1532,6 +1540,42 @@
},
"type": "object"
},
"MaintenanceEvent": {
"description": "Represents a maintenance event.",
"id": "MaintenanceEvent",
"properties": {
"endTime": {
"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.",
"format": "google-datetime",
"readOnly": true,
"type": "string"
},
"startTime": {
"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\"",
"format": "google-datetime",
"readOnly": true,
"type": "string"
},
"state": {
"description": "Output only. The state of the maintenance event.",
"enum": [
"STATE_UNSPECIFIED",
"SCHEDULED",
"STARTED",
"COMPLETED"
],
"enumDescriptions": [
"The state of the maintenance event is unspecified.",
"The maintenance is scheduled but has not started.",
"The maintenance has been started.",
"The maintenance has been completed."
],
"readOnly": true,
"type": "string"
}
},
"type": "object"
},
"MaintenancePolicy": {
"description": "Maintenance policy of the instance.",
"id": "MaintenancePolicy",
Expand Down
39 changes: 39 additions & 0 deletions datafusion/v1beta1/datafusion-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 25 additions & 3 deletions firestore/v1/firestore-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1711,7 +1711,7 @@
}
}
},
"revision": "20241204",
"revision": "20250120",
"rootUrl": "https://firestore.googleapis.com/",
"schemas": {
"Aggregation": {
Expand Down Expand Up @@ -3150,11 +3150,29 @@
"description": "The API scope supported by this index.",
"enum": [
"ANY_API",
"DATASTORE_MODE_API"
"DATASTORE_MODE_API",
"IGNITE_API"
],
"enumDescriptions": [
"The index can only be used by the Firestore Native query API. This is the default.",
"The index can only be used by the Firestore in Datastore Mode query API."
"The index can only be used by the Firestore in Datastore Mode query API.",
"The index can only be used by Ignite."
],
"type": "string"
},
"density": {
"description": "Immutable. The density configuration of the index.",
"enum": [
"DENSITY_UNSPECIFIED",
"SPARSE_ALL",
"SPARSE_ANY",
"DENSE"
],
"enumDescriptions": [
"Unspecified. It will use database default setting. This value is input only.",
"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`.",
"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.",
"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."
],
"type": "string"
},
Expand All @@ -3165,6 +3183,10 @@
},
"type": "array"
},
"multikey": {
"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.",
"type": "boolean"
},
"name": {
"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.",
"type": "string"
Expand Down
24 changes: 24 additions & 0 deletions firestore/v1/firestore-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading