diff --git a/discovery/firebaseml-v1beta2.json b/discovery/firebaseml-v1beta2.json index 8671954df9e..39961297014 100644 --- a/discovery/firebaseml-v1beta2.json +++ b/discovery/firebaseml-v1beta2.json @@ -296,7 +296,7 @@ } } }, - "revision": "20200822", + "revision": "20201002", "rootUrl": "https://firebaseml.googleapis.com/", "schemas": { "Empty": { @@ -489,6 +489,10 @@ "description": "Information that is specific to TfLite models.", "id": "TfLiteModel", "properties": { + "automlModel": { + "description": "The AutoML model id referencing a model you created with the AutoML API. The name should have format 'projects//locations//models/' (This is the model resource name returned from the AutoML API)", + "type": "string" + }, "gcsTfliteUri": { "description": "The TfLite file containing the model. (Stored in Google Cloud). The gcs_tflite_uri should have form: gs://some-bucket/some-model.tflite Note: If you update the file in the original location, it is necessary to call UpdateModel for ML to pick up and validate the updated file.", "type": "string" diff --git a/src/apis/firebaseml/v1beta2.ts b/src/apis/firebaseml/v1beta2.ts index 1e0a0b50f79..77747fb57d4 100644 --- a/src/apis/firebaseml/v1beta2.ts +++ b/src/apis/firebaseml/v1beta2.ts @@ -258,6 +258,10 @@ export namespace firebaseml_v1beta2 { * Information that is specific to TfLite models. */ export interface Schema$TfLiteModel { + /** + * The AutoML model id referencing a model you created with the AutoML API. The name should have format 'projects//locations//models/' (This is the model resource name returned from the AutoML API) + */ + automlModel?: string | null; /** * The TfLite file containing the model. (Stored in Google Cloud). The gcs_tflite_uri should have form: gs://some-bucket/some-model.tflite Note: If you update the file in the original location, it is necessary to call UpdateModel for ML to pick up and validate the updated file. */