DataKeySummary¶
-
class
oci.apm_control_plane.models.
DataKeySummary
(**kwargs)¶ Bases:
object
Summary of Data Key.
Attributes
TYPE_PRIVATE
A constant which can be used with the type property of a DataKeySummary. TYPE_PUBLIC
A constant which can be used with the type property of a DataKeySummary. name
[Required] Gets the name of this DataKeySummary. type
[Required] Gets the type of this DataKeySummary. value
Gets the value of this DataKeySummary. Methods
__init__
(**kwargs)Initializes a new DataKeySummary object with values from keyword arguments. -
TYPE_PRIVATE
= 'PRIVATE'¶ A constant which can be used with the type property of a DataKeySummary. This constant has a value of “PRIVATE”
-
TYPE_PUBLIC
= 'PUBLIC'¶ A constant which can be used with the type property of a DataKeySummary. This constant has a value of “PUBLIC”
-
__init__
(**kwargs)¶ Initializes a new DataKeySummary object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - value (str) – The value to assign to the value property of this DataKeySummary.
- name (str) – The value to assign to the name property of this DataKeySummary.
- type (str) – The value to assign to the type property of this DataKeySummary. 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 DataKeySummary. Name of the Data Key. The name uniquely identifies a Data Key within an APM domain.
Returns: The name of this DataKeySummary. Return type: str
-
type
¶ [Required] Gets the type of this DataKeySummary. 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 DataKeySummary. Return type: str
-
value
¶ Gets the value of this DataKeySummary. Value of the Data Key.
Returns: The value of this DataKeySummary. Return type: str
-