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