GroupGetDefaultRequest
Bases: OCIRequest
Request the default profile for a group. The response is either a GroupGetDefaultResponse or an ErrorResponse.
Attributes:
service_provider_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the GroupGetDefaultRequest. All values are default values for a group's profile.
Attributes:
default_domain (str):
user_limit (int):
time_zone (str):
time_zone_display_name (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 GroupGetDefaultRequest
client = Client()
command = GroupGetDefaultRequest(
service_provider_id=...,
)
response = client.command(command)
print(response)