DedicatedServingMode

class oci.generative_ai_inference.models.DedicatedServingMode(**kwargs)

Bases: oci.generative_ai_inference.models.serving_mode.ServingMode

The model’s serving mode is dedicated serving and has an endpoint on a dedicated AI cluster.

Attributes

SERVING_TYPE_DEDICATED str(object=’’) -> str
SERVING_TYPE_ON_DEMAND str(object=’’) -> str
endpoint_id [Required] Gets the endpoint_id of this DedicatedServingMode.
serving_type [Required] Gets the serving_type of this ServingMode.

Methods

__init__(**kwargs) Initializes a new DedicatedServingMode object with values from keyword arguments.
get_subtype(object_dictionary) Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.
SERVING_TYPE_DEDICATED = 'DEDICATED'
SERVING_TYPE_ON_DEMAND = 'ON_DEMAND'
__init__(**kwargs)

Initializes a new DedicatedServingMode object with values from keyword arguments. The default value of the serving_type attribute of this class is DEDICATED and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • serving_type (str) – The value to assign to the serving_type property of this DedicatedServingMode. Allowed values for this property are: “ON_DEMAND”, “DEDICATED”
  • endpoint_id (str) – The value to assign to the endpoint_id property of this DedicatedServingMode.
endpoint_id

[Required] Gets the endpoint_id of this DedicatedServingMode. The OCID of the endpoint to use.

Returns:The endpoint_id of this DedicatedServingMode.
Return type:str
static get_subtype(object_dictionary)

Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.

serving_type

[Required] Gets the serving_type of this ServingMode. The serving mode type, which could be on-demand serving or dedicated serving.

Allowed values for this property are: “ON_DEMAND”, “DEDICATED”

Returns:The serving_type of this ServingMode.
Return type:str