@@ -264,9 +264,9 @@ def create_index(
264
264
>>> response = client.create_index(parent, index)
265
265
266
266
Args:
267
- parent (str): A parent name of the form
267
+ parent (str): Required. A parent name of the form
268
268
``projects/{project_id}/databases/{database_id}/collectionGroups/{collection_id}``
269
- index (Union[dict, ~google.cloud.firestore_admin_v1.types.Index]): The composite index to create.
269
+ index (Union[dict, ~google.cloud.firestore_admin_v1.types.Index]): Required. The composite index to create.
270
270
271
271
If a dict is provided, it must be of the same form as the protobuf
272
272
message :class:`~google.cloud.firestore_admin_v1.types.Index`
@@ -352,7 +352,7 @@ def list_indexes(
352
352
... pass
353
353
354
354
Args:
355
- parent (str): A parent name of the form
355
+ parent (str): Required. A parent name of the form
356
356
``projects/{project_id}/databases/{database_id}/collectionGroups/{collection_id}``
357
357
filter_ (str): The filter to apply to list results.
358
358
page_size (int): The maximum number of resources contained in the
@@ -444,7 +444,7 @@ def get_index(
444
444
>>> response = client.get_index(name)
445
445
446
446
Args:
447
- name (str): A name of the form
447
+ name (str): Required. A name of the form
448
448
``projects/{project_id}/databases/{database_id}/collectionGroups/{collection_id}/indexes/{index_id}``
449
449
retry (Optional[google.api_core.retry.Retry]): A retry object used
450
450
to retry requests. If ``None`` is specified, requests will
@@ -514,7 +514,7 @@ def delete_index(
514
514
>>> client.delete_index(name)
515
515
516
516
Args:
517
- name (str): A name of the form
517
+ name (str): Required. A name of the form
518
518
``projects/{project_id}/databases/{database_id}/collectionGroups/{collection_id}/indexes/{index_id}``
519
519
retry (Optional[google.api_core.retry.Retry]): A retry object used
520
520
to retry requests. If ``None`` is specified, requests will
@@ -587,7 +587,7 @@ def import_documents(
587
587
>>> response = client.import_documents(name)
588
588
589
589
Args:
590
- name (str): Database to import into. Should be of the form:
590
+ name (str): Required. Database to import into. Should be of the form:
591
591
``projects/{project_id}/databases/{database_id}``.
592
592
collection_ids (list[str]): Which collection ids to import. Unspecified means all collections included
593
593
in the import.
@@ -674,7 +674,7 @@ def export_documents(
674
674
>>> response = client.export_documents(name)
675
675
676
676
Args:
677
- name (str): Database to export. Should be of the form:
677
+ name (str): Required. Database to export. Should be of the form:
678
678
``projects/{project_id}/databases/{database_id}``.
679
679
collection_ids (list[str]): Which collection ids to export. Unspecified means all collections.
680
680
output_uri_prefix (str): The output URI. Currently only supports Google Cloud Storage URIs of the
@@ -757,7 +757,7 @@ def get_field(
757
757
>>> response = client.get_field(name)
758
758
759
759
Args:
760
- name (str): A name of the form
760
+ name (str): Required. A name of the form
761
761
``projects/{project_id}/databases/{database_id}/collectionGroups/{collection_id}/fields/{field_id}``
762
762
retry (Optional[google.api_core.retry.Retry]): A retry object used
763
763
to retry requests. If ``None`` is specified, requests will
@@ -846,7 +846,7 @@ def list_fields(
846
846
... pass
847
847
848
848
Args:
849
- parent (str): A parent name of the form
849
+ parent (str): Required. A parent name of the form
850
850
``projects/{project_id}/databases/{database_id}/collectionGroups/{collection_id}``
851
851
filter_ (str): The filter to apply to list results. Currently,
852
852
``FirestoreAdmin.ListFields`` only supports listing fields that have
@@ -956,7 +956,7 @@ def update_field(
956
956
>>> response = client.update_field(field)
957
957
958
958
Args:
959
- field (Union[dict, ~google.cloud.firestore_admin_v1.types.Field]): The field to be updated.
959
+ field (Union[dict, ~google.cloud.firestore_admin_v1.types.Field]): Required. The field to be updated.
960
960
961
961
If a dict is provided, it must be of the same form as the protobuf
962
962
message :class:`~google.cloud.firestore_admin_v1.types.Field`
0 commit comments