Skip to content

Commit ed1e8b0

Browse files
committed
GRPC clients version 11.3.1
1 parent ab504e9 commit ed1e8b0

File tree

5 files changed

+65
-59
lines changed

5 files changed

+65
-59
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
11.3.0
1+
11.3.1

clarifai_grpc/channel/http_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
from clarifai_grpc.channel.errors import ApiError
88

9-
CLIENT_VERSION = "11.3.0"
9+
CLIENT_VERSION = "11.3.1"
1010
OS_VER = os.sys.platform
1111
PYTHON_VERSION = ".".join(
1212
map(

clarifai_grpc/grpc/api/service_pb2.py

Lines changed: 55 additions & 55 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

clarifai_grpc/grpc/api/service_pb2.pyi

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10489,6 +10489,7 @@ class ListNodepoolsRequest(google.protobuf.message.Message):
1048910489
COMPUTE_CLUSTER_ID_FIELD_NUMBER: builtins.int
1049010490
PAGE_FIELD_NUMBER: builtins.int
1049110491
PER_PAGE_FIELD_NUMBER: builtins.int
10492+
ACTIVE_USAGE_FIELD_NUMBER: builtins.int
1049210493
@property
1049310494
def user_app_id(self) -> proto.clarifai.api.resources_pb2.UserAppIDSet: ...
1049410495
compute_cluster_id: builtins.str
@@ -10500,16 +10501,21 @@ class ListNodepoolsRequest(google.protobuf.message.Message):
1050010501
"""(optional URL parameter) The number of results that will be contained in each page. Defaults
1050110502
to 128.
1050210503
"""
10504+
active_usage: builtins.bool
10505+
"""Only return nodepools that are actively being used (having runners with
10506+
replicas >= threshold and pipeline versions scheduled to run)
10507+
"""
1050310508
def __init__(
1050410509
self,
1050510510
*,
1050610511
user_app_id: proto.clarifai.api.resources_pb2.UserAppIDSet | None = ...,
1050710512
compute_cluster_id: builtins.str = ...,
1050810513
page: builtins.int = ...,
1050910514
per_page: builtins.int = ...,
10515+
active_usage: builtins.bool = ...,
1051010516
) -> None: ...
1051110517
def HasField(self, field_name: typing_extensions.Literal["user_app_id", b"user_app_id"]) -> builtins.bool: ...
10512-
def ClearField(self, field_name: typing_extensions.Literal["compute_cluster_id", b"compute_cluster_id", "page", b"page", "per_page", b"per_page", "user_app_id", b"user_app_id"]) -> None: ...
10518+
def ClearField(self, field_name: typing_extensions.Literal["active_usage", b"active_usage", "compute_cluster_id", b"compute_cluster_id", "page", b"page", "per_page", b"per_page", "user_app_id", b"user_app_id"]) -> None: ...
1051310519

1051410520
global___ListNodepoolsRequest = ListNodepoolsRequest
1051510521

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
setuptools.setup(
99
name="clarifai-grpc",
10-
version="11.3.0",
10+
version="11.3.1",
1111
author="Clarifai",
1212
author_email="[email protected]",
1313
description="Clarifai gRPC API Client",

0 commit comments

Comments
 (0)