@@ -20,7 +20,8 @@ class TranslationGlossary(object): # pylint: disable=useless-object-inheritance
2020
2121 :param str glossary_url: Required. Location of the glossary file. This should be a SAS URL to
2222 the glossary file in the storage blob container. If the translation language pair is
23- not present in the glossary, it will not be applied.
23+ not present in the glossary, it will not be applied. See the service documentation for the
24+ supported SAS permissions: https://aka.ms/azsdk/documenttranslation/sas-permissions
2425 :param str file_format: Required. Format of the glossary file. To see supported formats,
2526 call the :func:`~DocumentTranslationClient.get_supported_glossary_formats()` client method.
2627 :keyword str format_version: File format version. If not specified, the service will
@@ -31,7 +32,8 @@ class TranslationGlossary(object): # pylint: disable=useless-object-inheritance
3132
3233 :ivar str glossary_url: Required. Location of the glossary file. This should be a SAS URL to
3334 the glossary file in the storage blob container. If the translation language pair is
34- not present in the glossary, it will not be applied.
35+ not present in the glossary, it will not be applied. See the service documentation for the
36+ supported SAS permissions: https://aka.ms/azsdk/documenttranslation/sas-permissions
3537 :ivar str file_format: Required. Format of the glossary file. To see supported formats,
3638 call the :func:`~DocumentTranslationClient.get_supported_glossary_formats()` client method.
3739 :ivar str format_version: File format version. If not specified, the service will
@@ -79,7 +81,9 @@ class TranslationTarget(object): # pylint: disable=useless-object-inheritance
7981 """Destination for the finished translated documents.
8082
8183 :param str target_url: Required. The target location for your translated documents.
82- This should be a container SAS URL to your target container.
84+ This should be a container SAS URL to your target container/blob. See the service
85+ documentation for the supported SAS permissions for accessing
86+ target storage containers/blobs: https://aka.ms/azsdk/documenttranslation/sas-permissions
8387 :param str language_code: Required. Target Language Code. This is the language
8488 you want your documents to be translated to. See supported languages here:
8589 https://docs.microsoft.com/azure/cognitive-services/translator/language-support#translate
@@ -90,7 +94,9 @@ class TranslationTarget(object): # pylint: disable=useless-object-inheritance
9094 Currently only "AzureBlob" is supported.
9195
9296 :ivar str target_url: Required. The target location for your translated documents.
93- This should be a container SAS URL to your target container.
97+ This should be a container SAS URL to your target container/blob. See the service
98+ documentation for the supported SAS permissions for accessing
99+ target storage containers/blobs: https://aka.ms/azsdk/documenttranslation/sas-permissions
94100 :ivar str language_code: Required. Target Language Code. This is the language
95101 you want your documents to be translated to. See supported languages here:
96102 https://docs.microsoft.com/azure/cognitive-services/translator/language-support#translate
@@ -150,7 +156,8 @@ class DocumentTranslationInput(object): # pylint: disable=useless-object-inheri
150156 translated and written to the location provided by the TranslationTargets.
151157
152158 :param str source_url: Required. Location of the folder / container or single file with your
153- documents.
159+ documents. See the service documentation for the supported SAS permissions for accessing
160+ source storage containers/blobs: https://aka.ms/azsdk/documenttranslation/sas-permissions
154161 :param targets: Required. Location of the destination for the output. This is a list of
155162 TranslationTargets. Note that a TranslationTarget is required for each language code specified.
156163 :type targets: list[~azure.ai.translation.document.TranslationTarget]
@@ -168,7 +175,8 @@ class DocumentTranslationInput(object): # pylint: disable=useless-object-inheri
168175 Currently only "AzureBlob" is supported.
169176
170177 :ivar str source_url: Required. Location of the folder / container or single file with your
171- documents.
178+ documents. See the service documentation for the supported SAS permissions for accessing
179+ source storage containers/blobs: https://aka.ms/azsdk/documenttranslation/sas-permissions
172180 :ivar targets: Required. Location of the destination for the output. This is a list of
173181 TranslationTargets. Note that a TranslationTarget is required for each language code specified.
174182 :vartype targets: list[~azure.ai.translation.document.TranslationTarget]
0 commit comments