mirror of
https://github.com/LukeHagar/plexpy.git
synced 2025-12-06 20:57:46 +00:00
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.404.5
This commit is contained in:
@@ -16,6 +16,28 @@ GET_SERVER_RESOURCES_SERVERS = [
|
||||
]
|
||||
|
||||
|
||||
class GetServerResourcesGlobalsTypedDict(TypedDict):
|
||||
client_id: NotRequired[str]
|
||||
r"""The unique identifier for the client application
|
||||
This is used to track the client application and its usage
|
||||
(UUID, serial number, or other number unique per device)
|
||||
|
||||
"""
|
||||
|
||||
|
||||
class GetServerResourcesGlobals(BaseModel):
|
||||
client_id: Annotated[
|
||||
Optional[str],
|
||||
pydantic.Field(alias="X-Plex-Client-Identifier"),
|
||||
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
||||
] = None
|
||||
r"""The unique identifier for the client application
|
||||
This is used to track the client application and its usage
|
||||
(UUID, serial number, or other number unique per device)
|
||||
|
||||
"""
|
||||
|
||||
|
||||
class IncludeHTTPS(int, Enum):
|
||||
r"""Include Https entries in the results"""
|
||||
|
||||
@@ -50,6 +72,12 @@ class GetServerResourcesRequestTypedDict(TypedDict):
|
||||
"""
|
||||
include_i_pv6: NotRequired[IncludeIPv6]
|
||||
r"""Include IPv6 entries in the results"""
|
||||
client_id: NotRequired[str]
|
||||
r"""The unique identifier for the client application
|
||||
This is used to track the client application and its usage
|
||||
(UUID, serial number, or other number unique per device)
|
||||
|
||||
"""
|
||||
|
||||
|
||||
class GetServerResourcesRequest(BaseModel):
|
||||
@@ -77,6 +105,17 @@ class GetServerResourcesRequest(BaseModel):
|
||||
] = IncludeIPv6.DISABLE
|
||||
r"""Include IPv6 entries in the results"""
|
||||
|
||||
client_id: Annotated[
|
||||
Optional[str],
|
||||
pydantic.Field(alias="X-Plex-Client-Identifier"),
|
||||
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
||||
] = None
|
||||
r"""The unique identifier for the client application
|
||||
This is used to track the client application and its usage
|
||||
(UUID, serial number, or other number unique per device)
|
||||
|
||||
"""
|
||||
|
||||
|
||||
class Protocol(str, Enum):
|
||||
r"""The protocol used for the connection (http, https, etc)"""
|
||||
|
||||
Reference in New Issue
Block a user