-
Notifications
You must be signed in to change notification settings - Fork 247
/
azure.ai.formrecognizer.BlobSource.yml
48 lines (48 loc) · 1.43 KB
/
azure.ai.formrecognizer.BlobSource.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
### YamlMime:PythonClass
uid: azure.ai.formrecognizer.BlobSource
name: BlobSource
fullName: azure.ai.formrecognizer.BlobSource
module: azure.ai.formrecognizer
inheritances:
- builtins.object
summary: Content source for Azure Blob Storage.
constructor:
syntax: 'BlobSource(container_url: str, *, prefix: str | None = None)'
parameters:
- name: container_url
isRequired: true
keywordOnlyParameters:
- name: prefix
isRequired: true
methods:
- uid: azure.ai.formrecognizer.BlobSource.from_dict
name: from_dict
summary: Converts a dict in the shape of a BlobSource to the model itself.
signature: 'from_dict(data: Dict[str, Any]) -> BlobSource'
parameters:
- name: data
description: A dictionary in the shape of BlobSource.
isRequired: true
types:
- <xref:dict>
return:
description: BlobSource
types:
- <xref:azure.ai.formrecognizer.BlobSource>
- uid: azure.ai.formrecognizer.BlobSource.to_dict
name: to_dict
summary: Returns a dict representation of BlobSource.
signature: to_dict() -> Dict[str, Any]
return:
description: Dict[str, Any]
types:
- <xref:typing.Dict>[<xref:str>, <xref:typing.Any>]
attributes:
- uid: azure.ai.formrecognizer.BlobSource.container_url
name: container_url
summary: Azure Blob Storage container URL.
signature: 'container_url: str'
- uid: azure.ai.formrecognizer.BlobSource.prefix
name: prefix
summary: Blob name prefix.
signature: 'prefix: str | None'