SystemIntegratedIMPGetRequest25
Bases: OCIRequest
Get the system Integrated IMP service attributes. The response is either SystemIntegratedIMPGetResponse25 or ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the SystemIntegratedIMPGetRequest25. The response contains the system Integrated IMP service attributes.
The following elements are only used in AS data mode:
boshURL
propagateImpErrorDetails
Attributes:
service_domain (Optional[str]):
service_port (Optional[int]):
add_service_provider_in_imp_user_id (bool):
bosh_url (Optional[str]):
allow_imp_password_retrieval (bool):
propagate_imp_error_details (bool):
Source code in src/mercury_ocip_fast/commands/commands.py
144994 144995 144996 144997 144998 144999 145000 145001 145002 145003 145004 145005 145006 145007 145008 145009 145010 145011 145012 145013 145014 145015 145016 145017 145018 145019 145020 145021 145022 145023 145024 145025 145026 145027 145028 145029 145030 145031 145032 145033 145034 145035 145036 145037 | |
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import SystemIntegratedIMPGetRequest25
client = Client()
command = SystemIntegratedIMPGetRequest25()
response = client.command(command)
print(response)