ServiceProviderServicePackGetDetailListRequest
Bases: OCIRequest
Request to get a service pack details. The response is either ServiceProviderServicePackGetDetailListResponse or ErrorResponse.
Attributes:
service_provider_id (str):
service_pack_name (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to ServiceProviderServicePackGetDetailListRequest. It contains the service pack details and the list of services in a table format. The column headings are "Service", "Authorized" "Allocated" and "Available".
Attributes:
service_pack_name (str):
service_pack_description (Optional[str]):
is_available_for_use (bool):
service_pack_quantity (UnboundedPositiveInt):
assigned_quantity (UnboundedNonNegativeInt):
allowed_quantity (UnboundedPositiveInt):
user_service_table (OCITable):
Source code in src/mercury_ocip_fast/commands/commands.py
135464 135465 135466 135467 135468 135469 135470 135471 135472 135473 135474 135475 135476 135477 135478 135479 135480 135481 135482 135483 135484 135485 135486 135487 135488 135489 135490 135491 135492 135493 135494 135495 135496 135497 135498 135499 135500 135501 135502 135503 135504 135505 135506 135507 135508 | |
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import ServiceProviderServicePackGetDetailListRequest
client = Client()
command = ServiceProviderServicePackGetDetailListRequest(
service_provider_id=...,
service_pack_name=...,
)
response = client.command(command)
print(response)