BaseKeyDetails¶
-
class
oci.apm_control_plane.models.
BaseKeyDetails
(**kwargs)¶ Bases:
object
The information about a Data Key.
Attributes
TYPE_PRIVATE
A constant which can be used with the type property of a BaseKeyDetails. TYPE_PUBLIC
A constant which can be used with the type property of a BaseKeyDetails. name
[Required] Gets the name of this BaseKeyDetails. type
[Required] Gets the type of this BaseKeyDetails. Methods
__init__
(**kwargs)Initializes a new BaseKeyDetails object with values from keyword arguments. -
TYPE_PRIVATE
= 'PRIVATE'¶ A constant which can be used with the type property of a BaseKeyDetails. This constant has a value of “PRIVATE”
-
TYPE_PUBLIC
= 'PUBLIC'¶ A constant which can be used with the type property of a BaseKeyDetails. This constant has a value of “PUBLIC”
-
__init__
(**kwargs)¶ Initializes a new BaseKeyDetails 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 BaseKeyDetails.
- type (str) – The value to assign to the type property of this BaseKeyDetails. Allowed values for this property are: “PRIVATE”, “PUBLIC”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
-
name
¶ [Required] Gets the name of this BaseKeyDetails. Name of the Data Key. The name uniquely identifies a Data Key within an APM domain.
Returns: The name of this BaseKeyDetails. Return type: str
-
type
¶ [Required] Gets the type of this BaseKeyDetails. Type of the Data Key.
Allowed values for this property are: “PRIVATE”, “PUBLIC”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The type of this BaseKeyDetails. Return type: str
-