UpdateModelConfigurationDetails¶
- 
class oci.data_science.models.UpdateModelConfigurationDetails(**kwargs)¶
- Bases: - object- The model configuration details for update. - Methods - __init__(**kwargs)- Initializes a new UpdateModelConfigurationDetails object with values from keyword arguments. - Attributes - bandwidth_mbps- Gets the bandwidth_mbps of this UpdateModelConfigurationDetails. - instance_configuration- Gets the instance_configuration of this UpdateModelConfigurationDetails. - maximum_bandwidth_mbps- Gets the maximum_bandwidth_mbps of this UpdateModelConfigurationDetails. - model_id- [Required] Gets the model_id of this UpdateModelConfigurationDetails. - scaling_policy- Gets the scaling_policy of this UpdateModelConfigurationDetails. - 
__init__(**kwargs)¶
- Initializes a new UpdateModelConfigurationDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - model_id (str) – The value to assign to the model_id property of this UpdateModelConfigurationDetails.
- instance_configuration (oci.data_science.models.InstanceConfiguration) – The value to assign to the instance_configuration property of this UpdateModelConfigurationDetails.
- scaling_policy (oci.data_science.models.ScalingPolicy) – The value to assign to the scaling_policy property of this UpdateModelConfigurationDetails.
- bandwidth_mbps (int) – The value to assign to the bandwidth_mbps property of this UpdateModelConfigurationDetails.
- maximum_bandwidth_mbps (int) – The value to assign to the maximum_bandwidth_mbps property of this UpdateModelConfigurationDetails.
 
 - 
bandwidth_mbps¶
- Gets the bandwidth_mbps of this UpdateModelConfigurationDetails. The minimum network bandwidth for the model deployment. - Returns: - The bandwidth_mbps of this UpdateModelConfigurationDetails. - Return type: - int 
 - 
instance_configuration¶
- Gets the instance_configuration of this UpdateModelConfigurationDetails. - Returns: - The instance_configuration of this UpdateModelConfigurationDetails. - Return type: - oci.data_science.models.InstanceConfiguration 
 - 
maximum_bandwidth_mbps¶
- Gets the maximum_bandwidth_mbps of this UpdateModelConfigurationDetails. The maximum network bandwidth for the model deployment. - Returns: - The maximum_bandwidth_mbps of this UpdateModelConfigurationDetails. - Return type: - int 
 - 
model_id¶
- [Required] Gets the model_id of this UpdateModelConfigurationDetails. The OCID of the model you want to update. - Returns: - The model_id of this UpdateModelConfigurationDetails. - Return type: - str 
 - 
scaling_policy¶
- Gets the scaling_policy of this UpdateModelConfigurationDetails. - Returns: - The scaling_policy of this UpdateModelConfigurationDetails. - Return type: - oci.data_science.models.ScalingPolicy 
 
-