clarifai-grpc 11.11.0__py3-none-any.whl → 11.11.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- clarifai_grpc/__init__.py +1 -1
- clarifai_grpc/grpc/api/resources_pb2.py +491 -489
- clarifai_grpc/grpc/api/resources_pb2.pyi +72 -1
- clarifai_grpc/grpc/api/service_pb2.py +206 -204
- clarifai_grpc/grpc/api/service_pb2.pyi +15 -1
- {clarifai_grpc-11.11.0.dist-info → clarifai_grpc-11.11.2.dist-info}/METADATA +1 -1
- {clarifai_grpc-11.11.0.dist-info → clarifai_grpc-11.11.2.dist-info}/RECORD +10 -10
- {clarifai_grpc-11.11.0.dist-info → clarifai_grpc-11.11.2.dist-info}/WHEEL +0 -0
- {clarifai_grpc-11.11.0.dist-info → clarifai_grpc-11.11.2.dist-info}/licenses/LICENSE +0 -0
- {clarifai_grpc-11.11.0.dist-info → clarifai_grpc-11.11.2.dist-info}/top_level.txt +0 -0
|
@@ -184,7 +184,9 @@ class Pagination(google.protobuf.message.Message):
|
|
|
184
184
|
PAGE_FIELD_NUMBER: builtins.int
|
|
185
185
|
PER_PAGE_FIELD_NUMBER: builtins.int
|
|
186
186
|
page: builtins.int
|
|
187
|
+
"""(optional URL parameter) The page number. Pagination is used to split the results into chunks. Defaults to 1."""
|
|
187
188
|
per_page: builtins.int
|
|
189
|
+
"""(optional URL parameter) The number of results that will be contained in each page. Defaults to 128."""
|
|
188
190
|
def __init__(
|
|
189
191
|
self,
|
|
190
192
|
*,
|
|
@@ -15106,23 +15108,35 @@ class MultiCloudRegionResponse(google.protobuf.message.Message):
|
|
|
15106
15108
|
|
|
15107
15109
|
STATUS_FIELD_NUMBER: builtins.int
|
|
15108
15110
|
REGIONS_FIELD_NUMBER: builtins.int
|
|
15111
|
+
CLOUD_REGIONS_FIELD_NUMBER: builtins.int
|
|
15109
15112
|
@property
|
|
15110
15113
|
def status(self) -> proto.clarifai.api.status.status_pb2.Status: ...
|
|
15111
15114
|
@property
|
|
15112
15115
|
def regions(
|
|
15113
15116
|
self,
|
|
15114
15117
|
) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]: ...
|
|
15118
|
+
@property
|
|
15119
|
+
def cloud_regions(
|
|
15120
|
+
self,
|
|
15121
|
+
) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[
|
|
15122
|
+
proto.clarifai.api.resources_pb2.CloudRegion
|
|
15123
|
+
]: ...
|
|
15115
15124
|
def __init__(
|
|
15116
15125
|
self,
|
|
15117
15126
|
*,
|
|
15118
15127
|
status: proto.clarifai.api.status.status_pb2.Status | None = ...,
|
|
15119
15128
|
regions: collections.abc.Iterable[builtins.str] | None = ...,
|
|
15129
|
+
cloud_regions: collections.abc.Iterable[proto.clarifai.api.resources_pb2.CloudRegion]
|
|
15130
|
+
| None = ...,
|
|
15120
15131
|
) -> None: ...
|
|
15121
15132
|
def HasField(
|
|
15122
15133
|
self, field_name: typing_extensions.Literal["status", b"status"]
|
|
15123
15134
|
) -> builtins.bool: ...
|
|
15124
15135
|
def ClearField(
|
|
15125
|
-
self,
|
|
15136
|
+
self,
|
|
15137
|
+
field_name: typing_extensions.Literal[
|
|
15138
|
+
"cloud_regions", b"cloud_regions", "regions", b"regions", "status", b"status"
|
|
15139
|
+
],
|
|
15126
15140
|
) -> None: ...
|
|
15127
15141
|
|
|
15128
15142
|
global___MultiCloudRegionResponse = MultiCloudRegionResponse
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
clarifai_grpc/__init__.py,sha256=
|
|
1
|
+
clarifai_grpc/__init__.py,sha256=fGG0r0cquPv4B0PJ1vJtHXCmVjesNJXd8x7o7KyqJsY,1441
|
|
2
2
|
clarifai_grpc/channel/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
clarifai_grpc/channel/clarifai_channel.py,sha256=fGqFlagWzKhRny-RAxbKlXT9_k9HohPs9yCKmkkQZ5c,5770
|
|
4
4
|
clarifai_grpc/channel/errors.py,sha256=VUoLZLLcIfI2nOGlz1dzbOKQJhGodOO98pSSjlsRD6s,183
|
|
@@ -10,11 +10,11 @@ clarifai_grpc/channel/custom_converters/custom_dict_to_message.py,sha256=aAOjcIG
|
|
|
10
10
|
clarifai_grpc/channel/custom_converters/custom_message_to_dict.py,sha256=w-GeM4wYO5WcmjDjykw2wbXVpfy-A0_mkO9-3bPW4FE,3699
|
|
11
11
|
clarifai_grpc/grpc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
12
|
clarifai_grpc/grpc/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
|
-
clarifai_grpc/grpc/api/resources_pb2.py,sha256=
|
|
14
|
-
clarifai_grpc/grpc/api/resources_pb2.pyi,sha256=
|
|
13
|
+
clarifai_grpc/grpc/api/resources_pb2.py,sha256=2sO3Mk92-rH8vr4IrsL8TBkzBdTifj1EhOoPQoknFaQ,158513
|
|
14
|
+
clarifai_grpc/grpc/api/resources_pb2.pyi,sha256=7kMpEq1DKfzR61FQEC3dOZ8tQFtdb-qHaxTfaiwgozk,659533
|
|
15
15
|
clarifai_grpc/grpc/api/resources_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
16
|
-
clarifai_grpc/grpc/api/service_pb2.py,sha256=
|
|
17
|
-
clarifai_grpc/grpc/api/service_pb2.pyi,sha256=
|
|
16
|
+
clarifai_grpc/grpc/api/service_pb2.py,sha256=Am722GutDSASxq_UhOg4gjsN8Yod6tZtdvyujr6c-gg,356715
|
|
17
|
+
clarifai_grpc/grpc/api/service_pb2.pyi,sha256=8ivRfapcyuaUFNWvYaUqG-JsyRcPD52wVYT64n5UEis,661025
|
|
18
18
|
clarifai_grpc/grpc/api/service_pb2_grpc.py,sha256=aWgUTn2Ez3D5Mgp-5cEmqLygzNGP1YIXB2tV6yrDe_A,534690
|
|
19
19
|
clarifai_grpc/grpc/api/status/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
20
20
|
clarifai_grpc/grpc/api/status/status_code_pb2.py,sha256=ARp0jyiS6rRhcuYr8N0szWe-ufl_SbFjkS7jISa_B3Q,26800
|
|
@@ -46,8 +46,8 @@ clarifai_grpc/grpc/auth/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NM
|
|
|
46
46
|
clarifai_grpc/grpc/auth/util/extension_pb2.py,sha256=Fnx7qS6aB9HsjxzALVRrGZm_1RAvUnWN-ZG3P6_AurA,2612
|
|
47
47
|
clarifai_grpc/grpc/auth/util/extension_pb2.pyi,sha256=k4sOr3PHePx3u7zP2ZghKMLc_xF2O4E-vKYsQO1ZdSw,3288
|
|
48
48
|
clarifai_grpc/grpc/auth/util/extension_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
49
|
-
clarifai_grpc-11.11.
|
|
50
|
-
clarifai_grpc-11.11.
|
|
51
|
-
clarifai_grpc-11.11.
|
|
52
|
-
clarifai_grpc-11.11.
|
|
53
|
-
clarifai_grpc-11.11.
|
|
49
|
+
clarifai_grpc-11.11.2.dist-info/licenses/LICENSE,sha256=GuQZ4iPZUwh44duTbVr7ZzYp_SaJDLR9MvzU7YqlZXM,555
|
|
50
|
+
clarifai_grpc-11.11.2.dist-info/METADATA,sha256=rZgVcErfeiKR87BtMeNlGHaWQIYa_Xt-_ueLaInzuUU,4428
|
|
51
|
+
clarifai_grpc-11.11.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
52
|
+
clarifai_grpc-11.11.2.dist-info/top_level.txt,sha256=azOUiixWkDpdb3gn_YNgz8sbAfhNvZuC3_9qI7hNQac,14
|
|
53
|
+
clarifai_grpc-11.11.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|