clarifai-grpc 12.0.7__py3-none-any.whl → 12.0.9__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.
@@ -1841,6 +1841,60 @@ class UserAppIDSet(google.protobuf.message.Message):
1841
1841
 
1842
1842
  global___UserAppIDSet = UserAppIDSet
1843
1843
 
1844
+ @typing_extensions.final
1845
+ class WorkerIDSet(google.protobuf.message.Message):
1846
+ """WorkerIDSet helps to identify different types of workers.
1847
+ To identify a user, set user_id field.
1848
+ To identify a model from current application, set model_id and model_version_id fields.
1849
+ To identify a model from another application, set user_id, app_id, model_id and model_version_id fields.
1850
+ To identify a workflow from current application, set workflow_id and workflow_version_id fields.
1851
+ To identify a workflow from another application, set user_id, app_id, workflow_id and workflow_version_id fields.
1852
+ """
1853
+
1854
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
1855
+
1856
+ USER_ID_FIELD_NUMBER: builtins.int
1857
+ APP_ID_FIELD_NUMBER: builtins.int
1858
+ MODEL_ID_FIELD_NUMBER: builtins.int
1859
+ MODEL_VERSION_ID_FIELD_NUMBER: builtins.int
1860
+ WORKFLOW_ID_FIELD_NUMBER: builtins.int
1861
+ WORKFLOW_VERSION_ID_FIELD_NUMBER: builtins.int
1862
+ user_id: builtins.str
1863
+ app_id: builtins.str
1864
+ model_id: builtins.str
1865
+ model_version_id: builtins.str
1866
+ workflow_id: builtins.str
1867
+ workflow_version_id: builtins.str
1868
+ def __init__(
1869
+ self,
1870
+ *,
1871
+ user_id: builtins.str = ...,
1872
+ app_id: builtins.str = ...,
1873
+ model_id: builtins.str = ...,
1874
+ model_version_id: builtins.str = ...,
1875
+ workflow_id: builtins.str = ...,
1876
+ workflow_version_id: builtins.str = ...,
1877
+ ) -> None: ...
1878
+ def ClearField(
1879
+ self,
1880
+ field_name: typing_extensions.Literal[
1881
+ "app_id",
1882
+ b"app_id",
1883
+ "model_id",
1884
+ b"model_id",
1885
+ "model_version_id",
1886
+ b"model_version_id",
1887
+ "user_id",
1888
+ b"user_id",
1889
+ "workflow_id",
1890
+ b"workflow_id",
1891
+ "workflow_version_id",
1892
+ b"workflow_version_id",
1893
+ ],
1894
+ ) -> None: ...
1895
+
1896
+ global___WorkerIDSet = WorkerIDSet
1897
+
1844
1898
  @typing_extensions.final
1845
1899
  class PatchAction(google.protobuf.message.Message):
1846
1900
  """PatchAction"""