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