assisted-service-client 2.37.0.post31__tar.gz → 2.49.0.post39__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of assisted-service-client might be problematic. Click here for more details.
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/PKG-INFO +12 -1
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/README.md +11 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/__init__.py +7 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/api/installer_api.py +217 -7
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/api/operators_api.py +216 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/__init__.py +7 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/boot.py +35 -3
- assisted_service_client-2.49.0.post39/assisted_service_client/models/bundle.py +201 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/cluster.py +9 -9
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/cluster_create_params.py +5 -5
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/cluster_validation_id.py +15 -0
- assisted_service_client-2.49.0.post39/assisted_service_client/models/disconnected_cluster_create_params.py +151 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/disk_encryption.py +3 -3
- assisted_service_client-2.49.0.post39/assisted_service_client/models/feature.py +196 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/feature_support_level_id.py +17 -1
- assisted_service_client-2.49.0.post39/assisted_service_client/models/fencing_credentials_params.py +210 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/host.py +31 -3
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/host_role.py +1 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/host_role_update_params.py +1 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/host_stage.py +1 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/host_update_params.py +32 -4
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/host_validation_id.py +14 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/image_type.py +1 -0
- assisted_service_client-2.49.0.post39/assisted_service_client/models/incompatibility_reason.py +95 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/infra_env.py +29 -1
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/infra_env_create_params.py +29 -1
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/infra_env_update_params.py +29 -1
- assisted_service_client-2.49.0.post39/assisted_service_client/models/inline_response2001.py +141 -0
- assisted_service_client-2.37.0.post31/assisted_service_client/models/inline_response2001.py → assisted_service_client-2.49.0.post39/assisted_service_client/models/inline_response2002.py +8 -8
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/install_cmd_request.py +49 -27
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/monitored_operator.py +59 -3
- assisted_service_client-2.49.0.post39/assisted_service_client/models/operator.py +252 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/v2_cluster_update_params.py +5 -5
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/versioned_host_requirements.py +29 -1
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client.egg-info/PKG-INFO +12 -1
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client.egg-info/SOURCES.txt +14 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/setup.py +12 -1
- assisted_service_client-2.49.0.post39/test/test_bundle.py +40 -0
- assisted_service_client-2.49.0.post39/test/test_disconnected_cluster_create_params.py +40 -0
- assisted_service_client-2.49.0.post39/test/test_feature.py +40 -0
- assisted_service_client-2.49.0.post39/test/test_fencing_credentials_params.py +40 -0
- assisted_service_client-2.49.0.post39/test/test_incompatibility_reason.py +40 -0
- assisted_service_client-2.49.0.post39/test/test_inline_response2002.py +40 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_installer_api.py +12 -0
- assisted_service_client-2.49.0.post39/test/test_operator.py +40 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_operators_api.py +14 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/MANIFEST.in +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/api/__init__.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/api/events_api.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/api/managed_domains_api.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/api/manifests_api.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/api/versions_api.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/api_client.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/configuration.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/api_vip.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/api_vip_connectivity_additional_request_header.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/api_vip_connectivity_request.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/api_vip_connectivity_response.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/architecture_support_level_id.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/bind_host_params.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/cluster_default_config.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/cluster_finalizing_progress.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/cluster_host_requirements.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/cluster_host_requirements_details.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/cluster_host_requirements_list.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/cluster_list.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/cluster_network.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/cluster_progress_info.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/completion_params.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/connectivity_check_host.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/connectivity_check_nic.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/connectivity_check_params.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/connectivity_remote_host.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/connectivity_report.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/container_image_availability.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/container_image_availability_request.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/container_image_availability_response.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/container_image_availability_result.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/cpu.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/create_manifest_params.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/credentials.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/dhcp_allocation_request.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/dhcp_allocation_response.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/disk.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/disk_config_params.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/disk_info.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/disk_installation_eligibility.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/disk_role.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/disk_skip_formatting_params.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/disk_speed.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/disk_speed_check_request.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/disk_speed_check_response.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/domain_resolution_request.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/domain_resolution_response.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/domain_resolution_response_resolutions.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/download_boot_artifacts_request.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/drive_type.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/error.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/event.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/event_list.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/finalizing_stage.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/free_addresses_list.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/free_addresses_request.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/free_network_addresses.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/free_networks_addresses.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/gpu.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/host_create_params.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/host_ignition_params.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/host_list.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/host_network.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/host_progress.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/host_progress_info.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/host_registration_response.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/host_registration_response_next_step_runner_command.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/host_static_network_config.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/host_type_hardware_requirements.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/host_type_hardware_requirements_wrapper.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/ignition_endpoint.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/ignition_endpoint_http_headers_params.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/ignored_validations.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/image_create_params.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/image_info.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/import_cluster_params.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/infra_env_list.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/infra_error.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/ingress_cert_params.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/ingress_vip.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/inline_response200.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/installer_args_params.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/interface.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/inventory.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/io_perf.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/ip.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/iscsi.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/kernel_argument.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/kernel_arguments.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/l2_connectivity.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/l3_connectivity.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/last_installation_preparation.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/list_managed_domains.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/list_manifests.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/list_versions.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/load_balancer.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/logs_gather_cmd_request.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/logs_progress_params.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/logs_state.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/logs_type.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/mac_interface_map.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/mac_interface_map_inner.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/machine_network.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/managed_domain.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/manifest.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/memory.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/memory_method.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/monitored_operators_list.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/mtu_report.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/next_step_cmd_request.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/node_label_params.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/ntp_source.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/ntp_synchronization_request.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/ntp_synchronization_response.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/openshift_version.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/openshift_versions.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/operator_create_params.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/operator_hardware_requirements.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/operator_host_requirements.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/operator_monitor_report.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/operator_properties.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/operator_property.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/operator_status.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/operator_type.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/os_image.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/os_images.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/platform.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/platform_external.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/platform_type.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/preflight_hardware_requirements.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/presigned_url.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/proxy.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/reboot_for_reclaim_request.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/release_channel.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/release_image.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/release_images.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/release_source.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/release_sources.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/route.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/secure_boot_state.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/service_network.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/source_state.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/step.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/step_reply.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/step_type.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/steps.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/steps_reply.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/subnet.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/support_level.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/support_levels.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/system_vendor.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/tang_connectivity_request.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/tang_connectivity_response.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/tang_connectivity_response_signatures.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/tang_connectivity_response_tang_server_response.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/update_manifest_params.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/upgrade_agent_request.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/upgrade_agent_response.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/upgrade_agent_result.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/upgrade_channel.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/usage.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/verified_vip.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/verify_vip.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/verify_vips_request.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/verify_vips_response.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/versions.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/vip_type.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/models/vip_verification.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client/rest.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client.egg-info/dependency_links.txt +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client.egg-info/requires.txt +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/assisted_service_client.egg-info/top_level.txt +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/setup.cfg +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/__init__.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_api_vip.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_api_vip_connectivity_additional_request_header.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_api_vip_connectivity_request.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_api_vip_connectivity_response.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_architecture_support_level_id.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_bind_host_params.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_boot.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_cluster.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_cluster_create_params.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_cluster_default_config.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_cluster_finalizing_progress.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_cluster_host_requirements.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_cluster_host_requirements_details.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_cluster_host_requirements_list.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_cluster_list.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_cluster_network.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_cluster_progress_info.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_cluster_validation_id.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_completion_params.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_connectivity_check_host.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_connectivity_check_nic.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_connectivity_check_params.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_connectivity_remote_host.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_connectivity_report.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_container_image_availability.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_container_image_availability_request.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_container_image_availability_response.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_container_image_availability_result.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_cpu.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_create_manifest_params.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_credentials.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_dhcp_allocation_request.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_dhcp_allocation_response.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_disk.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_disk_config_params.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_disk_encryption.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_disk_info.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_disk_installation_eligibility.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_disk_role.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_disk_skip_formatting_params.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_disk_speed.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_disk_speed_check_request.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_disk_speed_check_response.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_domain_resolution_request.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_domain_resolution_response.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_domain_resolution_response_resolutions.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_download_boot_artifacts_request.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_drive_type.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_error.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_event.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_event_list.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_events_api.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_feature_support_level_id.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_finalizing_stage.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_free_addresses_list.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_free_addresses_request.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_free_network_addresses.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_free_networks_addresses.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_gpu.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_host.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_host_create_params.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_host_ignition_params.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_host_list.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_host_network.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_host_progress.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_host_progress_info.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_host_registration_response.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_host_registration_response_next_step_runner_command.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_host_role.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_host_role_update_params.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_host_stage.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_host_static_network_config.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_host_type_hardware_requirements.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_host_type_hardware_requirements_wrapper.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_host_update_params.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_host_validation_id.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_ignition_endpoint.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_ignition_endpoint_http_headers_params.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_ignored_validations.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_image_create_params.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_image_info.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_image_type.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_import_cluster_params.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_infra_env.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_infra_env_create_params.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_infra_env_list.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_infra_env_update_params.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_infra_error.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_ingress_cert_params.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_ingress_vip.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_inline_response200.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_inline_response2001.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_install_cmd_request.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_installer_args_params.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_interface.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_inventory.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_io_perf.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_ip.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_iscsi.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_kernel_argument.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_kernel_arguments.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_l2_connectivity.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_l3_connectivity.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_last_installation_preparation.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_list_managed_domains.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_list_manifests.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_list_versions.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_load_balancer.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_logs_gather_cmd_request.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_logs_progress_params.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_logs_state.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_logs_type.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_mac_interface_map.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_mac_interface_map_inner.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_machine_network.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_managed_domain.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_managed_domains_api.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_manifest.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_manifests_api.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_memory.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_memory_method.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_monitored_operator.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_monitored_operators_list.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_mtu_report.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_next_step_cmd_request.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_node_label_params.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_ntp_source.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_ntp_synchronization_request.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_ntp_synchronization_response.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_openshift_version.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_openshift_versions.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_operator_create_params.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_operator_hardware_requirements.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_operator_host_requirements.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_operator_monitor_report.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_operator_properties.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_operator_property.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_operator_status.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_operator_type.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_os_image.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_os_images.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_platform.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_platform_external.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_platform_type.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_preflight_hardware_requirements.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_presigned_url.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_proxy.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_reboot_for_reclaim_request.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_release_channel.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_release_image.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_release_images.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_release_source.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_release_sources.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_route.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_secure_boot_state.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_service_network.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_source_state.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_step.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_step_reply.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_step_type.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_steps.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_steps_reply.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_subnet.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_support_level.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_support_levels.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_system_vendor.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_tang_connectivity_request.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_tang_connectivity_response.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_tang_connectivity_response_signatures.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_tang_connectivity_response_tang_server_response.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_update_manifest_params.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_upgrade_agent_request.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_upgrade_agent_response.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_upgrade_agent_result.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_upgrade_channel.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_usage.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_v2_cluster_update_params.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_verified_vip.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_verify_vip.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_verify_vips_request.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_verify_vips_response.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_versioned_host_requirements.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_versions.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_versions_api.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_vip_type.py +0 -0
- {assisted_service_client-2.37.0.post31 → assisted_service_client-2.49.0.post39}/test/test_vip_verification.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: assisted-service-client
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.49.0.post39
|
|
4
4
|
Summary: AssistedInstall
|
|
5
5
|
Home-page: https://github.com/openshift/assisted-service
|
|
6
6
|
Author: RedHat
|
|
@@ -128,6 +128,7 @@ Class | Method | HTTP request | Description
|
|
|
128
128
|
*InstallerApi* | [**deregister_infra_env**](docs/InstallerApi.md#deregister_infra_env) | **DELETE** /v2/infra-envs/{infra_env_id} |
|
|
129
129
|
*InstallerApi* | [**download_minimal_initrd**](docs/InstallerApi.md#download_minimal_initrd) | **GET** /v2/infra-envs/{infra_env_id}/downloads/minimal-initrd |
|
|
130
130
|
*InstallerApi* | [**get_cluster_supported_platforms**](docs/InstallerApi.md#get_cluster_supported_platforms) | **GET** /v2/clusters/{cluster_id}/supported-platforms |
|
|
131
|
+
*InstallerApi* | [**get_detailed_supported_features**](docs/InstallerApi.md#get_detailed_supported_features) | **GET** /v2/support-levels/features/detailed |
|
|
131
132
|
*InstallerApi* | [**get_infra_env**](docs/InstallerApi.md#get_infra_env) | **GET** /v2/infra-envs/{infra_env_id} |
|
|
132
133
|
*InstallerApi* | [**get_infra_env_download_url**](docs/InstallerApi.md#get_infra_env_download_url) | **GET** /v2/infra-envs/{infra_env_id}/downloads/image-url |
|
|
133
134
|
*InstallerApi* | [**get_infra_env_presigned_file_url**](docs/InstallerApi.md#get_infra_env_presigned_file_url) | **GET** /v2/infra-envs/{infra_env_id}/downloads/files-presigned |
|
|
@@ -170,6 +171,7 @@ Class | Method | HTTP request | Description
|
|
|
170
171
|
*InstallerApi* | [**v2_list_of_cluster_operators**](docs/InstallerApi.md#v2_list_of_cluster_operators) | **GET** /v2/clusters/{cluster_id}/monitored-operators |
|
|
171
172
|
*InstallerApi* | [**v2_post_step_reply**](docs/InstallerApi.md#v2_post_step_reply) | **POST** /v2/infra-envs/{infra_env_id}/hosts/{host_id}/instructions |
|
|
172
173
|
*InstallerApi* | [**v2_register_cluster**](docs/InstallerApi.md#v2_register_cluster) | **POST** /v2/clusters |
|
|
174
|
+
*InstallerApi* | [**v2_register_disconnected_cluster**](docs/InstallerApi.md#v2_register_disconnected_cluster) | **POST** /v2/clusters/disconnected |
|
|
173
175
|
*InstallerApi* | [**v2_register_host**](docs/InstallerApi.md#v2_register_host) | **POST** /v2/infra-envs/{infra_env_id}/hosts |
|
|
174
176
|
*InstallerApi* | [**v2_report_monitored_operator_status**](docs/InstallerApi.md#v2_report_monitored_operator_status) | **PUT** /v2/clusters/{cluster_id}/monitored-operators |
|
|
175
177
|
*InstallerApi* | [**v2_reset_cluster**](docs/InstallerApi.md#v2_reset_cluster) | **POST** /v2/clusters/{cluster_id}/actions/reset |
|
|
@@ -194,6 +196,8 @@ Class | Method | HTTP request | Description
|
|
|
194
196
|
*ManifestsApi* | [**v2_download_cluster_manifest**](docs/ManifestsApi.md#v2_download_cluster_manifest) | **GET** /v2/clusters/{cluster_id}/manifests/files |
|
|
195
197
|
*ManifestsApi* | [**v2_list_cluster_manifests**](docs/ManifestsApi.md#v2_list_cluster_manifests) | **GET** /v2/clusters/{cluster_id}/manifests |
|
|
196
198
|
*ManifestsApi* | [**v2_update_cluster_manifest**](docs/ManifestsApi.md#v2_update_cluster_manifest) | **PATCH** /v2/clusters/{cluster_id}/manifests |
|
|
199
|
+
*OperatorsApi* | [**v2_get_bundle**](docs/OperatorsApi.md#v2_get_bundle) | **GET** /v2/operators/bundles/{id} | Get operator properties for a bundle
|
|
200
|
+
*OperatorsApi* | [**v2_list_bundles**](docs/OperatorsApi.md#v2_list_bundles) | **GET** /v2/operators/bundles | Get list of available bundles
|
|
197
201
|
*OperatorsApi* | [**v2_list_of_cluster_operators**](docs/OperatorsApi.md#v2_list_of_cluster_operators) | **GET** /v2/clusters/{cluster_id}/monitored-operators |
|
|
198
202
|
*OperatorsApi* | [**v2_list_operator_properties**](docs/OperatorsApi.md#v2_list_operator_properties) | **GET** /v2/supported-operators/{operator_name} |
|
|
199
203
|
*OperatorsApi* | [**v2_list_supported_operators**](docs/OperatorsApi.md#v2_list_supported_operators) | **GET** /v2/supported-operators |
|
|
@@ -212,6 +216,7 @@ Class | Method | HTTP request | Description
|
|
|
212
216
|
- [ArchitectureSupportLevelId](docs/ArchitectureSupportLevelId.md)
|
|
213
217
|
- [BindHostParams](docs/BindHostParams.md)
|
|
214
218
|
- [Boot](docs/Boot.md)
|
|
219
|
+
- [Bundle](docs/Bundle.md)
|
|
215
220
|
- [Cluster](docs/Cluster.md)
|
|
216
221
|
- [ClusterCreateParams](docs/ClusterCreateParams.md)
|
|
217
222
|
- [ClusterDefaultConfig](docs/ClusterDefaultConfig.md)
|
|
@@ -238,6 +243,7 @@ Class | Method | HTTP request | Description
|
|
|
238
243
|
- [Credentials](docs/Credentials.md)
|
|
239
244
|
- [DhcpAllocationRequest](docs/DhcpAllocationRequest.md)
|
|
240
245
|
- [DhcpAllocationResponse](docs/DhcpAllocationResponse.md)
|
|
246
|
+
- [DisconnectedClusterCreateParams](docs/DisconnectedClusterCreateParams.md)
|
|
241
247
|
- [Disk](docs/Disk.md)
|
|
242
248
|
- [DiskConfigParams](docs/DiskConfigParams.md)
|
|
243
249
|
- [DiskEncryption](docs/DiskEncryption.md)
|
|
@@ -256,7 +262,9 @@ Class | Method | HTTP request | Description
|
|
|
256
262
|
- [Error](docs/Error.md)
|
|
257
263
|
- [Event](docs/Event.md)
|
|
258
264
|
- [EventList](docs/EventList.md)
|
|
265
|
+
- [Feature](docs/Feature.md)
|
|
259
266
|
- [FeatureSupportLevelId](docs/FeatureSupportLevelId.md)
|
|
267
|
+
- [FencingCredentialsParams](docs/FencingCredentialsParams.md)
|
|
260
268
|
- [FinalizingStage](docs/FinalizingStage.md)
|
|
261
269
|
- [FreeAddressesList](docs/FreeAddressesList.md)
|
|
262
270
|
- [FreeAddressesRequest](docs/FreeAddressesRequest.md)
|
|
@@ -287,6 +295,7 @@ Class | Method | HTTP request | Description
|
|
|
287
295
|
- [ImageInfo](docs/ImageInfo.md)
|
|
288
296
|
- [ImageType](docs/ImageType.md)
|
|
289
297
|
- [ImportClusterParams](docs/ImportClusterParams.md)
|
|
298
|
+
- [IncompatibilityReason](docs/IncompatibilityReason.md)
|
|
290
299
|
- [InfraEnv](docs/InfraEnv.md)
|
|
291
300
|
- [InfraEnvCreateParams](docs/InfraEnvCreateParams.md)
|
|
292
301
|
- [InfraEnvList](docs/InfraEnvList.md)
|
|
@@ -296,6 +305,7 @@ Class | Method | HTTP request | Description
|
|
|
296
305
|
- [IngressVip](docs/IngressVip.md)
|
|
297
306
|
- [InlineResponse200](docs/InlineResponse200.md)
|
|
298
307
|
- [InlineResponse2001](docs/InlineResponse2001.md)
|
|
308
|
+
- [InlineResponse2002](docs/InlineResponse2002.md)
|
|
299
309
|
- [InstallCmdRequest](docs/InstallCmdRequest.md)
|
|
300
310
|
- [InstallerArgsParams](docs/InstallerArgsParams.md)
|
|
301
311
|
- [Interface](docs/Interface.md)
|
|
@@ -333,6 +343,7 @@ Class | Method | HTTP request | Description
|
|
|
333
343
|
- [NtpSynchronizationResponse](docs/NtpSynchronizationResponse.md)
|
|
334
344
|
- [OpenshiftVersion](docs/OpenshiftVersion.md)
|
|
335
345
|
- [OpenshiftVersions](docs/OpenshiftVersions.md)
|
|
346
|
+
- [Operator](docs/Operator.md)
|
|
336
347
|
- [OperatorCreateParams](docs/OperatorCreateParams.md)
|
|
337
348
|
- [OperatorHardwareRequirements](docs/OperatorHardwareRequirements.md)
|
|
338
349
|
- [OperatorHostRequirements](docs/OperatorHostRequirements.md)
|
|
@@ -102,6 +102,7 @@ Class | Method | HTTP request | Description
|
|
|
102
102
|
*InstallerApi* | [**deregister_infra_env**](docs/InstallerApi.md#deregister_infra_env) | **DELETE** /v2/infra-envs/{infra_env_id} |
|
|
103
103
|
*InstallerApi* | [**download_minimal_initrd**](docs/InstallerApi.md#download_minimal_initrd) | **GET** /v2/infra-envs/{infra_env_id}/downloads/minimal-initrd |
|
|
104
104
|
*InstallerApi* | [**get_cluster_supported_platforms**](docs/InstallerApi.md#get_cluster_supported_platforms) | **GET** /v2/clusters/{cluster_id}/supported-platforms |
|
|
105
|
+
*InstallerApi* | [**get_detailed_supported_features**](docs/InstallerApi.md#get_detailed_supported_features) | **GET** /v2/support-levels/features/detailed |
|
|
105
106
|
*InstallerApi* | [**get_infra_env**](docs/InstallerApi.md#get_infra_env) | **GET** /v2/infra-envs/{infra_env_id} |
|
|
106
107
|
*InstallerApi* | [**get_infra_env_download_url**](docs/InstallerApi.md#get_infra_env_download_url) | **GET** /v2/infra-envs/{infra_env_id}/downloads/image-url |
|
|
107
108
|
*InstallerApi* | [**get_infra_env_presigned_file_url**](docs/InstallerApi.md#get_infra_env_presigned_file_url) | **GET** /v2/infra-envs/{infra_env_id}/downloads/files-presigned |
|
|
@@ -144,6 +145,7 @@ Class | Method | HTTP request | Description
|
|
|
144
145
|
*InstallerApi* | [**v2_list_of_cluster_operators**](docs/InstallerApi.md#v2_list_of_cluster_operators) | **GET** /v2/clusters/{cluster_id}/monitored-operators |
|
|
145
146
|
*InstallerApi* | [**v2_post_step_reply**](docs/InstallerApi.md#v2_post_step_reply) | **POST** /v2/infra-envs/{infra_env_id}/hosts/{host_id}/instructions |
|
|
146
147
|
*InstallerApi* | [**v2_register_cluster**](docs/InstallerApi.md#v2_register_cluster) | **POST** /v2/clusters |
|
|
148
|
+
*InstallerApi* | [**v2_register_disconnected_cluster**](docs/InstallerApi.md#v2_register_disconnected_cluster) | **POST** /v2/clusters/disconnected |
|
|
147
149
|
*InstallerApi* | [**v2_register_host**](docs/InstallerApi.md#v2_register_host) | **POST** /v2/infra-envs/{infra_env_id}/hosts |
|
|
148
150
|
*InstallerApi* | [**v2_report_monitored_operator_status**](docs/InstallerApi.md#v2_report_monitored_operator_status) | **PUT** /v2/clusters/{cluster_id}/monitored-operators |
|
|
149
151
|
*InstallerApi* | [**v2_reset_cluster**](docs/InstallerApi.md#v2_reset_cluster) | **POST** /v2/clusters/{cluster_id}/actions/reset |
|
|
@@ -168,6 +170,8 @@ Class | Method | HTTP request | Description
|
|
|
168
170
|
*ManifestsApi* | [**v2_download_cluster_manifest**](docs/ManifestsApi.md#v2_download_cluster_manifest) | **GET** /v2/clusters/{cluster_id}/manifests/files |
|
|
169
171
|
*ManifestsApi* | [**v2_list_cluster_manifests**](docs/ManifestsApi.md#v2_list_cluster_manifests) | **GET** /v2/clusters/{cluster_id}/manifests |
|
|
170
172
|
*ManifestsApi* | [**v2_update_cluster_manifest**](docs/ManifestsApi.md#v2_update_cluster_manifest) | **PATCH** /v2/clusters/{cluster_id}/manifests |
|
|
173
|
+
*OperatorsApi* | [**v2_get_bundle**](docs/OperatorsApi.md#v2_get_bundle) | **GET** /v2/operators/bundles/{id} | Get operator properties for a bundle
|
|
174
|
+
*OperatorsApi* | [**v2_list_bundles**](docs/OperatorsApi.md#v2_list_bundles) | **GET** /v2/operators/bundles | Get list of available bundles
|
|
171
175
|
*OperatorsApi* | [**v2_list_of_cluster_operators**](docs/OperatorsApi.md#v2_list_of_cluster_operators) | **GET** /v2/clusters/{cluster_id}/monitored-operators |
|
|
172
176
|
*OperatorsApi* | [**v2_list_operator_properties**](docs/OperatorsApi.md#v2_list_operator_properties) | **GET** /v2/supported-operators/{operator_name} |
|
|
173
177
|
*OperatorsApi* | [**v2_list_supported_operators**](docs/OperatorsApi.md#v2_list_supported_operators) | **GET** /v2/supported-operators |
|
|
@@ -186,6 +190,7 @@ Class | Method | HTTP request | Description
|
|
|
186
190
|
- [ArchitectureSupportLevelId](docs/ArchitectureSupportLevelId.md)
|
|
187
191
|
- [BindHostParams](docs/BindHostParams.md)
|
|
188
192
|
- [Boot](docs/Boot.md)
|
|
193
|
+
- [Bundle](docs/Bundle.md)
|
|
189
194
|
- [Cluster](docs/Cluster.md)
|
|
190
195
|
- [ClusterCreateParams](docs/ClusterCreateParams.md)
|
|
191
196
|
- [ClusterDefaultConfig](docs/ClusterDefaultConfig.md)
|
|
@@ -212,6 +217,7 @@ Class | Method | HTTP request | Description
|
|
|
212
217
|
- [Credentials](docs/Credentials.md)
|
|
213
218
|
- [DhcpAllocationRequest](docs/DhcpAllocationRequest.md)
|
|
214
219
|
- [DhcpAllocationResponse](docs/DhcpAllocationResponse.md)
|
|
220
|
+
- [DisconnectedClusterCreateParams](docs/DisconnectedClusterCreateParams.md)
|
|
215
221
|
- [Disk](docs/Disk.md)
|
|
216
222
|
- [DiskConfigParams](docs/DiskConfigParams.md)
|
|
217
223
|
- [DiskEncryption](docs/DiskEncryption.md)
|
|
@@ -230,7 +236,9 @@ Class | Method | HTTP request | Description
|
|
|
230
236
|
- [Error](docs/Error.md)
|
|
231
237
|
- [Event](docs/Event.md)
|
|
232
238
|
- [EventList](docs/EventList.md)
|
|
239
|
+
- [Feature](docs/Feature.md)
|
|
233
240
|
- [FeatureSupportLevelId](docs/FeatureSupportLevelId.md)
|
|
241
|
+
- [FencingCredentialsParams](docs/FencingCredentialsParams.md)
|
|
234
242
|
- [FinalizingStage](docs/FinalizingStage.md)
|
|
235
243
|
- [FreeAddressesList](docs/FreeAddressesList.md)
|
|
236
244
|
- [FreeAddressesRequest](docs/FreeAddressesRequest.md)
|
|
@@ -261,6 +269,7 @@ Class | Method | HTTP request | Description
|
|
|
261
269
|
- [ImageInfo](docs/ImageInfo.md)
|
|
262
270
|
- [ImageType](docs/ImageType.md)
|
|
263
271
|
- [ImportClusterParams](docs/ImportClusterParams.md)
|
|
272
|
+
- [IncompatibilityReason](docs/IncompatibilityReason.md)
|
|
264
273
|
- [InfraEnv](docs/InfraEnv.md)
|
|
265
274
|
- [InfraEnvCreateParams](docs/InfraEnvCreateParams.md)
|
|
266
275
|
- [InfraEnvList](docs/InfraEnvList.md)
|
|
@@ -270,6 +279,7 @@ Class | Method | HTTP request | Description
|
|
|
270
279
|
- [IngressVip](docs/IngressVip.md)
|
|
271
280
|
- [InlineResponse200](docs/InlineResponse200.md)
|
|
272
281
|
- [InlineResponse2001](docs/InlineResponse2001.md)
|
|
282
|
+
- [InlineResponse2002](docs/InlineResponse2002.md)
|
|
273
283
|
- [InstallCmdRequest](docs/InstallCmdRequest.md)
|
|
274
284
|
- [InstallerArgsParams](docs/InstallerArgsParams.md)
|
|
275
285
|
- [Interface](docs/Interface.md)
|
|
@@ -307,6 +317,7 @@ Class | Method | HTTP request | Description
|
|
|
307
317
|
- [NtpSynchronizationResponse](docs/NtpSynchronizationResponse.md)
|
|
308
318
|
- [OpenshiftVersion](docs/OpenshiftVersion.md)
|
|
309
319
|
- [OpenshiftVersions](docs/OpenshiftVersions.md)
|
|
320
|
+
- [Operator](docs/Operator.md)
|
|
310
321
|
- [OperatorCreateParams](docs/OperatorCreateParams.md)
|
|
311
322
|
- [OperatorHardwareRequirements](docs/OperatorHardwareRequirements.md)
|
|
312
323
|
- [OperatorHostRequirements](docs/OperatorHostRequirements.md)
|
|
@@ -34,6 +34,7 @@ from assisted_service_client.models.api_vip_connectivity_response import ApiVipC
|
|
|
34
34
|
from assisted_service_client.models.architecture_support_level_id import ArchitectureSupportLevelId
|
|
35
35
|
from assisted_service_client.models.bind_host_params import BindHostParams
|
|
36
36
|
from assisted_service_client.models.boot import Boot
|
|
37
|
+
from assisted_service_client.models.bundle import Bundle
|
|
37
38
|
from assisted_service_client.models.cluster import Cluster
|
|
38
39
|
from assisted_service_client.models.cluster_create_params import ClusterCreateParams
|
|
39
40
|
from assisted_service_client.models.cluster_default_config import ClusterDefaultConfig
|
|
@@ -60,6 +61,7 @@ from assisted_service_client.models.create_manifest_params import CreateManifest
|
|
|
60
61
|
from assisted_service_client.models.credentials import Credentials
|
|
61
62
|
from assisted_service_client.models.dhcp_allocation_request import DhcpAllocationRequest
|
|
62
63
|
from assisted_service_client.models.dhcp_allocation_response import DhcpAllocationResponse
|
|
64
|
+
from assisted_service_client.models.disconnected_cluster_create_params import DisconnectedClusterCreateParams
|
|
63
65
|
from assisted_service_client.models.disk import Disk
|
|
64
66
|
from assisted_service_client.models.disk_config_params import DiskConfigParams
|
|
65
67
|
from assisted_service_client.models.disk_encryption import DiskEncryption
|
|
@@ -78,7 +80,9 @@ from assisted_service_client.models.drive_type import DriveType
|
|
|
78
80
|
from assisted_service_client.models.error import Error
|
|
79
81
|
from assisted_service_client.models.event import Event
|
|
80
82
|
from assisted_service_client.models.event_list import EventList
|
|
83
|
+
from assisted_service_client.models.feature import Feature
|
|
81
84
|
from assisted_service_client.models.feature_support_level_id import FeatureSupportLevelId
|
|
85
|
+
from assisted_service_client.models.fencing_credentials_params import FencingCredentialsParams
|
|
82
86
|
from assisted_service_client.models.finalizing_stage import FinalizingStage
|
|
83
87
|
from assisted_service_client.models.free_addresses_list import FreeAddressesList
|
|
84
88
|
from assisted_service_client.models.free_addresses_request import FreeAddressesRequest
|
|
@@ -109,6 +113,7 @@ from assisted_service_client.models.image_create_params import ImageCreateParams
|
|
|
109
113
|
from assisted_service_client.models.image_info import ImageInfo
|
|
110
114
|
from assisted_service_client.models.image_type import ImageType
|
|
111
115
|
from assisted_service_client.models.import_cluster_params import ImportClusterParams
|
|
116
|
+
from assisted_service_client.models.incompatibility_reason import IncompatibilityReason
|
|
112
117
|
from assisted_service_client.models.infra_env import InfraEnv
|
|
113
118
|
from assisted_service_client.models.infra_env_create_params import InfraEnvCreateParams
|
|
114
119
|
from assisted_service_client.models.infra_env_list import InfraEnvList
|
|
@@ -118,6 +123,7 @@ from assisted_service_client.models.ingress_cert_params import IngressCertParams
|
|
|
118
123
|
from assisted_service_client.models.ingress_vip import IngressVip
|
|
119
124
|
from assisted_service_client.models.inline_response200 import InlineResponse200
|
|
120
125
|
from assisted_service_client.models.inline_response2001 import InlineResponse2001
|
|
126
|
+
from assisted_service_client.models.inline_response2002 import InlineResponse2002
|
|
121
127
|
from assisted_service_client.models.install_cmd_request import InstallCmdRequest
|
|
122
128
|
from assisted_service_client.models.installer_args_params import InstallerArgsParams
|
|
123
129
|
from assisted_service_client.models.interface import Interface
|
|
@@ -155,6 +161,7 @@ from assisted_service_client.models.ntp_synchronization_request import NtpSynchr
|
|
|
155
161
|
from assisted_service_client.models.ntp_synchronization_response import NtpSynchronizationResponse
|
|
156
162
|
from assisted_service_client.models.openshift_version import OpenshiftVersion
|
|
157
163
|
from assisted_service_client.models.openshift_versions import OpenshiftVersions
|
|
164
|
+
from assisted_service_client.models.operator import Operator
|
|
158
165
|
from assisted_service_client.models.operator_create_params import OperatorCreateParams
|
|
159
166
|
from assisted_service_client.models.operator_hardware_requirements import OperatorHardwareRequirements
|
|
160
167
|
from assisted_service_client.models.operator_host_requirements import OperatorHostRequirements
|
|
@@ -445,6 +445,117 @@ class InstallerApi(object):
|
|
|
445
445
|
_request_timeout=params.get('_request_timeout'),
|
|
446
446
|
collection_formats=collection_formats)
|
|
447
447
|
|
|
448
|
+
def get_detailed_supported_features(self, openshift_version, **kwargs): # noqa: E501
|
|
449
|
+
"""get_detailed_supported_features # noqa: E501
|
|
450
|
+
|
|
451
|
+
Retrieves detailed features information including support level, incompatibilities, and operator dependencies. # noqa: E501
|
|
452
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
453
|
+
asynchronous HTTP request, please pass async_req=True
|
|
454
|
+
>>> thread = api.get_detailed_supported_features(openshift_version, async_req=True)
|
|
455
|
+
>>> result = thread.get()
|
|
456
|
+
|
|
457
|
+
:param async_req bool
|
|
458
|
+
:param str openshift_version: Version of the OpenShift cluster. (required)
|
|
459
|
+
:param str cpu_architecture: The CPU architecture of the image (x86_64/arm64/etc).
|
|
460
|
+
:param str platform_type: The provider platform type.
|
|
461
|
+
:param str external_platform_name: External platform name when platform type is set to external. The value of this parameter will be ignored if platform_type is not external.
|
|
462
|
+
:return: InlineResponse2001
|
|
463
|
+
If the method is called asynchronously,
|
|
464
|
+
returns the request thread.
|
|
465
|
+
"""
|
|
466
|
+
kwargs['_return_http_data_only'] = True
|
|
467
|
+
if kwargs.get('async_req'):
|
|
468
|
+
return self.get_detailed_supported_features_with_http_info(openshift_version, **kwargs) # noqa: E501
|
|
469
|
+
else:
|
|
470
|
+
(data) = self.get_detailed_supported_features_with_http_info(openshift_version, **kwargs) # noqa: E501
|
|
471
|
+
return data
|
|
472
|
+
|
|
473
|
+
def get_detailed_supported_features_with_http_info(self, openshift_version, **kwargs): # noqa: E501
|
|
474
|
+
"""get_detailed_supported_features # noqa: E501
|
|
475
|
+
|
|
476
|
+
Retrieves detailed features information including support level, incompatibilities, and operator dependencies. # noqa: E501
|
|
477
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
478
|
+
asynchronous HTTP request, please pass async_req=True
|
|
479
|
+
>>> thread = api.get_detailed_supported_features_with_http_info(openshift_version, async_req=True)
|
|
480
|
+
>>> result = thread.get()
|
|
481
|
+
|
|
482
|
+
:param async_req bool
|
|
483
|
+
:param str openshift_version: Version of the OpenShift cluster. (required)
|
|
484
|
+
:param str cpu_architecture: The CPU architecture of the image (x86_64/arm64/etc).
|
|
485
|
+
:param str platform_type: The provider platform type.
|
|
486
|
+
:param str external_platform_name: External platform name when platform type is set to external. The value of this parameter will be ignored if platform_type is not external.
|
|
487
|
+
:return: InlineResponse2001
|
|
488
|
+
If the method is called asynchronously,
|
|
489
|
+
returns the request thread.
|
|
490
|
+
"""
|
|
491
|
+
|
|
492
|
+
all_params = ['openshift_version', 'cpu_architecture', 'platform_type', 'external_platform_name'] # noqa: E501
|
|
493
|
+
all_params.append('async_req')
|
|
494
|
+
all_params.append('_return_http_data_only')
|
|
495
|
+
all_params.append('_preload_content')
|
|
496
|
+
all_params.append('_request_timeout')
|
|
497
|
+
|
|
498
|
+
params = locals()
|
|
499
|
+
for key, val in six.iteritems(params['kwargs']):
|
|
500
|
+
if key not in all_params:
|
|
501
|
+
raise TypeError(
|
|
502
|
+
"Got an unexpected keyword argument '%s'"
|
|
503
|
+
" to method get_detailed_supported_features" % key
|
|
504
|
+
)
|
|
505
|
+
params[key] = val
|
|
506
|
+
del params['kwargs']
|
|
507
|
+
# verify the required parameter 'openshift_version' is set
|
|
508
|
+
if ('openshift_version' not in params or
|
|
509
|
+
params['openshift_version'] is None):
|
|
510
|
+
raise ValueError("Missing the required parameter `openshift_version` when calling `get_detailed_supported_features`") # noqa: E501
|
|
511
|
+
|
|
512
|
+
collection_formats = {}
|
|
513
|
+
|
|
514
|
+
path_params = {}
|
|
515
|
+
|
|
516
|
+
query_params = []
|
|
517
|
+
if 'openshift_version' in params:
|
|
518
|
+
query_params.append(('openshift_version', params['openshift_version'])) # noqa: E501
|
|
519
|
+
if 'cpu_architecture' in params:
|
|
520
|
+
query_params.append(('cpu_architecture', params['cpu_architecture'])) # noqa: E501
|
|
521
|
+
if 'platform_type' in params:
|
|
522
|
+
query_params.append(('platform_type', params['platform_type'])) # noqa: E501
|
|
523
|
+
if 'external_platform_name' in params:
|
|
524
|
+
query_params.append(('external_platform_name', params['external_platform_name'])) # noqa: E501
|
|
525
|
+
|
|
526
|
+
header_params = {}
|
|
527
|
+
|
|
528
|
+
form_params = []
|
|
529
|
+
local_var_files = {}
|
|
530
|
+
|
|
531
|
+
body_params = None
|
|
532
|
+
# HTTP header `Accept`
|
|
533
|
+
header_params['Accept'] = self.api_client.select_header_accept(
|
|
534
|
+
['application/json']) # noqa: E501
|
|
535
|
+
|
|
536
|
+
# HTTP header `Content-Type`
|
|
537
|
+
header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
|
|
538
|
+
['application/json']) # noqa: E501
|
|
539
|
+
|
|
540
|
+
# Authentication setting
|
|
541
|
+
auth_settings = ['userAuth'] # noqa: E501
|
|
542
|
+
|
|
543
|
+
return self.api_client.call_api(
|
|
544
|
+
'/v2/support-levels/features/detailed', 'GET',
|
|
545
|
+
path_params,
|
|
546
|
+
query_params,
|
|
547
|
+
header_params,
|
|
548
|
+
body=body_params,
|
|
549
|
+
post_params=form_params,
|
|
550
|
+
files=local_var_files,
|
|
551
|
+
response_type='InlineResponse2001', # noqa: E501
|
|
552
|
+
auth_settings=auth_settings,
|
|
553
|
+
async_req=params.get('async_req'),
|
|
554
|
+
_return_http_data_only=params.get('_return_http_data_only'),
|
|
555
|
+
_preload_content=params.get('_preload_content', True),
|
|
556
|
+
_request_timeout=params.get('_request_timeout'),
|
|
557
|
+
collection_formats=collection_formats)
|
|
558
|
+
|
|
448
559
|
def get_infra_env(self, infra_env_id, **kwargs): # noqa: E501
|
|
449
560
|
"""get_infra_env # noqa: E501
|
|
450
561
|
|
|
@@ -765,7 +876,7 @@ class InstallerApi(object):
|
|
|
765
876
|
|
|
766
877
|
:param async_req bool
|
|
767
878
|
:param str openshift_version: Version of the OpenShift cluster. (required)
|
|
768
|
-
:return:
|
|
879
|
+
:return: InlineResponse2002
|
|
769
880
|
If the method is called asynchronously,
|
|
770
881
|
returns the request thread.
|
|
771
882
|
"""
|
|
@@ -787,7 +898,7 @@ class InstallerApi(object):
|
|
|
787
898
|
|
|
788
899
|
:param async_req bool
|
|
789
900
|
:param str openshift_version: Version of the OpenShift cluster. (required)
|
|
790
|
-
:return:
|
|
901
|
+
:return: InlineResponse2002
|
|
791
902
|
If the method is called asynchronously,
|
|
792
903
|
returns the request thread.
|
|
793
904
|
"""
|
|
@@ -845,7 +956,7 @@ class InstallerApi(object):
|
|
|
845
956
|
body=body_params,
|
|
846
957
|
post_params=form_params,
|
|
847
958
|
files=local_var_files,
|
|
848
|
-
response_type='
|
|
959
|
+
response_type='InlineResponse2002', # noqa: E501
|
|
849
960
|
auth_settings=auth_settings,
|
|
850
961
|
async_req=params.get('async_req'),
|
|
851
962
|
_return_http_data_only=params.get('_return_http_data_only'),
|
|
@@ -2650,7 +2761,7 @@ class InstallerApi(object):
|
|
|
2650
2761
|
:param str file_name: The file to be downloaded. (required)
|
|
2651
2762
|
:param str mac: Mac address of the host running ipxe script.
|
|
2652
2763
|
:param str ipxe_script_type: Specify the script type to be served for iPXE.
|
|
2653
|
-
:param str discovery_iso_type: Overrides the ISO type for the
|
|
2764
|
+
:param str discovery_iso_type: Overrides the ISO type for the discovery ignition.
|
|
2654
2765
|
:return: file
|
|
2655
2766
|
If the method is called asynchronously,
|
|
2656
2767
|
returns the request thread.
|
|
@@ -2676,7 +2787,7 @@ class InstallerApi(object):
|
|
|
2676
2787
|
:param str file_name: The file to be downloaded. (required)
|
|
2677
2788
|
:param str mac: Mac address of the host running ipxe script.
|
|
2678
2789
|
:param str ipxe_script_type: Specify the script type to be served for iPXE.
|
|
2679
|
-
:param str discovery_iso_type: Overrides the ISO type for the
|
|
2790
|
+
:param str discovery_iso_type: Overrides the ISO type for the discovery ignition.
|
|
2680
2791
|
:return: file
|
|
2681
2792
|
If the method is called asynchronously,
|
|
2682
2793
|
returns the request thread.
|
|
@@ -4840,6 +4951,105 @@ class InstallerApi(object):
|
|
|
4840
4951
|
_request_timeout=params.get('_request_timeout'),
|
|
4841
4952
|
collection_formats=collection_formats)
|
|
4842
4953
|
|
|
4954
|
+
def v2_register_disconnected_cluster(self, new_cluster_params, **kwargs): # noqa: E501
|
|
4955
|
+
"""v2_register_disconnected_cluster # noqa: E501
|
|
4956
|
+
|
|
4957
|
+
Create a disconnected OpenShift cluster for offline installation with embedded ignition # noqa: E501
|
|
4958
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
4959
|
+
asynchronous HTTP request, please pass async_req=True
|
|
4960
|
+
>>> thread = api.v2_register_disconnected_cluster(new_cluster_params, async_req=True)
|
|
4961
|
+
>>> result = thread.get()
|
|
4962
|
+
|
|
4963
|
+
:param async_req bool
|
|
4964
|
+
:param DisconnectedClusterCreateParams new_cluster_params: Parameters for creating a disconnected cluster. (required)
|
|
4965
|
+
:return: Cluster
|
|
4966
|
+
If the method is called asynchronously,
|
|
4967
|
+
returns the request thread.
|
|
4968
|
+
"""
|
|
4969
|
+
kwargs['_return_http_data_only'] = True
|
|
4970
|
+
if kwargs.get('async_req'):
|
|
4971
|
+
return self.v2_register_disconnected_cluster_with_http_info(new_cluster_params, **kwargs) # noqa: E501
|
|
4972
|
+
else:
|
|
4973
|
+
(data) = self.v2_register_disconnected_cluster_with_http_info(new_cluster_params, **kwargs) # noqa: E501
|
|
4974
|
+
return data
|
|
4975
|
+
|
|
4976
|
+
def v2_register_disconnected_cluster_with_http_info(self, new_cluster_params, **kwargs): # noqa: E501
|
|
4977
|
+
"""v2_register_disconnected_cluster # noqa: E501
|
|
4978
|
+
|
|
4979
|
+
Create a disconnected OpenShift cluster for offline installation with embedded ignition # noqa: E501
|
|
4980
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
4981
|
+
asynchronous HTTP request, please pass async_req=True
|
|
4982
|
+
>>> thread = api.v2_register_disconnected_cluster_with_http_info(new_cluster_params, async_req=True)
|
|
4983
|
+
>>> result = thread.get()
|
|
4984
|
+
|
|
4985
|
+
:param async_req bool
|
|
4986
|
+
:param DisconnectedClusterCreateParams new_cluster_params: Parameters for creating a disconnected cluster. (required)
|
|
4987
|
+
:return: Cluster
|
|
4988
|
+
If the method is called asynchronously,
|
|
4989
|
+
returns the request thread.
|
|
4990
|
+
"""
|
|
4991
|
+
|
|
4992
|
+
all_params = ['new_cluster_params'] # noqa: E501
|
|
4993
|
+
all_params.append('async_req')
|
|
4994
|
+
all_params.append('_return_http_data_only')
|
|
4995
|
+
all_params.append('_preload_content')
|
|
4996
|
+
all_params.append('_request_timeout')
|
|
4997
|
+
|
|
4998
|
+
params = locals()
|
|
4999
|
+
for key, val in six.iteritems(params['kwargs']):
|
|
5000
|
+
if key not in all_params:
|
|
5001
|
+
raise TypeError(
|
|
5002
|
+
"Got an unexpected keyword argument '%s'"
|
|
5003
|
+
" to method v2_register_disconnected_cluster" % key
|
|
5004
|
+
)
|
|
5005
|
+
params[key] = val
|
|
5006
|
+
del params['kwargs']
|
|
5007
|
+
# verify the required parameter 'new_cluster_params' is set
|
|
5008
|
+
if ('new_cluster_params' not in params or
|
|
5009
|
+
params['new_cluster_params'] is None):
|
|
5010
|
+
raise ValueError("Missing the required parameter `new_cluster_params` when calling `v2_register_disconnected_cluster`") # noqa: E501
|
|
5011
|
+
|
|
5012
|
+
collection_formats = {}
|
|
5013
|
+
|
|
5014
|
+
path_params = {}
|
|
5015
|
+
|
|
5016
|
+
query_params = []
|
|
5017
|
+
|
|
5018
|
+
header_params = {}
|
|
5019
|
+
|
|
5020
|
+
form_params = []
|
|
5021
|
+
local_var_files = {}
|
|
5022
|
+
|
|
5023
|
+
body_params = None
|
|
5024
|
+
if 'new_cluster_params' in params:
|
|
5025
|
+
body_params = params['new_cluster_params']
|
|
5026
|
+
# HTTP header `Accept`
|
|
5027
|
+
header_params['Accept'] = self.api_client.select_header_accept(
|
|
5028
|
+
['application/json']) # noqa: E501
|
|
5029
|
+
|
|
5030
|
+
# HTTP header `Content-Type`
|
|
5031
|
+
header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
|
|
5032
|
+
['application/json']) # noqa: E501
|
|
5033
|
+
|
|
5034
|
+
# Authentication setting
|
|
5035
|
+
auth_settings = ['userAuth'] # noqa: E501
|
|
5036
|
+
|
|
5037
|
+
return self.api_client.call_api(
|
|
5038
|
+
'/v2/clusters/disconnected', 'POST',
|
|
5039
|
+
path_params,
|
|
5040
|
+
query_params,
|
|
5041
|
+
header_params,
|
|
5042
|
+
body=body_params,
|
|
5043
|
+
post_params=form_params,
|
|
5044
|
+
files=local_var_files,
|
|
5045
|
+
response_type='Cluster', # noqa: E501
|
|
5046
|
+
auth_settings=auth_settings,
|
|
5047
|
+
async_req=params.get('async_req'),
|
|
5048
|
+
_return_http_data_only=params.get('_return_http_data_only'),
|
|
5049
|
+
_preload_content=params.get('_preload_content', True),
|
|
5050
|
+
_request_timeout=params.get('_request_timeout'),
|
|
5051
|
+
collection_formats=collection_formats)
|
|
5052
|
+
|
|
4843
5053
|
def v2_register_host(self, infra_env_id, new_host_params, **kwargs): # noqa: E501
|
|
4844
5054
|
"""v2_register_host # noqa: E501
|
|
4845
5055
|
|
|
@@ -6782,8 +6992,8 @@ class InstallerApi(object):
|
|
|
6782
6992
|
raise ValueError("Missing the required parameter `logs_type` when calling `v2_upload_logs`") # noqa: E501
|
|
6783
6993
|
|
|
6784
6994
|
if ('upfile' in params and
|
|
6785
|
-
len(params['upfile']) >
|
|
6786
|
-
raise ValueError("Invalid value for parameter `upfile` when calling `v2_upload_logs`, length must be less than or equal to `
|
|
6995
|
+
len(params['upfile']) > 262144000):
|
|
6996
|
+
raise ValueError("Invalid value for parameter `upfile` when calling `v2_upload_logs`, length must be less than or equal to `262144000`") # noqa: E501
|
|
6787
6997
|
collection_formats = {}
|
|
6788
6998
|
|
|
6789
6999
|
path_params = {}
|