chore: update docs/dyn (#1106)

diff --git a/docs/dyn/datalabeling_v1beta1.projects.datasets.annotatedDatasets.html b/docs/dyn/datalabeling_v1beta1.projects.datasets.annotatedDatasets.html
index c3f34fb..e6e77b5 100644
--- a/docs/dyn/datalabeling_v1beta1.projects.datasets.annotatedDatasets.html
+++ b/docs/dyn/datalabeling_v1beta1.projects.datasets.annotatedDatasets.html
@@ -143,13 +143,25 @@
   An object of the form:
 
     { # AnnotatedDataset is a set holding annotations for data in a Dataset. Each labeling task will generate an AnnotatedDataset under the Dataset that the task is requested for.
+    "blockingResources": [ # Output only. The names of any related resources that are blocking changes to the annotated dataset.
+      "A String",
+    ],
+    "name": "A String", # Output only. AnnotatedDataset resource name in format of: projects/{project_id}/datasets/{dataset_id}/annotatedDatasets/ {annotated_dataset_id}
+    "description": "A String", # Output only. The description of the AnnotatedDataset. It is specified in HumanAnnotationConfig when user starts a labeling task. Maximum of 10000 characters.
     "labelStats": { # Statistics about annotation specs. # Output only. Per label statistics.
       "exampleCount": { # Map of each annotation spec's example count. Key is the annotation spec name and value is the number of examples for that annotation spec. If the annotated dataset does not have annotation spec, the map will return a pair where the key is empty string and value is the total number of annotations.
         "a_key": "A String",
       },
     },
-    "annotationType": "A String", # Output only. Type of the annotation. It is specified when starting labeling task.
     "metadata": { # Metadata on AnnotatedDataset. # Output only. Additional information about AnnotatedDataset.
+      "objectTrackingConfig": { # Config for video object tracking human labeling task. # Configuration for video object tracking task.
+        "annotationSpecSet": "A String", # Required. Annotation spec set resource name.
+        "overlapLength": 42, # The overlap length between different video clips. Users can configure is field in seconds, if not set, default value is 0.3s.
+        "clipLength": 42, # Videos will be cut to smaller clips to make it easier for labelers to work on. Users can configure is field in seconds, if not set, default value is 20s.
+      },
+      "textEntityExtractionConfig": { # Config for text entity extraction human labeling task. # Configuration for text entity extraction task.
+        "annotationSpecSet": "A String", # Required. Annotation spec set resource name.
+      },
       "imageClassificationConfig": { # Config for image classification human labeling task. # Configuration for image classification task.
         "answerAggregationType": "A String", # Optional. The type of how to aggregate answers.
         "annotationSpecSet": "A String", # Required. Annotation spec set resource name.
@@ -159,73 +171,61 @@
         "applyShotDetection": True or False, # Optional. Option to apply shot detection on the video.
         "annotationSpecSetConfigs": [ # Required. The list of annotation spec set configs. Since watching a video clip takes much longer time than an image, we support label with multiple AnnotationSpecSet at the same time. Labels in each AnnotationSpecSet will be shown in a group to contributors. Contributors can select one or more (depending on whether to allow multi label) from each group.
           { # Annotation spec set with the setting of allowing multi labels or not.
-            "allowMultiLabel": True or False, # Optional. If allow_multi_label is true, contributors are able to choose multiple labels from one annotation spec set.
             "annotationSpecSet": "A String", # Required. Annotation spec set resource name.
+            "allowMultiLabel": True or False, # Optional. If allow_multi_label is true, contributors are able to choose multiple labels from one annotation spec set.
           },
         ],
       },
-      "textClassificationConfig": { # Config for text classification human labeling task. # Configuration for text classification task.
-        "sentimentConfig": { # Config for setting up sentiments. # Optional. Configs for sentiment selection.
-          "enableLabelSentimentSelection": True or False, # If set to true, contributors will have the option to select sentiment of the label they selected, to mark it as negative or positive label. Default is false.
-        },
-        "annotationSpecSet": "A String", # Required. Annotation spec set resource name.
-        "allowMultiLabel": True or False, # Optional. If allow_multi_label is true, contributors are able to choose multiple labels for one text segment.
-      },
-      "textEntityExtractionConfig": { # Config for text entity extraction human labeling task. # Configuration for text entity extraction task.
-        "annotationSpecSet": "A String", # Required. Annotation spec set resource name.
-      },
       "polylineConfig": { # Config for image polyline human labeling task. # Configuration for image polyline task.
-        "annotationSpecSet": "A String", # Required. Annotation spec set resource name.
         "instructionMessage": "A String", # Optional. Instruction message showed on contributors UI.
-      },
-      "humanAnnotationConfig": { # Configuration for how human labeling task should be done. # HumanAnnotationConfig used when requesting the human labeling task for this AnnotatedDataset.
-        "questionDuration": "A String", # Optional. Maximum duration for contributors to answer a question. Maximum is 3600 seconds. Default is 3600 seconds.
-        "languageCode": "A String", # Optional. The Language of this question, as a [BCP-47](https://www.rfc-editor.org/rfc/bcp/bcp47.txt). Default value is en-US. Only need to set this when task is language related. For example, French text classification.
-        "userEmailAddress": "A String", # Email of the user who started the labeling task and should be notified by email. If empty no notification will be sent.
-        "instruction": "A String", # Required. Instruction resource name.
-        "contributorEmails": [ # Optional. If you want your own labeling contributors to manage and work on this labeling request, you can set these contributors here. We will give them access to the question types in crowdcompute. Note that these emails must be registered in crowdcompute worker UI: https://crowd-compute.appspot.com/
-          "A String",
-        ],
-        "labelGroup": "A String", # Optional. A human-readable label used to logically group labeling tasks. This string must match the regular expression `[a-zA-Z\\d_-]{0,128}`.
-        "replicaCount": 42, # Optional. Replication of questions. Each question will be sent to up to this number of contributors to label. Aggregated answers will be returned. Default is set to 1. For image related labeling, valid values are 1, 3, 5.
-        "annotatedDatasetDescription": "A String", # Optional. A human-readable description for AnnotatedDataset. The description can be up to 10000 characters long.
-        "annotatedDatasetDisplayName": "A String", # Required. A human-readable name for AnnotatedDataset defined by users. Maximum of 64 characters .
-      },
-      "objectDetectionConfig": { # Config for video object detection human labeling task. Object detection will be conducted on the images extracted from the video, and those objects will be labeled with bounding boxes. User need to specify the number of images to be extracted per second as the extraction frame rate. # Configuration for video object detection task.
         "annotationSpecSet": "A String", # Required. Annotation spec set resource name.
-        "extractionFrameRate": 3.14, # Required. Number of frames per second to be extracted from the video.
-      },
-      "objectTrackingConfig": { # Config for video object tracking human labeling task. # Configuration for video object tracking task.
-        "annotationSpecSet": "A String", # Required. Annotation spec set resource name.
-        "overlapLength": 42, # The overlap length between different video clips. Users can configure is field in seconds, if not set, default value is 0.3s.
-        "clipLength": 42, # Videos will be cut to smaller clips to make it easier for labelers to work on. Users can configure is field in seconds, if not set, default value is 20s.
-      },
-      "eventConfig": { # Config for video event human labeling task. # Configuration for video event labeling task.
-        "annotationSpecSets": [ # Required. The list of annotation spec set resource name. Similar to video classification, we support selecting event from multiple AnnotationSpecSet at the same time.
-          "A String",
-        ],
-        "overlapLength": 42, # The overlap length between different video clips. Users can configure is field in seconds, if not set, default value is 1s.
-        "clipLength": 42, # Videos will be cut to smaller clips to make it easier for labelers to work on. Users can configure is field in seconds, if not set, default value is 60s.
-      },
-      "segmentationConfig": { # Config for image segmentation # Configuration for image segmentation task.
-        "annotationSpecSet": "A String", # Required. Annotation spec set resource name. format: projects/{project_id}/annotationSpecSets/{annotation_spec_set_id}
-        "instructionMessage": "A String", # Instruction message showed on labelers UI.
       },
       "boundingPolyConfig": { # Config for image bounding poly (and bounding box) human labeling task. # Configuration for image bounding box and bounding poly task.
         "annotationSpecSet": "A String", # Required. Annotation spec set resource name.
         "instructionMessage": "A String", # Optional. Instruction message showed on contributors UI.
       },
+      "objectDetectionConfig": { # Config for video object detection human labeling task. Object detection will be conducted on the images extracted from the video, and those objects will be labeled with bounding boxes. User need to specify the number of images to be extracted per second as the extraction frame rate. # Configuration for video object detection task.
+        "extractionFrameRate": 3.14, # Required. Number of frames per second to be extracted from the video.
+        "annotationSpecSet": "A String", # Required. Annotation spec set resource name.
+      },
+      "textClassificationConfig": { # Config for text classification human labeling task. # Configuration for text classification task.
+        "annotationSpecSet": "A String", # Required. Annotation spec set resource name.
+        "allowMultiLabel": True or False, # Optional. If allow_multi_label is true, contributors are able to choose multiple labels for one text segment.
+        "sentimentConfig": { # Config for setting up sentiments. # Optional. Configs for sentiment selection.
+          "enableLabelSentimentSelection": True or False, # If set to true, contributors will have the option to select sentiment of the label they selected, to mark it as negative or positive label. Default is false.
+        },
+      },
+      "humanAnnotationConfig": { # Configuration for how human labeling task should be done. # HumanAnnotationConfig used when requesting the human labeling task for this AnnotatedDataset.
+        "annotatedDatasetDescription": "A String", # Optional. A human-readable description for AnnotatedDataset. The description can be up to 10000 characters long.
+        "contributorEmails": [ # Optional. If you want your own labeling contributors to manage and work on this labeling request, you can set these contributors here. We will give them access to the question types in crowdcompute. Note that these emails must be registered in crowdcompute worker UI: https://crowd-compute.appspot.com/
+          "A String",
+        ],
+        "instruction": "A String", # Required. Instruction resource name.
+        "languageCode": "A String", # Optional. The Language of this question, as a [BCP-47](https://www.rfc-editor.org/rfc/bcp/bcp47.txt). Default value is en-US. Only need to set this when task is language related. For example, French text classification.
+        "userEmailAddress": "A String", # Email of the user who started the labeling task and should be notified by email. If empty no notification will be sent.
+        "annotatedDatasetDisplayName": "A String", # Required. A human-readable name for AnnotatedDataset defined by users. Maximum of 64 characters .
+        "replicaCount": 42, # Optional. Replication of questions. Each question will be sent to up to this number of contributors to label. Aggregated answers will be returned. Default is set to 1. For image related labeling, valid values are 1, 3, 5.
+        "questionDuration": "A String", # Optional. Maximum duration for contributors to answer a question. Maximum is 3600 seconds. Default is 3600 seconds.
+        "labelGroup": "A String", # Optional. A human-readable label used to logically group labeling tasks. This string must match the regular expression `[a-zA-Z\\d_-]{0,128}`.
+      },
+      "segmentationConfig": { # Config for image segmentation # Configuration for image segmentation task.
+        "instructionMessage": "A String", # Instruction message showed on labelers UI.
+        "annotationSpecSet": "A String", # Required. Annotation spec set resource name. format: projects/{project_id}/annotationSpecSets/{annotation_spec_set_id}
+      },
+      "eventConfig": { # Config for video event human labeling task. # Configuration for video event labeling task.
+        "clipLength": 42, # Videos will be cut to smaller clips to make it easier for labelers to work on. Users can configure is field in seconds, if not set, default value is 60s.
+        "overlapLength": 42, # The overlap length between different video clips. Users can configure is field in seconds, if not set, default value is 1s.
+        "annotationSpecSets": [ # Required. The list of annotation spec set resource name. Similar to video classification, we support selecting event from multiple AnnotationSpecSet at the same time.
+          "A String",
+        ],
+      },
     },
-    "displayName": "A String", # Output only. The display name of the AnnotatedDataset. It is specified in HumanAnnotationConfig when user starts a labeling task. Maximum of 64 characters.
-    "createTime": "A String", # Output only. Time the AnnotatedDataset was created.
-    "annotationSource": "A String", # Output only. Source of the annotation.
     "exampleCount": "A String", # Output only. Number of examples in the annotated dataset.
-    "description": "A String", # Output only. The description of the AnnotatedDataset. It is specified in HumanAnnotationConfig when user starts a labeling task. Maximum of 10000 characters.
-    "blockingResources": [ # Output only. The names of any related resources that are blocking changes to the annotated dataset.
-      "A String",
-    ],
+    "displayName": "A String", # Output only. The display name of the AnnotatedDataset. It is specified in HumanAnnotationConfig when user starts a labeling task. Maximum of 64 characters.
+    "annotationType": "A String", # Output only. Type of the annotation. It is specified when starting labeling task.
     "completedExampleCount": "A String", # Output only. Number of examples that have annotation in the annotated dataset.
-    "name": "A String", # Output only. AnnotatedDataset resource name in format of: projects/{project_id}/datasets/{dataset_id}/annotatedDatasets/ {annotated_dataset_id}
+    "annotationSource": "A String", # Output only. Source of the annotation.
+    "createTime": "A String", # Output only. Time the AnnotatedDataset was created.
   }</pre>
 </div>
 
@@ -247,16 +247,27 @@
   An object of the form:
 
     { # Results of listing annotated datasets for a dataset.
-    &quot;nextPageToken&quot;: &quot;A String&quot;, # A token to retrieve next page of results.
     &quot;annotatedDatasets&quot;: [ # The list of annotated datasets to return.
       { # AnnotatedDataset is a set holding annotations for data in a Dataset. Each labeling task will generate an AnnotatedDataset under the Dataset that the task is requested for.
+        &quot;blockingResources&quot;: [ # Output only. The names of any related resources that are blocking changes to the annotated dataset.
+          &quot;A String&quot;,
+        ],
+        &quot;name&quot;: &quot;A String&quot;, # Output only. AnnotatedDataset resource name in format of: projects/{project_id}/datasets/{dataset_id}/annotatedDatasets/ {annotated_dataset_id}
+        &quot;description&quot;: &quot;A String&quot;, # Output only. The description of the AnnotatedDataset. It is specified in HumanAnnotationConfig when user starts a labeling task. Maximum of 10000 characters.
         &quot;labelStats&quot;: { # Statistics about annotation specs. # Output only. Per label statistics.
           &quot;exampleCount&quot;: { # Map of each annotation spec&#x27;s example count. Key is the annotation spec name and value is the number of examples for that annotation spec. If the annotated dataset does not have annotation spec, the map will return a pair where the key is empty string and value is the total number of annotations.
             &quot;a_key&quot;: &quot;A String&quot;,
           },
         },
-        &quot;annotationType&quot;: &quot;A String&quot;, # Output only. Type of the annotation. It is specified when starting labeling task.
         &quot;metadata&quot;: { # Metadata on AnnotatedDataset. # Output only. Additional information about AnnotatedDataset.
+          &quot;objectTrackingConfig&quot;: { # Config for video object tracking human labeling task. # Configuration for video object tracking task.
+            &quot;annotationSpecSet&quot;: &quot;A String&quot;, # Required. Annotation spec set resource name.
+            &quot;overlapLength&quot;: 42, # The overlap length between different video clips. Users can configure is field in seconds, if not set, default value is 0.3s.
+            &quot;clipLength&quot;: 42, # Videos will be cut to smaller clips to make it easier for labelers to work on. Users can configure is field in seconds, if not set, default value is 20s.
+          },
+          &quot;textEntityExtractionConfig&quot;: { # Config for text entity extraction human labeling task. # Configuration for text entity extraction task.
+            &quot;annotationSpecSet&quot;: &quot;A String&quot;, # Required. Annotation spec set resource name.
+          },
           &quot;imageClassificationConfig&quot;: { # Config for image classification human labeling task. # Configuration for image classification task.
             &quot;answerAggregationType&quot;: &quot;A String&quot;, # Optional. The type of how to aggregate answers.
             &quot;annotationSpecSet&quot;: &quot;A String&quot;, # Required. Annotation spec set resource name.
@@ -266,75 +277,64 @@
             &quot;applyShotDetection&quot;: True or False, # Optional. Option to apply shot detection on the video.
             &quot;annotationSpecSetConfigs&quot;: [ # Required. The list of annotation spec set configs. Since watching a video clip takes much longer time than an image, we support label with multiple AnnotationSpecSet at the same time. Labels in each AnnotationSpecSet will be shown in a group to contributors. Contributors can select one or more (depending on whether to allow multi label) from each group.
               { # Annotation spec set with the setting of allowing multi labels or not.
-                &quot;allowMultiLabel&quot;: True or False, # Optional. If allow_multi_label is true, contributors are able to choose multiple labels from one annotation spec set.
                 &quot;annotationSpecSet&quot;: &quot;A String&quot;, # Required. Annotation spec set resource name.
+                &quot;allowMultiLabel&quot;: True or False, # Optional. If allow_multi_label is true, contributors are able to choose multiple labels from one annotation spec set.
               },
             ],
           },
-          &quot;textClassificationConfig&quot;: { # Config for text classification human labeling task. # Configuration for text classification task.
-            &quot;sentimentConfig&quot;: { # Config for setting up sentiments. # Optional. Configs for sentiment selection.
-              &quot;enableLabelSentimentSelection&quot;: True or False, # If set to true, contributors will have the option to select sentiment of the label they selected, to mark it as negative or positive label. Default is false.
-            },
-            &quot;annotationSpecSet&quot;: &quot;A String&quot;, # Required. Annotation spec set resource name.
-            &quot;allowMultiLabel&quot;: True or False, # Optional. If allow_multi_label is true, contributors are able to choose multiple labels for one text segment.
-          },
-          &quot;textEntityExtractionConfig&quot;: { # Config for text entity extraction human labeling task. # Configuration for text entity extraction task.
-            &quot;annotationSpecSet&quot;: &quot;A String&quot;, # Required. Annotation spec set resource name.
-          },
           &quot;polylineConfig&quot;: { # Config for image polyline human labeling task. # Configuration for image polyline task.
-            &quot;annotationSpecSet&quot;: &quot;A String&quot;, # Required. Annotation spec set resource name.
             &quot;instructionMessage&quot;: &quot;A String&quot;, # Optional. Instruction message showed on contributors UI.
-          },
-          &quot;humanAnnotationConfig&quot;: { # Configuration for how human labeling task should be done. # HumanAnnotationConfig used when requesting the human labeling task for this AnnotatedDataset.
-            &quot;questionDuration&quot;: &quot;A String&quot;, # Optional. Maximum duration for contributors to answer a question. Maximum is 3600 seconds. Default is 3600 seconds.
-            &quot;languageCode&quot;: &quot;A String&quot;, # Optional. The Language of this question, as a [BCP-47](https://www.rfc-editor.org/rfc/bcp/bcp47.txt). Default value is en-US. Only need to set this when task is language related. For example, French text classification.
-            &quot;userEmailAddress&quot;: &quot;A String&quot;, # Email of the user who started the labeling task and should be notified by email. If empty no notification will be sent.
-            &quot;instruction&quot;: &quot;A String&quot;, # Required. Instruction resource name.
-            &quot;contributorEmails&quot;: [ # Optional. If you want your own labeling contributors to manage and work on this labeling request, you can set these contributors here. We will give them access to the question types in crowdcompute. Note that these emails must be registered in crowdcompute worker UI: https://crowd-compute.appspot.com/
-              &quot;A String&quot;,
-            ],
-            &quot;labelGroup&quot;: &quot;A String&quot;, # Optional. A human-readable label used to logically group labeling tasks. This string must match the regular expression `[a-zA-Z\\d_-]{0,128}`.
-            &quot;replicaCount&quot;: 42, # Optional. Replication of questions. Each question will be sent to up to this number of contributors to label. Aggregated answers will be returned. Default is set to 1. For image related labeling, valid values are 1, 3, 5.
-            &quot;annotatedDatasetDescription&quot;: &quot;A String&quot;, # Optional. A human-readable description for AnnotatedDataset. The description can be up to 10000 characters long.
-            &quot;annotatedDatasetDisplayName&quot;: &quot;A String&quot;, # Required. A human-readable name for AnnotatedDataset defined by users. Maximum of 64 characters .
-          },
-          &quot;objectDetectionConfig&quot;: { # Config for video object detection human labeling task. Object detection will be conducted on the images extracted from the video, and those objects will be labeled with bounding boxes. User need to specify the number of images to be extracted per second as the extraction frame rate. # Configuration for video object detection task.
             &quot;annotationSpecSet&quot;: &quot;A String&quot;, # Required. Annotation spec set resource name.
-            &quot;extractionFrameRate&quot;: 3.14, # Required. Number of frames per second to be extracted from the video.
-          },
-          &quot;objectTrackingConfig&quot;: { # Config for video object tracking human labeling task. # Configuration for video object tracking task.
-            &quot;annotationSpecSet&quot;: &quot;A String&quot;, # Required. Annotation spec set resource name.
-            &quot;overlapLength&quot;: 42, # The overlap length between different video clips. Users can configure is field in seconds, if not set, default value is 0.3s.
-            &quot;clipLength&quot;: 42, # Videos will be cut to smaller clips to make it easier for labelers to work on. Users can configure is field in seconds, if not set, default value is 20s.
-          },
-          &quot;eventConfig&quot;: { # Config for video event human labeling task. # Configuration for video event labeling task.
-            &quot;annotationSpecSets&quot;: [ # Required. The list of annotation spec set resource name. Similar to video classification, we support selecting event from multiple AnnotationSpecSet at the same time.
-              &quot;A String&quot;,
-            ],
-            &quot;overlapLength&quot;: 42, # The overlap length between different video clips. Users can configure is field in seconds, if not set, default value is 1s.
-            &quot;clipLength&quot;: 42, # Videos will be cut to smaller clips to make it easier for labelers to work on. Users can configure is field in seconds, if not set, default value is 60s.
-          },
-          &quot;segmentationConfig&quot;: { # Config for image segmentation # Configuration for image segmentation task.
-            &quot;annotationSpecSet&quot;: &quot;A String&quot;, # Required. Annotation spec set resource name. format: projects/{project_id}/annotationSpecSets/{annotation_spec_set_id}
-            &quot;instructionMessage&quot;: &quot;A String&quot;, # Instruction message showed on labelers UI.
           },
           &quot;boundingPolyConfig&quot;: { # Config for image bounding poly (and bounding box) human labeling task. # Configuration for image bounding box and bounding poly task.
             &quot;annotationSpecSet&quot;: &quot;A String&quot;, # Required. Annotation spec set resource name.
             &quot;instructionMessage&quot;: &quot;A String&quot;, # Optional. Instruction message showed on contributors UI.
           },
+          &quot;objectDetectionConfig&quot;: { # Config for video object detection human labeling task. Object detection will be conducted on the images extracted from the video, and those objects will be labeled with bounding boxes. User need to specify the number of images to be extracted per second as the extraction frame rate. # Configuration for video object detection task.
+            &quot;extractionFrameRate&quot;: 3.14, # Required. Number of frames per second to be extracted from the video.
+            &quot;annotationSpecSet&quot;: &quot;A String&quot;, # Required. Annotation spec set resource name.
+          },
+          &quot;textClassificationConfig&quot;: { # Config for text classification human labeling task. # Configuration for text classification task.
+            &quot;annotationSpecSet&quot;: &quot;A String&quot;, # Required. Annotation spec set resource name.
+            &quot;allowMultiLabel&quot;: True or False, # Optional. If allow_multi_label is true, contributors are able to choose multiple labels for one text segment.
+            &quot;sentimentConfig&quot;: { # Config for setting up sentiments. # Optional. Configs for sentiment selection.
+              &quot;enableLabelSentimentSelection&quot;: True or False, # If set to true, contributors will have the option to select sentiment of the label they selected, to mark it as negative or positive label. Default is false.
+            },
+          },
+          &quot;humanAnnotationConfig&quot;: { # Configuration for how human labeling task should be done. # HumanAnnotationConfig used when requesting the human labeling task for this AnnotatedDataset.
+            &quot;annotatedDatasetDescription&quot;: &quot;A String&quot;, # Optional. A human-readable description for AnnotatedDataset. The description can be up to 10000 characters long.
+            &quot;contributorEmails&quot;: [ # Optional. If you want your own labeling contributors to manage and work on this labeling request, you can set these contributors here. We will give them access to the question types in crowdcompute. Note that these emails must be registered in crowdcompute worker UI: https://crowd-compute.appspot.com/
+              &quot;A String&quot;,
+            ],
+            &quot;instruction&quot;: &quot;A String&quot;, # Required. Instruction resource name.
+            &quot;languageCode&quot;: &quot;A String&quot;, # Optional. The Language of this question, as a [BCP-47](https://www.rfc-editor.org/rfc/bcp/bcp47.txt). Default value is en-US. Only need to set this when task is language related. For example, French text classification.
+            &quot;userEmailAddress&quot;: &quot;A String&quot;, # Email of the user who started the labeling task and should be notified by email. If empty no notification will be sent.
+            &quot;annotatedDatasetDisplayName&quot;: &quot;A String&quot;, # Required. A human-readable name for AnnotatedDataset defined by users. Maximum of 64 characters .
+            &quot;replicaCount&quot;: 42, # Optional. Replication of questions. Each question will be sent to up to this number of contributors to label. Aggregated answers will be returned. Default is set to 1. For image related labeling, valid values are 1, 3, 5.
+            &quot;questionDuration&quot;: &quot;A String&quot;, # Optional. Maximum duration for contributors to answer a question. Maximum is 3600 seconds. Default is 3600 seconds.
+            &quot;labelGroup&quot;: &quot;A String&quot;, # Optional. A human-readable label used to logically group labeling tasks. This string must match the regular expression `[a-zA-Z\\d_-]{0,128}`.
+          },
+          &quot;segmentationConfig&quot;: { # Config for image segmentation # Configuration for image segmentation task.
+            &quot;instructionMessage&quot;: &quot;A String&quot;, # Instruction message showed on labelers UI.
+            &quot;annotationSpecSet&quot;: &quot;A String&quot;, # Required. Annotation spec set resource name. format: projects/{project_id}/annotationSpecSets/{annotation_spec_set_id}
+          },
+          &quot;eventConfig&quot;: { # Config for video event human labeling task. # Configuration for video event labeling task.
+            &quot;clipLength&quot;: 42, # Videos will be cut to smaller clips to make it easier for labelers to work on. Users can configure is field in seconds, if not set, default value is 60s.
+            &quot;overlapLength&quot;: 42, # The overlap length between different video clips. Users can configure is field in seconds, if not set, default value is 1s.
+            &quot;annotationSpecSets&quot;: [ # Required. The list of annotation spec set resource name. Similar to video classification, we support selecting event from multiple AnnotationSpecSet at the same time.
+              &quot;A String&quot;,
+            ],
+          },
         },
-        &quot;displayName&quot;: &quot;A String&quot;, # Output only. The display name of the AnnotatedDataset. It is specified in HumanAnnotationConfig when user starts a labeling task. Maximum of 64 characters.
-        &quot;createTime&quot;: &quot;A String&quot;, # Output only. Time the AnnotatedDataset was created.
-        &quot;annotationSource&quot;: &quot;A String&quot;, # Output only. Source of the annotation.
         &quot;exampleCount&quot;: &quot;A String&quot;, # Output only. Number of examples in the annotated dataset.
-        &quot;description&quot;: &quot;A String&quot;, # Output only. The description of the AnnotatedDataset. It is specified in HumanAnnotationConfig when user starts a labeling task. Maximum of 10000 characters.
-        &quot;blockingResources&quot;: [ # Output only. The names of any related resources that are blocking changes to the annotated dataset.
-          &quot;A String&quot;,
-        ],
+        &quot;displayName&quot;: &quot;A String&quot;, # Output only. The display name of the AnnotatedDataset. It is specified in HumanAnnotationConfig when user starts a labeling task. Maximum of 64 characters.
+        &quot;annotationType&quot;: &quot;A String&quot;, # Output only. Type of the annotation. It is specified when starting labeling task.
         &quot;completedExampleCount&quot;: &quot;A String&quot;, # Output only. Number of examples that have annotation in the annotated dataset.
-        &quot;name&quot;: &quot;A String&quot;, # Output only. AnnotatedDataset resource name in format of: projects/{project_id}/datasets/{dataset_id}/annotatedDatasets/ {annotated_dataset_id}
+        &quot;annotationSource&quot;: &quot;A String&quot;, # Output only. Source of the annotation.
+        &quot;createTime&quot;: &quot;A String&quot;, # Output only. Time the AnnotatedDataset was created.
       },
     ],
+    &quot;nextPageToken&quot;: &quot;A String&quot;, # A token to retrieve next page of results.
   }</pre>
 </div>