ServiceProviderServicePackMigrationTaskGetRequest21
Bases: OCIRequest
Requests the details of a specified service pack migration task. The response is either ServiceProviderServicePackMigrationTaskGetResponse21 or ErrorResponse.
Attributes:
service_provider_id (str):
task_name (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to ServiceProviderServicePackMigrationTaskGetRequest21. The groupTable column headings are: "Group Id", "Group Name", and "User Count".
Attributes:
task_name (str):
start_timestamp (Optional[str]):
actual_start_timestamp (Optional[str]):
expire_after_num_hours (int):
max_duration_hours (int):
send_report_email (bool):
report_delivery_email_address (Optional[str]):
abort_on_error (bool):
abort_error_threshold (Optional[int]):
report_all_users (bool):
automatically_increment_service_quantity (bool):
error_count (int):
status (str):
groups_processed (int):
groups_total (int):
users_processed (int):
users_total (int):
user_selection_type (str):
report_file_path_name (str):
migrate_all_groups (Optional[bool]):
group_table (Optional[OCITable]):
user_selection_service_pack_name (Optional[List[str]]):
user_selection_service_name (Optional[List[str]]):
remove_service_pack_name (Optional[List[str]]):
remove_service_name (Optional[List[str]]):
assign_service_pack_name (Optional[List[str]]):
assign_service_name (Optional[List[str]]):
Source code in src/mercury_ocip_fast/commands/commands.py
135597 135598 135599 135600 135601 135602 135603 135604 135605 135606 135607 135608 135609 135610 135611 135612 135613 135614 135615 135616 135617 135618 135619 135620 135621 135622 135623 135624 135625 135626 135627 135628 135629 135630 135631 135632 135633 135634 135635 135636 135637 135638 135639 135640 135641 135642 135643 135644 135645 135646 135647 135648 135649 135650 135651 135652 135653 135654 135655 135656 135657 135658 135659 135660 135661 135662 135663 135664 135665 135666 135667 135668 135669 135670 135671 135672 135673 135674 135675 135676 135677 135678 135679 135680 135681 135682 135683 135684 135685 135686 135687 135688 135689 135690 135691 135692 135693 135694 135695 135696 135697 135698 135699 135700 135701 135702 135703 135704 135705 135706 135707 135708 135709 135710 135711 135712 135713 135714 135715 135716 135717 135718 135719 135720 135721 135722 135723 135724 135725 135726 135727 135728 135729 135730 135731 135732 135733 135734 135735 135736 135737 135738 | |
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import ServiceProviderServicePackMigrationTaskGetRequest21
client = Client()
command = ServiceProviderServicePackMigrationTaskGetRequest21(
service_provider_id=...,
task_name=...,
)
response = client.command(command)
print(response)