SystemDomainGetListRequest22V2
Bases: OCIRequest
Requests the list of all matching system-level domains and all matching reseller level domains. If excludeReseller is specified, returns all matching system-level domain names only. If resellerId is specified, returns all matching system-level domain names and the given reseller's domains. If reseller administrator sends the request and resellerId is not specified, the administrator's resellerId is used.
The response is either SystemDomainGetListResponse22V2 or ErrorResponse.
The following elements are only used in AS data mode and will be ingored in XS data mode:
includeReseller
resellerId
responseSizeLimit
searchCriteriaDomainName
searchCriteriaResellerId
searchCriteriaExactDomainLevel
Attributes:
exclude_reseller (Optional[bool]):
reseller_id (Optional[str]):
response_size_limit (Optional[int]):
search_criteria_domain_name (Optional[List[SearchCriteriaDomainName]]):
search_criteria_reseller_id (Optional[List[SearchCriteriaResellerId]]):
search_criteria_exact_domain_level (Optional[SearchCriteriaExactDomainLevel]):
Source code in src/mercury_ocip_fast/commands/commands.py
86402 86403 86404 86405 86406 86407 86408 86409 86410 86411 86412 86413 86414 86415 86416 86417 86418 86419 86420 86421 86422 86423 86424 86425 86426 86427 86428 86429 86430 86431 86432 86433 86434 86435 86436 86437 86438 86439 86440 86441 86442 86443 86444 86445 86446 86447 86448 86449 86450 86451 86452 86453 86454 86455 | |
Responses
Bases: OCIDataResponse
Contains a table of all matching system-level domain names and all matching reseller level domains. The column headings are: "Domain Name" and "Reseller Id".
Attributes:
system_default_domain (Optional[str]):
domain_table (OCITable):
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 SystemDomainGetListRequest22V2
client = Client()
command = SystemDomainGetListRequest22V2(
exclude_reseller=...,
reseller_id=...,
response_size_limit=...,
search_criteria_domain_name=...,
search_criteria_reseller_id=...,
search_criteria_exact_domain_level=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip_fast.client import Client
client = Client()
response = client.raw_command("SystemDomainGetListRequest22V2",
exclude_reseller=...,
reseller_id=...,
response_size_limit=...,
search_criteria_domain_name=...,
search_criteria_reseller_id=...,
search_criteria_exact_domain_level=...,
)
print(response)