ConfigurationProperty

class oci.data_science.models.ConfigurationProperty(**kwargs)

Bases: object

Property that is used for provisioning of the given MlApplicationInstance. It is validated against configurationSchema defined in referenced MlApplicationImplementation. The value is mandatory with exception for ConfigurationProperty of SECRET type where read operation does not return value field as it contains plain text secret and update operation does not have to contain value field when the secret value should not be updated.

Methods

__init__(**kwargs) Initializes a new ConfigurationProperty object with values from keyword arguments.

Attributes

key [Required] Gets the key of this ConfigurationProperty.
value Gets the value of this ConfigurationProperty.
__init__(**kwargs)

Initializes a new ConfigurationProperty object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • key (str) – The value to assign to the key property of this ConfigurationProperty.
  • value (str) – The value to assign to the value property of this ConfigurationProperty.
key

[Required] Gets the key of this ConfigurationProperty. Key of configuration property

Returns:The key of this ConfigurationProperty.
Return type:str
value

Gets the value of this ConfigurationProperty. Value of configuration property

Returns:The value of this ConfigurationProperty.
Return type:str