MlApplicationPackageArgumentDetails

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

Bases: object

Represents single argument name value pair.

Attributes

TYPE_OCID A constant which can be used with the type property of a MlApplicationPackageArgumentDetails.
TYPE_STRING A constant which can be used with the type property of a MlApplicationPackageArgumentDetails.
description [Required] Gets the description of this MlApplicationPackageArgumentDetails.
is_mandatory [Required] Gets the is_mandatory of this MlApplicationPackageArgumentDetails.
name [Required] Gets the name of this MlApplicationPackageArgumentDetails.
type [Required] Gets the type of this MlApplicationPackageArgumentDetails.
value [Required] Gets the value of this MlApplicationPackageArgumentDetails.

Methods

__init__(**kwargs) Initializes a new MlApplicationPackageArgumentDetails object with values from keyword arguments.
TYPE_OCID = 'OCID'

A constant which can be used with the type property of a MlApplicationPackageArgumentDetails. This constant has a value of “OCID”

TYPE_STRING = 'STRING'

A constant which can be used with the type property of a MlApplicationPackageArgumentDetails. This constant has a value of “STRING”

__init__(**kwargs)

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

Parameters:
  • name (str) – The value to assign to the name property of this MlApplicationPackageArgumentDetails.
  • value (str) – The value to assign to the value property of this MlApplicationPackageArgumentDetails.
  • description (str) – The value to assign to the description property of this MlApplicationPackageArgumentDetails.
  • type (str) – The value to assign to the type property of this MlApplicationPackageArgumentDetails. Allowed values for this property are: “STRING”, “OCID”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
  • is_mandatory (bool) – The value to assign to the is_mandatory property of this MlApplicationPackageArgumentDetails.
description

[Required] Gets the description of this MlApplicationPackageArgumentDetails. short description of the argument

Returns:The description of this MlApplicationPackageArgumentDetails.
Return type:str
is_mandatory

[Required] Gets the is_mandatory of this MlApplicationPackageArgumentDetails. argument is mandatory or not

Returns:The is_mandatory of this MlApplicationPackageArgumentDetails.
Return type:bool
name

[Required] Gets the name of this MlApplicationPackageArgumentDetails. Argument name

Returns:The name of this MlApplicationPackageArgumentDetails.
Return type:str
type

[Required] Gets the type of this MlApplicationPackageArgumentDetails. type of the argument

Allowed values for this property are: “STRING”, “OCID”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.

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

[Required] Gets the value of this MlApplicationPackageArgumentDetails. Argument value

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