* use default values for non-required properties if a default is specified * generate client * I have generated the latest API! --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
16 lines
238 B
Python
16 lines
238 B
Python
|
|
from pydantic import BaseModel, ConfigDict
|
|
|
|
|
|
|
|
class MetaClusterInfo(BaseModel):
|
|
"""Jetstream statistics."""
|
|
|
|
cluster_size: int = 0
|
|
|
|
leader: str = ""
|
|
|
|
name: str = ""
|
|
|
|
model_config = ConfigDict(protected_namespaces=())
|