SkillParameter¶
-
class
oci.oda.models.
SkillParameter
(**kwargs)¶ Bases:
object
Metadata for a Skill Parameter.
Attributes
LIFECYCLE_STATE_ACTIVE
A constant which can be used with the lifecycle_state property of a SkillParameter. LIFECYCLE_STATE_CREATING
A constant which can be used with the lifecycle_state property of a SkillParameter. LIFECYCLE_STATE_DELETED
A constant which can be used with the lifecycle_state property of a SkillParameter. LIFECYCLE_STATE_DELETING
A constant which can be used with the lifecycle_state property of a SkillParameter. LIFECYCLE_STATE_FAILED
A constant which can be used with the lifecycle_state property of a SkillParameter. LIFECYCLE_STATE_INACTIVE
A constant which can be used with the lifecycle_state property of a SkillParameter. LIFECYCLE_STATE_UPDATING
A constant which can be used with the lifecycle_state property of a SkillParameter. TYPE_BOOLEAN
A constant which can be used with the type property of a SkillParameter. TYPE_FLOAT
A constant which can be used with the type property of a SkillParameter. TYPE_INTEGER
A constant which can be used with the type property of a SkillParameter. TYPE_SECURE
A constant which can be used with the type property of a SkillParameter. TYPE_STRING
A constant which can be used with the type property of a SkillParameter. description
Gets the description of this SkillParameter. display_name
[Required] Gets the display_name of this SkillParameter. lifecycle_state
[Required] Gets the lifecycle_state of this SkillParameter. name
[Required] Gets the name of this SkillParameter. type
[Required] Gets the type of this SkillParameter. value
[Required] Gets the value of this SkillParameter. Methods
__init__
(**kwargs)Initializes a new SkillParameter object with values from keyword arguments. -
LIFECYCLE_STATE_ACTIVE
= 'ACTIVE'¶ A constant which can be used with the lifecycle_state property of a SkillParameter. This constant has a value of “ACTIVE”
-
LIFECYCLE_STATE_CREATING
= 'CREATING'¶ A constant which can be used with the lifecycle_state property of a SkillParameter. This constant has a value of “CREATING”
-
LIFECYCLE_STATE_DELETED
= 'DELETED'¶ A constant which can be used with the lifecycle_state property of a SkillParameter. This constant has a value of “DELETED”
-
LIFECYCLE_STATE_DELETING
= 'DELETING'¶ A constant which can be used with the lifecycle_state property of a SkillParameter. This constant has a value of “DELETING”
-
LIFECYCLE_STATE_FAILED
= 'FAILED'¶ A constant which can be used with the lifecycle_state property of a SkillParameter. This constant has a value of “FAILED”
-
LIFECYCLE_STATE_INACTIVE
= 'INACTIVE'¶ A constant which can be used with the lifecycle_state property of a SkillParameter. This constant has a value of “INACTIVE”
-
LIFECYCLE_STATE_UPDATING
= 'UPDATING'¶ A constant which can be used with the lifecycle_state property of a SkillParameter. This constant has a value of “UPDATING”
-
TYPE_BOOLEAN
= 'BOOLEAN'¶ A constant which can be used with the type property of a SkillParameter. This constant has a value of “BOOLEAN”
-
TYPE_FLOAT
= 'FLOAT'¶ A constant which can be used with the type property of a SkillParameter. This constant has a value of “FLOAT”
-
TYPE_INTEGER
= 'INTEGER'¶ A constant which can be used with the type property of a SkillParameter. This constant has a value of “INTEGER”
-
TYPE_SECURE
= 'SECURE'¶ A constant which can be used with the type property of a SkillParameter. This constant has a value of “SECURE”
-
TYPE_STRING
= 'STRING'¶ A constant which can be used with the type property of a SkillParameter. This constant has a value of “STRING”
-
__init__
(**kwargs)¶ Initializes a new SkillParameter 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 SkillParameter.
- display_name (str) – The value to assign to the display_name property of this SkillParameter.
- description (str) – The value to assign to the description property of this SkillParameter.
- type (str) – The value to assign to the type property of this SkillParameter. Allowed values for this property are: “STRING”, “INTEGER”, “FLOAT”, “BOOLEAN”, “SECURE”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
- value (str) – The value to assign to the value property of this SkillParameter.
- lifecycle_state (str) – The value to assign to the lifecycle_state property of this SkillParameter. Allowed values for this property are: “CREATING”, “UPDATING”, “ACTIVE”, “INACTIVE”, “DELETING”, “DELETED”, “FAILED”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
-
description
¶ Gets the description of this SkillParameter. A description of the Parameter.
Returns: The description of this SkillParameter. Return type: str
-
display_name
¶ [Required] Gets the display_name of this SkillParameter. The display name for the Parameter.
Returns: The display_name of this SkillParameter. Return type: str
-
lifecycle_state
¶ [Required] Gets the lifecycle_state of this SkillParameter. The Parameter’s current state.
Allowed values for this property are: “CREATING”, “UPDATING”, “ACTIVE”, “INACTIVE”, “DELETING”, “DELETED”, “FAILED”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The lifecycle_state of this SkillParameter. Return type: str
-
name
¶ [Required] Gets the name of this SkillParameter. The Parameter name. This must be unique within the parent resource.
Returns: The name of this SkillParameter. Return type: str
-
type
¶ [Required] Gets the type of this SkillParameter. The value type.
Allowed values for this property are: “STRING”, “INTEGER”, “FLOAT”, “BOOLEAN”, “SECURE”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The type of this SkillParameter. Return type: str
-
value
¶ [Required] Gets the value of this SkillParameter. The current value. The value will be interpreted based on the type.
Returns: The value of this SkillParameter. Return type: str
-