CryptoSqlnetParameterValue¶
-
class
oci.data_safe.models.CryptoSqlnetParameterValue(**kwargs)¶ Bases:
objectSQLNET parameter value payload.
Attributes
TYPE_BOOLEANA constant which can be used with the type property of a CryptoSqlnetParameterValue. TYPE_LISTA constant which can be used with the type property of a CryptoSqlnetParameterValue. TYPE_TEXTA constant which can be used with the type property of a CryptoSqlnetParameterValue. type[Required] Gets the type of this CryptoSqlnetParameterValue. value[Required] Gets the value of this CryptoSqlnetParameterValue. Methods
__init__(**kwargs)Initializes a new CryptoSqlnetParameterValue object with values from keyword arguments. -
TYPE_BOOLEAN= 'BOOLEAN'¶ A constant which can be used with the type property of a CryptoSqlnetParameterValue. This constant has a value of “BOOLEAN”
-
TYPE_LIST= 'LIST'¶ A constant which can be used with the type property of a CryptoSqlnetParameterValue. This constant has a value of “LIST”
-
TYPE_TEXT= 'TEXT'¶ A constant which can be used with the type property of a CryptoSqlnetParameterValue. This constant has a value of “TEXT”
-
__init__(**kwargs)¶ Initializes a new CryptoSqlnetParameterValue object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - type (str) – The value to assign to the type property of this CryptoSqlnetParameterValue. Allowed values for this property are: “TEXT”, “BOOLEAN”, “LIST”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
- value (object) – The value to assign to the value property of this CryptoSqlnetParameterValue.
-
type¶ [Required] Gets the type of this CryptoSqlnetParameterValue. Value type of the SQLNET parameter.
Allowed values for this property are: “TEXT”, “BOOLEAN”, “LIST”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The type of this CryptoSqlnetParameterValue. Return type: str
-
value¶ [Required] Gets the value of this CryptoSqlnetParameterValue. Parsed SQLNET parameter value. TEXT returns a string, BOOLEAN returns a boolean, and LIST returns an array of strings.
Returns: The value of this CryptoSqlnetParameterValue. Return type: object
-