Skip to content

Commit

Permalink
feat(all): auto-regenerate discovery clients (#2308)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation authored Dec 16, 2023
1 parent 96c0dea commit 8c26aa7
Show file tree
Hide file tree
Showing 6 changed files with 227 additions and 3 deletions.
10 changes: 9 additions & 1 deletion dialogflow/v2beta1/dialogflow-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -7695,7 +7695,7 @@
}
}
},
"revision": "20231204",
"revision": "20231208",
"rootUrl": "https://dialogflow.googleapis.com/",
"schemas": {
"GoogleCloudDialogflowCxV3AdvancedSettings": {
Expand Down Expand Up @@ -16138,6 +16138,10 @@
"description": "Optional. Disable the logging of search queries sent by human agents. It can prevent those queries from being stored at answer records. Supported features: KNOWLEDGE_SEARCH.",
"type": "boolean"
},
"enableConversationAugmentedQuery": {
"description": "Optional. Enable including conversation context during query answer generation. Supported features: KNOWLEDGE_SEARCH.",
"type": "boolean"
},
"enableEventBasedSuggestion": {
"description": "Automatically iterates all participants and tries to compile suggestions. Supported features: ARTICLE_SUGGESTION, FAQ, DIALOGFLOW_ASSIST, ENTITY_EXTRACTION, KNOWLEDGE_ASSIST.",
"type": "boolean"
Expand Down Expand Up @@ -18871,6 +18875,10 @@
"$ref": "GoogleCloudDialogflowV2beta1SearchKnowledgeAnswer"
},
"type": "array"
},
"rewrittenQuery": {
"description": "The rewritten query used to search knowledge.",
"type": "string"
}
},
"type": "object"
Expand Down
8 changes: 8 additions & 0 deletions dialogflow/v2beta1/dialogflow-gen.go

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

6 changes: 5 additions & 1 deletion dialogflow/v3/dialogflow-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -4337,7 +4337,7 @@
}
}
},
"revision": "20231204",
"revision": "20231208",
"rootUrl": "https://dialogflow.googleapis.com/",
"schemas": {
"GoogleCloudDialogflowCxV3AdvancedSettings": {
Expand Down Expand Up @@ -6327,6 +6327,10 @@
"businessDescription": {
"description": "Company description, used for LLM prompt, e.g. \"a family company selling freshly roasted coffee beans\".",
"type": "string"
},
"disableDataStoreFallback": {
"description": "Whether to disable fallback to Data Store search results (in case the LLM couldn't pick a proper answer). Per default the feature is enabled.",
"type": "boolean"
}
},
"type": "object"
Expand Down
5 changes: 5 additions & 0 deletions dialogflow/v3/dialogflow-gen.go

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

44 changes: 43 additions & 1 deletion healthcare/v1beta1/healthcare-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -3289,6 +3289,44 @@
}
},
"resources": {
"bulkdata": {
"methods": {
"retrieveBulkdata": {
"description": "Returns uncompressed, unencoded bytes representing the referenced bulkdata tag from an instance. See [Retrieve Transaction] (http://dicom.nema.org/medical/dicom/current/output/html/part18.html#sect_10.4){: .external}.",
"flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/datasets/{datasetsId}/dicomStores/{dicomStoresId}/dicomWeb/studies/{studiesId}/series/{seriesId}/instances/{instancesId}/bulkdata/{bulkdataId}/{bulkdataId1}",
"httpMethod": "GET",
"id": "healthcare.projects.locations.datasets.dicomStores.studies.series.instances.bulkdata.retrieveBulkdata",
"parameterOrder": [
"parent",
"dicomWebPath"
],
"parameters": {
"dicomWebPath": {
"description": "Required. The path for the `RetrieveBulkdata` DICOMweb request. For example, `studies/{study_uid}/series/{series_uid}/instances/{instance_uid}/bukdata/{bulkdata_uri}`.",
"location": "path",
"pattern": "^studies/[^/]+/series/[^/]+/instances/[^/]+/bulkdata/[^/]+/.*$",
"required": true,
"type": "string"
},
"parent": {
"description": "Required. The name of the DICOM store that is being accessed. For example, `projects/{project_id}/locations/{location_id}/datasets/{dataset_id}/dicomStores/{dicom_store_id}`.",
"location": "path",
"pattern": "^projects/[^/]+/locations/[^/]+/datasets/[^/]+/dicomStores/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1beta1/{+parent}/dicomWeb/{+dicomWebPath}",
"response": {
"$ref": "HttpBody"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-healthcare",
"https://www.googleapis.com/auth/cloud-platform"
]
}
}
},
"frames": {
"methods": {
"retrieveFrames": {
Expand Down Expand Up @@ -5451,7 +5489,7 @@
}
}
},
"revision": "20231127",
"revision": "20231205",
"rootUrl": "https://healthcare.googleapis.com/",
"schemas": {
"AccessDeterminationLogConfig": {
Expand Down Expand Up @@ -7264,6 +7302,10 @@
"description": "Immutable. Whether to disable resource versioning for this FHIR store. This field can not be changed after the creation of FHIR store. If set to false, which is the default behavior, all write operations cause historical versions to be recorded automatically. The historical versions can be fetched through the history APIs, but cannot be updated. If set to true, no historical versions are kept. The server sends errors for attempts to read the historical versions.",
"type": "boolean"
},
"enableHistoryModifications": {
"description": "Optional. Whether to allow the [ImportResourcesHistory] and [ExecuteBundle] APIs to accept history bundles, and directly insert and overwrite historical resource versions into the FHIR store. Importing resource histories creates resource interactions that have occurred in the past that clients might not allow. If set to false, using history bundles fail with an error.",
"type": "boolean"
},
"enableUpdateCreate": {
"description": "Whether this FHIR store has the [updateCreate capability](https://www.hl7.org/fhir/capabilitystatement-definitions.html#CapabilityStatement.rest.resource.updateCreate). This determines if the client can use an Update operation to create a new resource with a client-specified ID. If false, all IDs are server-assigned through the Create operation and attempts to update a non-existent resource return errors. It is strongly advised not to include or encode any sensitive data such as patient identifiers in client-specified resource IDs. Those IDs are part of the FHIR resource path recorded in Cloud audit logs and Pub/Sub notifications. Those IDs can also be contained in reference fields within other resources.",
"type": "boolean"
Expand Down
157 changes: 157 additions & 0 deletions healthcare/v1beta1/healthcare-gen.go

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

0 comments on commit 8c26aa7

Please sign in to comment.