@@ -69,14 +69,14 @@ class DocumentModelAdministrationClient(FormRecognizerClientBase):
69
69
70
70
.. admonition:: Example:
71
71
72
- .. literalinclude:: ../samples/v3.2_and_later /sample_authentication.py
72
+ .. literalinclude:: ../samples/v3.2 /sample_authentication.py
73
73
:start-after: [START create_dt_client_with_key]
74
74
:end-before: [END create_dt_client_with_key]
75
75
:language: python
76
76
:dedent: 4
77
77
:caption: Creating the DocumentModelAdministrationClient with an endpoint and API key.
78
78
79
- .. literalinclude:: ../samples/v3.2_and_later /sample_authentication.py
79
+ .. literalinclude:: ../samples/v3.2 /sample_authentication.py
80
80
:start-after: [START create_dt_client_with_aad]
81
81
:end-before: [END create_dt_client_with_aad]
82
82
:language: python
@@ -158,7 +158,7 @@ def begin_build_document_model(
158
158
159
159
.. admonition:: Example:
160
160
161
- .. literalinclude:: ../samples/v3.2_and_later /sample_build_model.py
161
+ .. literalinclude:: ../samples/v3.2 /sample_build_model.py
162
162
:start-after: [START build_model]
163
163
:end-before: [END build_model]
164
164
:language: python
@@ -250,7 +250,7 @@ def begin_compose_document_model(
250
250
251
251
.. admonition:: Example:
252
252
253
- .. literalinclude:: ../samples/v3.2_and_later /sample_compose_model.py
253
+ .. literalinclude:: ../samples/v3.2 /sample_compose_model.py
254
254
:start-after: [START composed_model]
255
255
:end-before: [END composed_model]
256
256
:language: python
@@ -355,7 +355,7 @@ def begin_copy_document_model_to(
355
355
356
356
.. admonition:: Example:
357
357
358
- .. literalinclude:: ../samples/v3.2_and_later /sample_copy_model_to.py
358
+ .. literalinclude:: ../samples/v3.2 /sample_copy_model_to.py
359
359
:start-after: [START begin_copy_document_model_to]
360
360
:end-before: [END begin_copy_document_model_to]
361
361
:language: python
@@ -409,7 +409,7 @@ def delete_document_model(self, model_id: str, **kwargs: Any) -> None:
409
409
410
410
.. admonition:: Example:
411
411
412
- .. literalinclude:: ../samples/v3.2_and_later /sample_manage_models.py
412
+ .. literalinclude:: ../samples/v3.2 /sample_manage_models.py
413
413
:start-after: [START delete_document_model]
414
414
:end-before: [END delete_document_model]
415
415
:language: python
@@ -437,7 +437,7 @@ def list_document_models(self, **kwargs: Any) -> ItemPaged[DocumentModelSummary]
437
437
438
438
.. admonition:: Example:
439
439
440
- .. literalinclude:: ../samples/v3.2_and_later /sample_manage_models.py
440
+ .. literalinclude:: ../samples/v3.2 /sample_manage_models.py
441
441
:start-after: [START list_document_models]
442
442
:end-before: [END list_document_models]
443
443
:language: python
@@ -467,7 +467,7 @@ def get_resource_details(self, **kwargs: Any) -> ResourceDetails:
467
467
468
468
.. admonition:: Example:
469
469
470
- .. literalinclude:: ../samples/v3.2_and_later /sample_manage_models.py
470
+ .. literalinclude:: ../samples/v3.2 /sample_manage_models.py
471
471
:start-after: [START get_resource_details]
472
472
:end-before: [END get_resource_details]
473
473
:language: python
@@ -493,7 +493,7 @@ def get_document_model(self, model_id: str, **kwargs: Any) -> DocumentModelDetai
493
493
494
494
.. admonition:: Example:
495
495
496
- .. literalinclude:: ../samples/v3.2_and_later /sample_manage_models.py
496
+ .. literalinclude:: ../samples/v3.2 /sample_manage_models.py
497
497
:start-after: [START get_document_model]
498
498
:end-before: [END get_document_model]
499
499
:language: python
@@ -525,7 +525,7 @@ def list_operations(self, **kwargs: Any) -> ItemPaged[OperationSummary]:
525
525
526
526
.. admonition:: Example:
527
527
528
- .. literalinclude:: ../samples/v3.2_and_later /sample_get_operations.py
528
+ .. literalinclude:: ../samples/v3.2 /sample_get_operations.py
529
529
:start-after: [START list_operations]
530
530
:end-before: [END list_operations]
531
531
:language: python
@@ -560,7 +560,7 @@ def get_operation(self, operation_id: str, **kwargs: Any) -> OperationDetails:
560
560
561
561
.. admonition:: Example:
562
562
563
- .. literalinclude:: ../samples/v3.2_and_later /sample_get_operations.py
563
+ .. literalinclude:: ../samples/v3.2 /sample_get_operations.py
564
564
:start-after: [START get_operation]
565
565
:end-before: [END get_operation]
566
566
:language: python
@@ -606,7 +606,7 @@ def begin_build_document_classifier(
606
606
607
607
.. admonition:: Example:
608
608
609
- .. literalinclude:: ../samples/v3.2_and_later /sample_build_classifier.py
609
+ .. literalinclude:: ../samples/v3.2 /sample_build_classifier.py
610
610
:start-after: [START build_classifier]
611
611
:end-before: [END build_classifier]
612
612
:language: python
@@ -656,7 +656,7 @@ def get_document_classifier(self, classifier_id: str, **kwargs: Any) -> Document
656
656
657
657
.. admonition:: Example:
658
658
659
- .. literalinclude:: ../samples/v3.2_and_later /sample_manage_classifiers.py
659
+ .. literalinclude:: ../samples/v3.2 /sample_manage_classifiers.py
660
660
:start-after: [START get_document_classifier]
661
661
:end-before: [END get_document_classifier]
662
662
:language: python
@@ -687,7 +687,7 @@ def list_document_classifiers(self, **kwargs: Any) -> ItemPaged[DocumentClassifi
687
687
688
688
.. admonition:: Example:
689
689
690
- .. literalinclude:: ../samples/v3.2_and_later /sample_manage_classifiers.py
690
+ .. literalinclude:: ../samples/v3.2 /sample_manage_classifiers.py
691
691
:start-after: [START list_document_classifiers]
692
692
:end-before: [END list_document_classifiers]
693
693
:language: python
@@ -719,7 +719,7 @@ def delete_document_classifier(self, classifier_id: str, **kwargs: Any) -> None:
719
719
720
720
.. admonition:: Example:
721
721
722
- .. literalinclude:: ../samples/v3.2_and_later /sample_manage_classifiers.py
722
+ .. literalinclude:: ../samples/v3.2 /sample_manage_classifiers.py
723
723
:start-after: [START delete_document_classifier]
724
724
:end-before: [END delete_document_classifier]
725
725
:language: python
0 commit comments