ai_api_client_sdk.models.ai_api_capabilities module

class ai_api_client_sdk.models.ai_api_capabilities.AIAPICapabilities(multitenant: bool = True, shareable: bool = True, static_deployments: bool = True, user_deployments: bool = True, time_to_live_deployments: bool = False, user_executions: bool = True, bulk_updates: AIAPICapabilitiesBulkUpdates = None, execution_schedules: bool = False, logs: AIAPICapabilitiesLogs = None, **kwargs)

Bases: object

The AIAPICapabilities object represent the capabilities of the AI API

Parameters:
  • multitenant (bool, optional) – indicates whether resource groups are supported, defaults to True

  • shareable (bool, optional) – indicates whether clients can share an instance, defaults to True

  • static_deployments (bool, optional) – indicates whether the static, always running deployments are supported, defaults to True

  • user_deployments (bool, optional) – indicates whether deployment creation by users are supported, defaults to True

  • time_to_live_deployments (bool, optional) – indicate whether ttl value of deployment are supported, defaults to False

  • user_executions (bool, optional) – indicates whether execution creation by users are supported, defaults to True

  • bulk_updates (class:ai_api_client_sdk.models.ai_api_capabilities_bulk_updates.AIAPICapabilitiesBulkUpdates, optional) – An object, defining the bulk updates capabilities, defaults to None

  • execution_schedules (bool, optional) – indicates whether execution schedules are supported, defaults to False

  • logs (class:ai_api_client_sdk.models.ai_api_capabilities_logs.AIAPICapabilitiesLogs, optional) – An object, defining the logs capabilities, defaults to None

  • **kwargs – The keyword arguments are there in case there are additional attributes returned from server

__init__(multitenant: bool = True, shareable: bool = True, static_deployments: bool = True, user_deployments: bool = True, time_to_live_deployments: bool = False, user_executions: bool = True, bulk_updates: AIAPICapabilitiesBulkUpdates = None, execution_schedules: bool = False, logs: AIAPICapabilitiesLogs = None, **kwargs)
static from_dict(ai_api_capabilities_dict: Dict[str, Any])

Returns a ai_api_client_sdk.models.ai_api_capabilities.AIAPICapabilities object, created from the values in the dict provided as parameter

Parameters:

ai_api_capabilities_dict (Dict[str, Any]) – Dict which includes the necessary values to create the object

Returns:

An object, created from the values provided

Return type:

class:ai_api_client_sdk.models.ai_api_capabilities.AIAPICapabilities