Synchronize new proto/yaml changes.

PiperOrigin-RevId: 253867808
diff --git a/google/cloud/videointelligence/v1p3beta1/video_intelligence.proto b/google/cloud/videointelligence/v1p3beta1/video_intelligence.proto
index 763413b..45059d2 100644
--- a/google/cloud/videointelligence/v1p3beta1/video_intelligence.proto
+++ b/google/cloud/videointelligence/v1p3beta1/video_intelligence.proto
@@ -711,6 +711,20 @@
   string annotation_results_uri = 3;
 }
 
+// Config for AUTOML_CLASSIFICATION in streaming mode.
+message StreamingAutomlClassificationConfig {
+  // Resource name of AutoML model.
+  // Format: `projects/{project_id}/locations/{location_id}/models/{model_id}`
+  string model_name = 1;
+}
+
+// Config for AUTOML_OBJECT_TRACKING in streaming mode.
+message StreamingAutomlObjectTrackingConfig {
+  // Resource name of AutoML model.
+  // Format: `projects/{project_id}/locations/{location_id}/models/{model_id}`
+  string model_name = 1;
+}
+
 // Config for EXPLICIT_CONTENT_DETECTION in streaming mode.
 message StreamingExplicitContentDetectionConfig {
   // No customized config support.
@@ -788,6 +802,12 @@
 
     // Config for STREAMING_OBJECT_TRACKING.
     StreamingObjectTrackingConfig object_tracking_config = 5;
+
+    // Config for STREAMING_AUTOML_CLASSIFICATION.
+    StreamingAutomlClassificationConfig automl_classification_config = 21;
+
+    // Config for STREAMING_AUTOML_OBJECT_TRACKING.
+    StreamingAutomlObjectTrackingConfig automl_object_tracking_config = 22;
   }
 
   // Streaming storage option. By default: storage is disabled.
@@ -869,4 +889,8 @@
   STREAMING_EXPLICIT_CONTENT_DETECTION = 3;
   // Object detection and tracking.
   STREAMING_OBJECT_TRACKING = 4;
+  // Video classification based on AutoML model.
+  STREAMING_AUTOML_CLASSIFICATION = 21;
+  // Object detection and tracking based on AutoML model.
+  STREAMING_AUTOML_OBJECT_TRACKING = 22;
 }