CreateSkillParameterDetails¶
-
class
oci.oda.models.
CreateSkillParameterDetails
(**kwargs)¶ Bases:
object
Properties that are required to create a Skill Parameter.
Attributes
TYPE_BOOLEAN
A constant which can be used with the type property of a CreateSkillParameterDetails. TYPE_FLOAT
A constant which can be used with the type property of a CreateSkillParameterDetails. TYPE_INTEGER
A constant which can be used with the type property of a CreateSkillParameterDetails. TYPE_SECURE
A constant which can be used with the type property of a CreateSkillParameterDetails. TYPE_STRING
A constant which can be used with the type property of a CreateSkillParameterDetails. description
Gets the description of this CreateSkillParameterDetails. display_name
[Required] Gets the display_name of this CreateSkillParameterDetails. name
[Required] Gets the name of this CreateSkillParameterDetails. type
[Required] Gets the type of this CreateSkillParameterDetails. value
[Required] Gets the value of this CreateSkillParameterDetails. Methods
__init__
(**kwargs)Initializes a new CreateSkillParameterDetails object with values from keyword arguments. -
TYPE_BOOLEAN
= 'BOOLEAN'¶ A constant which can be used with the type property of a CreateSkillParameterDetails. This constant has a value of “BOOLEAN”
-
TYPE_FLOAT
= 'FLOAT'¶ A constant which can be used with the type property of a CreateSkillParameterDetails. This constant has a value of “FLOAT”
-
TYPE_INTEGER
= 'INTEGER'¶ A constant which can be used with the type property of a CreateSkillParameterDetails. This constant has a value of “INTEGER”
-
TYPE_SECURE
= 'SECURE'¶ A constant which can be used with the type property of a CreateSkillParameterDetails. This constant has a value of “SECURE”
-
TYPE_STRING
= 'STRING'¶ A constant which can be used with the type property of a CreateSkillParameterDetails. This constant has a value of “STRING”
-
__init__
(**kwargs)¶ Initializes a new CreateSkillParameterDetails 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 CreateSkillParameterDetails.
- display_name (str) – The value to assign to the display_name property of this CreateSkillParameterDetails.
- description (str) – The value to assign to the description property of this CreateSkillParameterDetails.
- type (str) – The value to assign to the type property of this CreateSkillParameterDetails. Allowed values for this property are: “STRING”, “INTEGER”, “FLOAT”, “BOOLEAN”, “SECURE”
- value (str) – The value to assign to the value property of this CreateSkillParameterDetails.
-
description
¶ Gets the description of this CreateSkillParameterDetails. A description of the Parameter.
Returns: The description of this CreateSkillParameterDetails. Return type: str
-
display_name
¶ [Required] Gets the display_name of this CreateSkillParameterDetails. The display name for the Parameter.
Returns: The display_name of this CreateSkillParameterDetails. Return type: str
-
name
¶ [Required] Gets the name of this CreateSkillParameterDetails. The Parameter name. This must be unique within the parent resource.
Returns: The name of this CreateSkillParameterDetails. Return type: str
-
type
¶ [Required] Gets the type of this CreateSkillParameterDetails. The value type.
Allowed values for this property are: “STRING”, “INTEGER”, “FLOAT”, “BOOLEAN”, “SECURE”
Returns: The type of this CreateSkillParameterDetails. Return type: str
-
value
¶ [Required] Gets the value of this CreateSkillParameterDetails. The current value. The value will be interpreted based on the type.
Returns: The value of this CreateSkillParameterDetails. Return type: str
-