|
10 | 10 |
|
11 | 11 | class OperationSupportMatrix(BaseModel): |
12 | 12 | create: Optional[OperationSupport] = None |
13 | | - """- `supported`: This operation is supported by both the provider and Finch |
14 | | -
|
| 13 | + """ |
| 14 | + - `supported`: This operation is supported by both the provider and Finch |
15 | 15 | - `not_supported_by_finch`: This operation is not supported by Finch but |
16 | 16 | supported by the provider |
17 | | -
|
18 | 17 | - `not_supported_by_provider`: This operation is not supported by the provider, |
19 | 18 | so Finch cannot support |
20 | | -
|
21 | 19 | - `client_access_only`: This behavior is supported by the provider, but only |
22 | 20 | available to the client and not to Finch |
23 | 21 | """ |
24 | 22 |
|
25 | 23 | delete: Optional[OperationSupport] = None |
26 | | - """- `supported`: This operation is supported by both the provider and Finch |
27 | | -
|
| 24 | + """ |
| 25 | + - `supported`: This operation is supported by both the provider and Finch |
28 | 26 | - `not_supported_by_finch`: This operation is not supported by Finch but |
29 | 27 | supported by the provider |
30 | | -
|
31 | 28 | - `not_supported_by_provider`: This operation is not supported by the provider, |
32 | 29 | so Finch cannot support |
33 | | -
|
34 | 30 | - `client_access_only`: This behavior is supported by the provider, but only |
35 | 31 | available to the client and not to Finch |
36 | 32 | """ |
37 | 33 |
|
38 | 34 | read: Optional[OperationSupport] = None |
39 | | - """- `supported`: This operation is supported by both the provider and Finch |
40 | | -
|
| 35 | + """ |
| 36 | + - `supported`: This operation is supported by both the provider and Finch |
41 | 37 | - `not_supported_by_finch`: This operation is not supported by Finch but |
42 | 38 | supported by the provider |
43 | | -
|
44 | 39 | - `not_supported_by_provider`: This operation is not supported by the provider, |
45 | 40 | so Finch cannot support |
46 | | -
|
47 | 41 | - `client_access_only`: This behavior is supported by the provider, but only |
48 | 42 | available to the client and not to Finch |
49 | 43 | """ |
50 | 44 |
|
51 | 45 | update: Optional[OperationSupport] = None |
52 | | - """- `supported`: This operation is supported by both the provider and Finch |
53 | | -
|
| 46 | + """ |
| 47 | + - `supported`: This operation is supported by both the provider and Finch |
54 | 48 | - `not_supported_by_finch`: This operation is not supported by Finch but |
55 | 49 | supported by the provider |
56 | | -
|
57 | 50 | - `not_supported_by_provider`: This operation is not supported by the provider, |
58 | 51 | so Finch cannot support |
59 | | -
|
60 | 52 | - `client_access_only`: This behavior is supported by the provider, but only |
61 | 53 | available to the client and not to Finch |
62 | 54 | """ |
0 commit comments