SystemIntegratedIMPModifyRequest
Bases: OCIRequest
Modify the system Integrated IMP service attributes. The response is either a SuccessResponse or an ErrorResponse.
The following elements are only used in AS data mode:
boshURL
allowImpPasswordRetrieval
propagateImpErrorDetails
Attributes:
service_domain (Optional[Nillable[str]]):
service_port (Optional[Nillable[int]]):
add_service_provider_in_imp_user_id (Optional[bool]):
bosh_url (Optional[Nillable[str]]):
allow_imp_password_retrieval (Optional[bool]):
propagate_imp_error_details (Optional[bool]):
Source code in src/mercury_ocip_fast/commands/commands.py
88393 88394 88395 88396 88397 88398 88399 88400 88401 88402 88403 88404 88405 88406 88407 88408 88409 88410 88411 88412 88413 88414 88415 88416 88417 88418 88419 88420 88421 88422 88423 88424 88425 88426 88427 88428 88429 88430 88431 88432 88433 88434 88435 88436 88437 88438 88439 88440 88441 88442 88443 88444 88445 88446 88447 88448 | |
Responses
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import SystemIntegratedIMPModifyRequest
client = Client()
command = SystemIntegratedIMPModifyRequest(
service_domain=...,
service_port=...,
add_service_provider_in_imp_user_id=...,
bosh_url=...,
allow_imp_password_retrieval=...,
propagate_imp_error_details=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip_fast.client import Client
client = Client()
response = client.raw_command("SystemIntegratedIMPModifyRequest",
service_domain=...,
service_port=...,
add_service_provider_in_imp_user_id=...,
bosh_url=...,
allow_imp_password_retrieval=...,
propagate_imp_error_details=...,
)
print(response)