| |
- builtins.object
-
- AIAPILimits
class AIAPILimits(builtins.object) |
|
AIAPILimits(executions: ai_api_client_sdk.models.ai_api_limits_executions.AIAPILimitsExecutions = None, deployments: ai_api_client_sdk.models.ai_api_limits_deployments.AIAPILimitsDeployments = None, **kwargs)
The AIAPILimits object represents the the limits for executions and deployments
:param executions: represents the limits for executions, defaults to None
:type executions: class:`ai_api_client_sdk.models.ai_api_limits_executions.AIAPILimitsExecutions`, optional
:param deployments: represents the limits for deployments, defaults to None
:type deployments: class:`ai_api_client_sdk.models.ai_api_limits_deployments.AIAPILimitsDeployments`, optional
:param `**kwargs`: The keyword arguments are there in case there are additional attributes returned from server |
|
Methods defined here:
- __eq__(self, other)
- Return self==value.
- __init__(self, executions: ai_api_client_sdk.models.ai_api_limits_executions.AIAPILimitsExecutions = None, deployments: ai_api_client_sdk.models.ai_api_limits_deployments.AIAPILimitsDeployments = None, **kwargs)
- Initialize self. See help(type(self)) for accurate signature.
- __str__(self)
- Return str(self).
Static methods defined here:
- from_dict(ai_api_limits_dict: Dict[str, Any])
- Returns a :class:`ai_api_client_sdk.models.ai_api_limits.AIAPILimits` object, created from the values in the
dict provided as parameter
:param ai_api_limits_dict: Dict which includes the necessary values to create the object
:type ai_api_limits_dict: Dict[str, Any]
:return: An object, created from the values provided
:rtype: class:`ai_api_client_sdk.models.ai_api_limits.AIAPILimits`
Data descriptors defined here:
- __dict__
- dictionary for instance variables (if defined)
- __weakref__
- list of weak references to the object (if defined)
Data and other attributes defined here:
- __hash__ = None
| |