ServiceProviderGetDefaultRequest
Bases: OCIRequest
Request the default profile for a service provider or enterprise. The response is either a ServiceProviderGetDefaultResponse or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the ServiceProviderGetDefaultRequest. All values are default values for a service provider or enterprise's profile.
Attributes:
is_enterprise (bool):
default_domain (Optional[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 ServiceProviderGetDefaultRequest
client = Client()
command = ServiceProviderGetDefaultRequest()
response = client.command(command)
print(response)