Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.59 KB

File metadata and controls

33 lines (24 loc) · 1.59 KB

SecretKeyRequest

Secret key parameters

Properties

Name Type Description Notes
ip str The IP address that will be linked to the key. If this node or 'ips' node is not specified, the IP address of the request sender will be used. [optional]
ips List[str] Array of IP addresses that will be linked to the key. If this node or 'ip' node is not specified, the IP address of the request sender will be used. [optional]
login str The login name of an existing customer or a reseller that will have this secret key. The customer's or reseller's account should be active. If this node is not specified, the administrator's login will be used. [optional]
description str Additional information about the key. [optional]

Example

from plesk_client.models.secret_key_request import SecretKeyRequest

# TODO update the JSON string below
json = "{}"
# create an instance of SecretKeyRequest from a JSON string
secret_key_request_instance = SecretKeyRequest.from_json(json)
# print the JSON string representation of the object
print(SecretKeyRequest.to_json())

# convert the object into a dict
secret_key_request_dict = secret_key_request_instance.to_dict()
# create an instance of SecretKeyRequest from a dict
secret_key_request_from_dict = SecretKeyRequest.from_dict(secret_key_request_dict)

[Back to Model list] [Back to API list] [Back to README]