SystemOfficeZoneGetRequest
Bases: OCIRequest
Get an existing Office Zone. The response is either a SystemOfficeZoneGetResponse or an ErrorResponse.
Attributes:
office_zone_name (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the SystemOfficeZoneGetRequest. The response contains the Office Zone information.
Attributes:
description (Optional[str]):
zone_name (List[str]):
primary_zone_name (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import SystemOfficeZoneGetRequest
client = Client()
command = SystemOfficeZoneGetRequest(
office_zone_name=...,
)
response = client.command(command)
print(response)