SystemDeviceActivationPolicyGetRequest
Bases: OCIRequest
Request the Device Activation policy of the system. The response is either a SystemDeviceActivationPolicyGetResponse or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemDeviceActivationPolicyGetRequest.
Attributes:
allow_activation_code_request_by_user (bool):
send_activation_code_in_email (bool):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemDeviceActivationPolicyGetRequest
client = Client()
command = SystemDeviceActivationPolicyGetRequest()
response = client.command(command)
print(response)