UpdateMlApplicationInstanceDetails¶
- 
class oci.data_science.models.UpdateMlApplicationInstanceDetails(**kwargs)¶
- Bases: - object- The information to be updated. - Methods - __init__(**kwargs)- Initializes a new UpdateMlApplicationInstanceDetails object with values from keyword arguments. - Attributes - configuration- Gets the configuration of this UpdateMlApplicationInstanceDetails. - defined_tags- Gets the defined_tags of this UpdateMlApplicationInstanceDetails. - freeform_tags- Gets the freeform_tags of this UpdateMlApplicationInstanceDetails. - is_enabled- Gets the is_enabled of this UpdateMlApplicationInstanceDetails. - ml_application_implementation_id- Gets the ml_application_implementation_id of this UpdateMlApplicationInstanceDetails. - 
__init__(**kwargs)¶
- Initializes a new UpdateMlApplicationInstanceDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - configuration (list[oci.data_science.models.ConfigurationProperty]) – The value to assign to the configuration property of this UpdateMlApplicationInstanceDetails.
- ml_application_implementation_id (str) – The value to assign to the ml_application_implementation_id property of this UpdateMlApplicationInstanceDetails.
- is_enabled (bool) – The value to assign to the is_enabled property of this UpdateMlApplicationInstanceDetails.
- freeform_tags (dict(str, str)) – The value to assign to the freeform_tags property of this UpdateMlApplicationInstanceDetails.
- defined_tags (dict(str, dict(str, object))) – The value to assign to the defined_tags property of this UpdateMlApplicationInstanceDetails.
 
 - 
configuration¶
- Gets the configuration of this UpdateMlApplicationInstanceDetails. Data that are used for provisioning of the given MlApplicationInstance. These are validated against configurationSchema defined in referenced MlApplication. - Returns: - The configuration of this UpdateMlApplicationInstanceDetails. - Return type: - list[oci.data_science.models.ConfigurationProperty] 
 - Gets the defined_tags of this UpdateMlApplicationInstanceDetails. Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {“Operations”: {“CostCenter”: “42”}} - Returns: - The defined_tags of this UpdateMlApplicationInstanceDetails. - Return type: - dict(str, dict(str, object)) 
 - Gets the freeform_tags of this UpdateMlApplicationInstanceDetails. Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {“Department”: “Finance”} - Returns: - The freeform_tags of this UpdateMlApplicationInstanceDetails. - Return type: - dict(str, str) 
 - 
is_enabled¶
- Gets the is_enabled of this UpdateMlApplicationInstanceDetails. Switches lifecycle state of MlApplicationInstance from INACTIVE to ACTIVE (true value) or vice versa (false value). - Returns: - The is_enabled of this UpdateMlApplicationInstanceDetails. - Return type: - bool 
 - 
ml_application_implementation_id¶
- Gets the ml_application_implementation_id of this UpdateMlApplicationInstanceDetails. The OCID of ML Application Implementation selected as a certain solution for a given ML problem (ML Application) used for the given instance. - Returns: - The ml_application_implementation_id of this UpdateMlApplicationInstanceDetails. - Return type: - str 
 
-