ResellerIntegratedIMPModifyRequest
Bases: OCIRequest
Modify the Integrated IMP service attributes for the reseller. The response is either a SuccessResponse or an ErrorResponse.
Attributes:
reseller_id (str):
use_system_service_domain (Optional[bool]):
service_domain (Optional[Nillable[str]]):
service_port (Optional[Nillable[int]]):
use_system_messaging_server (Optional[bool]):
provisioning_url (Optional[Nillable[str]]):
provisioning_user_id (Optional[Nillable[str]]):
provisioning_password (Optional[Nillable[str]]):
bosh_url (Optional[Nillable[str]]):
default_imp_id_type (Optional[str]):
Source code in src/mercury_ocip/commands/commands.py
61082 61083 61084 61085 61086 61087 61088 61089 61090 61091 61092 61093 61094 61095 61096 61097 61098 61099 61100 61101 61102 61103 61104 61105 61106 61107 61108 61109 61110 61111 61112 61113 61114 61115 61116 61117 61118 61119 61120 61121 61122 61123 61124 61125 61126 61127 61128 61129 61130 61131 61132 61133 61134 61135 61136 61137 61138 61139 61140 61141 61142 61143 61144 61145 61146 61147 61148 61149 61150 61151 61152 61153 61154 61155 61156 61157 61158 61159 61160 61161 | |
Responses
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import ResellerIntegratedIMPModifyRequest
client = Client()
command = ResellerIntegratedIMPModifyRequest(
reseller_id=...,
use_system_service_domain=...,
service_domain=...,
service_port=...,
use_system_messaging_server=...,
provisioning_url=...,
provisioning_user_id=...,
provisioning_password=...,
bosh_url=...,
default_imp_id_type=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip.client import Client
client = Client()
response = client.raw_command("ResellerIntegratedIMPModifyRequest",
reseller_id=...,
use_system_service_domain=...,
service_domain=...,
service_port=...,
use_system_messaging_server=...,
provisioning_url=...,
provisioning_user_id=...,
provisioning_password=...,
bosh_url=...,
default_imp_id_type=...,
)
print(response)