visier-platform-sdk 22222222.99201.1892b3__py3-none-any.whl
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 visier-platform-sdk might be problematic. Click here for more details.
- visier_platform_sdk/__init__.py +684 -0
- visier_platform_sdk/api/__init__.py +42 -0
- visier_platform_sdk/api/basic_authentication_api.py +625 -0
- visier_platform_sdk/api/benchmarks_api.py +936 -0
- visier_platform_sdk/api/concepts_v2_api.py +2307 -0
- visier_platform_sdk/api/consolidated_analytics_api.py +3265 -0
- visier_platform_sdk/api/data_and_job_handling_api.py +8346 -0
- visier_platform_sdk/api/data_intake_api.py +1866 -0
- visier_platform_sdk/api/data_model_api.py +13164 -0
- visier_platform_sdk/api/data_query_api.py +1226 -0
- visier_platform_sdk/api/data_upload_api.py +343 -0
- visier_platform_sdk/api/data_version_export_api.py +1724 -0
- visier_platform_sdk/api/dimensions_api.py +3050 -0
- visier_platform_sdk/api/direct_data_intake_api.py +3039 -0
- visier_platform_sdk/api/email_domains_api.py +880 -0
- visier_platform_sdk/api/encryption_keys_api.py +835 -0
- visier_platform_sdk/api/jobs_library_api.py +1168 -0
- visier_platform_sdk/api/network_subnets_api.py +1170 -0
- visier_platform_sdk/api/o_auth2_api.py +1021 -0
- visier_platform_sdk/api/object_configuration_api.py +1752 -0
- visier_platform_sdk/api/permissions_api.py +4295 -0
- visier_platform_sdk/api/pgp_key_api.py +1161 -0
- visier_platform_sdk/api/planning_data_load_api.py +740 -0
- visier_platform_sdk/api/production_versions_api.py +944 -0
- visier_platform_sdk/api/profiles_api.py +2873 -0
- visier_platform_sdk/api/projects_api.py +2128 -0
- visier_platform_sdk/api/release_version_configuration_api.py +835 -0
- visier_platform_sdk/api/reporting_api.py +1757 -0
- visier_platform_sdk/api/search_api.py +356 -0
- visier_platform_sdk/api/skills_library_api.py +2632 -0
- visier_platform_sdk/api/source_files_download_api.py +335 -0
- visier_platform_sdk/api/sources_api.py +652 -0
- visier_platform_sdk/api/system_status_api.py +570 -0
- visier_platform_sdk/api/tenants_v1_api.py +2836 -0
- visier_platform_sdk/api/tenants_v2_api.py +1595 -0
- visier_platform_sdk/api/user_groups_v2_api.py +2332 -0
- visier_platform_sdk/api/users_v1_api.py +6157 -0
- visier_platform_sdk/api/users_v2_api.py +973 -0
- visier_platform_sdk/api/vee_api.py +1161 -0
- visier_platform_sdk/api/webhooks_api.py +2281 -0
- visier_platform_sdk/api_client.py +811 -0
- visier_platform_sdk/api_response.py +21 -0
- visier_platform_sdk/configuration.py +808 -0
- visier_platform_sdk/exceptions.py +217 -0
- visier_platform_sdk/models/__init__.py +630 -0
- visier_platform_sdk/models/admin_all_tenants_status_apidto.py +100 -0
- visier_platform_sdk/models/admin_assign_connector_credentials_by_tenant_response_dto.py +112 -0
- visier_platform_sdk/models/admin_assign_connector_credentials_response_dto.py +96 -0
- visier_platform_sdk/models/admin_assign_connector_with_credentials_response_dto.py +98 -0
- visier_platform_sdk/models/admin_assigned_credential_info_response_dto.py +92 -0
- visier_platform_sdk/models/admin_batch_tenant_provision_apidto.py +96 -0
- visier_platform_sdk/models/admin_business_location_dto.py +90 -0
- visier_platform_sdk/models/admin_connector_info_response_dto.py +92 -0
- visier_platform_sdk/models/admin_connector_setting_request_dto.py +90 -0
- visier_platform_sdk/models/admin_connector_setting_response_dto.py +92 -0
- visier_platform_sdk/models/admin_connector_settings_response_dto.py +102 -0
- visier_platform_sdk/models/admin_consolidated_analytics_api_excluded_source_list_dto.py +88 -0
- visier_platform_sdk/models/admin_consolidated_analytics_api_source_tenant_list_dto.py +88 -0
- visier_platform_sdk/models/admin_consolidated_analytics_api_tenant_create_request_dto.py +88 -0
- visier_platform_sdk/models/admin_consolidated_analytics_api_tenant_list_response_dto.py +88 -0
- visier_platform_sdk/models/admin_consolidated_analytics_api_tenant_with_details.py +92 -0
- visier_platform_sdk/models/admin_consolidated_analytics_api_tenant_with_details_list_response_dto.py +96 -0
- visier_platform_sdk/models/admin_custom_property_dto.py +90 -0
- visier_platform_sdk/models/admin_custom_tenant_property_dto.py +90 -0
- visier_platform_sdk/models/admin_data_import_definition_apidto.py +92 -0
- visier_platform_sdk/models/admin_data_import_definitions_apidto.py +100 -0
- visier_platform_sdk/models/admin_data_version_and_date_dto.py +90 -0
- visier_platform_sdk/models/admin_delete_user_group_v2_request.py +88 -0
- visier_platform_sdk/models/admin_element_ids_dto.py +88 -0
- visier_platform_sdk/models/admin_email_domains_dto.py +90 -0
- visier_platform_sdk/models/admin_excluded_sources_body.py +88 -0
- visier_platform_sdk/models/admin_extractor_setting_apidto.py +100 -0
- visier_platform_sdk/models/admin_extractor_setting_key_value_apidto.py +90 -0
- visier_platform_sdk/models/admin_extractor_settings_apidto.py +96 -0
- visier_platform_sdk/models/admin_home_analysis_by_user_group_dto.py +90 -0
- visier_platform_sdk/models/admin_jobs_consolidated_analytics_job_request_dto.py +88 -0
- visier_platform_sdk/models/admin_jobs_extract_data_and_load_dto.py +150 -0
- visier_platform_sdk/models/admin_jobs_processing_job_request_dto.py +96 -0
- visier_platform_sdk/models/admin_key_name.py +88 -0
- visier_platform_sdk/models/admin_mask_message.py +88 -0
- visier_platform_sdk/models/admin_multiple_tenant_data_versions_details_dto.py +98 -0
- visier_platform_sdk/models/admin_multiple_tenant_data_versions_list_dto.py +100 -0
- visier_platform_sdk/models/admin_network_subnets_message_request.py +90 -0
- visier_platform_sdk/models/admin_network_subnets_message_response.py +88 -0
- visier_platform_sdk/models/admin_permission_response_dto.py +90 -0
- visier_platform_sdk/models/admin_permissions_list_dto.py +96 -0
- visier_platform_sdk/models/admin_permissions_to_user_group_for_tenant_dto.py +102 -0
- visier_platform_sdk/models/admin_permissions_to_user_group_request_dto.py +90 -0
- visier_platform_sdk/models/admin_permissions_to_user_groups_request_dto.py +96 -0
- visier_platform_sdk/models/admin_product_release_dto.py +94 -0
- visier_platform_sdk/models/admin_product_releases_dto.py +96 -0
- visier_platform_sdk/models/admin_product_version_dto.py +92 -0
- visier_platform_sdk/models/admin_product_versions_dto.py +96 -0
- visier_platform_sdk/models/admin_product_versions_update_failure_tenant_response_dto.py +94 -0
- visier_platform_sdk/models/admin_product_versions_update_response_dto.py +106 -0
- visier_platform_sdk/models/admin_product_versions_update_successful_tenant_response_dto.py +92 -0
- visier_platform_sdk/models/admin_put_project_commits_request.py +88 -0
- visier_platform_sdk/models/admin_security_assignment_response_dto.py +96 -0
- visier_platform_sdk/models/admin_set_connector_setting_request_dto.py +98 -0
- visier_platform_sdk/models/admin_set_connector_setting_response_dto.py +112 -0
- visier_platform_sdk/models/admin_set_connector_settings_request_dto.py +96 -0
- visier_platform_sdk/models/admin_set_connector_settings_response_dto.py +96 -0
- visier_platform_sdk/models/admin_simple_user_dto.py +90 -0
- visier_platform_sdk/models/admin_target_project_for_tenant_dto.py +90 -0
- visier_platform_sdk/models/admin_target_project_for_tenants_list_dto.py +96 -0
- visier_platform_sdk/models/admin_tenant_assignments_dto.py +114 -0
- visier_platform_sdk/models/admin_tenant_code_body.py +88 -0
- visier_platform_sdk/models/admin_tenant_connector_settings_request_dto.py +98 -0
- visier_platform_sdk/models/admin_tenant_detail_apidto.py +130 -0
- visier_platform_sdk/models/admin_tenant_details_traits_dto.py +112 -0
- visier_platform_sdk/models/admin_tenant_management_api_get_response_dto.py +156 -0
- visier_platform_sdk/models/admin_tenant_management_api_list_response_dto.py +100 -0
- visier_platform_sdk/models/admin_tenant_management_api_update_request_dto.py +156 -0
- visier_platform_sdk/models/admin_tenant_management_api_update_response_dto.py +136 -0
- visier_platform_sdk/models/admin_tenant_provision_apidto.py +110 -0
- visier_platform_sdk/models/admin_tenant_status_apidto.py +94 -0
- visier_platform_sdk/models/admin_update_tenant_model.py +98 -0
- visier_platform_sdk/models/admin_user_group_change_definition_dto.py +108 -0
- visier_platform_sdk/models/admin_user_group_change_dimension_filter_dto.py +104 -0
- visier_platform_sdk/models/admin_user_group_change_failure_dto.py +96 -0
- visier_platform_sdk/models/admin_user_group_change_filter_dto.py +100 -0
- visier_platform_sdk/models/admin_user_group_change_member_selection_dto.py +90 -0
- visier_platform_sdk/models/admin_user_group_change_response_dto.py +106 -0
- visier_platform_sdk/models/admin_user_group_change_success_dto.py +94 -0
- visier_platform_sdk/models/admin_user_group_change_users_dto.py +105 -0
- visier_platform_sdk/models/admin_user_group_delete_dto.py +92 -0
- visier_platform_sdk/models/admin_user_group_delete_failure_dto.py +96 -0
- visier_platform_sdk/models/admin_user_group_delete_response_dto.py +106 -0
- visier_platform_sdk/models/admin_user_group_delete_success_dto.py +92 -0
- visier_platform_sdk/models/admin_user_group_filters_dto.py +96 -0
- visier_platform_sdk/models/admin_user_group_get_api_response_dto.py +100 -0
- visier_platform_sdk/models/admin_user_group_single_delete_response_dto.py +98 -0
- visier_platform_sdk/models/admin_user_groups_change_dto.py +96 -0
- visier_platform_sdk/models/admin_user_groups_delete_request_dto.py +96 -0
- visier_platform_sdk/models/admin_user_groups_get_api_response_dto.py +100 -0
- visier_platform_sdk/models/admin_user_groups_users_dto.py +100 -0
- visier_platform_sdk/models/admin_user_groups_users_for_tenant_dto.py +98 -0
- visier_platform_sdk/models/admin_user_security_assignments_dto.py +100 -0
- visier_platform_sdk/models/admin_users_to_user_group_request_dto.py +90 -0
- visier_platform_sdk/models/admin_users_to_user_groups_request_dto.py +102 -0
- visier_platform_sdk/models/analysis_common_report_create_request_dto.py +90 -0
- visier_platform_sdk/models/analysis_common_report_delete_success_dto.py +88 -0
- visier_platform_sdk/models/analysis_common_report_dto.py +115 -0
- visier_platform_sdk/models/analysis_common_report_list_response_dto.py +96 -0
- visier_platform_sdk/models/analysis_common_vee_clarification_dto.py +98 -0
- visier_platform_sdk/models/analysis_common_vee_conversation_state_dto.py +88 -0
- visier_platform_sdk/models/analysis_common_vee_corrections_dto.py +109 -0
- visier_platform_sdk/models/analysis_common_vee_data_dto.py +90 -0
- visier_platform_sdk/models/analysis_common_vee_feedback_dto.py +96 -0
- visier_platform_sdk/models/analysis_common_vee_options_dto.py +110 -0
- visier_platform_sdk/models/analysis_common_vee_question_dto.py +102 -0
- visier_platform_sdk/models/analysis_common_vee_response_dto.py +132 -0
- visier_platform_sdk/models/analysis_common_vee_response_schema_dto.py +107 -0
- visier_platform_sdk/models/analysis_common_vee_response_schema_reference_dto.py +90 -0
- visier_platform_sdk/models/analysis_common_vee_sample_question_dto.py +94 -0
- visier_platform_sdk/models/analysis_common_vee_sample_question_library_dto.py +96 -0
- visier_platform_sdk/models/analysis_common_vee_status_code_dto.py +100 -0
- visier_platform_sdk/models/analysis_common_vee_visual_dto.py +92 -0
- visier_platform_sdk/models/analysis_common_vee_visual_options_dto.py +90 -0
- visier_platform_sdk/models/api_error.py +92 -0
- visier_platform_sdk/models/authentication_o_auth2_user_info_dto.py +117 -0
- visier_platform_sdk/models/authentication_o_auth2_user_subnet_info_dto.py +100 -0
- visier_platform_sdk/models/authentication_o_auth2_user_tenant_detail_dto.py +96 -0
- visier_platform_sdk/models/authentication_o_auth2_user_tenant_details_dto.py +96 -0
- visier_platform_sdk/models/authentication_o_auth2_user_tenant_properties_dto.py +88 -0
- visier_platform_sdk/models/benchmark_info.py +92 -0
- visier_platform_sdk/models/benchmark_value.py +108 -0
- visier_platform_sdk/models/data_in_assign_connector_credential_request.py +96 -0
- visier_platform_sdk/models/data_in_connector.py +98 -0
- visier_platform_sdk/models/data_in_data_load_request.py +92 -0
- visier_platform_sdk/models/data_in_data_load_request_model.py +90 -0
- visier_platform_sdk/models/data_in_data_load_response.py +88 -0
- visier_platform_sdk/models/data_in_data_transfer_result_detail.py +94 -0
- visier_platform_sdk/models/data_in_data_version_object.py +90 -0
- visier_platform_sdk/models/data_in_disable_dv_model.py +96 -0
- visier_platform_sdk/models/data_in_disable_dv_request.py +92 -0
- visier_platform_sdk/models/data_in_disable_dv_response.py +100 -0
- visier_platform_sdk/models/data_in_dispatching_job_status_response.py +94 -0
- visier_platform_sdk/models/data_in_exclude_data_uploads_request.py +96 -0
- visier_platform_sdk/models/data_in_extraction_job.py +94 -0
- visier_platform_sdk/models/data_in_extraction_job_and_status_response.py +104 -0
- visier_platform_sdk/models/data_in_include_data_uploads_request.py +96 -0
- visier_platform_sdk/models/data_in_job_status_list_response.py +100 -0
- visier_platform_sdk/models/data_in_job_status_with_start_time.py +96 -0
- visier_platform_sdk/models/data_in_processing_job.py +96 -0
- visier_platform_sdk/models/data_in_processing_job_and_status_response.py +104 -0
- visier_platform_sdk/models/data_in_processing_job_status_response.py +104 -0
- visier_platform_sdk/models/data_in_push_data_cancel_response.py +102 -0
- visier_platform_sdk/models/data_in_push_data_complete_request.py +90 -0
- visier_platform_sdk/models/data_in_push_data_complete_response.py +104 -0
- visier_platform_sdk/models/data_in_push_data_response.py +104 -0
- visier_platform_sdk/models/data_in_receiving_job.py +92 -0
- visier_platform_sdk/models/data_in_receiving_job_and_status_response.py +104 -0
- visier_platform_sdk/models/data_in_receiving_job_status_response.py +104 -0
- visier_platform_sdk/models/data_in_result.py +96 -0
- visier_platform_sdk/models/data_in_source.py +98 -0
- visier_platform_sdk/models/data_in_start_extraction_response.py +88 -0
- visier_platform_sdk/models/data_in_start_transfer_response.py +88 -0
- visier_platform_sdk/models/data_in_tenant.py +100 -0
- visier_platform_sdk/models/data_in_tenant_and_credential.py +90 -0
- visier_platform_sdk/models/data_in_upload_to_exclude.py +98 -0
- visier_platform_sdk/models/data_in_upload_to_include.py +98 -0
- visier_platform_sdk/models/data_out_list_response.py +101 -0
- visier_platform_sdk/models/dataservices_common_dimension_member_reference_dto.py +90 -0
- visier_platform_sdk/models/dataservices_common_member_values_dto.py +105 -0
- visier_platform_sdk/models/dataservices_datamodel_aggregation_type_option_dto.py +96 -0
- visier_platform_sdk/models/dataservices_datamodel_aggregation_type_parameter_dto.py +102 -0
- visier_platform_sdk/models/dataservices_datamodel_analytic_object_dto.py +130 -0
- visier_platform_sdk/models/dataservices_datamodel_analytic_objects_dto.py +96 -0
- visier_platform_sdk/models/dataservices_datamodel_currencies_dto.py +96 -0
- visier_platform_sdk/models/dataservices_datamodel_currency_dto.py +94 -0
- visier_platform_sdk/models/dataservices_datamodel_currency_rate_dto.py +96 -0
- visier_platform_sdk/models/dataservices_datamodel_currency_rates_dto.py +96 -0
- visier_platform_sdk/models/dataservices_datamodel_dimension_dto.py +120 -0
- visier_platform_sdk/models/dataservices_datamodel_dimension_mapping_validation_dto.py +102 -0
- visier_platform_sdk/models/dataservices_datamodel_dimension_mapping_validation_execution_dto.py +90 -0
- visier_platform_sdk/models/dataservices_datamodel_dimension_reference_dto.py +90 -0
- visier_platform_sdk/models/dataservices_datamodel_dimensions_dto.py +96 -0
- visier_platform_sdk/models/dataservices_datamodel_level_dto.py +92 -0
- visier_platform_sdk/models/dataservices_datamodel_member_dto.py +106 -0
- visier_platform_sdk/models/dataservices_datamodel_member_parameter_definition_dto.py +102 -0
- visier_platform_sdk/models/dataservices_datamodel_members_dto.py +96 -0
- visier_platform_sdk/models/dataservices_datamodel_metric_dto.py +122 -0
- visier_platform_sdk/models/dataservices_datamodel_metrics_dto.py +96 -0
- visier_platform_sdk/models/dataservices_datamodel_numeric_parameter_definition_dto.py +98 -0
- visier_platform_sdk/models/dataservices_datamodel_object_reference_dto.py +110 -0
- visier_platform_sdk/models/dataservices_datamodel_parameter_definition_dto.py +110 -0
- visier_platform_sdk/models/dataservices_datamodel_plan_parameter_definition_dto.py +94 -0
- visier_platform_sdk/models/dataservices_datamodel_planning_concept_filter_context_dto.py +88 -0
- visier_platform_sdk/models/dataservices_datamodel_planning_hierarchy_filter_context_dto.py +92 -0
- visier_platform_sdk/models/dataservices_datamodel_planning_model_dto.py +92 -0
- visier_platform_sdk/models/dataservices_datamodel_planning_models_dto.py +96 -0
- visier_platform_sdk/models/dataservices_datamodel_planning_plan_context_dto.py +98 -0
- visier_platform_sdk/models/dataservices_datamodel_planning_plan_dto.py +123 -0
- visier_platform_sdk/models/dataservices_datamodel_planning_plans_dto.py +96 -0
- visier_platform_sdk/models/dataservices_datamodel_population_configuration_dto.py +115 -0
- visier_platform_sdk/models/dataservices_datamodel_prediction_dto.py +124 -0
- visier_platform_sdk/models/dataservices_datamodel_predictions_dto.py +96 -0
- visier_platform_sdk/models/dataservices_datamodel_properties_dto.py +96 -0
- visier_platform_sdk/models/dataservices_datamodel_property_dto.py +118 -0
- visier_platform_sdk/models/dataservices_datamodel_property_reference_dto.py +90 -0
- visier_platform_sdk/models/dataservices_datamodel_scenario_or_snapshot_dto.py +90 -0
- visier_platform_sdk/models/dataservices_datamodel_selection_concept_dto.py +106 -0
- visier_platform_sdk/models/dataservices_datamodel_selection_concept_reference_dto.py +90 -0
- visier_platform_sdk/models/dataservices_datamodel_selection_concepts_dto.py +96 -0
- visier_platform_sdk/models/dataservices_datamodel_tag_map_element_dto.py +90 -0
- visier_platform_sdk/models/dataservices_datamodel_validity_range_dto.py +90 -0
- visier_platform_sdk/models/dataservices_query_aggregation_query_dto.py +128 -0
- visier_platform_sdk/models/dataservices_query_aggregation_query_execution_dto.py +98 -0
- visier_platform_sdk/models/dataservices_query_aggregation_query_source_dto.py +96 -0
- visier_platform_sdk/models/dataservices_query_aggregation_query_source_metric_dto.py +94 -0
- visier_platform_sdk/models/dataservices_query_aggregation_query_source_metrics_dto.py +96 -0
- visier_platform_sdk/models/dataservices_query_aggregation_type_parameter_value_dto.py +90 -0
- visier_platform_sdk/models/dataservices_query_cell_distribution_bin_dto.py +90 -0
- visier_platform_sdk/models/dataservices_query_cell_distribution_options_dto.py +88 -0
- visier_platform_sdk/models/dataservices_query_cell_dto.py +102 -0
- visier_platform_sdk/models/dataservices_query_cell_set_axis_dto.py +102 -0
- visier_platform_sdk/models/dataservices_query_cell_set_axis_position_dto.py +92 -0
- visier_platform_sdk/models/dataservices_query_cell_set_dto.py +114 -0
- visier_platform_sdk/models/dataservices_query_cell_set_or_error_dto.py +98 -0
- visier_platform_sdk/models/dataservices_query_cohort_filter_dto.py +100 -0
- visier_platform_sdk/models/dataservices_query_internal_query_execution_options_dto.py +100 -0
- visier_platform_sdk/models/dataservices_query_key_group_filter_dto.py +96 -0
- visier_platform_sdk/models/dataservices_query_key_group_filter_item_dto.py +100 -0
- visier_platform_sdk/models/dataservices_query_lineage_dto.py +100 -0
- visier_platform_sdk/models/dataservices_query_list_query_execution_dto.py +144 -0
- visier_platform_sdk/models/dataservices_query_list_query_execution_options_dto.py +158 -0
- visier_platform_sdk/models/dataservices_query_list_query_source_dto.py +94 -0
- visier_platform_sdk/models/dataservices_query_member_filter_dto.py +98 -0
- visier_platform_sdk/models/dataservices_query_member_parameter_value_dto.py +98 -0
- visier_platform_sdk/models/dataservices_query_numeric_parameter_value_dto.py +90 -0
- visier_platform_sdk/models/dataservices_query_plan_parameter_value_dto.py +94 -0
- visier_platform_sdk/models/dataservices_query_property_column_dto.py +94 -0
- visier_platform_sdk/models/dataservices_query_query_axis_dto.py +141 -0
- visier_platform_sdk/models/dataservices_query_query_axis_options_dto.py +100 -0
- visier_platform_sdk/models/dataservices_query_query_dimension_data_member_selection_dto.py +92 -0
- visier_platform_sdk/models/dataservices_query_query_dimension_leaf_selection_dto.py +92 -0
- visier_platform_sdk/models/dataservices_query_query_dimension_level_property_dto.py +108 -0
- visier_platform_sdk/models/dataservices_query_query_dimension_level_selection_dto.py +96 -0
- visier_platform_sdk/models/dataservices_query_query_dimension_member_selection_dto.py +102 -0
- visier_platform_sdk/models/dataservices_query_query_execution_error_details_dto.py +94 -0
- visier_platform_sdk/models/dataservices_query_query_execution_error_dto.py +100 -0
- visier_platform_sdk/models/dataservices_query_query_execution_errors_dto.py +100 -0
- visier_platform_sdk/models/dataservices_query_query_execution_options_dto.py +192 -0
- visier_platform_sdk/models/dataservices_query_query_filter_dto.py +106 -0
- visier_platform_sdk/models/dataservices_query_query_member_map_property_dto.py +94 -0
- visier_platform_sdk/models/dataservices_query_query_member_map_selection_dto.py +104 -0
- visier_platform_sdk/models/dataservices_query_query_numeric_ranges_dto.py +100 -0
- visier_platform_sdk/models/dataservices_query_query_parameter_value_dto.py +110 -0
- visier_platform_sdk/models/dataservices_query_query_property_dto.py +120 -0
- visier_platform_sdk/models/dataservices_query_query_time_interval_dto.py +134 -0
- visier_platform_sdk/models/dataservices_query_query_time_intervals_dto.py +150 -0
- visier_platform_sdk/models/dataservices_query_snapshot_query_execution_dto.py +144 -0
- visier_platform_sdk/models/dataservices_query_snapshot_query_execution_options_dto.py +134 -0
- visier_platform_sdk/models/dataservices_query_sort_option_dto.py +100 -0
- visier_platform_sdk/models/dataservices_query_sql_like_query_execution_dto.py +94 -0
- visier_platform_sdk/models/dataservices_query_time_shift_dto.py +112 -0
- visier_platform_sdk/models/description_entry.py +90 -0
- visier_platform_sdk/models/designer_adp_auth_params_dto.py +88 -0
- visier_platform_sdk/models/designer_api_analytic_object_filter_dto.py +100 -0
- visier_platform_sdk/models/designer_api_calculation_concept_configuration_dto.py +96 -0
- visier_platform_sdk/models/designer_api_calculation_concept_configuration_map_dto.py +96 -0
- visier_platform_sdk/models/designer_api_calculation_concept_dto.py +96 -0
- visier_platform_sdk/models/designer_api_calculation_concept_list_dto.py +96 -0
- visier_platform_sdk/models/designer_api_concept_configuration_result_dto.py +92 -0
- visier_platform_sdk/models/designer_api_dimension_filter_dto.py +100 -0
- visier_platform_sdk/models/designer_api_dimension_member_dto.py +88 -0
- visier_platform_sdk/models/designer_api_perspective_configuration_dto.py +100 -0
- visier_platform_sdk/models/designer_api_perspective_node_dto.py +100 -0
- visier_platform_sdk/models/designer_api_selection_concept_configuration_dto.py +96 -0
- visier_platform_sdk/models/designer_api_selection_concept_configuration_map_dto.py +96 -0
- visier_platform_sdk/models/designer_api_selection_concept_dto.py +96 -0
- visier_platform_sdk/models/designer_api_selection_concept_list_dto.py +96 -0
- visier_platform_sdk/models/designer_bamboo_auth_params_dto.py +90 -0
- visier_platform_sdk/models/designer_basic_s3_auth_params_dto.py +96 -0
- visier_platform_sdk/models/designer_big_query_auth_params_dto.py +104 -0
- visier_platform_sdk/models/designer_big_query_service_account_params_dto.py +90 -0
- visier_platform_sdk/models/designer_copy_s3_auth_params_dto.py +88 -0
- visier_platform_sdk/models/designer_credential_creation_api_response_dto.py +102 -0
- visier_platform_sdk/models/designer_crypto_generate_key_request_dto.py +92 -0
- visier_platform_sdk/models/designer_crypto_key_pair_delete_response_dto.py +88 -0
- visier_platform_sdk/models/designer_crypto_key_pair_generate_request_dto.py +88 -0
- visier_platform_sdk/models/designer_crypto_public_key_dto.py +96 -0
- visier_platform_sdk/models/designer_crypto_public_keys_dto.py +96 -0
- visier_platform_sdk/models/designer_crypto_tenant_encryption_key_details_dto.py +96 -0
- visier_platform_sdk/models/designer_crypto_tenant_encryption_key_dto.py +94 -0
- visier_platform_sdk/models/designer_data_provider_auth_information_dto.py +104 -0
- visier_platform_sdk/models/designer_data_provider_auth_params_dto.py +344 -0
- visier_platform_sdk/models/designer_data_provider_basic_information_dto.py +90 -0
- visier_platform_sdk/models/designer_data_provider_basic_metadata_dto.py +88 -0
- visier_platform_sdk/models/designer_data_version_export_column_dto.py +94 -0
- visier_platform_sdk/models/designer_data_version_export_data_version_summary_dto.py +92 -0
- visier_platform_sdk/models/designer_data_version_export_data_versions_dto.py +96 -0
- visier_platform_sdk/models/designer_data_version_export_dto.py +108 -0
- visier_platform_sdk/models/designer_data_version_export_file_dto.py +106 -0
- visier_platform_sdk/models/designer_data_version_export_job_status_dto.py +94 -0
- visier_platform_sdk/models/designer_data_version_export_part_file_dto.py +90 -0
- visier_platform_sdk/models/designer_data_version_export_schedule_job_request_dto.py +90 -0
- visier_platform_sdk/models/designer_data_version_export_schedule_job_response_dto.py +88 -0
- visier_platform_sdk/models/designer_data_version_export_table_dto.py +101 -0
- visier_platform_sdk/models/designer_data_version_exports_dto.py +96 -0
- visier_platform_sdk/models/designer_databricks_auth_params_dto.py +94 -0
- visier_platform_sdk/models/designer_dayforce_v2_auth_params_dto.py +96 -0
- visier_platform_sdk/models/designer_dimensions_auth_params_dto.py +98 -0
- visier_platform_sdk/models/designer_download_source_files_dto.py +102 -0
- visier_platform_sdk/models/designer_download_source_files_response_dto.py +90 -0
- visier_platform_sdk/models/designer_extractor_credential_apidto.py +96 -0
- visier_platform_sdk/models/designer_extractor_credentials_apidto.py +100 -0
- visier_platform_sdk/models/designer_fusion_auth_params_dto.py +92 -0
- visier_platform_sdk/models/designer_gong_auth_params_dto.py +90 -0
- visier_platform_sdk/models/designer_google_sheets_auth_params_dto.py +94 -0
- visier_platform_sdk/models/designer_google_workspace_auth_params_dto.py +96 -0
- visier_platform_sdk/models/designer_greenhouse_auth_params_dto.py +88 -0
- visier_platform_sdk/models/designer_icims_auth_params_dto.py +108 -0
- visier_platform_sdk/models/designer_internal_s3_auth_params_dto.py +90 -0
- visier_platform_sdk/models/designer_jdbc_auth_params_dto.py +92 -0
- visier_platform_sdk/models/designer_jira_auth_params_dto.py +96 -0
- visier_platform_sdk/models/designer_jira_connect_params_dto.py +92 -0
- visier_platform_sdk/models/designer_lever_auth_params_dto.py +88 -0
- visier_platform_sdk/models/designer_medallia_auth_params_dto.py +94 -0
- visier_platform_sdk/models/designer_microsoft365_auth_params_dto.py +94 -0
- visier_platform_sdk/models/designer_module_settings_dto.py +92 -0
- visier_platform_sdk/models/designer_my_sql_auth_params_dto.py +98 -0
- visier_platform_sdk/models/designer_namely_auth_params_dto.py +88 -0
- visier_platform_sdk/models/designer_oracle_db_auth_params_dto.py +96 -0
- visier_platform_sdk/models/designer_push_data_column_definition_dto.py +98 -0
- visier_platform_sdk/models/designer_push_data_source_definition_dto.py +102 -0
- visier_platform_sdk/models/designer_push_data_source_definitions_dto.py +96 -0
- visier_platform_sdk/models/designer_qualtrics_auth_params_dto.py +90 -0
- visier_platform_sdk/models/designer_redshift_auth_params_dto.py +100 -0
- visier_platform_sdk/models/designer_salesforce_auth_params_dto.py +90 -0
- visier_platform_sdk/models/designer_salesforce_v2_auth_params_dto.py +94 -0
- visier_platform_sdk/models/designer_service_now_auth_params_dto.py +92 -0
- visier_platform_sdk/models/designer_service_now_v2_auth_params_dto.py +96 -0
- visier_platform_sdk/models/designer_slack_auth_params_dto.py +92 -0
- visier_platform_sdk/models/designer_snowflake_auth_params_dto.py +100 -0
- visier_platform_sdk/models/designer_sql_server_auth_params_dto.py +96 -0
- visier_platform_sdk/models/designer_subject_missing_access_dto.py +102 -0
- visier_platform_sdk/models/designer_success_factors_auth_params_dto.py +100 -0
- visier_platform_sdk/models/designer_success_factors_o_auth_params_dto.py +92 -0
- visier_platform_sdk/models/designer_tenant_module_dto.py +96 -0
- visier_platform_sdk/models/designer_ultimate_auth_params_dto.py +96 -0
- visier_platform_sdk/models/designer_webhook_webhook_basic_auth_credential_dto.py +90 -0
- visier_platform_sdk/models/designer_webhook_webhook_credentials_dto.py +94 -0
- visier_platform_sdk/models/designer_webhook_webhook_details_dto.py +104 -0
- visier_platform_sdk/models/designer_webhook_webhook_dto.py +96 -0
- visier_platform_sdk/models/designer_webhook_webhook_event_type_dto.py +88 -0
- visier_platform_sdk/models/designer_webhook_webhook_message_response_dto.py +94 -0
- visier_platform_sdk/models/designer_webhook_webhook_request_dto.py +98 -0
- visier_platform_sdk/models/designer_webhook_webhooks_dto.py +96 -0
- visier_platform_sdk/models/designer_willow_auth_params_dto.py +90 -0
- visier_platform_sdk/models/designer_workday_auth_params_dto.py +110 -0
- visier_platform_sdk/models/designer_workday_o_auth_params_dto.py +92 -0
- visier_platform_sdk/models/designer_workday_raas_auth_params_dto.py +96 -0
- visier_platform_sdk/models/designer_workday_refresh_token_params_dto.py +92 -0
- visier_platform_sdk/models/designer_zoom_auth_params_dto.py +92 -0
- visier_platform_sdk/models/dimension_member.py +139 -0
- visier_platform_sdk/models/direct_data_upload_file_response_dto.py +92 -0
- visier_platform_sdk/models/dp_automation_metric_validation_summary_dto.py +92 -0
- visier_platform_sdk/models/dp_automation_tenant_preview_entries_summary_dto.py +102 -0
- visier_platform_sdk/models/dp_automation_tenant_preview_entries_summary_list_dto.py +100 -0
- visier_platform_sdk/models/dp_cancel_job_batch_from_job_id_dto.py +88 -0
- visier_platform_sdk/models/dp_job_cancellation_result_dto.py +110 -0
- visier_platform_sdk/models/dp_job_cancellation_results_dto.py +96 -0
- visier_platform_sdk/models/dv_export_status.py +96 -0
- visier_platform_sdk/models/extracted_skill.py +94 -0
- visier_platform_sdk/models/generate_impersonation_token_request.py +88 -0
- visier_platform_sdk/models/google_protobuf_any.py +101 -0
- visier_platform_sdk/models/hierarchy.py +92 -0
- visier_platform_sdk/models/job.py +121 -0
- visier_platform_sdk/models/job_entry.py +92 -0
- visier_platform_sdk/models/job_feedback_input.py +92 -0
- visier_platform_sdk/models/job_search_failure_output.py +94 -0
- visier_platform_sdk/models/job_search_input.py +88 -0
- visier_platform_sdk/models/job_search_output.py +106 -0
- visier_platform_sdk/models/job_standardization_input.py +98 -0
- visier_platform_sdk/models/job_standardization_input_skills.py +90 -0
- visier_platform_sdk/models/location_search_failure_output.py +96 -0
- visier_platform_sdk/models/location_search_input.py +98 -0
- visier_platform_sdk/models/location_search_input1.py +92 -0
- visier_platform_sdk/models/location_search_output.py +106 -0
- visier_platform_sdk/models/location_search_successful_output.py +98 -0
- visier_platform_sdk/models/output_entry.py +98 -0
- visier_platform_sdk/models/output_entry1.py +98 -0
- visier_platform_sdk/models/output_entry1_matches_inner.py +94 -0
- visier_platform_sdk/models/plan_data_load_change_dto.py +94 -0
- visier_platform_sdk/models/plan_data_load_change_list_dto.py +98 -0
- visier_platform_sdk/models/plan_data_upload_response_dto.py +110 -0
- visier_platform_sdk/models/plan_row_data_load_response_dto.py +114 -0
- visier_platform_sdk/models/planning_get_plan_list_response_dto.py +98 -0
- visier_platform_sdk/models/planning_plan_data_load_error_dto.py +92 -0
- visier_platform_sdk/models/planning_plan_info_dto.py +106 -0
- visier_platform_sdk/models/planning_plan_item_dto.py +102 -0
- visier_platform_sdk/models/planning_plan_schema_dto.py +126 -0
- visier_platform_sdk/models/planning_plan_segment_level_dto.py +96 -0
- visier_platform_sdk/models/planning_plan_segment_level_member_dto.py +94 -0
- visier_platform_sdk/models/planning_plan_segment_level_member_list_dto.py +100 -0
- visier_platform_sdk/models/planning_plan_time_period_dto.py +90 -0
- visier_platform_sdk/models/planning_plan_with_schema_dto.py +108 -0
- visier_platform_sdk/models/planning_scenario_info_dto.py +92 -0
- visier_platform_sdk/models/salary_benchmark_input.py +100 -0
- visier_platform_sdk/models/salary_benchmarks_batch_processing_failure_output.py +96 -0
- visier_platform_sdk/models/salary_benchmarks_batch_processing_outputs.py +106 -0
- visier_platform_sdk/models/salary_benchmarks_batch_processing_successful_output.py +110 -0
- visier_platform_sdk/models/servicing_accessible_tenant_profile_assignment_request_dto.py +102 -0
- visier_platform_sdk/models/servicing_accessible_tenant_profile_assignment_response_dto.py +128 -0
- visier_platform_sdk/models/servicing_accessible_tenant_profile_revoke_request_dto.py +98 -0
- visier_platform_sdk/models/servicing_accessible_tenant_profile_revoke_response_dto.py +125 -0
- visier_platform_sdk/models/servicing_additional_capabilities_dto.py +88 -0
- visier_platform_sdk/models/servicing_admin_capability_config_dto.py +90 -0
- visier_platform_sdk/models/servicing_all_permissions_assigned_for_local_tenant_dto.py +96 -0
- visier_platform_sdk/models/servicing_all_profile_assigned_for_accessible_tenant_dto.py +96 -0
- visier_platform_sdk/models/servicing_all_profile_assigned_for_local_tenant_dto.py +96 -0
- visier_platform_sdk/models/servicing_all_user_groups_assigned_for_local_tenant_dto.py +96 -0
- visier_platform_sdk/models/servicing_all_users_get_api_response_dto.py +100 -0
- visier_platform_sdk/models/servicing_analytic_object_dto.py +132 -0
- visier_platform_sdk/models/servicing_assign_revoke_permission_by_permission_dto.py +102 -0
- visier_platform_sdk/models/servicing_assign_revoke_permission_by_tenant_dto.py +114 -0
- visier_platform_sdk/models/servicing_assign_revoke_permission_by_user_dto.py +92 -0
- visier_platform_sdk/models/servicing_assign_revoke_permission_request_dto.py +90 -0
- visier_platform_sdk/models/servicing_assign_revoke_permissions_request_dto.py +102 -0
- visier_platform_sdk/models/servicing_assign_revoke_permissions_response_dto.py +96 -0
- visier_platform_sdk/models/servicing_bulk_data_access_set_response_dto.py +106 -0
- visier_platform_sdk/models/servicing_capabilities_dto.py +92 -0
- visier_platform_sdk/models/servicing_capability_dto.py +92 -0
- visier_platform_sdk/models/servicing_capability_group_dto.py +146 -0
- visier_platform_sdk/models/servicing_commit_and_publish_operation_response_dto.py +92 -0
- visier_platform_sdk/models/servicing_commit_dto.py +92 -0
- visier_platform_sdk/models/servicing_content_package_dto.py +92 -0
- visier_platform_sdk/models/servicing_create_data_access_set_request_dto.py +96 -0
- visier_platform_sdk/models/servicing_data_access_set_dto.py +104 -0
- visier_platform_sdk/models/servicing_data_access_set_error_dto.py +90 -0
- visier_platform_sdk/models/servicing_data_access_set_failure_dto.py +96 -0
- visier_platform_sdk/models/servicing_data_access_set_success_dto.py +90 -0
- visier_platform_sdk/models/servicing_data_categories_response_dto.py +96 -0
- visier_platform_sdk/models/servicing_data_category_response_dto.py +90 -0
- visier_platform_sdk/models/servicing_data_security_profile_dto.py +134 -0
- visier_platform_sdk/models/servicing_delete_permissions_request_dto.py +88 -0
- visier_platform_sdk/models/servicing_dimension_filter_dto.py +98 -0
- visier_platform_sdk/models/servicing_direct_data_job_config_dto.py +100 -0
- visier_platform_sdk/models/servicing_direct_data_job_status_response_dto.py +96 -0
- visier_platform_sdk/models/servicing_direct_data_list_transactions_response_dto.py +96 -0
- visier_platform_sdk/models/servicing_direct_data_load_config_dto.py +92 -0
- visier_platform_sdk/models/servicing_direct_data_schema_dto.py +96 -0
- visier_platform_sdk/models/servicing_direct_data_schema_field_dto.py +96 -0
- visier_platform_sdk/models/servicing_direct_data_transaction_dto.py +96 -0
- visier_platform_sdk/models/servicing_direct_data_transaction_start_response_dto.py +88 -0
- visier_platform_sdk/models/servicing_direct_data_upload_file_response_dto.py +92 -0
- visier_platform_sdk/models/servicing_document_search_link_dto.py +90 -0
- visier_platform_sdk/models/servicing_dynamic_dimension_filter_dto.py +112 -0
- visier_platform_sdk/models/servicing_dynamic_property_mapping_dto.py +106 -0
- visier_platform_sdk/models/servicing_error_dto.py +92 -0
- visier_platform_sdk/models/servicing_export_production_versions_api_operation_parameters_dto.py +92 -0
- visier_platform_sdk/models/servicing_failed_accessible_tenant_profile_assignment_dto.py +98 -0
- visier_platform_sdk/models/servicing_failed_local_tenant_profile_assignment_dto.py +94 -0
- visier_platform_sdk/models/servicing_failed_local_tenant_profile_revoke_dto.py +90 -0
- visier_platform_sdk/models/servicing_get_capabilities_api_response_dto.py +96 -0
- visier_platform_sdk/models/servicing_get_content_packages_api_response_dto.py +96 -0
- visier_platform_sdk/models/servicing_get_data_access_sets_api_response_dto.py +96 -0
- visier_platform_sdk/models/servicing_get_data_security_objects_api_response_dto.py +96 -0
- visier_platform_sdk/models/servicing_get_permissions_api_response_dto.py +96 -0
- visier_platform_sdk/models/servicing_get_production_versions_api_response_dto.py +96 -0
- visier_platform_sdk/models/servicing_get_projects_api_response_dto.py +123 -0
- visier_platform_sdk/models/servicing_hierarchy_property_dto.py +90 -0
- visier_platform_sdk/models/servicing_inherited_access_config_dto.py +100 -0
- visier_platform_sdk/models/servicing_inherited_reference_member_filter_config_dto.py +90 -0
- visier_platform_sdk/models/servicing_job_id_response.py +88 -0
- visier_platform_sdk/models/servicing_last_login_dto.py +88 -0
- visier_platform_sdk/models/servicing_local_tenant_profile_assignment_request_dto.py +92 -0
- visier_platform_sdk/models/servicing_local_tenant_profile_assignment_response_dto.py +118 -0
- visier_platform_sdk/models/servicing_local_tenant_profile_revoke_request_dto.py +88 -0
- visier_platform_sdk/models/servicing_local_tenant_profile_revoke_response_dto.py +106 -0
- visier_platform_sdk/models/servicing_member_filter_config_dto.py +96 -0
- visier_platform_sdk/models/servicing_member_selection_dto.py +102 -0
- visier_platform_sdk/models/servicing_objectconfiguration_calculated_property_type_dto.py +90 -0
- visier_platform_sdk/models/servicing_objectconfiguration_dependent_dto.py +92 -0
- visier_platform_sdk/models/servicing_objectconfiguration_dimension_change_definition_dto.py +94 -0
- visier_platform_sdk/models/servicing_objectconfiguration_dimension_change_definitions_by_tenant_dto.py +100 -0
- visier_platform_sdk/models/servicing_objectconfiguration_dimensions_change_definitions_dto.py +96 -0
- visier_platform_sdk/models/servicing_objectconfiguration_object_change_failure_dto.py +98 -0
- visier_platform_sdk/models/servicing_objectconfiguration_object_change_success_dto.py +94 -0
- visier_platform_sdk/models/servicing_objectconfiguration_objects_bulk_change_response_dto.py +106 -0
- visier_platform_sdk/models/servicing_objectconfiguration_properties_change_definitions_dto.py +96 -0
- visier_platform_sdk/models/servicing_objectconfiguration_properties_delete_definitions_dto.py +100 -0
- visier_platform_sdk/models/servicing_objectconfiguration_property_bulk_delete_response_dto.py +106 -0
- visier_platform_sdk/models/servicing_objectconfiguration_property_change_definition_dto.py +112 -0
- visier_platform_sdk/models/servicing_objectconfiguration_property_change_definitions_by_tenant_dto.py +100 -0
- visier_platform_sdk/models/servicing_objectconfiguration_property_delete_definitions_by_tenant_dto.py +92 -0
- visier_platform_sdk/models/servicing_objectconfiguration_property_delete_failure_dto.py +117 -0
- visier_platform_sdk/models/servicing_objectconfiguration_property_delete_success_dto.py +113 -0
- visier_platform_sdk/models/servicing_objectconfiguration_property_type_dto.py +98 -0
- visier_platform_sdk/models/servicing_objectconfiguration_simple_property_type_dto.py +88 -0
- visier_platform_sdk/models/servicing_objectconfiguration_tags_dto.py +88 -0
- visier_platform_sdk/models/servicing_permission_assigned_by_tenant_dto.py +98 -0
- visier_platform_sdk/models/servicing_permission_assigned_for_local_tenant_dto.py +92 -0
- visier_platform_sdk/models/servicing_permission_assigned_user_dto.py +92 -0
- visier_platform_sdk/models/servicing_permission_assigned_users_dto.py +100 -0
- visier_platform_sdk/models/servicing_permission_bulk_operation_response_dto.py +106 -0
- visier_platform_sdk/models/servicing_permission_dto.py +114 -0
- visier_platform_sdk/models/servicing_permission_error_dto.py +90 -0
- visier_platform_sdk/models/servicing_permission_failure_dto.py +96 -0
- visier_platform_sdk/models/servicing_permission_success_dto.py +90 -0
- visier_platform_sdk/models/servicing_production_version_api_operation_request_dto.py +98 -0
- visier_platform_sdk/models/servicing_production_version_api_operation_response_dto.py +92 -0
- visier_platform_sdk/models/servicing_production_versions_api_operation_request_dto.py +104 -0
- visier_platform_sdk/models/servicing_production_versions_api_operation_response_dto.py +88 -0
- visier_platform_sdk/models/servicing_profile_assigned_for_accessible_tenant_dto.py +98 -0
- visier_platform_sdk/models/servicing_profile_assigned_for_local_tenant_dto.py +110 -0
- visier_platform_sdk/models/servicing_profile_get_api_response_dto.py +102 -0
- visier_platform_sdk/models/servicing_profiles_get_api_response_dto.py +96 -0
- visier_platform_sdk/models/servicing_project_commits_api_response_dto.py +96 -0
- visier_platform_sdk/models/servicing_project_dto.py +111 -0
- visier_platform_sdk/models/servicing_project_operation_request_dto.py +98 -0
- visier_platform_sdk/models/servicing_project_operation_response_dto.py +92 -0
- visier_platform_sdk/models/servicing_property_access_config_dto.py +116 -0
- visier_platform_sdk/models/servicing_property_set_config_dto.py +102 -0
- visier_platform_sdk/models/servicing_question_categories_api_response_dto.py +96 -0
- visier_platform_sdk/models/servicing_question_category_api_response_dto.py +90 -0
- visier_platform_sdk/models/servicing_reduced_error_dto.py +88 -0
- visier_platform_sdk/models/servicing_reduced_tenant_code_error_dto.py +96 -0
- visier_platform_sdk/models/servicing_reduced_user_id_error_dto.py +94 -0
- visier_platform_sdk/models/servicing_related_analytic_object_dto.py +90 -0
- visier_platform_sdk/models/servicing_role_modules_config_dto.py +88 -0
- visier_platform_sdk/models/servicing_sample_question_api_response_dto.py +100 -0
- visier_platform_sdk/models/servicing_sample_questions_api_response_dto.py +96 -0
- visier_platform_sdk/models/servicing_securable_dimension_dto.py +102 -0
- visier_platform_sdk/models/servicing_securable_property_dto.py +96 -0
- visier_platform_sdk/models/servicing_servicing_capability_proto_enum_access_lookup_dto.py +96 -0
- visier_platform_sdk/models/servicing_shareable_data_access_set.py +88 -0
- visier_platform_sdk/models/servicing_simple_document_header_search_response_dto.py +96 -0
- visier_platform_sdk/models/servicing_simple_document_header_search_result_dto.py +98 -0
- visier_platform_sdk/models/servicing_sources_api_operation_request_dto.py +98 -0
- visier_platform_sdk/models/servicing_static_dimension_filter_dto.py +112 -0
- visier_platform_sdk/models/servicing_successful_accessible_tenant_profile_assignment_dto.py +92 -0
- visier_platform_sdk/models/servicing_successful_local_tenant_profile_assignment_dto.py +88 -0
- visier_platform_sdk/models/servicing_target_tenant_code_dto.py +90 -0
- visier_platform_sdk/models/servicing_tenant_code_error_dto.py +96 -0
- visier_platform_sdk/models/servicing_tenant_data_upload_status_response_dto.py +90 -0
- visier_platform_sdk/models/servicing_tenant_data_upload_update_status_response_dto.py +94 -0
- visier_platform_sdk/models/servicing_tenant_data_uploads_list_response_dto.py +100 -0
- visier_platform_sdk/models/servicing_tenant_data_uploads_response_dto.py +98 -0
- visier_platform_sdk/models/servicing_tenant_data_uploads_update_response_dto.py +100 -0
- visier_platform_sdk/models/servicing_user_creation_api_request_dto.py +96 -0
- visier_platform_sdk/models/servicing_user_get_api_response_dto.py +122 -0
- visier_platform_sdk/models/servicing_user_group_assigned_for_local_tenant_dto.py +90 -0
- visier_platform_sdk/models/servicing_user_group_assignment_dto.py +88 -0
- visier_platform_sdk/models/servicing_user_id_error_dto.py +94 -0
- visier_platform_sdk/models/servicing_user_property_dto.py +88 -0
- visier_platform_sdk/models/servicing_user_update_api_request_dto.py +96 -0
- visier_platform_sdk/models/servicing_users_api_error_message_dto.py +90 -0
- visier_platform_sdk/models/servicing_users_api_failure_dto.py +98 -0
- visier_platform_sdk/models/servicing_users_api_response_dto.py +106 -0
- visier_platform_sdk/models/servicing_users_api_success_dto.py +98 -0
- visier_platform_sdk/models/servicing_users_creation_api_request_dto.py +96 -0
- visier_platform_sdk/models/servicing_users_delete_api_request_dto.py +88 -0
- visier_platform_sdk/models/servicing_users_update_api_request_dto.py +96 -0
- visier_platform_sdk/models/servicing_users_update_api_user_dto.py +98 -0
- visier_platform_sdk/models/servicing_v2_objectconfiguration_analytic_object_definition_dto.py +102 -0
- visier_platform_sdk/models/servicing_v2_objectconfiguration_analytic_object_request_dto.py +96 -0
- visier_platform_sdk/models/servicing_v2_objectconfiguration_analytic_object_with_context_dto.py +98 -0
- visier_platform_sdk/models/servicing_v2_objectconfiguration_basic_information_dto.py +102 -0
- visier_platform_sdk/models/servicing_v2_objectconfiguration_bulk_change_response_dto.py +106 -0
- visier_platform_sdk/models/servicing_v2_objectconfiguration_calculated_property_type_dto.py +92 -0
- visier_platform_sdk/models/servicing_v2_objectconfiguration_concept_definition_dto.py +102 -0
- visier_platform_sdk/models/servicing_v2_objectconfiguration_concept_delete_request_dto.py +96 -0
- visier_platform_sdk/models/servicing_v2_objectconfiguration_concept_delete_with_context_dto.py +98 -0
- visier_platform_sdk/models/servicing_v2_objectconfiguration_concept_request_dto.py +96 -0
- visier_platform_sdk/models/servicing_v2_objectconfiguration_concept_response_dto.py +96 -0
- visier_platform_sdk/models/servicing_v2_objectconfiguration_concept_type_details_dto.py +92 -0
- visier_platform_sdk/models/servicing_v2_objectconfiguration_concept_with_context_dto.py +98 -0
- visier_platform_sdk/models/servicing_v2_objectconfiguration_execution_context_dto.py +90 -0
- visier_platform_sdk/models/servicing_v2_objectconfiguration_failed_change_dto.py +100 -0
- visier_platform_sdk/models/servicing_v2_objectconfiguration_metric_definition_dto.py +114 -0
- visier_platform_sdk/models/servicing_v2_objectconfiguration_metric_type_details_dto.py +92 -0
- visier_platform_sdk/models/servicing_v2_objectconfiguration_object_id_dto.py +90 -0
- visier_platform_sdk/models/servicing_v2_objectconfiguration_process_concept_definition_dto.py +128 -0
- visier_platform_sdk/models/servicing_v2_objectconfiguration_process_concept_member_dto.py +90 -0
- visier_platform_sdk/models/servicing_v2_objectconfiguration_process_concept_member_list_dto.py +96 -0
- visier_platform_sdk/models/servicing_v2_objectconfiguration_process_concept_metric_definition_dto.py +92 -0
- visier_platform_sdk/models/servicing_v2_objectconfiguration_process_concept_metric_list_dto.py +96 -0
- visier_platform_sdk/models/servicing_v2_objectconfiguration_process_concept_outcome_dto.py +114 -0
- visier_platform_sdk/models/servicing_v2_objectconfiguration_process_concept_outcome_list_dto.py +96 -0
- visier_platform_sdk/models/servicing_v2_objectconfiguration_process_concept_property_list_dto.py +96 -0
- visier_platform_sdk/models/servicing_v2_objectconfiguration_process_concept_property_type_dto.py +92 -0
- visier_platform_sdk/models/servicing_v2_objectconfiguration_process_concept_stage_dto.py +102 -0
- visier_platform_sdk/models/servicing_v2_objectconfiguration_process_concept_stage_list_dto.py +96 -0
- visier_platform_sdk/models/servicing_v2_objectconfiguration_property_definition_dto.py +102 -0
- visier_platform_sdk/models/servicing_v2_objectconfiguration_property_type_details_dto.py +104 -0
- visier_platform_sdk/models/servicing_v2_objectconfiguration_simple_property_type_dto.py +90 -0
- visier_platform_sdk/models/servicing_v2_objectconfiguration_successful_change_dto.py +98 -0
- visier_platform_sdk/models/servicing_v2_objectconfiguration_synonym_list_dto.py +88 -0
- visier_platform_sdk/models/servicing_v2_objectconfiguration_tag_reference_dto.py +88 -0
- visier_platform_sdk/models/servicing_v2_objectconfiguration_tag_reference_list_dto.py +96 -0
- visier_platform_sdk/models/servicing_vee_question_change_definition_dto.py +100 -0
- visier_platform_sdk/models/servicing_vee_question_change_definitions_by_tenant_dto.py +100 -0
- visier_platform_sdk/models/servicing_vee_question_change_failure_dto.py +106 -0
- visier_platform_sdk/models/servicing_vee_question_change_success_dto.py +104 -0
- visier_platform_sdk/models/servicing_vee_question_delete_definitions_by_tenant_dto.py +92 -0
- visier_platform_sdk/models/servicing_vee_questions_bulk_change_response_dto.py +106 -0
- visier_platform_sdk/models/servicing_vee_questions_change_definitions_dto.py +96 -0
- visier_platform_sdk/models/servicing_vee_questions_delete_definitions_dto.py +96 -0
- visier_platform_sdk/models/skill.py +106 -0
- visier_platform_sdk/models/skill_category.py +102 -0
- visier_platform_sdk/models/skill_category_entry.py +92 -0
- visier_platform_sdk/models/skill_entry.py +92 -0
- visier_platform_sdk/models/skill_extraction_input.py +93 -0
- visier_platform_sdk/models/skill_group.py +104 -0
- visier_platform_sdk/models/skill_group_entry.py +92 -0
- visier_platform_sdk/models/skill_match_input.py +91 -0
- visier_platform_sdk/models/source_import_result_summary_dto.py +94 -0
- visier_platform_sdk/models/sources_api_put_response_dto.py +92 -0
- visier_platform_sdk/models/sql_like200_response.py +138 -0
- visier_platform_sdk/models/status.py +96 -0
- visier_platform_sdk/models/systemstatus_system_status_dto.py +88 -0
- visier_platform_sdk/models/systemstatus_vee_status_dto.py +88 -0
- visier_platform_sdk/models/table_response_dto.py +90 -0
- visier_platform_sdk/models/token_response.py +96 -0
- visier_platform_sdk/models/user_creation_api_response_dto.py +98 -0
- visier_platform_sdk/py.typed +0 -0
- visier_platform_sdk/rest.py +259 -0
- visier_platform_sdk-22222222.99201.1892b3.dist-info/METADATA +25 -0
- visier_platform_sdk-22222222.99201.1892b3.dist-info/RECORD +664 -0
- visier_platform_sdk-22222222.99201.1892b3.dist-info/WHEEL +5 -0
- visier_platform_sdk-22222222.99201.1892b3.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,2632 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
API Reference
|
|
5
|
+
|
|
6
|
+
Detailed API reference documentation for Visier APIs. Includes all endpoints, headers, path parameters, query parameters, request body schema, response schema, JSON request samples, and JSON response samples.
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 22222222.99201.1892
|
|
9
|
+
Contact: alpine@visier.com
|
|
10
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
|
+
|
|
12
|
+
Do not edit the class manually.
|
|
13
|
+
""" # noqa: E501
|
|
14
|
+
|
|
15
|
+
import warnings
|
|
16
|
+
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
|
17
|
+
from typing import Any, Dict, List, Optional, Tuple, Union
|
|
18
|
+
from typing_extensions import Annotated
|
|
19
|
+
|
|
20
|
+
from pydantic import Field, StrictInt, StrictStr
|
|
21
|
+
from typing import List, Optional
|
|
22
|
+
from typing_extensions import Annotated
|
|
23
|
+
from visier_platform_sdk.models.extracted_skill import ExtractedSkill
|
|
24
|
+
from visier_platform_sdk.models.skill import Skill
|
|
25
|
+
from visier_platform_sdk.models.skill_category import SkillCategory
|
|
26
|
+
from visier_platform_sdk.models.skill_category_entry import SkillCategoryEntry
|
|
27
|
+
from visier_platform_sdk.models.skill_entry import SkillEntry
|
|
28
|
+
from visier_platform_sdk.models.skill_extraction_input import SkillExtractionInput
|
|
29
|
+
from visier_platform_sdk.models.skill_group import SkillGroup
|
|
30
|
+
from visier_platform_sdk.models.skill_group_entry import SkillGroupEntry
|
|
31
|
+
from visier_platform_sdk.models.skill_match_input import SkillMatchInput
|
|
32
|
+
|
|
33
|
+
from visier_platform_sdk.api_client import ApiClient, RequestSerialized
|
|
34
|
+
from visier_platform_sdk.api_response import ApiResponse
|
|
35
|
+
from visier_platform_sdk.rest import RESTResponseType
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
class SkillsLibraryApi:
|
|
39
|
+
"""NOTE: This class is auto generated by OpenAPI Generator
|
|
40
|
+
Ref: https://openapi-generator.tech
|
|
41
|
+
|
|
42
|
+
Do not edit the class manually.
|
|
43
|
+
"""
|
|
44
|
+
|
|
45
|
+
def __init__(self, api_client=None) -> None:
|
|
46
|
+
if api_client is None:
|
|
47
|
+
api_client = ApiClient.get_default()
|
|
48
|
+
self.api_client = api_client
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
@validate_call
|
|
52
|
+
def extract_skills(
|
|
53
|
+
self,
|
|
54
|
+
accept_language: Annotated[Optional[StrictStr], Field(description="Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English. ")] = None,
|
|
55
|
+
skill_extraction_input: Annotated[Optional[SkillExtractionInput], Field(description="The text to extract skills from. The minimum length is 4 characters and the maximum length is 7500 characters. ")] = None,
|
|
56
|
+
_request_timeout: Union[
|
|
57
|
+
None,
|
|
58
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
59
|
+
Tuple[
|
|
60
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
61
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
62
|
+
]
|
|
63
|
+
] = None,
|
|
64
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
65
|
+
_content_type: Optional[StrictStr] = None,
|
|
66
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
67
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
68
|
+
) -> List[ExtractedSkill]:
|
|
69
|
+
"""Extract skills from text
|
|
70
|
+
|
|
71
|
+
Extract the relevant skills from text such as job descriptions and course outlines.
|
|
72
|
+
|
|
73
|
+
:param accept_language: Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English.
|
|
74
|
+
:type accept_language: str
|
|
75
|
+
:param skill_extraction_input: The text to extract skills from. The minimum length is 4 characters and the maximum length is 7500 characters.
|
|
76
|
+
:type skill_extraction_input: SkillExtractionInput
|
|
77
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
78
|
+
number provided, it will be total request
|
|
79
|
+
timeout. It can also be a pair (tuple) of
|
|
80
|
+
(connection, read) timeouts.
|
|
81
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
82
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
83
|
+
request; this effectively ignores the
|
|
84
|
+
authentication in the spec for a single request.
|
|
85
|
+
:type _request_auth: dict, optional
|
|
86
|
+
:param _content_type: force content-type for the request.
|
|
87
|
+
:type _content_type: str, Optional
|
|
88
|
+
:param _headers: set to override the headers for a single
|
|
89
|
+
request; this effectively ignores the headers
|
|
90
|
+
in the spec for a single request.
|
|
91
|
+
:type _headers: dict, optional
|
|
92
|
+
:param _host_index: set to override the host_index for a single
|
|
93
|
+
request; this effectively ignores the host_index
|
|
94
|
+
in the spec for a single request.
|
|
95
|
+
:type _host_index: int, optional
|
|
96
|
+
:return: Returns the result object.
|
|
97
|
+
""" # noqa: E501
|
|
98
|
+
|
|
99
|
+
_param = self._extract_skills_serialize(
|
|
100
|
+
accept_language=accept_language,
|
|
101
|
+
skill_extraction_input=skill_extraction_input,
|
|
102
|
+
_request_auth=_request_auth,
|
|
103
|
+
_content_type=_content_type,
|
|
104
|
+
_headers=_headers,
|
|
105
|
+
_host_index=_host_index
|
|
106
|
+
)
|
|
107
|
+
|
|
108
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
109
|
+
'200': "List[ExtractedSkill]",
|
|
110
|
+
'400': "ApiError",
|
|
111
|
+
'500': "ApiError",
|
|
112
|
+
'504': "ApiError",
|
|
113
|
+
}
|
|
114
|
+
response_data = self.api_client.call_api(
|
|
115
|
+
*_param,
|
|
116
|
+
_request_timeout=_request_timeout
|
|
117
|
+
)
|
|
118
|
+
response_data.read()
|
|
119
|
+
return self.api_client.response_deserialize(
|
|
120
|
+
response_data=response_data,
|
|
121
|
+
response_types_map=_response_types_map,
|
|
122
|
+
).data
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
@validate_call
|
|
126
|
+
def extract_skills_with_http_info(
|
|
127
|
+
self,
|
|
128
|
+
accept_language: Annotated[Optional[StrictStr], Field(description="Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English. ")] = None,
|
|
129
|
+
skill_extraction_input: Annotated[Optional[SkillExtractionInput], Field(description="The text to extract skills from. The minimum length is 4 characters and the maximum length is 7500 characters. ")] = None,
|
|
130
|
+
_request_timeout: Union[
|
|
131
|
+
None,
|
|
132
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
133
|
+
Tuple[
|
|
134
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
135
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
136
|
+
]
|
|
137
|
+
] = None,
|
|
138
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
139
|
+
_content_type: Optional[StrictStr] = None,
|
|
140
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
141
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
142
|
+
) -> ApiResponse[List[ExtractedSkill]]:
|
|
143
|
+
"""Extract skills from text
|
|
144
|
+
|
|
145
|
+
Extract the relevant skills from text such as job descriptions and course outlines.
|
|
146
|
+
|
|
147
|
+
:param accept_language: Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English.
|
|
148
|
+
:type accept_language: str
|
|
149
|
+
:param skill_extraction_input: The text to extract skills from. The minimum length is 4 characters and the maximum length is 7500 characters.
|
|
150
|
+
:type skill_extraction_input: SkillExtractionInput
|
|
151
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
152
|
+
number provided, it will be total request
|
|
153
|
+
timeout. It can also be a pair (tuple) of
|
|
154
|
+
(connection, read) timeouts.
|
|
155
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
156
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
157
|
+
request; this effectively ignores the
|
|
158
|
+
authentication in the spec for a single request.
|
|
159
|
+
:type _request_auth: dict, optional
|
|
160
|
+
:param _content_type: force content-type for the request.
|
|
161
|
+
:type _content_type: str, Optional
|
|
162
|
+
:param _headers: set to override the headers for a single
|
|
163
|
+
request; this effectively ignores the headers
|
|
164
|
+
in the spec for a single request.
|
|
165
|
+
:type _headers: dict, optional
|
|
166
|
+
:param _host_index: set to override the host_index for a single
|
|
167
|
+
request; this effectively ignores the host_index
|
|
168
|
+
in the spec for a single request.
|
|
169
|
+
:type _host_index: int, optional
|
|
170
|
+
:return: Returns the result object.
|
|
171
|
+
""" # noqa: E501
|
|
172
|
+
|
|
173
|
+
_param = self._extract_skills_serialize(
|
|
174
|
+
accept_language=accept_language,
|
|
175
|
+
skill_extraction_input=skill_extraction_input,
|
|
176
|
+
_request_auth=_request_auth,
|
|
177
|
+
_content_type=_content_type,
|
|
178
|
+
_headers=_headers,
|
|
179
|
+
_host_index=_host_index
|
|
180
|
+
)
|
|
181
|
+
|
|
182
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
183
|
+
'200': "List[ExtractedSkill]",
|
|
184
|
+
'400': "ApiError",
|
|
185
|
+
'500': "ApiError",
|
|
186
|
+
'504': "ApiError",
|
|
187
|
+
}
|
|
188
|
+
response_data = self.api_client.call_api(
|
|
189
|
+
*_param,
|
|
190
|
+
_request_timeout=_request_timeout
|
|
191
|
+
)
|
|
192
|
+
response_data.read()
|
|
193
|
+
return self.api_client.response_deserialize(
|
|
194
|
+
response_data=response_data,
|
|
195
|
+
response_types_map=_response_types_map,
|
|
196
|
+
)
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
@validate_call
|
|
200
|
+
def extract_skills_without_preload_content(
|
|
201
|
+
self,
|
|
202
|
+
accept_language: Annotated[Optional[StrictStr], Field(description="Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English. ")] = None,
|
|
203
|
+
skill_extraction_input: Annotated[Optional[SkillExtractionInput], Field(description="The text to extract skills from. The minimum length is 4 characters and the maximum length is 7500 characters. ")] = None,
|
|
204
|
+
_request_timeout: Union[
|
|
205
|
+
None,
|
|
206
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
207
|
+
Tuple[
|
|
208
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
209
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
210
|
+
]
|
|
211
|
+
] = None,
|
|
212
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
213
|
+
_content_type: Optional[StrictStr] = None,
|
|
214
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
215
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
216
|
+
) -> RESTResponseType:
|
|
217
|
+
"""Extract skills from text
|
|
218
|
+
|
|
219
|
+
Extract the relevant skills from text such as job descriptions and course outlines.
|
|
220
|
+
|
|
221
|
+
:param accept_language: Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English.
|
|
222
|
+
:type accept_language: str
|
|
223
|
+
:param skill_extraction_input: The text to extract skills from. The minimum length is 4 characters and the maximum length is 7500 characters.
|
|
224
|
+
:type skill_extraction_input: SkillExtractionInput
|
|
225
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
226
|
+
number provided, it will be total request
|
|
227
|
+
timeout. It can also be a pair (tuple) of
|
|
228
|
+
(connection, read) timeouts.
|
|
229
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
230
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
231
|
+
request; this effectively ignores the
|
|
232
|
+
authentication in the spec for a single request.
|
|
233
|
+
:type _request_auth: dict, optional
|
|
234
|
+
:param _content_type: force content-type for the request.
|
|
235
|
+
:type _content_type: str, Optional
|
|
236
|
+
:param _headers: set to override the headers for a single
|
|
237
|
+
request; this effectively ignores the headers
|
|
238
|
+
in the spec for a single request.
|
|
239
|
+
:type _headers: dict, optional
|
|
240
|
+
:param _host_index: set to override the host_index for a single
|
|
241
|
+
request; this effectively ignores the host_index
|
|
242
|
+
in the spec for a single request.
|
|
243
|
+
:type _host_index: int, optional
|
|
244
|
+
:return: Returns the result object.
|
|
245
|
+
""" # noqa: E501
|
|
246
|
+
|
|
247
|
+
_param = self._extract_skills_serialize(
|
|
248
|
+
accept_language=accept_language,
|
|
249
|
+
skill_extraction_input=skill_extraction_input,
|
|
250
|
+
_request_auth=_request_auth,
|
|
251
|
+
_content_type=_content_type,
|
|
252
|
+
_headers=_headers,
|
|
253
|
+
_host_index=_host_index
|
|
254
|
+
)
|
|
255
|
+
|
|
256
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
257
|
+
'200': "List[ExtractedSkill]",
|
|
258
|
+
'400': "ApiError",
|
|
259
|
+
'500': "ApiError",
|
|
260
|
+
'504': "ApiError",
|
|
261
|
+
}
|
|
262
|
+
response_data = self.api_client.call_api(
|
|
263
|
+
*_param,
|
|
264
|
+
_request_timeout=_request_timeout
|
|
265
|
+
)
|
|
266
|
+
return response_data.response
|
|
267
|
+
|
|
268
|
+
|
|
269
|
+
def _extract_skills_serialize(
|
|
270
|
+
self,
|
|
271
|
+
accept_language,
|
|
272
|
+
skill_extraction_input,
|
|
273
|
+
_request_auth,
|
|
274
|
+
_content_type,
|
|
275
|
+
_headers,
|
|
276
|
+
_host_index,
|
|
277
|
+
) -> RequestSerialized:
|
|
278
|
+
|
|
279
|
+
_host = None
|
|
280
|
+
|
|
281
|
+
_collection_formats: Dict[str, str] = {
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
_path_params: Dict[str, str] = {}
|
|
285
|
+
_query_params: List[Tuple[str, str]] = []
|
|
286
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
287
|
+
_form_params: List[Tuple[str, str]] = []
|
|
288
|
+
_files: Dict[
|
|
289
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
290
|
+
] = {}
|
|
291
|
+
_body_params: Optional[bytes] = None
|
|
292
|
+
|
|
293
|
+
# process the path parameters
|
|
294
|
+
# process the query parameters
|
|
295
|
+
# process the header parameters
|
|
296
|
+
if accept_language is not None:
|
|
297
|
+
_header_params['Accept-Language'] = accept_language
|
|
298
|
+
# process the form parameters
|
|
299
|
+
# process the body parameter
|
|
300
|
+
if skill_extraction_input is not None:
|
|
301
|
+
_body_params = skill_extraction_input
|
|
302
|
+
|
|
303
|
+
|
|
304
|
+
# set the HTTP header `Accept`
|
|
305
|
+
if 'Accept' not in _header_params:
|
|
306
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
307
|
+
[
|
|
308
|
+
'application/json'
|
|
309
|
+
]
|
|
310
|
+
)
|
|
311
|
+
|
|
312
|
+
# set the HTTP header `Content-Type`
|
|
313
|
+
if _content_type:
|
|
314
|
+
_header_params['Content-Type'] = _content_type
|
|
315
|
+
else:
|
|
316
|
+
_default_content_type = (
|
|
317
|
+
self.api_client.select_header_content_type(
|
|
318
|
+
[
|
|
319
|
+
'application/json'
|
|
320
|
+
]
|
|
321
|
+
)
|
|
322
|
+
)
|
|
323
|
+
if _default_content_type is not None:
|
|
324
|
+
_header_params['Content-Type'] = _default_content_type
|
|
325
|
+
|
|
326
|
+
# authentication setting
|
|
327
|
+
_auth_settings: List[str] = [
|
|
328
|
+
'api_key'
|
|
329
|
+
]
|
|
330
|
+
|
|
331
|
+
return self.api_client.param_serialize(
|
|
332
|
+
method='POST',
|
|
333
|
+
resource_path='/v1/skills/extract',
|
|
334
|
+
path_params=_path_params,
|
|
335
|
+
query_params=_query_params,
|
|
336
|
+
header_params=_header_params,
|
|
337
|
+
body=_body_params,
|
|
338
|
+
post_params=_form_params,
|
|
339
|
+
files=_files,
|
|
340
|
+
auth_settings=_auth_settings,
|
|
341
|
+
collection_formats=_collection_formats,
|
|
342
|
+
_host=_host,
|
|
343
|
+
_request_auth=_request_auth
|
|
344
|
+
)
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
@validate_call
|
|
350
|
+
def get_skill(
|
|
351
|
+
self,
|
|
352
|
+
id: Annotated[StrictStr, Field(description="The ID of the skill to retrieve details for. ")],
|
|
353
|
+
accept_language: Annotated[Optional[StrictStr], Field(description="Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English. ")] = None,
|
|
354
|
+
_request_timeout: Union[
|
|
355
|
+
None,
|
|
356
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
357
|
+
Tuple[
|
|
358
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
359
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
360
|
+
]
|
|
361
|
+
] = None,
|
|
362
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
363
|
+
_content_type: Optional[StrictStr] = None,
|
|
364
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
365
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
366
|
+
) -> Skill:
|
|
367
|
+
"""Get skill details by ID
|
|
368
|
+
|
|
369
|
+
If you know the ID of a skill, use this endpoint to retrieve information such as display name, description, Automation Index, Remote Work Index, and alternative names.
|
|
370
|
+
|
|
371
|
+
:param id: The ID of the skill to retrieve details for. (required)
|
|
372
|
+
:type id: str
|
|
373
|
+
:param accept_language: Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English.
|
|
374
|
+
:type accept_language: str
|
|
375
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
376
|
+
number provided, it will be total request
|
|
377
|
+
timeout. It can also be a pair (tuple) of
|
|
378
|
+
(connection, read) timeouts.
|
|
379
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
380
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
381
|
+
request; this effectively ignores the
|
|
382
|
+
authentication in the spec for a single request.
|
|
383
|
+
:type _request_auth: dict, optional
|
|
384
|
+
:param _content_type: force content-type for the request.
|
|
385
|
+
:type _content_type: str, Optional
|
|
386
|
+
:param _headers: set to override the headers for a single
|
|
387
|
+
request; this effectively ignores the headers
|
|
388
|
+
in the spec for a single request.
|
|
389
|
+
:type _headers: dict, optional
|
|
390
|
+
:param _host_index: set to override the host_index for a single
|
|
391
|
+
request; this effectively ignores the host_index
|
|
392
|
+
in the spec for a single request.
|
|
393
|
+
:type _host_index: int, optional
|
|
394
|
+
:return: Returns the result object.
|
|
395
|
+
""" # noqa: E501
|
|
396
|
+
|
|
397
|
+
_param = self._get_skill_serialize(
|
|
398
|
+
id=id,
|
|
399
|
+
accept_language=accept_language,
|
|
400
|
+
_request_auth=_request_auth,
|
|
401
|
+
_content_type=_content_type,
|
|
402
|
+
_headers=_headers,
|
|
403
|
+
_host_index=_host_index
|
|
404
|
+
)
|
|
405
|
+
|
|
406
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
407
|
+
'200': "Skill",
|
|
408
|
+
'400': "ApiError",
|
|
409
|
+
'500': "ApiError",
|
|
410
|
+
'504': "ApiError",
|
|
411
|
+
}
|
|
412
|
+
response_data = self.api_client.call_api(
|
|
413
|
+
*_param,
|
|
414
|
+
_request_timeout=_request_timeout
|
|
415
|
+
)
|
|
416
|
+
response_data.read()
|
|
417
|
+
return self.api_client.response_deserialize(
|
|
418
|
+
response_data=response_data,
|
|
419
|
+
response_types_map=_response_types_map,
|
|
420
|
+
).data
|
|
421
|
+
|
|
422
|
+
|
|
423
|
+
@validate_call
|
|
424
|
+
def get_skill_with_http_info(
|
|
425
|
+
self,
|
|
426
|
+
id: Annotated[StrictStr, Field(description="The ID of the skill to retrieve details for. ")],
|
|
427
|
+
accept_language: Annotated[Optional[StrictStr], Field(description="Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English. ")] = None,
|
|
428
|
+
_request_timeout: Union[
|
|
429
|
+
None,
|
|
430
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
431
|
+
Tuple[
|
|
432
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
433
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
434
|
+
]
|
|
435
|
+
] = None,
|
|
436
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
437
|
+
_content_type: Optional[StrictStr] = None,
|
|
438
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
439
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
440
|
+
) -> ApiResponse[Skill]:
|
|
441
|
+
"""Get skill details by ID
|
|
442
|
+
|
|
443
|
+
If you know the ID of a skill, use this endpoint to retrieve information such as display name, description, Automation Index, Remote Work Index, and alternative names.
|
|
444
|
+
|
|
445
|
+
:param id: The ID of the skill to retrieve details for. (required)
|
|
446
|
+
:type id: str
|
|
447
|
+
:param accept_language: Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English.
|
|
448
|
+
:type accept_language: str
|
|
449
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
450
|
+
number provided, it will be total request
|
|
451
|
+
timeout. It can also be a pair (tuple) of
|
|
452
|
+
(connection, read) timeouts.
|
|
453
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
454
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
455
|
+
request; this effectively ignores the
|
|
456
|
+
authentication in the spec for a single request.
|
|
457
|
+
:type _request_auth: dict, optional
|
|
458
|
+
:param _content_type: force content-type for the request.
|
|
459
|
+
:type _content_type: str, Optional
|
|
460
|
+
:param _headers: set to override the headers for a single
|
|
461
|
+
request; this effectively ignores the headers
|
|
462
|
+
in the spec for a single request.
|
|
463
|
+
:type _headers: dict, optional
|
|
464
|
+
:param _host_index: set to override the host_index for a single
|
|
465
|
+
request; this effectively ignores the host_index
|
|
466
|
+
in the spec for a single request.
|
|
467
|
+
:type _host_index: int, optional
|
|
468
|
+
:return: Returns the result object.
|
|
469
|
+
""" # noqa: E501
|
|
470
|
+
|
|
471
|
+
_param = self._get_skill_serialize(
|
|
472
|
+
id=id,
|
|
473
|
+
accept_language=accept_language,
|
|
474
|
+
_request_auth=_request_auth,
|
|
475
|
+
_content_type=_content_type,
|
|
476
|
+
_headers=_headers,
|
|
477
|
+
_host_index=_host_index
|
|
478
|
+
)
|
|
479
|
+
|
|
480
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
481
|
+
'200': "Skill",
|
|
482
|
+
'400': "ApiError",
|
|
483
|
+
'500': "ApiError",
|
|
484
|
+
'504': "ApiError",
|
|
485
|
+
}
|
|
486
|
+
response_data = self.api_client.call_api(
|
|
487
|
+
*_param,
|
|
488
|
+
_request_timeout=_request_timeout
|
|
489
|
+
)
|
|
490
|
+
response_data.read()
|
|
491
|
+
return self.api_client.response_deserialize(
|
|
492
|
+
response_data=response_data,
|
|
493
|
+
response_types_map=_response_types_map,
|
|
494
|
+
)
|
|
495
|
+
|
|
496
|
+
|
|
497
|
+
@validate_call
|
|
498
|
+
def get_skill_without_preload_content(
|
|
499
|
+
self,
|
|
500
|
+
id: Annotated[StrictStr, Field(description="The ID of the skill to retrieve details for. ")],
|
|
501
|
+
accept_language: Annotated[Optional[StrictStr], Field(description="Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English. ")] = None,
|
|
502
|
+
_request_timeout: Union[
|
|
503
|
+
None,
|
|
504
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
505
|
+
Tuple[
|
|
506
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
507
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
508
|
+
]
|
|
509
|
+
] = None,
|
|
510
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
511
|
+
_content_type: Optional[StrictStr] = None,
|
|
512
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
513
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
514
|
+
) -> RESTResponseType:
|
|
515
|
+
"""Get skill details by ID
|
|
516
|
+
|
|
517
|
+
If you know the ID of a skill, use this endpoint to retrieve information such as display name, description, Automation Index, Remote Work Index, and alternative names.
|
|
518
|
+
|
|
519
|
+
:param id: The ID of the skill to retrieve details for. (required)
|
|
520
|
+
:type id: str
|
|
521
|
+
:param accept_language: Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English.
|
|
522
|
+
:type accept_language: str
|
|
523
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
524
|
+
number provided, it will be total request
|
|
525
|
+
timeout. It can also be a pair (tuple) of
|
|
526
|
+
(connection, read) timeouts.
|
|
527
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
528
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
529
|
+
request; this effectively ignores the
|
|
530
|
+
authentication in the spec for a single request.
|
|
531
|
+
:type _request_auth: dict, optional
|
|
532
|
+
:param _content_type: force content-type for the request.
|
|
533
|
+
:type _content_type: str, Optional
|
|
534
|
+
:param _headers: set to override the headers for a single
|
|
535
|
+
request; this effectively ignores the headers
|
|
536
|
+
in the spec for a single request.
|
|
537
|
+
:type _headers: dict, optional
|
|
538
|
+
:param _host_index: set to override the host_index for a single
|
|
539
|
+
request; this effectively ignores the host_index
|
|
540
|
+
in the spec for a single request.
|
|
541
|
+
:type _host_index: int, optional
|
|
542
|
+
:return: Returns the result object.
|
|
543
|
+
""" # noqa: E501
|
|
544
|
+
|
|
545
|
+
_param = self._get_skill_serialize(
|
|
546
|
+
id=id,
|
|
547
|
+
accept_language=accept_language,
|
|
548
|
+
_request_auth=_request_auth,
|
|
549
|
+
_content_type=_content_type,
|
|
550
|
+
_headers=_headers,
|
|
551
|
+
_host_index=_host_index
|
|
552
|
+
)
|
|
553
|
+
|
|
554
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
555
|
+
'200': "Skill",
|
|
556
|
+
'400': "ApiError",
|
|
557
|
+
'500': "ApiError",
|
|
558
|
+
'504': "ApiError",
|
|
559
|
+
}
|
|
560
|
+
response_data = self.api_client.call_api(
|
|
561
|
+
*_param,
|
|
562
|
+
_request_timeout=_request_timeout
|
|
563
|
+
)
|
|
564
|
+
return response_data.response
|
|
565
|
+
|
|
566
|
+
|
|
567
|
+
def _get_skill_serialize(
|
|
568
|
+
self,
|
|
569
|
+
id,
|
|
570
|
+
accept_language,
|
|
571
|
+
_request_auth,
|
|
572
|
+
_content_type,
|
|
573
|
+
_headers,
|
|
574
|
+
_host_index,
|
|
575
|
+
) -> RequestSerialized:
|
|
576
|
+
|
|
577
|
+
_host = None
|
|
578
|
+
|
|
579
|
+
_collection_formats: Dict[str, str] = {
|
|
580
|
+
}
|
|
581
|
+
|
|
582
|
+
_path_params: Dict[str, str] = {}
|
|
583
|
+
_query_params: List[Tuple[str, str]] = []
|
|
584
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
585
|
+
_form_params: List[Tuple[str, str]] = []
|
|
586
|
+
_files: Dict[
|
|
587
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
588
|
+
] = {}
|
|
589
|
+
_body_params: Optional[bytes] = None
|
|
590
|
+
|
|
591
|
+
# process the path parameters
|
|
592
|
+
if id is not None:
|
|
593
|
+
_path_params['id'] = id
|
|
594
|
+
# process the query parameters
|
|
595
|
+
# process the header parameters
|
|
596
|
+
if accept_language is not None:
|
|
597
|
+
_header_params['Accept-Language'] = accept_language
|
|
598
|
+
# process the form parameters
|
|
599
|
+
# process the body parameter
|
|
600
|
+
|
|
601
|
+
|
|
602
|
+
# set the HTTP header `Accept`
|
|
603
|
+
if 'Accept' not in _header_params:
|
|
604
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
605
|
+
[
|
|
606
|
+
'application/json'
|
|
607
|
+
]
|
|
608
|
+
)
|
|
609
|
+
|
|
610
|
+
|
|
611
|
+
# authentication setting
|
|
612
|
+
_auth_settings: List[str] = [
|
|
613
|
+
'api_key'
|
|
614
|
+
]
|
|
615
|
+
|
|
616
|
+
return self.api_client.param_serialize(
|
|
617
|
+
method='GET',
|
|
618
|
+
resource_path='/v1/skills/{id}',
|
|
619
|
+
path_params=_path_params,
|
|
620
|
+
query_params=_query_params,
|
|
621
|
+
header_params=_header_params,
|
|
622
|
+
body=_body_params,
|
|
623
|
+
post_params=_form_params,
|
|
624
|
+
files=_files,
|
|
625
|
+
auth_settings=_auth_settings,
|
|
626
|
+
collection_formats=_collection_formats,
|
|
627
|
+
_host=_host,
|
|
628
|
+
_request_auth=_request_auth
|
|
629
|
+
)
|
|
630
|
+
|
|
631
|
+
|
|
632
|
+
|
|
633
|
+
|
|
634
|
+
@validate_call
|
|
635
|
+
def get_skill_category(
|
|
636
|
+
self,
|
|
637
|
+
id: Annotated[StrictStr, Field(description="The ID of the skill category to retrieve details for. ")],
|
|
638
|
+
accept_language: Annotated[Optional[StrictStr], Field(description="Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English. ")] = None,
|
|
639
|
+
_request_timeout: Union[
|
|
640
|
+
None,
|
|
641
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
642
|
+
Tuple[
|
|
643
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
644
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
645
|
+
]
|
|
646
|
+
] = None,
|
|
647
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
648
|
+
_content_type: Optional[StrictStr] = None,
|
|
649
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
650
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
651
|
+
) -> SkillCategory:
|
|
652
|
+
"""Get skill category details by ID
|
|
653
|
+
|
|
654
|
+
If you know the ID of a skill category, use this endpoint to retrieve information such as display name, description, Automation Index, Remote Work Index, and alternative names.
|
|
655
|
+
|
|
656
|
+
:param id: The ID of the skill category to retrieve details for. (required)
|
|
657
|
+
:type id: str
|
|
658
|
+
:param accept_language: Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English.
|
|
659
|
+
:type accept_language: str
|
|
660
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
661
|
+
number provided, it will be total request
|
|
662
|
+
timeout. It can also be a pair (tuple) of
|
|
663
|
+
(connection, read) timeouts.
|
|
664
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
665
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
666
|
+
request; this effectively ignores the
|
|
667
|
+
authentication in the spec for a single request.
|
|
668
|
+
:type _request_auth: dict, optional
|
|
669
|
+
:param _content_type: force content-type for the request.
|
|
670
|
+
:type _content_type: str, Optional
|
|
671
|
+
:param _headers: set to override the headers for a single
|
|
672
|
+
request; this effectively ignores the headers
|
|
673
|
+
in the spec for a single request.
|
|
674
|
+
:type _headers: dict, optional
|
|
675
|
+
:param _host_index: set to override the host_index for a single
|
|
676
|
+
request; this effectively ignores the host_index
|
|
677
|
+
in the spec for a single request.
|
|
678
|
+
:type _host_index: int, optional
|
|
679
|
+
:return: Returns the result object.
|
|
680
|
+
""" # noqa: E501
|
|
681
|
+
|
|
682
|
+
_param = self._get_skill_category_serialize(
|
|
683
|
+
id=id,
|
|
684
|
+
accept_language=accept_language,
|
|
685
|
+
_request_auth=_request_auth,
|
|
686
|
+
_content_type=_content_type,
|
|
687
|
+
_headers=_headers,
|
|
688
|
+
_host_index=_host_index
|
|
689
|
+
)
|
|
690
|
+
|
|
691
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
692
|
+
'200': "SkillCategory",
|
|
693
|
+
'400': "ApiError",
|
|
694
|
+
'500': "ApiError",
|
|
695
|
+
'504': "ApiError",
|
|
696
|
+
}
|
|
697
|
+
response_data = self.api_client.call_api(
|
|
698
|
+
*_param,
|
|
699
|
+
_request_timeout=_request_timeout
|
|
700
|
+
)
|
|
701
|
+
response_data.read()
|
|
702
|
+
return self.api_client.response_deserialize(
|
|
703
|
+
response_data=response_data,
|
|
704
|
+
response_types_map=_response_types_map,
|
|
705
|
+
).data
|
|
706
|
+
|
|
707
|
+
|
|
708
|
+
@validate_call
|
|
709
|
+
def get_skill_category_with_http_info(
|
|
710
|
+
self,
|
|
711
|
+
id: Annotated[StrictStr, Field(description="The ID of the skill category to retrieve details for. ")],
|
|
712
|
+
accept_language: Annotated[Optional[StrictStr], Field(description="Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English. ")] = None,
|
|
713
|
+
_request_timeout: Union[
|
|
714
|
+
None,
|
|
715
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
716
|
+
Tuple[
|
|
717
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
718
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
719
|
+
]
|
|
720
|
+
] = None,
|
|
721
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
722
|
+
_content_type: Optional[StrictStr] = None,
|
|
723
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
724
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
725
|
+
) -> ApiResponse[SkillCategory]:
|
|
726
|
+
"""Get skill category details by ID
|
|
727
|
+
|
|
728
|
+
If you know the ID of a skill category, use this endpoint to retrieve information such as display name, description, Automation Index, Remote Work Index, and alternative names.
|
|
729
|
+
|
|
730
|
+
:param id: The ID of the skill category to retrieve details for. (required)
|
|
731
|
+
:type id: str
|
|
732
|
+
:param accept_language: Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English.
|
|
733
|
+
:type accept_language: str
|
|
734
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
735
|
+
number provided, it will be total request
|
|
736
|
+
timeout. It can also be a pair (tuple) of
|
|
737
|
+
(connection, read) timeouts.
|
|
738
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
739
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
740
|
+
request; this effectively ignores the
|
|
741
|
+
authentication in the spec for a single request.
|
|
742
|
+
:type _request_auth: dict, optional
|
|
743
|
+
:param _content_type: force content-type for the request.
|
|
744
|
+
:type _content_type: str, Optional
|
|
745
|
+
:param _headers: set to override the headers for a single
|
|
746
|
+
request; this effectively ignores the headers
|
|
747
|
+
in the spec for a single request.
|
|
748
|
+
:type _headers: dict, optional
|
|
749
|
+
:param _host_index: set to override the host_index for a single
|
|
750
|
+
request; this effectively ignores the host_index
|
|
751
|
+
in the spec for a single request.
|
|
752
|
+
:type _host_index: int, optional
|
|
753
|
+
:return: Returns the result object.
|
|
754
|
+
""" # noqa: E501
|
|
755
|
+
|
|
756
|
+
_param = self._get_skill_category_serialize(
|
|
757
|
+
id=id,
|
|
758
|
+
accept_language=accept_language,
|
|
759
|
+
_request_auth=_request_auth,
|
|
760
|
+
_content_type=_content_type,
|
|
761
|
+
_headers=_headers,
|
|
762
|
+
_host_index=_host_index
|
|
763
|
+
)
|
|
764
|
+
|
|
765
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
766
|
+
'200': "SkillCategory",
|
|
767
|
+
'400': "ApiError",
|
|
768
|
+
'500': "ApiError",
|
|
769
|
+
'504': "ApiError",
|
|
770
|
+
}
|
|
771
|
+
response_data = self.api_client.call_api(
|
|
772
|
+
*_param,
|
|
773
|
+
_request_timeout=_request_timeout
|
|
774
|
+
)
|
|
775
|
+
response_data.read()
|
|
776
|
+
return self.api_client.response_deserialize(
|
|
777
|
+
response_data=response_data,
|
|
778
|
+
response_types_map=_response_types_map,
|
|
779
|
+
)
|
|
780
|
+
|
|
781
|
+
|
|
782
|
+
@validate_call
|
|
783
|
+
def get_skill_category_without_preload_content(
|
|
784
|
+
self,
|
|
785
|
+
id: Annotated[StrictStr, Field(description="The ID of the skill category to retrieve details for. ")],
|
|
786
|
+
accept_language: Annotated[Optional[StrictStr], Field(description="Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English. ")] = None,
|
|
787
|
+
_request_timeout: Union[
|
|
788
|
+
None,
|
|
789
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
790
|
+
Tuple[
|
|
791
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
792
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
793
|
+
]
|
|
794
|
+
] = None,
|
|
795
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
796
|
+
_content_type: Optional[StrictStr] = None,
|
|
797
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
798
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
799
|
+
) -> RESTResponseType:
|
|
800
|
+
"""Get skill category details by ID
|
|
801
|
+
|
|
802
|
+
If you know the ID of a skill category, use this endpoint to retrieve information such as display name, description, Automation Index, Remote Work Index, and alternative names.
|
|
803
|
+
|
|
804
|
+
:param id: The ID of the skill category to retrieve details for. (required)
|
|
805
|
+
:type id: str
|
|
806
|
+
:param accept_language: Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English.
|
|
807
|
+
:type accept_language: str
|
|
808
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
809
|
+
number provided, it will be total request
|
|
810
|
+
timeout. It can also be a pair (tuple) of
|
|
811
|
+
(connection, read) timeouts.
|
|
812
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
813
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
814
|
+
request; this effectively ignores the
|
|
815
|
+
authentication in the spec for a single request.
|
|
816
|
+
:type _request_auth: dict, optional
|
|
817
|
+
:param _content_type: force content-type for the request.
|
|
818
|
+
:type _content_type: str, Optional
|
|
819
|
+
:param _headers: set to override the headers for a single
|
|
820
|
+
request; this effectively ignores the headers
|
|
821
|
+
in the spec for a single request.
|
|
822
|
+
:type _headers: dict, optional
|
|
823
|
+
:param _host_index: set to override the host_index for a single
|
|
824
|
+
request; this effectively ignores the host_index
|
|
825
|
+
in the spec for a single request.
|
|
826
|
+
:type _host_index: int, optional
|
|
827
|
+
:return: Returns the result object.
|
|
828
|
+
""" # noqa: E501
|
|
829
|
+
|
|
830
|
+
_param = self._get_skill_category_serialize(
|
|
831
|
+
id=id,
|
|
832
|
+
accept_language=accept_language,
|
|
833
|
+
_request_auth=_request_auth,
|
|
834
|
+
_content_type=_content_type,
|
|
835
|
+
_headers=_headers,
|
|
836
|
+
_host_index=_host_index
|
|
837
|
+
)
|
|
838
|
+
|
|
839
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
840
|
+
'200': "SkillCategory",
|
|
841
|
+
'400': "ApiError",
|
|
842
|
+
'500': "ApiError",
|
|
843
|
+
'504': "ApiError",
|
|
844
|
+
}
|
|
845
|
+
response_data = self.api_client.call_api(
|
|
846
|
+
*_param,
|
|
847
|
+
_request_timeout=_request_timeout
|
|
848
|
+
)
|
|
849
|
+
return response_data.response
|
|
850
|
+
|
|
851
|
+
|
|
852
|
+
def _get_skill_category_serialize(
|
|
853
|
+
self,
|
|
854
|
+
id,
|
|
855
|
+
accept_language,
|
|
856
|
+
_request_auth,
|
|
857
|
+
_content_type,
|
|
858
|
+
_headers,
|
|
859
|
+
_host_index,
|
|
860
|
+
) -> RequestSerialized:
|
|
861
|
+
|
|
862
|
+
_host = None
|
|
863
|
+
|
|
864
|
+
_collection_formats: Dict[str, str] = {
|
|
865
|
+
}
|
|
866
|
+
|
|
867
|
+
_path_params: Dict[str, str] = {}
|
|
868
|
+
_query_params: List[Tuple[str, str]] = []
|
|
869
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
870
|
+
_form_params: List[Tuple[str, str]] = []
|
|
871
|
+
_files: Dict[
|
|
872
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
873
|
+
] = {}
|
|
874
|
+
_body_params: Optional[bytes] = None
|
|
875
|
+
|
|
876
|
+
# process the path parameters
|
|
877
|
+
if id is not None:
|
|
878
|
+
_path_params['id'] = id
|
|
879
|
+
# process the query parameters
|
|
880
|
+
# process the header parameters
|
|
881
|
+
if accept_language is not None:
|
|
882
|
+
_header_params['Accept-Language'] = accept_language
|
|
883
|
+
# process the form parameters
|
|
884
|
+
# process the body parameter
|
|
885
|
+
|
|
886
|
+
|
|
887
|
+
# set the HTTP header `Accept`
|
|
888
|
+
if 'Accept' not in _header_params:
|
|
889
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
890
|
+
[
|
|
891
|
+
'application/json'
|
|
892
|
+
]
|
|
893
|
+
)
|
|
894
|
+
|
|
895
|
+
|
|
896
|
+
# authentication setting
|
|
897
|
+
_auth_settings: List[str] = [
|
|
898
|
+
'api_key'
|
|
899
|
+
]
|
|
900
|
+
|
|
901
|
+
return self.api_client.param_serialize(
|
|
902
|
+
method='GET',
|
|
903
|
+
resource_path='/v1/skill-categories/{id}',
|
|
904
|
+
path_params=_path_params,
|
|
905
|
+
query_params=_query_params,
|
|
906
|
+
header_params=_header_params,
|
|
907
|
+
body=_body_params,
|
|
908
|
+
post_params=_form_params,
|
|
909
|
+
files=_files,
|
|
910
|
+
auth_settings=_auth_settings,
|
|
911
|
+
collection_formats=_collection_formats,
|
|
912
|
+
_host=_host,
|
|
913
|
+
_request_auth=_request_auth
|
|
914
|
+
)
|
|
915
|
+
|
|
916
|
+
|
|
917
|
+
|
|
918
|
+
|
|
919
|
+
@validate_call
|
|
920
|
+
def get_skill_group(
|
|
921
|
+
self,
|
|
922
|
+
id: Annotated[StrictStr, Field(description="The ID of the skill group to retrieve details for. ")],
|
|
923
|
+
accept_language: Annotated[Optional[StrictStr], Field(description="Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English. ")] = None,
|
|
924
|
+
_request_timeout: Union[
|
|
925
|
+
None,
|
|
926
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
927
|
+
Tuple[
|
|
928
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
929
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
930
|
+
]
|
|
931
|
+
] = None,
|
|
932
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
933
|
+
_content_type: Optional[StrictStr] = None,
|
|
934
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
935
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
936
|
+
) -> SkillGroup:
|
|
937
|
+
"""Get skill group details by ID
|
|
938
|
+
|
|
939
|
+
If you know the ID of a skill group, use this endpoint to retrieve information such as display name, description, Automation Index, Remote Work Index, and alternative names.
|
|
940
|
+
|
|
941
|
+
:param id: The ID of the skill group to retrieve details for. (required)
|
|
942
|
+
:type id: str
|
|
943
|
+
:param accept_language: Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English.
|
|
944
|
+
:type accept_language: str
|
|
945
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
946
|
+
number provided, it will be total request
|
|
947
|
+
timeout. It can also be a pair (tuple) of
|
|
948
|
+
(connection, read) timeouts.
|
|
949
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
950
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
951
|
+
request; this effectively ignores the
|
|
952
|
+
authentication in the spec for a single request.
|
|
953
|
+
:type _request_auth: dict, optional
|
|
954
|
+
:param _content_type: force content-type for the request.
|
|
955
|
+
:type _content_type: str, Optional
|
|
956
|
+
:param _headers: set to override the headers for a single
|
|
957
|
+
request; this effectively ignores the headers
|
|
958
|
+
in the spec for a single request.
|
|
959
|
+
:type _headers: dict, optional
|
|
960
|
+
:param _host_index: set to override the host_index for a single
|
|
961
|
+
request; this effectively ignores the host_index
|
|
962
|
+
in the spec for a single request.
|
|
963
|
+
:type _host_index: int, optional
|
|
964
|
+
:return: Returns the result object.
|
|
965
|
+
""" # noqa: E501
|
|
966
|
+
|
|
967
|
+
_param = self._get_skill_group_serialize(
|
|
968
|
+
id=id,
|
|
969
|
+
accept_language=accept_language,
|
|
970
|
+
_request_auth=_request_auth,
|
|
971
|
+
_content_type=_content_type,
|
|
972
|
+
_headers=_headers,
|
|
973
|
+
_host_index=_host_index
|
|
974
|
+
)
|
|
975
|
+
|
|
976
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
977
|
+
'200': "SkillGroup",
|
|
978
|
+
'400': "ApiError",
|
|
979
|
+
'500': "ApiError",
|
|
980
|
+
'504': "ApiError",
|
|
981
|
+
}
|
|
982
|
+
response_data = self.api_client.call_api(
|
|
983
|
+
*_param,
|
|
984
|
+
_request_timeout=_request_timeout
|
|
985
|
+
)
|
|
986
|
+
response_data.read()
|
|
987
|
+
return self.api_client.response_deserialize(
|
|
988
|
+
response_data=response_data,
|
|
989
|
+
response_types_map=_response_types_map,
|
|
990
|
+
).data
|
|
991
|
+
|
|
992
|
+
|
|
993
|
+
@validate_call
|
|
994
|
+
def get_skill_group_with_http_info(
|
|
995
|
+
self,
|
|
996
|
+
id: Annotated[StrictStr, Field(description="The ID of the skill group to retrieve details for. ")],
|
|
997
|
+
accept_language: Annotated[Optional[StrictStr], Field(description="Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English. ")] = None,
|
|
998
|
+
_request_timeout: Union[
|
|
999
|
+
None,
|
|
1000
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1001
|
+
Tuple[
|
|
1002
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1003
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
1004
|
+
]
|
|
1005
|
+
] = None,
|
|
1006
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1007
|
+
_content_type: Optional[StrictStr] = None,
|
|
1008
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1009
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1010
|
+
) -> ApiResponse[SkillGroup]:
|
|
1011
|
+
"""Get skill group details by ID
|
|
1012
|
+
|
|
1013
|
+
If you know the ID of a skill group, use this endpoint to retrieve information such as display name, description, Automation Index, Remote Work Index, and alternative names.
|
|
1014
|
+
|
|
1015
|
+
:param id: The ID of the skill group to retrieve details for. (required)
|
|
1016
|
+
:type id: str
|
|
1017
|
+
:param accept_language: Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English.
|
|
1018
|
+
:type accept_language: str
|
|
1019
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1020
|
+
number provided, it will be total request
|
|
1021
|
+
timeout. It can also be a pair (tuple) of
|
|
1022
|
+
(connection, read) timeouts.
|
|
1023
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1024
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1025
|
+
request; this effectively ignores the
|
|
1026
|
+
authentication in the spec for a single request.
|
|
1027
|
+
:type _request_auth: dict, optional
|
|
1028
|
+
:param _content_type: force content-type for the request.
|
|
1029
|
+
:type _content_type: str, Optional
|
|
1030
|
+
:param _headers: set to override the headers for a single
|
|
1031
|
+
request; this effectively ignores the headers
|
|
1032
|
+
in the spec for a single request.
|
|
1033
|
+
:type _headers: dict, optional
|
|
1034
|
+
:param _host_index: set to override the host_index for a single
|
|
1035
|
+
request; this effectively ignores the host_index
|
|
1036
|
+
in the spec for a single request.
|
|
1037
|
+
:type _host_index: int, optional
|
|
1038
|
+
:return: Returns the result object.
|
|
1039
|
+
""" # noqa: E501
|
|
1040
|
+
|
|
1041
|
+
_param = self._get_skill_group_serialize(
|
|
1042
|
+
id=id,
|
|
1043
|
+
accept_language=accept_language,
|
|
1044
|
+
_request_auth=_request_auth,
|
|
1045
|
+
_content_type=_content_type,
|
|
1046
|
+
_headers=_headers,
|
|
1047
|
+
_host_index=_host_index
|
|
1048
|
+
)
|
|
1049
|
+
|
|
1050
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1051
|
+
'200': "SkillGroup",
|
|
1052
|
+
'400': "ApiError",
|
|
1053
|
+
'500': "ApiError",
|
|
1054
|
+
'504': "ApiError",
|
|
1055
|
+
}
|
|
1056
|
+
response_data = self.api_client.call_api(
|
|
1057
|
+
*_param,
|
|
1058
|
+
_request_timeout=_request_timeout
|
|
1059
|
+
)
|
|
1060
|
+
response_data.read()
|
|
1061
|
+
return self.api_client.response_deserialize(
|
|
1062
|
+
response_data=response_data,
|
|
1063
|
+
response_types_map=_response_types_map,
|
|
1064
|
+
)
|
|
1065
|
+
|
|
1066
|
+
|
|
1067
|
+
@validate_call
|
|
1068
|
+
def get_skill_group_without_preload_content(
|
|
1069
|
+
self,
|
|
1070
|
+
id: Annotated[StrictStr, Field(description="The ID of the skill group to retrieve details for. ")],
|
|
1071
|
+
accept_language: Annotated[Optional[StrictStr], Field(description="Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English. ")] = None,
|
|
1072
|
+
_request_timeout: Union[
|
|
1073
|
+
None,
|
|
1074
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1075
|
+
Tuple[
|
|
1076
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1077
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
1078
|
+
]
|
|
1079
|
+
] = None,
|
|
1080
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1081
|
+
_content_type: Optional[StrictStr] = None,
|
|
1082
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1083
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1084
|
+
) -> RESTResponseType:
|
|
1085
|
+
"""Get skill group details by ID
|
|
1086
|
+
|
|
1087
|
+
If you know the ID of a skill group, use this endpoint to retrieve information such as display name, description, Automation Index, Remote Work Index, and alternative names.
|
|
1088
|
+
|
|
1089
|
+
:param id: The ID of the skill group to retrieve details for. (required)
|
|
1090
|
+
:type id: str
|
|
1091
|
+
:param accept_language: Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English.
|
|
1092
|
+
:type accept_language: str
|
|
1093
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1094
|
+
number provided, it will be total request
|
|
1095
|
+
timeout. It can also be a pair (tuple) of
|
|
1096
|
+
(connection, read) timeouts.
|
|
1097
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1098
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1099
|
+
request; this effectively ignores the
|
|
1100
|
+
authentication in the spec for a single request.
|
|
1101
|
+
:type _request_auth: dict, optional
|
|
1102
|
+
:param _content_type: force content-type for the request.
|
|
1103
|
+
:type _content_type: str, Optional
|
|
1104
|
+
:param _headers: set to override the headers for a single
|
|
1105
|
+
request; this effectively ignores the headers
|
|
1106
|
+
in the spec for a single request.
|
|
1107
|
+
:type _headers: dict, optional
|
|
1108
|
+
:param _host_index: set to override the host_index for a single
|
|
1109
|
+
request; this effectively ignores the host_index
|
|
1110
|
+
in the spec for a single request.
|
|
1111
|
+
:type _host_index: int, optional
|
|
1112
|
+
:return: Returns the result object.
|
|
1113
|
+
""" # noqa: E501
|
|
1114
|
+
|
|
1115
|
+
_param = self._get_skill_group_serialize(
|
|
1116
|
+
id=id,
|
|
1117
|
+
accept_language=accept_language,
|
|
1118
|
+
_request_auth=_request_auth,
|
|
1119
|
+
_content_type=_content_type,
|
|
1120
|
+
_headers=_headers,
|
|
1121
|
+
_host_index=_host_index
|
|
1122
|
+
)
|
|
1123
|
+
|
|
1124
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1125
|
+
'200': "SkillGroup",
|
|
1126
|
+
'400': "ApiError",
|
|
1127
|
+
'500': "ApiError",
|
|
1128
|
+
'504': "ApiError",
|
|
1129
|
+
}
|
|
1130
|
+
response_data = self.api_client.call_api(
|
|
1131
|
+
*_param,
|
|
1132
|
+
_request_timeout=_request_timeout
|
|
1133
|
+
)
|
|
1134
|
+
return response_data.response
|
|
1135
|
+
|
|
1136
|
+
|
|
1137
|
+
def _get_skill_group_serialize(
|
|
1138
|
+
self,
|
|
1139
|
+
id,
|
|
1140
|
+
accept_language,
|
|
1141
|
+
_request_auth,
|
|
1142
|
+
_content_type,
|
|
1143
|
+
_headers,
|
|
1144
|
+
_host_index,
|
|
1145
|
+
) -> RequestSerialized:
|
|
1146
|
+
|
|
1147
|
+
_host = None
|
|
1148
|
+
|
|
1149
|
+
_collection_formats: Dict[str, str] = {
|
|
1150
|
+
}
|
|
1151
|
+
|
|
1152
|
+
_path_params: Dict[str, str] = {}
|
|
1153
|
+
_query_params: List[Tuple[str, str]] = []
|
|
1154
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
1155
|
+
_form_params: List[Tuple[str, str]] = []
|
|
1156
|
+
_files: Dict[
|
|
1157
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
1158
|
+
] = {}
|
|
1159
|
+
_body_params: Optional[bytes] = None
|
|
1160
|
+
|
|
1161
|
+
# process the path parameters
|
|
1162
|
+
if id is not None:
|
|
1163
|
+
_path_params['id'] = id
|
|
1164
|
+
# process the query parameters
|
|
1165
|
+
# process the header parameters
|
|
1166
|
+
if accept_language is not None:
|
|
1167
|
+
_header_params['Accept-Language'] = accept_language
|
|
1168
|
+
# process the form parameters
|
|
1169
|
+
# process the body parameter
|
|
1170
|
+
|
|
1171
|
+
|
|
1172
|
+
# set the HTTP header `Accept`
|
|
1173
|
+
if 'Accept' not in _header_params:
|
|
1174
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
1175
|
+
[
|
|
1176
|
+
'application/json'
|
|
1177
|
+
]
|
|
1178
|
+
)
|
|
1179
|
+
|
|
1180
|
+
|
|
1181
|
+
# authentication setting
|
|
1182
|
+
_auth_settings: List[str] = [
|
|
1183
|
+
'api_key'
|
|
1184
|
+
]
|
|
1185
|
+
|
|
1186
|
+
return self.api_client.param_serialize(
|
|
1187
|
+
method='GET',
|
|
1188
|
+
resource_path='/v1/skill-groups/{id}',
|
|
1189
|
+
path_params=_path_params,
|
|
1190
|
+
query_params=_query_params,
|
|
1191
|
+
header_params=_header_params,
|
|
1192
|
+
body=_body_params,
|
|
1193
|
+
post_params=_form_params,
|
|
1194
|
+
files=_files,
|
|
1195
|
+
auth_settings=_auth_settings,
|
|
1196
|
+
collection_formats=_collection_formats,
|
|
1197
|
+
_host=_host,
|
|
1198
|
+
_request_auth=_request_auth
|
|
1199
|
+
)
|
|
1200
|
+
|
|
1201
|
+
|
|
1202
|
+
|
|
1203
|
+
|
|
1204
|
+
@validate_call
|
|
1205
|
+
def list_skill_categories(
|
|
1206
|
+
self,
|
|
1207
|
+
accept_language: Annotated[Optional[StrictStr], Field(description="Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English. ")] = None,
|
|
1208
|
+
_request_timeout: Union[
|
|
1209
|
+
None,
|
|
1210
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1211
|
+
Tuple[
|
|
1212
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1213
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
1214
|
+
]
|
|
1215
|
+
] = None,
|
|
1216
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1217
|
+
_content_type: Optional[StrictStr] = None,
|
|
1218
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1219
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1220
|
+
) -> List[SkillCategoryEntry]:
|
|
1221
|
+
"""Retrieve a list of skill categories
|
|
1222
|
+
|
|
1223
|
+
Use this endpoint to retrieve all skill categories in Visier's Skills Library.
|
|
1224
|
+
|
|
1225
|
+
:param accept_language: Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English.
|
|
1226
|
+
:type accept_language: str
|
|
1227
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1228
|
+
number provided, it will be total request
|
|
1229
|
+
timeout. It can also be a pair (tuple) of
|
|
1230
|
+
(connection, read) timeouts.
|
|
1231
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1232
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1233
|
+
request; this effectively ignores the
|
|
1234
|
+
authentication in the spec for a single request.
|
|
1235
|
+
:type _request_auth: dict, optional
|
|
1236
|
+
:param _content_type: force content-type for the request.
|
|
1237
|
+
:type _content_type: str, Optional
|
|
1238
|
+
:param _headers: set to override the headers for a single
|
|
1239
|
+
request; this effectively ignores the headers
|
|
1240
|
+
in the spec for a single request.
|
|
1241
|
+
:type _headers: dict, optional
|
|
1242
|
+
:param _host_index: set to override the host_index for a single
|
|
1243
|
+
request; this effectively ignores the host_index
|
|
1244
|
+
in the spec for a single request.
|
|
1245
|
+
:type _host_index: int, optional
|
|
1246
|
+
:return: Returns the result object.
|
|
1247
|
+
""" # noqa: E501
|
|
1248
|
+
|
|
1249
|
+
_param = self._list_skill_categories_serialize(
|
|
1250
|
+
accept_language=accept_language,
|
|
1251
|
+
_request_auth=_request_auth,
|
|
1252
|
+
_content_type=_content_type,
|
|
1253
|
+
_headers=_headers,
|
|
1254
|
+
_host_index=_host_index
|
|
1255
|
+
)
|
|
1256
|
+
|
|
1257
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1258
|
+
'200': "List[SkillCategoryEntry]",
|
|
1259
|
+
'400': "ApiError",
|
|
1260
|
+
'500': "ApiError",
|
|
1261
|
+
'504': "ApiError",
|
|
1262
|
+
}
|
|
1263
|
+
response_data = self.api_client.call_api(
|
|
1264
|
+
*_param,
|
|
1265
|
+
_request_timeout=_request_timeout
|
|
1266
|
+
)
|
|
1267
|
+
response_data.read()
|
|
1268
|
+
return self.api_client.response_deserialize(
|
|
1269
|
+
response_data=response_data,
|
|
1270
|
+
response_types_map=_response_types_map,
|
|
1271
|
+
).data
|
|
1272
|
+
|
|
1273
|
+
|
|
1274
|
+
@validate_call
|
|
1275
|
+
def list_skill_categories_with_http_info(
|
|
1276
|
+
self,
|
|
1277
|
+
accept_language: Annotated[Optional[StrictStr], Field(description="Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English. ")] = None,
|
|
1278
|
+
_request_timeout: Union[
|
|
1279
|
+
None,
|
|
1280
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1281
|
+
Tuple[
|
|
1282
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1283
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
1284
|
+
]
|
|
1285
|
+
] = None,
|
|
1286
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1287
|
+
_content_type: Optional[StrictStr] = None,
|
|
1288
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1289
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1290
|
+
) -> ApiResponse[List[SkillCategoryEntry]]:
|
|
1291
|
+
"""Retrieve a list of skill categories
|
|
1292
|
+
|
|
1293
|
+
Use this endpoint to retrieve all skill categories in Visier's Skills Library.
|
|
1294
|
+
|
|
1295
|
+
:param accept_language: Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English.
|
|
1296
|
+
:type accept_language: str
|
|
1297
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1298
|
+
number provided, it will be total request
|
|
1299
|
+
timeout. It can also be a pair (tuple) of
|
|
1300
|
+
(connection, read) timeouts.
|
|
1301
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1302
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1303
|
+
request; this effectively ignores the
|
|
1304
|
+
authentication in the spec for a single request.
|
|
1305
|
+
:type _request_auth: dict, optional
|
|
1306
|
+
:param _content_type: force content-type for the request.
|
|
1307
|
+
:type _content_type: str, Optional
|
|
1308
|
+
:param _headers: set to override the headers for a single
|
|
1309
|
+
request; this effectively ignores the headers
|
|
1310
|
+
in the spec for a single request.
|
|
1311
|
+
:type _headers: dict, optional
|
|
1312
|
+
:param _host_index: set to override the host_index for a single
|
|
1313
|
+
request; this effectively ignores the host_index
|
|
1314
|
+
in the spec for a single request.
|
|
1315
|
+
:type _host_index: int, optional
|
|
1316
|
+
:return: Returns the result object.
|
|
1317
|
+
""" # noqa: E501
|
|
1318
|
+
|
|
1319
|
+
_param = self._list_skill_categories_serialize(
|
|
1320
|
+
accept_language=accept_language,
|
|
1321
|
+
_request_auth=_request_auth,
|
|
1322
|
+
_content_type=_content_type,
|
|
1323
|
+
_headers=_headers,
|
|
1324
|
+
_host_index=_host_index
|
|
1325
|
+
)
|
|
1326
|
+
|
|
1327
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1328
|
+
'200': "List[SkillCategoryEntry]",
|
|
1329
|
+
'400': "ApiError",
|
|
1330
|
+
'500': "ApiError",
|
|
1331
|
+
'504': "ApiError",
|
|
1332
|
+
}
|
|
1333
|
+
response_data = self.api_client.call_api(
|
|
1334
|
+
*_param,
|
|
1335
|
+
_request_timeout=_request_timeout
|
|
1336
|
+
)
|
|
1337
|
+
response_data.read()
|
|
1338
|
+
return self.api_client.response_deserialize(
|
|
1339
|
+
response_data=response_data,
|
|
1340
|
+
response_types_map=_response_types_map,
|
|
1341
|
+
)
|
|
1342
|
+
|
|
1343
|
+
|
|
1344
|
+
@validate_call
|
|
1345
|
+
def list_skill_categories_without_preload_content(
|
|
1346
|
+
self,
|
|
1347
|
+
accept_language: Annotated[Optional[StrictStr], Field(description="Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English. ")] = None,
|
|
1348
|
+
_request_timeout: Union[
|
|
1349
|
+
None,
|
|
1350
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1351
|
+
Tuple[
|
|
1352
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1353
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
1354
|
+
]
|
|
1355
|
+
] = None,
|
|
1356
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1357
|
+
_content_type: Optional[StrictStr] = None,
|
|
1358
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1359
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1360
|
+
) -> RESTResponseType:
|
|
1361
|
+
"""Retrieve a list of skill categories
|
|
1362
|
+
|
|
1363
|
+
Use this endpoint to retrieve all skill categories in Visier's Skills Library.
|
|
1364
|
+
|
|
1365
|
+
:param accept_language: Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English.
|
|
1366
|
+
:type accept_language: str
|
|
1367
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1368
|
+
number provided, it will be total request
|
|
1369
|
+
timeout. It can also be a pair (tuple) of
|
|
1370
|
+
(connection, read) timeouts.
|
|
1371
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1372
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1373
|
+
request; this effectively ignores the
|
|
1374
|
+
authentication in the spec for a single request.
|
|
1375
|
+
:type _request_auth: dict, optional
|
|
1376
|
+
:param _content_type: force content-type for the request.
|
|
1377
|
+
:type _content_type: str, Optional
|
|
1378
|
+
:param _headers: set to override the headers for a single
|
|
1379
|
+
request; this effectively ignores the headers
|
|
1380
|
+
in the spec for a single request.
|
|
1381
|
+
:type _headers: dict, optional
|
|
1382
|
+
:param _host_index: set to override the host_index for a single
|
|
1383
|
+
request; this effectively ignores the host_index
|
|
1384
|
+
in the spec for a single request.
|
|
1385
|
+
:type _host_index: int, optional
|
|
1386
|
+
:return: Returns the result object.
|
|
1387
|
+
""" # noqa: E501
|
|
1388
|
+
|
|
1389
|
+
_param = self._list_skill_categories_serialize(
|
|
1390
|
+
accept_language=accept_language,
|
|
1391
|
+
_request_auth=_request_auth,
|
|
1392
|
+
_content_type=_content_type,
|
|
1393
|
+
_headers=_headers,
|
|
1394
|
+
_host_index=_host_index
|
|
1395
|
+
)
|
|
1396
|
+
|
|
1397
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1398
|
+
'200': "List[SkillCategoryEntry]",
|
|
1399
|
+
'400': "ApiError",
|
|
1400
|
+
'500': "ApiError",
|
|
1401
|
+
'504': "ApiError",
|
|
1402
|
+
}
|
|
1403
|
+
response_data = self.api_client.call_api(
|
|
1404
|
+
*_param,
|
|
1405
|
+
_request_timeout=_request_timeout
|
|
1406
|
+
)
|
|
1407
|
+
return response_data.response
|
|
1408
|
+
|
|
1409
|
+
|
|
1410
|
+
def _list_skill_categories_serialize(
|
|
1411
|
+
self,
|
|
1412
|
+
accept_language,
|
|
1413
|
+
_request_auth,
|
|
1414
|
+
_content_type,
|
|
1415
|
+
_headers,
|
|
1416
|
+
_host_index,
|
|
1417
|
+
) -> RequestSerialized:
|
|
1418
|
+
|
|
1419
|
+
_host = None
|
|
1420
|
+
|
|
1421
|
+
_collection_formats: Dict[str, str] = {
|
|
1422
|
+
}
|
|
1423
|
+
|
|
1424
|
+
_path_params: Dict[str, str] = {}
|
|
1425
|
+
_query_params: List[Tuple[str, str]] = []
|
|
1426
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
1427
|
+
_form_params: List[Tuple[str, str]] = []
|
|
1428
|
+
_files: Dict[
|
|
1429
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
1430
|
+
] = {}
|
|
1431
|
+
_body_params: Optional[bytes] = None
|
|
1432
|
+
|
|
1433
|
+
# process the path parameters
|
|
1434
|
+
# process the query parameters
|
|
1435
|
+
# process the header parameters
|
|
1436
|
+
if accept_language is not None:
|
|
1437
|
+
_header_params['Accept-Language'] = accept_language
|
|
1438
|
+
# process the form parameters
|
|
1439
|
+
# process the body parameter
|
|
1440
|
+
|
|
1441
|
+
|
|
1442
|
+
# set the HTTP header `Accept`
|
|
1443
|
+
if 'Accept' not in _header_params:
|
|
1444
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
1445
|
+
[
|
|
1446
|
+
'application/json'
|
|
1447
|
+
]
|
|
1448
|
+
)
|
|
1449
|
+
|
|
1450
|
+
|
|
1451
|
+
# authentication setting
|
|
1452
|
+
_auth_settings: List[str] = [
|
|
1453
|
+
'api_key'
|
|
1454
|
+
]
|
|
1455
|
+
|
|
1456
|
+
return self.api_client.param_serialize(
|
|
1457
|
+
method='GET',
|
|
1458
|
+
resource_path='/v1/skill-categories',
|
|
1459
|
+
path_params=_path_params,
|
|
1460
|
+
query_params=_query_params,
|
|
1461
|
+
header_params=_header_params,
|
|
1462
|
+
body=_body_params,
|
|
1463
|
+
post_params=_form_params,
|
|
1464
|
+
files=_files,
|
|
1465
|
+
auth_settings=_auth_settings,
|
|
1466
|
+
collection_formats=_collection_formats,
|
|
1467
|
+
_host=_host,
|
|
1468
|
+
_request_auth=_request_auth
|
|
1469
|
+
)
|
|
1470
|
+
|
|
1471
|
+
|
|
1472
|
+
|
|
1473
|
+
|
|
1474
|
+
@validate_call
|
|
1475
|
+
def list_skill_groups(
|
|
1476
|
+
self,
|
|
1477
|
+
skill_category_id: Annotated[Optional[StrictStr], Field(description="Filter only skills that belong to a certain skill category. ")] = None,
|
|
1478
|
+
accept_language: Annotated[Optional[StrictStr], Field(description="Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English. ")] = None,
|
|
1479
|
+
_request_timeout: Union[
|
|
1480
|
+
None,
|
|
1481
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1482
|
+
Tuple[
|
|
1483
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1484
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
1485
|
+
]
|
|
1486
|
+
] = None,
|
|
1487
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1488
|
+
_content_type: Optional[StrictStr] = None,
|
|
1489
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1490
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1491
|
+
) -> List[SkillGroupEntry]:
|
|
1492
|
+
"""Retrieve a list of skill groups
|
|
1493
|
+
|
|
1494
|
+
Use this endpoint to retrieve all skill groups in Visier's Skills Library.
|
|
1495
|
+
|
|
1496
|
+
:param skill_category_id: Filter only skills that belong to a certain skill category.
|
|
1497
|
+
:type skill_category_id: str
|
|
1498
|
+
:param accept_language: Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English.
|
|
1499
|
+
:type accept_language: str
|
|
1500
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1501
|
+
number provided, it will be total request
|
|
1502
|
+
timeout. It can also be a pair (tuple) of
|
|
1503
|
+
(connection, read) timeouts.
|
|
1504
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1505
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1506
|
+
request; this effectively ignores the
|
|
1507
|
+
authentication in the spec for a single request.
|
|
1508
|
+
:type _request_auth: dict, optional
|
|
1509
|
+
:param _content_type: force content-type for the request.
|
|
1510
|
+
:type _content_type: str, Optional
|
|
1511
|
+
:param _headers: set to override the headers for a single
|
|
1512
|
+
request; this effectively ignores the headers
|
|
1513
|
+
in the spec for a single request.
|
|
1514
|
+
:type _headers: dict, optional
|
|
1515
|
+
:param _host_index: set to override the host_index for a single
|
|
1516
|
+
request; this effectively ignores the host_index
|
|
1517
|
+
in the spec for a single request.
|
|
1518
|
+
:type _host_index: int, optional
|
|
1519
|
+
:return: Returns the result object.
|
|
1520
|
+
""" # noqa: E501
|
|
1521
|
+
|
|
1522
|
+
_param = self._list_skill_groups_serialize(
|
|
1523
|
+
skill_category_id=skill_category_id,
|
|
1524
|
+
accept_language=accept_language,
|
|
1525
|
+
_request_auth=_request_auth,
|
|
1526
|
+
_content_type=_content_type,
|
|
1527
|
+
_headers=_headers,
|
|
1528
|
+
_host_index=_host_index
|
|
1529
|
+
)
|
|
1530
|
+
|
|
1531
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1532
|
+
'200': "List[SkillGroupEntry]",
|
|
1533
|
+
'400': "ApiError",
|
|
1534
|
+
'500': "ApiError",
|
|
1535
|
+
'504': "ApiError",
|
|
1536
|
+
}
|
|
1537
|
+
response_data = self.api_client.call_api(
|
|
1538
|
+
*_param,
|
|
1539
|
+
_request_timeout=_request_timeout
|
|
1540
|
+
)
|
|
1541
|
+
response_data.read()
|
|
1542
|
+
return self.api_client.response_deserialize(
|
|
1543
|
+
response_data=response_data,
|
|
1544
|
+
response_types_map=_response_types_map,
|
|
1545
|
+
).data
|
|
1546
|
+
|
|
1547
|
+
|
|
1548
|
+
@validate_call
|
|
1549
|
+
def list_skill_groups_with_http_info(
|
|
1550
|
+
self,
|
|
1551
|
+
skill_category_id: Annotated[Optional[StrictStr], Field(description="Filter only skills that belong to a certain skill category. ")] = None,
|
|
1552
|
+
accept_language: Annotated[Optional[StrictStr], Field(description="Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English. ")] = None,
|
|
1553
|
+
_request_timeout: Union[
|
|
1554
|
+
None,
|
|
1555
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1556
|
+
Tuple[
|
|
1557
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1558
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
1559
|
+
]
|
|
1560
|
+
] = None,
|
|
1561
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1562
|
+
_content_type: Optional[StrictStr] = None,
|
|
1563
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1564
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1565
|
+
) -> ApiResponse[List[SkillGroupEntry]]:
|
|
1566
|
+
"""Retrieve a list of skill groups
|
|
1567
|
+
|
|
1568
|
+
Use this endpoint to retrieve all skill groups in Visier's Skills Library.
|
|
1569
|
+
|
|
1570
|
+
:param skill_category_id: Filter only skills that belong to a certain skill category.
|
|
1571
|
+
:type skill_category_id: str
|
|
1572
|
+
:param accept_language: Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English.
|
|
1573
|
+
:type accept_language: str
|
|
1574
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1575
|
+
number provided, it will be total request
|
|
1576
|
+
timeout. It can also be a pair (tuple) of
|
|
1577
|
+
(connection, read) timeouts.
|
|
1578
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1579
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1580
|
+
request; this effectively ignores the
|
|
1581
|
+
authentication in the spec for a single request.
|
|
1582
|
+
:type _request_auth: dict, optional
|
|
1583
|
+
:param _content_type: force content-type for the request.
|
|
1584
|
+
:type _content_type: str, Optional
|
|
1585
|
+
:param _headers: set to override the headers for a single
|
|
1586
|
+
request; this effectively ignores the headers
|
|
1587
|
+
in the spec for a single request.
|
|
1588
|
+
:type _headers: dict, optional
|
|
1589
|
+
:param _host_index: set to override the host_index for a single
|
|
1590
|
+
request; this effectively ignores the host_index
|
|
1591
|
+
in the spec for a single request.
|
|
1592
|
+
:type _host_index: int, optional
|
|
1593
|
+
:return: Returns the result object.
|
|
1594
|
+
""" # noqa: E501
|
|
1595
|
+
|
|
1596
|
+
_param = self._list_skill_groups_serialize(
|
|
1597
|
+
skill_category_id=skill_category_id,
|
|
1598
|
+
accept_language=accept_language,
|
|
1599
|
+
_request_auth=_request_auth,
|
|
1600
|
+
_content_type=_content_type,
|
|
1601
|
+
_headers=_headers,
|
|
1602
|
+
_host_index=_host_index
|
|
1603
|
+
)
|
|
1604
|
+
|
|
1605
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1606
|
+
'200': "List[SkillGroupEntry]",
|
|
1607
|
+
'400': "ApiError",
|
|
1608
|
+
'500': "ApiError",
|
|
1609
|
+
'504': "ApiError",
|
|
1610
|
+
}
|
|
1611
|
+
response_data = self.api_client.call_api(
|
|
1612
|
+
*_param,
|
|
1613
|
+
_request_timeout=_request_timeout
|
|
1614
|
+
)
|
|
1615
|
+
response_data.read()
|
|
1616
|
+
return self.api_client.response_deserialize(
|
|
1617
|
+
response_data=response_data,
|
|
1618
|
+
response_types_map=_response_types_map,
|
|
1619
|
+
)
|
|
1620
|
+
|
|
1621
|
+
|
|
1622
|
+
@validate_call
|
|
1623
|
+
def list_skill_groups_without_preload_content(
|
|
1624
|
+
self,
|
|
1625
|
+
skill_category_id: Annotated[Optional[StrictStr], Field(description="Filter only skills that belong to a certain skill category. ")] = None,
|
|
1626
|
+
accept_language: Annotated[Optional[StrictStr], Field(description="Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English. ")] = None,
|
|
1627
|
+
_request_timeout: Union[
|
|
1628
|
+
None,
|
|
1629
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1630
|
+
Tuple[
|
|
1631
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1632
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
1633
|
+
]
|
|
1634
|
+
] = None,
|
|
1635
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1636
|
+
_content_type: Optional[StrictStr] = None,
|
|
1637
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1638
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1639
|
+
) -> RESTResponseType:
|
|
1640
|
+
"""Retrieve a list of skill groups
|
|
1641
|
+
|
|
1642
|
+
Use this endpoint to retrieve all skill groups in Visier's Skills Library.
|
|
1643
|
+
|
|
1644
|
+
:param skill_category_id: Filter only skills that belong to a certain skill category.
|
|
1645
|
+
:type skill_category_id: str
|
|
1646
|
+
:param accept_language: Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English.
|
|
1647
|
+
:type accept_language: str
|
|
1648
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1649
|
+
number provided, it will be total request
|
|
1650
|
+
timeout. It can also be a pair (tuple) of
|
|
1651
|
+
(connection, read) timeouts.
|
|
1652
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1653
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1654
|
+
request; this effectively ignores the
|
|
1655
|
+
authentication in the spec for a single request.
|
|
1656
|
+
:type _request_auth: dict, optional
|
|
1657
|
+
:param _content_type: force content-type for the request.
|
|
1658
|
+
:type _content_type: str, Optional
|
|
1659
|
+
:param _headers: set to override the headers for a single
|
|
1660
|
+
request; this effectively ignores the headers
|
|
1661
|
+
in the spec for a single request.
|
|
1662
|
+
:type _headers: dict, optional
|
|
1663
|
+
:param _host_index: set to override the host_index for a single
|
|
1664
|
+
request; this effectively ignores the host_index
|
|
1665
|
+
in the spec for a single request.
|
|
1666
|
+
:type _host_index: int, optional
|
|
1667
|
+
:return: Returns the result object.
|
|
1668
|
+
""" # noqa: E501
|
|
1669
|
+
|
|
1670
|
+
_param = self._list_skill_groups_serialize(
|
|
1671
|
+
skill_category_id=skill_category_id,
|
|
1672
|
+
accept_language=accept_language,
|
|
1673
|
+
_request_auth=_request_auth,
|
|
1674
|
+
_content_type=_content_type,
|
|
1675
|
+
_headers=_headers,
|
|
1676
|
+
_host_index=_host_index
|
|
1677
|
+
)
|
|
1678
|
+
|
|
1679
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1680
|
+
'200': "List[SkillGroupEntry]",
|
|
1681
|
+
'400': "ApiError",
|
|
1682
|
+
'500': "ApiError",
|
|
1683
|
+
'504': "ApiError",
|
|
1684
|
+
}
|
|
1685
|
+
response_data = self.api_client.call_api(
|
|
1686
|
+
*_param,
|
|
1687
|
+
_request_timeout=_request_timeout
|
|
1688
|
+
)
|
|
1689
|
+
return response_data.response
|
|
1690
|
+
|
|
1691
|
+
|
|
1692
|
+
def _list_skill_groups_serialize(
|
|
1693
|
+
self,
|
|
1694
|
+
skill_category_id,
|
|
1695
|
+
accept_language,
|
|
1696
|
+
_request_auth,
|
|
1697
|
+
_content_type,
|
|
1698
|
+
_headers,
|
|
1699
|
+
_host_index,
|
|
1700
|
+
) -> RequestSerialized:
|
|
1701
|
+
|
|
1702
|
+
_host = None
|
|
1703
|
+
|
|
1704
|
+
_collection_formats: Dict[str, str] = {
|
|
1705
|
+
}
|
|
1706
|
+
|
|
1707
|
+
_path_params: Dict[str, str] = {}
|
|
1708
|
+
_query_params: List[Tuple[str, str]] = []
|
|
1709
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
1710
|
+
_form_params: List[Tuple[str, str]] = []
|
|
1711
|
+
_files: Dict[
|
|
1712
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
1713
|
+
] = {}
|
|
1714
|
+
_body_params: Optional[bytes] = None
|
|
1715
|
+
|
|
1716
|
+
# process the path parameters
|
|
1717
|
+
# process the query parameters
|
|
1718
|
+
if skill_category_id is not None:
|
|
1719
|
+
|
|
1720
|
+
_query_params.append(('skillCategoryId', skill_category_id))
|
|
1721
|
+
|
|
1722
|
+
# process the header parameters
|
|
1723
|
+
if accept_language is not None:
|
|
1724
|
+
_header_params['Accept-Language'] = accept_language
|
|
1725
|
+
# process the form parameters
|
|
1726
|
+
# process the body parameter
|
|
1727
|
+
|
|
1728
|
+
|
|
1729
|
+
# set the HTTP header `Accept`
|
|
1730
|
+
if 'Accept' not in _header_params:
|
|
1731
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
1732
|
+
[
|
|
1733
|
+
'application/json'
|
|
1734
|
+
]
|
|
1735
|
+
)
|
|
1736
|
+
|
|
1737
|
+
|
|
1738
|
+
# authentication setting
|
|
1739
|
+
_auth_settings: List[str] = [
|
|
1740
|
+
'api_key'
|
|
1741
|
+
]
|
|
1742
|
+
|
|
1743
|
+
return self.api_client.param_serialize(
|
|
1744
|
+
method='GET',
|
|
1745
|
+
resource_path='/v1/skill-groups',
|
|
1746
|
+
path_params=_path_params,
|
|
1747
|
+
query_params=_query_params,
|
|
1748
|
+
header_params=_header_params,
|
|
1749
|
+
body=_body_params,
|
|
1750
|
+
post_params=_form_params,
|
|
1751
|
+
files=_files,
|
|
1752
|
+
auth_settings=_auth_settings,
|
|
1753
|
+
collection_formats=_collection_formats,
|
|
1754
|
+
_host=_host,
|
|
1755
|
+
_request_auth=_request_auth
|
|
1756
|
+
)
|
|
1757
|
+
|
|
1758
|
+
|
|
1759
|
+
|
|
1760
|
+
|
|
1761
|
+
@validate_call
|
|
1762
|
+
def list_skills(
|
|
1763
|
+
self,
|
|
1764
|
+
skill_group_id: Annotated[Optional[StrictStr], Field(description="Filter only skills that belong to a certain skill group. ")] = None,
|
|
1765
|
+
skill_category_id: Annotated[Optional[StrictStr], Field(description="Filter only skills that belong to a certain skill category. ")] = None,
|
|
1766
|
+
accept_language: Annotated[Optional[StrictStr], Field(description="Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English. ")] = None,
|
|
1767
|
+
_request_timeout: Union[
|
|
1768
|
+
None,
|
|
1769
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1770
|
+
Tuple[
|
|
1771
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1772
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
1773
|
+
]
|
|
1774
|
+
] = None,
|
|
1775
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1776
|
+
_content_type: Optional[StrictStr] = None,
|
|
1777
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1778
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1779
|
+
) -> List[SkillEntry]:
|
|
1780
|
+
"""Retrieve a list of skills
|
|
1781
|
+
|
|
1782
|
+
Use this endpoint to retrieve all skills in Visier's Skills Library.
|
|
1783
|
+
|
|
1784
|
+
:param skill_group_id: Filter only skills that belong to a certain skill group.
|
|
1785
|
+
:type skill_group_id: str
|
|
1786
|
+
:param skill_category_id: Filter only skills that belong to a certain skill category.
|
|
1787
|
+
:type skill_category_id: str
|
|
1788
|
+
:param accept_language: Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English.
|
|
1789
|
+
:type accept_language: str
|
|
1790
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1791
|
+
number provided, it will be total request
|
|
1792
|
+
timeout. It can also be a pair (tuple) of
|
|
1793
|
+
(connection, read) timeouts.
|
|
1794
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1795
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1796
|
+
request; this effectively ignores the
|
|
1797
|
+
authentication in the spec for a single request.
|
|
1798
|
+
:type _request_auth: dict, optional
|
|
1799
|
+
:param _content_type: force content-type for the request.
|
|
1800
|
+
:type _content_type: str, Optional
|
|
1801
|
+
:param _headers: set to override the headers for a single
|
|
1802
|
+
request; this effectively ignores the headers
|
|
1803
|
+
in the spec for a single request.
|
|
1804
|
+
:type _headers: dict, optional
|
|
1805
|
+
:param _host_index: set to override the host_index for a single
|
|
1806
|
+
request; this effectively ignores the host_index
|
|
1807
|
+
in the spec for a single request.
|
|
1808
|
+
:type _host_index: int, optional
|
|
1809
|
+
:return: Returns the result object.
|
|
1810
|
+
""" # noqa: E501
|
|
1811
|
+
|
|
1812
|
+
_param = self._list_skills_serialize(
|
|
1813
|
+
skill_group_id=skill_group_id,
|
|
1814
|
+
skill_category_id=skill_category_id,
|
|
1815
|
+
accept_language=accept_language,
|
|
1816
|
+
_request_auth=_request_auth,
|
|
1817
|
+
_content_type=_content_type,
|
|
1818
|
+
_headers=_headers,
|
|
1819
|
+
_host_index=_host_index
|
|
1820
|
+
)
|
|
1821
|
+
|
|
1822
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1823
|
+
'200': "List[SkillEntry]",
|
|
1824
|
+
'400': "ApiError",
|
|
1825
|
+
'500': "ApiError",
|
|
1826
|
+
'504': "ApiError",
|
|
1827
|
+
}
|
|
1828
|
+
response_data = self.api_client.call_api(
|
|
1829
|
+
*_param,
|
|
1830
|
+
_request_timeout=_request_timeout
|
|
1831
|
+
)
|
|
1832
|
+
response_data.read()
|
|
1833
|
+
return self.api_client.response_deserialize(
|
|
1834
|
+
response_data=response_data,
|
|
1835
|
+
response_types_map=_response_types_map,
|
|
1836
|
+
).data
|
|
1837
|
+
|
|
1838
|
+
|
|
1839
|
+
@validate_call
|
|
1840
|
+
def list_skills_with_http_info(
|
|
1841
|
+
self,
|
|
1842
|
+
skill_group_id: Annotated[Optional[StrictStr], Field(description="Filter only skills that belong to a certain skill group. ")] = None,
|
|
1843
|
+
skill_category_id: Annotated[Optional[StrictStr], Field(description="Filter only skills that belong to a certain skill category. ")] = None,
|
|
1844
|
+
accept_language: Annotated[Optional[StrictStr], Field(description="Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English. ")] = None,
|
|
1845
|
+
_request_timeout: Union[
|
|
1846
|
+
None,
|
|
1847
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1848
|
+
Tuple[
|
|
1849
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1850
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
1851
|
+
]
|
|
1852
|
+
] = None,
|
|
1853
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1854
|
+
_content_type: Optional[StrictStr] = None,
|
|
1855
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1856
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1857
|
+
) -> ApiResponse[List[SkillEntry]]:
|
|
1858
|
+
"""Retrieve a list of skills
|
|
1859
|
+
|
|
1860
|
+
Use this endpoint to retrieve all skills in Visier's Skills Library.
|
|
1861
|
+
|
|
1862
|
+
:param skill_group_id: Filter only skills that belong to a certain skill group.
|
|
1863
|
+
:type skill_group_id: str
|
|
1864
|
+
:param skill_category_id: Filter only skills that belong to a certain skill category.
|
|
1865
|
+
:type skill_category_id: str
|
|
1866
|
+
:param accept_language: Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English.
|
|
1867
|
+
:type accept_language: str
|
|
1868
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1869
|
+
number provided, it will be total request
|
|
1870
|
+
timeout. It can also be a pair (tuple) of
|
|
1871
|
+
(connection, read) timeouts.
|
|
1872
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1873
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1874
|
+
request; this effectively ignores the
|
|
1875
|
+
authentication in the spec for a single request.
|
|
1876
|
+
:type _request_auth: dict, optional
|
|
1877
|
+
:param _content_type: force content-type for the request.
|
|
1878
|
+
:type _content_type: str, Optional
|
|
1879
|
+
:param _headers: set to override the headers for a single
|
|
1880
|
+
request; this effectively ignores the headers
|
|
1881
|
+
in the spec for a single request.
|
|
1882
|
+
:type _headers: dict, optional
|
|
1883
|
+
:param _host_index: set to override the host_index for a single
|
|
1884
|
+
request; this effectively ignores the host_index
|
|
1885
|
+
in the spec for a single request.
|
|
1886
|
+
:type _host_index: int, optional
|
|
1887
|
+
:return: Returns the result object.
|
|
1888
|
+
""" # noqa: E501
|
|
1889
|
+
|
|
1890
|
+
_param = self._list_skills_serialize(
|
|
1891
|
+
skill_group_id=skill_group_id,
|
|
1892
|
+
skill_category_id=skill_category_id,
|
|
1893
|
+
accept_language=accept_language,
|
|
1894
|
+
_request_auth=_request_auth,
|
|
1895
|
+
_content_type=_content_type,
|
|
1896
|
+
_headers=_headers,
|
|
1897
|
+
_host_index=_host_index
|
|
1898
|
+
)
|
|
1899
|
+
|
|
1900
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1901
|
+
'200': "List[SkillEntry]",
|
|
1902
|
+
'400': "ApiError",
|
|
1903
|
+
'500': "ApiError",
|
|
1904
|
+
'504': "ApiError",
|
|
1905
|
+
}
|
|
1906
|
+
response_data = self.api_client.call_api(
|
|
1907
|
+
*_param,
|
|
1908
|
+
_request_timeout=_request_timeout
|
|
1909
|
+
)
|
|
1910
|
+
response_data.read()
|
|
1911
|
+
return self.api_client.response_deserialize(
|
|
1912
|
+
response_data=response_data,
|
|
1913
|
+
response_types_map=_response_types_map,
|
|
1914
|
+
)
|
|
1915
|
+
|
|
1916
|
+
|
|
1917
|
+
@validate_call
|
|
1918
|
+
def list_skills_without_preload_content(
|
|
1919
|
+
self,
|
|
1920
|
+
skill_group_id: Annotated[Optional[StrictStr], Field(description="Filter only skills that belong to a certain skill group. ")] = None,
|
|
1921
|
+
skill_category_id: Annotated[Optional[StrictStr], Field(description="Filter only skills that belong to a certain skill category. ")] = None,
|
|
1922
|
+
accept_language: Annotated[Optional[StrictStr], Field(description="Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English. ")] = None,
|
|
1923
|
+
_request_timeout: Union[
|
|
1924
|
+
None,
|
|
1925
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1926
|
+
Tuple[
|
|
1927
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1928
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
1929
|
+
]
|
|
1930
|
+
] = None,
|
|
1931
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1932
|
+
_content_type: Optional[StrictStr] = None,
|
|
1933
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1934
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1935
|
+
) -> RESTResponseType:
|
|
1936
|
+
"""Retrieve a list of skills
|
|
1937
|
+
|
|
1938
|
+
Use this endpoint to retrieve all skills in Visier's Skills Library.
|
|
1939
|
+
|
|
1940
|
+
:param skill_group_id: Filter only skills that belong to a certain skill group.
|
|
1941
|
+
:type skill_group_id: str
|
|
1942
|
+
:param skill_category_id: Filter only skills that belong to a certain skill category.
|
|
1943
|
+
:type skill_category_id: str
|
|
1944
|
+
:param accept_language: Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English.
|
|
1945
|
+
:type accept_language: str
|
|
1946
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1947
|
+
number provided, it will be total request
|
|
1948
|
+
timeout. It can also be a pair (tuple) of
|
|
1949
|
+
(connection, read) timeouts.
|
|
1950
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1951
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1952
|
+
request; this effectively ignores the
|
|
1953
|
+
authentication in the spec for a single request.
|
|
1954
|
+
:type _request_auth: dict, optional
|
|
1955
|
+
:param _content_type: force content-type for the request.
|
|
1956
|
+
:type _content_type: str, Optional
|
|
1957
|
+
:param _headers: set to override the headers for a single
|
|
1958
|
+
request; this effectively ignores the headers
|
|
1959
|
+
in the spec for a single request.
|
|
1960
|
+
:type _headers: dict, optional
|
|
1961
|
+
:param _host_index: set to override the host_index for a single
|
|
1962
|
+
request; this effectively ignores the host_index
|
|
1963
|
+
in the spec for a single request.
|
|
1964
|
+
:type _host_index: int, optional
|
|
1965
|
+
:return: Returns the result object.
|
|
1966
|
+
""" # noqa: E501
|
|
1967
|
+
|
|
1968
|
+
_param = self._list_skills_serialize(
|
|
1969
|
+
skill_group_id=skill_group_id,
|
|
1970
|
+
skill_category_id=skill_category_id,
|
|
1971
|
+
accept_language=accept_language,
|
|
1972
|
+
_request_auth=_request_auth,
|
|
1973
|
+
_content_type=_content_type,
|
|
1974
|
+
_headers=_headers,
|
|
1975
|
+
_host_index=_host_index
|
|
1976
|
+
)
|
|
1977
|
+
|
|
1978
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1979
|
+
'200': "List[SkillEntry]",
|
|
1980
|
+
'400': "ApiError",
|
|
1981
|
+
'500': "ApiError",
|
|
1982
|
+
'504': "ApiError",
|
|
1983
|
+
}
|
|
1984
|
+
response_data = self.api_client.call_api(
|
|
1985
|
+
*_param,
|
|
1986
|
+
_request_timeout=_request_timeout
|
|
1987
|
+
)
|
|
1988
|
+
return response_data.response
|
|
1989
|
+
|
|
1990
|
+
|
|
1991
|
+
def _list_skills_serialize(
|
|
1992
|
+
self,
|
|
1993
|
+
skill_group_id,
|
|
1994
|
+
skill_category_id,
|
|
1995
|
+
accept_language,
|
|
1996
|
+
_request_auth,
|
|
1997
|
+
_content_type,
|
|
1998
|
+
_headers,
|
|
1999
|
+
_host_index,
|
|
2000
|
+
) -> RequestSerialized:
|
|
2001
|
+
|
|
2002
|
+
_host = None
|
|
2003
|
+
|
|
2004
|
+
_collection_formats: Dict[str, str] = {
|
|
2005
|
+
}
|
|
2006
|
+
|
|
2007
|
+
_path_params: Dict[str, str] = {}
|
|
2008
|
+
_query_params: List[Tuple[str, str]] = []
|
|
2009
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
2010
|
+
_form_params: List[Tuple[str, str]] = []
|
|
2011
|
+
_files: Dict[
|
|
2012
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
2013
|
+
] = {}
|
|
2014
|
+
_body_params: Optional[bytes] = None
|
|
2015
|
+
|
|
2016
|
+
# process the path parameters
|
|
2017
|
+
# process the query parameters
|
|
2018
|
+
if skill_group_id is not None:
|
|
2019
|
+
|
|
2020
|
+
_query_params.append(('skillGroupId', skill_group_id))
|
|
2021
|
+
|
|
2022
|
+
if skill_category_id is not None:
|
|
2023
|
+
|
|
2024
|
+
_query_params.append(('skillCategoryId', skill_category_id))
|
|
2025
|
+
|
|
2026
|
+
# process the header parameters
|
|
2027
|
+
if accept_language is not None:
|
|
2028
|
+
_header_params['Accept-Language'] = accept_language
|
|
2029
|
+
# process the form parameters
|
|
2030
|
+
# process the body parameter
|
|
2031
|
+
|
|
2032
|
+
|
|
2033
|
+
# set the HTTP header `Accept`
|
|
2034
|
+
if 'Accept' not in _header_params:
|
|
2035
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
2036
|
+
[
|
|
2037
|
+
'application/json'
|
|
2038
|
+
]
|
|
2039
|
+
)
|
|
2040
|
+
|
|
2041
|
+
|
|
2042
|
+
# authentication setting
|
|
2043
|
+
_auth_settings: List[str] = [
|
|
2044
|
+
'api_key'
|
|
2045
|
+
]
|
|
2046
|
+
|
|
2047
|
+
return self.api_client.param_serialize(
|
|
2048
|
+
method='GET',
|
|
2049
|
+
resource_path='/v1/skills',
|
|
2050
|
+
path_params=_path_params,
|
|
2051
|
+
query_params=_query_params,
|
|
2052
|
+
header_params=_header_params,
|
|
2053
|
+
body=_body_params,
|
|
2054
|
+
post_params=_form_params,
|
|
2055
|
+
files=_files,
|
|
2056
|
+
auth_settings=_auth_settings,
|
|
2057
|
+
collection_formats=_collection_formats,
|
|
2058
|
+
_host=_host,
|
|
2059
|
+
_request_auth=_request_auth
|
|
2060
|
+
)
|
|
2061
|
+
|
|
2062
|
+
|
|
2063
|
+
|
|
2064
|
+
|
|
2065
|
+
@validate_call
|
|
2066
|
+
def match_skills(
|
|
2067
|
+
self,
|
|
2068
|
+
skill_match_input: Annotated[Optional[SkillMatchInput], Field(description="The skill set and the group of skill sets (targets) to be matched. The skills included in each skill set are entered in the following format [skill_id, score]. The score represents how prevalent the skill was in the source and is used as a weighting factor when determining the best match. ")] = None,
|
|
2069
|
+
_request_timeout: Union[
|
|
2070
|
+
None,
|
|
2071
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
2072
|
+
Tuple[
|
|
2073
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
2074
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
2075
|
+
]
|
|
2076
|
+
] = None,
|
|
2077
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
2078
|
+
_content_type: Optional[StrictStr] = None,
|
|
2079
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
2080
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
2081
|
+
) -> List[int]:
|
|
2082
|
+
"""Match a skill set to a group of skill sets (targets)
|
|
2083
|
+
|
|
2084
|
+
Find the best match between a skill set and a group of skill sets (targets). The response returns a ranking of the targets with the best match appearing at the top of the list.
|
|
2085
|
+
|
|
2086
|
+
:param skill_match_input: The skill set and the group of skill sets (targets) to be matched. The skills included in each skill set are entered in the following format [skill_id, score]. The score represents how prevalent the skill was in the source and is used as a weighting factor when determining the best match.
|
|
2087
|
+
:type skill_match_input: SkillMatchInput
|
|
2088
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
2089
|
+
number provided, it will be total request
|
|
2090
|
+
timeout. It can also be a pair (tuple) of
|
|
2091
|
+
(connection, read) timeouts.
|
|
2092
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
2093
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
2094
|
+
request; this effectively ignores the
|
|
2095
|
+
authentication in the spec for a single request.
|
|
2096
|
+
:type _request_auth: dict, optional
|
|
2097
|
+
:param _content_type: force content-type for the request.
|
|
2098
|
+
:type _content_type: str, Optional
|
|
2099
|
+
:param _headers: set to override the headers for a single
|
|
2100
|
+
request; this effectively ignores the headers
|
|
2101
|
+
in the spec for a single request.
|
|
2102
|
+
:type _headers: dict, optional
|
|
2103
|
+
:param _host_index: set to override the host_index for a single
|
|
2104
|
+
request; this effectively ignores the host_index
|
|
2105
|
+
in the spec for a single request.
|
|
2106
|
+
:type _host_index: int, optional
|
|
2107
|
+
:return: Returns the result object.
|
|
2108
|
+
""" # noqa: E501
|
|
2109
|
+
|
|
2110
|
+
_param = self._match_skills_serialize(
|
|
2111
|
+
skill_match_input=skill_match_input,
|
|
2112
|
+
_request_auth=_request_auth,
|
|
2113
|
+
_content_type=_content_type,
|
|
2114
|
+
_headers=_headers,
|
|
2115
|
+
_host_index=_host_index
|
|
2116
|
+
)
|
|
2117
|
+
|
|
2118
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
2119
|
+
'200': "List[int]",
|
|
2120
|
+
'400': "ApiError",
|
|
2121
|
+
'500': "ApiError",
|
|
2122
|
+
'504': "ApiError",
|
|
2123
|
+
}
|
|
2124
|
+
response_data = self.api_client.call_api(
|
|
2125
|
+
*_param,
|
|
2126
|
+
_request_timeout=_request_timeout
|
|
2127
|
+
)
|
|
2128
|
+
response_data.read()
|
|
2129
|
+
return self.api_client.response_deserialize(
|
|
2130
|
+
response_data=response_data,
|
|
2131
|
+
response_types_map=_response_types_map,
|
|
2132
|
+
).data
|
|
2133
|
+
|
|
2134
|
+
|
|
2135
|
+
@validate_call
|
|
2136
|
+
def match_skills_with_http_info(
|
|
2137
|
+
self,
|
|
2138
|
+
skill_match_input: Annotated[Optional[SkillMatchInput], Field(description="The skill set and the group of skill sets (targets) to be matched. The skills included in each skill set are entered in the following format [skill_id, score]. The score represents how prevalent the skill was in the source and is used as a weighting factor when determining the best match. ")] = None,
|
|
2139
|
+
_request_timeout: Union[
|
|
2140
|
+
None,
|
|
2141
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
2142
|
+
Tuple[
|
|
2143
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
2144
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
2145
|
+
]
|
|
2146
|
+
] = None,
|
|
2147
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
2148
|
+
_content_type: Optional[StrictStr] = None,
|
|
2149
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
2150
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
2151
|
+
) -> ApiResponse[List[int]]:
|
|
2152
|
+
"""Match a skill set to a group of skill sets (targets)
|
|
2153
|
+
|
|
2154
|
+
Find the best match between a skill set and a group of skill sets (targets). The response returns a ranking of the targets with the best match appearing at the top of the list.
|
|
2155
|
+
|
|
2156
|
+
:param skill_match_input: The skill set and the group of skill sets (targets) to be matched. The skills included in each skill set are entered in the following format [skill_id, score]. The score represents how prevalent the skill was in the source and is used as a weighting factor when determining the best match.
|
|
2157
|
+
:type skill_match_input: SkillMatchInput
|
|
2158
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
2159
|
+
number provided, it will be total request
|
|
2160
|
+
timeout. It can also be a pair (tuple) of
|
|
2161
|
+
(connection, read) timeouts.
|
|
2162
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
2163
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
2164
|
+
request; this effectively ignores the
|
|
2165
|
+
authentication in the spec for a single request.
|
|
2166
|
+
:type _request_auth: dict, optional
|
|
2167
|
+
:param _content_type: force content-type for the request.
|
|
2168
|
+
:type _content_type: str, Optional
|
|
2169
|
+
:param _headers: set to override the headers for a single
|
|
2170
|
+
request; this effectively ignores the headers
|
|
2171
|
+
in the spec for a single request.
|
|
2172
|
+
:type _headers: dict, optional
|
|
2173
|
+
:param _host_index: set to override the host_index for a single
|
|
2174
|
+
request; this effectively ignores the host_index
|
|
2175
|
+
in the spec for a single request.
|
|
2176
|
+
:type _host_index: int, optional
|
|
2177
|
+
:return: Returns the result object.
|
|
2178
|
+
""" # noqa: E501
|
|
2179
|
+
|
|
2180
|
+
_param = self._match_skills_serialize(
|
|
2181
|
+
skill_match_input=skill_match_input,
|
|
2182
|
+
_request_auth=_request_auth,
|
|
2183
|
+
_content_type=_content_type,
|
|
2184
|
+
_headers=_headers,
|
|
2185
|
+
_host_index=_host_index
|
|
2186
|
+
)
|
|
2187
|
+
|
|
2188
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
2189
|
+
'200': "List[int]",
|
|
2190
|
+
'400': "ApiError",
|
|
2191
|
+
'500': "ApiError",
|
|
2192
|
+
'504': "ApiError",
|
|
2193
|
+
}
|
|
2194
|
+
response_data = self.api_client.call_api(
|
|
2195
|
+
*_param,
|
|
2196
|
+
_request_timeout=_request_timeout
|
|
2197
|
+
)
|
|
2198
|
+
response_data.read()
|
|
2199
|
+
return self.api_client.response_deserialize(
|
|
2200
|
+
response_data=response_data,
|
|
2201
|
+
response_types_map=_response_types_map,
|
|
2202
|
+
)
|
|
2203
|
+
|
|
2204
|
+
|
|
2205
|
+
@validate_call
|
|
2206
|
+
def match_skills_without_preload_content(
|
|
2207
|
+
self,
|
|
2208
|
+
skill_match_input: Annotated[Optional[SkillMatchInput], Field(description="The skill set and the group of skill sets (targets) to be matched. The skills included in each skill set are entered in the following format [skill_id, score]. The score represents how prevalent the skill was in the source and is used as a weighting factor when determining the best match. ")] = None,
|
|
2209
|
+
_request_timeout: Union[
|
|
2210
|
+
None,
|
|
2211
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
2212
|
+
Tuple[
|
|
2213
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
2214
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
2215
|
+
]
|
|
2216
|
+
] = None,
|
|
2217
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
2218
|
+
_content_type: Optional[StrictStr] = None,
|
|
2219
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
2220
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
2221
|
+
) -> RESTResponseType:
|
|
2222
|
+
"""Match a skill set to a group of skill sets (targets)
|
|
2223
|
+
|
|
2224
|
+
Find the best match between a skill set and a group of skill sets (targets). The response returns a ranking of the targets with the best match appearing at the top of the list.
|
|
2225
|
+
|
|
2226
|
+
:param skill_match_input: The skill set and the group of skill sets (targets) to be matched. The skills included in each skill set are entered in the following format [skill_id, score]. The score represents how prevalent the skill was in the source and is used as a weighting factor when determining the best match.
|
|
2227
|
+
:type skill_match_input: SkillMatchInput
|
|
2228
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
2229
|
+
number provided, it will be total request
|
|
2230
|
+
timeout. It can also be a pair (tuple) of
|
|
2231
|
+
(connection, read) timeouts.
|
|
2232
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
2233
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
2234
|
+
request; this effectively ignores the
|
|
2235
|
+
authentication in the spec for a single request.
|
|
2236
|
+
:type _request_auth: dict, optional
|
|
2237
|
+
:param _content_type: force content-type for the request.
|
|
2238
|
+
:type _content_type: str, Optional
|
|
2239
|
+
:param _headers: set to override the headers for a single
|
|
2240
|
+
request; this effectively ignores the headers
|
|
2241
|
+
in the spec for a single request.
|
|
2242
|
+
:type _headers: dict, optional
|
|
2243
|
+
:param _host_index: set to override the host_index for a single
|
|
2244
|
+
request; this effectively ignores the host_index
|
|
2245
|
+
in the spec for a single request.
|
|
2246
|
+
:type _host_index: int, optional
|
|
2247
|
+
:return: Returns the result object.
|
|
2248
|
+
""" # noqa: E501
|
|
2249
|
+
|
|
2250
|
+
_param = self._match_skills_serialize(
|
|
2251
|
+
skill_match_input=skill_match_input,
|
|
2252
|
+
_request_auth=_request_auth,
|
|
2253
|
+
_content_type=_content_type,
|
|
2254
|
+
_headers=_headers,
|
|
2255
|
+
_host_index=_host_index
|
|
2256
|
+
)
|
|
2257
|
+
|
|
2258
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
2259
|
+
'200': "List[int]",
|
|
2260
|
+
'400': "ApiError",
|
|
2261
|
+
'500': "ApiError",
|
|
2262
|
+
'504': "ApiError",
|
|
2263
|
+
}
|
|
2264
|
+
response_data = self.api_client.call_api(
|
|
2265
|
+
*_param,
|
|
2266
|
+
_request_timeout=_request_timeout
|
|
2267
|
+
)
|
|
2268
|
+
return response_data.response
|
|
2269
|
+
|
|
2270
|
+
|
|
2271
|
+
def _match_skills_serialize(
|
|
2272
|
+
self,
|
|
2273
|
+
skill_match_input,
|
|
2274
|
+
_request_auth,
|
|
2275
|
+
_content_type,
|
|
2276
|
+
_headers,
|
|
2277
|
+
_host_index,
|
|
2278
|
+
) -> RequestSerialized:
|
|
2279
|
+
|
|
2280
|
+
_host = None
|
|
2281
|
+
|
|
2282
|
+
_collection_formats: Dict[str, str] = {
|
|
2283
|
+
}
|
|
2284
|
+
|
|
2285
|
+
_path_params: Dict[str, str] = {}
|
|
2286
|
+
_query_params: List[Tuple[str, str]] = []
|
|
2287
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
2288
|
+
_form_params: List[Tuple[str, str]] = []
|
|
2289
|
+
_files: Dict[
|
|
2290
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
2291
|
+
] = {}
|
|
2292
|
+
_body_params: Optional[bytes] = None
|
|
2293
|
+
|
|
2294
|
+
# process the path parameters
|
|
2295
|
+
# process the query parameters
|
|
2296
|
+
# process the header parameters
|
|
2297
|
+
# process the form parameters
|
|
2298
|
+
# process the body parameter
|
|
2299
|
+
if skill_match_input is not None:
|
|
2300
|
+
_body_params = skill_match_input
|
|
2301
|
+
|
|
2302
|
+
|
|
2303
|
+
# set the HTTP header `Accept`
|
|
2304
|
+
if 'Accept' not in _header_params:
|
|
2305
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
2306
|
+
[
|
|
2307
|
+
'application/json'
|
|
2308
|
+
]
|
|
2309
|
+
)
|
|
2310
|
+
|
|
2311
|
+
# set the HTTP header `Content-Type`
|
|
2312
|
+
if _content_type:
|
|
2313
|
+
_header_params['Content-Type'] = _content_type
|
|
2314
|
+
else:
|
|
2315
|
+
_default_content_type = (
|
|
2316
|
+
self.api_client.select_header_content_type(
|
|
2317
|
+
[
|
|
2318
|
+
'application/json'
|
|
2319
|
+
]
|
|
2320
|
+
)
|
|
2321
|
+
)
|
|
2322
|
+
if _default_content_type is not None:
|
|
2323
|
+
_header_params['Content-Type'] = _default_content_type
|
|
2324
|
+
|
|
2325
|
+
# authentication setting
|
|
2326
|
+
_auth_settings: List[str] = [
|
|
2327
|
+
'api_key'
|
|
2328
|
+
]
|
|
2329
|
+
|
|
2330
|
+
return self.api_client.param_serialize(
|
|
2331
|
+
method='POST',
|
|
2332
|
+
resource_path='/v1/skills/match',
|
|
2333
|
+
path_params=_path_params,
|
|
2334
|
+
query_params=_query_params,
|
|
2335
|
+
header_params=_header_params,
|
|
2336
|
+
body=_body_params,
|
|
2337
|
+
post_params=_form_params,
|
|
2338
|
+
files=_files,
|
|
2339
|
+
auth_settings=_auth_settings,
|
|
2340
|
+
collection_formats=_collection_formats,
|
|
2341
|
+
_host=_host,
|
|
2342
|
+
_request_auth=_request_auth
|
|
2343
|
+
)
|
|
2344
|
+
|
|
2345
|
+
|
|
2346
|
+
|
|
2347
|
+
|
|
2348
|
+
@validate_call
|
|
2349
|
+
def search_skill(
|
|
2350
|
+
self,
|
|
2351
|
+
term: Annotated[StrictStr, Field(description="The term to search for. The search term must be URL encoded and the minimum length is 3 characters. ")],
|
|
2352
|
+
accept_language: Annotated[Optional[StrictStr], Field(description="Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English. ")] = None,
|
|
2353
|
+
_request_timeout: Union[
|
|
2354
|
+
None,
|
|
2355
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
2356
|
+
Tuple[
|
|
2357
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
2358
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
2359
|
+
]
|
|
2360
|
+
] = None,
|
|
2361
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
2362
|
+
_content_type: Optional[StrictStr] = None,
|
|
2363
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
2364
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
2365
|
+
) -> List[SkillEntry]:
|
|
2366
|
+
"""Search skills
|
|
2367
|
+
|
|
2368
|
+
Retrieve a list of skills that match a specified search term.
|
|
2369
|
+
|
|
2370
|
+
:param term: The term to search for. The search term must be URL encoded and the minimum length is 3 characters. (required)
|
|
2371
|
+
:type term: str
|
|
2372
|
+
:param accept_language: Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English.
|
|
2373
|
+
:type accept_language: str
|
|
2374
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
2375
|
+
number provided, it will be total request
|
|
2376
|
+
timeout. It can also be a pair (tuple) of
|
|
2377
|
+
(connection, read) timeouts.
|
|
2378
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
2379
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
2380
|
+
request; this effectively ignores the
|
|
2381
|
+
authentication in the spec for a single request.
|
|
2382
|
+
:type _request_auth: dict, optional
|
|
2383
|
+
:param _content_type: force content-type for the request.
|
|
2384
|
+
:type _content_type: str, Optional
|
|
2385
|
+
:param _headers: set to override the headers for a single
|
|
2386
|
+
request; this effectively ignores the headers
|
|
2387
|
+
in the spec for a single request.
|
|
2388
|
+
:type _headers: dict, optional
|
|
2389
|
+
:param _host_index: set to override the host_index for a single
|
|
2390
|
+
request; this effectively ignores the host_index
|
|
2391
|
+
in the spec for a single request.
|
|
2392
|
+
:type _host_index: int, optional
|
|
2393
|
+
:return: Returns the result object.
|
|
2394
|
+
""" # noqa: E501
|
|
2395
|
+
|
|
2396
|
+
_param = self._search_skill_serialize(
|
|
2397
|
+
term=term,
|
|
2398
|
+
accept_language=accept_language,
|
|
2399
|
+
_request_auth=_request_auth,
|
|
2400
|
+
_content_type=_content_type,
|
|
2401
|
+
_headers=_headers,
|
|
2402
|
+
_host_index=_host_index
|
|
2403
|
+
)
|
|
2404
|
+
|
|
2405
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
2406
|
+
'200': "List[SkillEntry]",
|
|
2407
|
+
'400': "ApiError",
|
|
2408
|
+
'500': "ApiError",
|
|
2409
|
+
'504': "ApiError",
|
|
2410
|
+
}
|
|
2411
|
+
response_data = self.api_client.call_api(
|
|
2412
|
+
*_param,
|
|
2413
|
+
_request_timeout=_request_timeout
|
|
2414
|
+
)
|
|
2415
|
+
response_data.read()
|
|
2416
|
+
return self.api_client.response_deserialize(
|
|
2417
|
+
response_data=response_data,
|
|
2418
|
+
response_types_map=_response_types_map,
|
|
2419
|
+
).data
|
|
2420
|
+
|
|
2421
|
+
|
|
2422
|
+
@validate_call
|
|
2423
|
+
def search_skill_with_http_info(
|
|
2424
|
+
self,
|
|
2425
|
+
term: Annotated[StrictStr, Field(description="The term to search for. The search term must be URL encoded and the minimum length is 3 characters. ")],
|
|
2426
|
+
accept_language: Annotated[Optional[StrictStr], Field(description="Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English. ")] = None,
|
|
2427
|
+
_request_timeout: Union[
|
|
2428
|
+
None,
|
|
2429
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
2430
|
+
Tuple[
|
|
2431
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
2432
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
2433
|
+
]
|
|
2434
|
+
] = None,
|
|
2435
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
2436
|
+
_content_type: Optional[StrictStr] = None,
|
|
2437
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
2438
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
2439
|
+
) -> ApiResponse[List[SkillEntry]]:
|
|
2440
|
+
"""Search skills
|
|
2441
|
+
|
|
2442
|
+
Retrieve a list of skills that match a specified search term.
|
|
2443
|
+
|
|
2444
|
+
:param term: The term to search for. The search term must be URL encoded and the minimum length is 3 characters. (required)
|
|
2445
|
+
:type term: str
|
|
2446
|
+
:param accept_language: Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English.
|
|
2447
|
+
:type accept_language: str
|
|
2448
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
2449
|
+
number provided, it will be total request
|
|
2450
|
+
timeout. It can also be a pair (tuple) of
|
|
2451
|
+
(connection, read) timeouts.
|
|
2452
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
2453
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
2454
|
+
request; this effectively ignores the
|
|
2455
|
+
authentication in the spec for a single request.
|
|
2456
|
+
:type _request_auth: dict, optional
|
|
2457
|
+
:param _content_type: force content-type for the request.
|
|
2458
|
+
:type _content_type: str, Optional
|
|
2459
|
+
:param _headers: set to override the headers for a single
|
|
2460
|
+
request; this effectively ignores the headers
|
|
2461
|
+
in the spec for a single request.
|
|
2462
|
+
:type _headers: dict, optional
|
|
2463
|
+
:param _host_index: set to override the host_index for a single
|
|
2464
|
+
request; this effectively ignores the host_index
|
|
2465
|
+
in the spec for a single request.
|
|
2466
|
+
:type _host_index: int, optional
|
|
2467
|
+
:return: Returns the result object.
|
|
2468
|
+
""" # noqa: E501
|
|
2469
|
+
|
|
2470
|
+
_param = self._search_skill_serialize(
|
|
2471
|
+
term=term,
|
|
2472
|
+
accept_language=accept_language,
|
|
2473
|
+
_request_auth=_request_auth,
|
|
2474
|
+
_content_type=_content_type,
|
|
2475
|
+
_headers=_headers,
|
|
2476
|
+
_host_index=_host_index
|
|
2477
|
+
)
|
|
2478
|
+
|
|
2479
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
2480
|
+
'200': "List[SkillEntry]",
|
|
2481
|
+
'400': "ApiError",
|
|
2482
|
+
'500': "ApiError",
|
|
2483
|
+
'504': "ApiError",
|
|
2484
|
+
}
|
|
2485
|
+
response_data = self.api_client.call_api(
|
|
2486
|
+
*_param,
|
|
2487
|
+
_request_timeout=_request_timeout
|
|
2488
|
+
)
|
|
2489
|
+
response_data.read()
|
|
2490
|
+
return self.api_client.response_deserialize(
|
|
2491
|
+
response_data=response_data,
|
|
2492
|
+
response_types_map=_response_types_map,
|
|
2493
|
+
)
|
|
2494
|
+
|
|
2495
|
+
|
|
2496
|
+
@validate_call
|
|
2497
|
+
def search_skill_without_preload_content(
|
|
2498
|
+
self,
|
|
2499
|
+
term: Annotated[StrictStr, Field(description="The term to search for. The search term must be URL encoded and the minimum length is 3 characters. ")],
|
|
2500
|
+
accept_language: Annotated[Optional[StrictStr], Field(description="Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English. ")] = None,
|
|
2501
|
+
_request_timeout: Union[
|
|
2502
|
+
None,
|
|
2503
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
2504
|
+
Tuple[
|
|
2505
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
2506
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
2507
|
+
]
|
|
2508
|
+
] = None,
|
|
2509
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
2510
|
+
_content_type: Optional[StrictStr] = None,
|
|
2511
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
2512
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
2513
|
+
) -> RESTResponseType:
|
|
2514
|
+
"""Search skills
|
|
2515
|
+
|
|
2516
|
+
Retrieve a list of skills that match a specified search term.
|
|
2517
|
+
|
|
2518
|
+
:param term: The term to search for. The search term must be URL encoded and the minimum length is 3 characters. (required)
|
|
2519
|
+
:type term: str
|
|
2520
|
+
:param accept_language: Allows you to specify if you want the output to be in one of the accepted languages. Format: **ISO 639-1** language code. For a list of supported languages, see \"Supported Languages\" in the Skills Intelligence Engine API documentation. If no value is specified, the response language is English.
|
|
2521
|
+
:type accept_language: str
|
|
2522
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
2523
|
+
number provided, it will be total request
|
|
2524
|
+
timeout. It can also be a pair (tuple) of
|
|
2525
|
+
(connection, read) timeouts.
|
|
2526
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
2527
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
2528
|
+
request; this effectively ignores the
|
|
2529
|
+
authentication in the spec for a single request.
|
|
2530
|
+
:type _request_auth: dict, optional
|
|
2531
|
+
:param _content_type: force content-type for the request.
|
|
2532
|
+
:type _content_type: str, Optional
|
|
2533
|
+
:param _headers: set to override the headers for a single
|
|
2534
|
+
request; this effectively ignores the headers
|
|
2535
|
+
in the spec for a single request.
|
|
2536
|
+
:type _headers: dict, optional
|
|
2537
|
+
:param _host_index: set to override the host_index for a single
|
|
2538
|
+
request; this effectively ignores the host_index
|
|
2539
|
+
in the spec for a single request.
|
|
2540
|
+
:type _host_index: int, optional
|
|
2541
|
+
:return: Returns the result object.
|
|
2542
|
+
""" # noqa: E501
|
|
2543
|
+
|
|
2544
|
+
_param = self._search_skill_serialize(
|
|
2545
|
+
term=term,
|
|
2546
|
+
accept_language=accept_language,
|
|
2547
|
+
_request_auth=_request_auth,
|
|
2548
|
+
_content_type=_content_type,
|
|
2549
|
+
_headers=_headers,
|
|
2550
|
+
_host_index=_host_index
|
|
2551
|
+
)
|
|
2552
|
+
|
|
2553
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
2554
|
+
'200': "List[SkillEntry]",
|
|
2555
|
+
'400': "ApiError",
|
|
2556
|
+
'500': "ApiError",
|
|
2557
|
+
'504': "ApiError",
|
|
2558
|
+
}
|
|
2559
|
+
response_data = self.api_client.call_api(
|
|
2560
|
+
*_param,
|
|
2561
|
+
_request_timeout=_request_timeout
|
|
2562
|
+
)
|
|
2563
|
+
return response_data.response
|
|
2564
|
+
|
|
2565
|
+
|
|
2566
|
+
def _search_skill_serialize(
|
|
2567
|
+
self,
|
|
2568
|
+
term,
|
|
2569
|
+
accept_language,
|
|
2570
|
+
_request_auth,
|
|
2571
|
+
_content_type,
|
|
2572
|
+
_headers,
|
|
2573
|
+
_host_index,
|
|
2574
|
+
) -> RequestSerialized:
|
|
2575
|
+
|
|
2576
|
+
_host = None
|
|
2577
|
+
|
|
2578
|
+
_collection_formats: Dict[str, str] = {
|
|
2579
|
+
}
|
|
2580
|
+
|
|
2581
|
+
_path_params: Dict[str, str] = {}
|
|
2582
|
+
_query_params: List[Tuple[str, str]] = []
|
|
2583
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
2584
|
+
_form_params: List[Tuple[str, str]] = []
|
|
2585
|
+
_files: Dict[
|
|
2586
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
2587
|
+
] = {}
|
|
2588
|
+
_body_params: Optional[bytes] = None
|
|
2589
|
+
|
|
2590
|
+
# process the path parameters
|
|
2591
|
+
# process the query parameters
|
|
2592
|
+
if term is not None:
|
|
2593
|
+
|
|
2594
|
+
_query_params.append(('term', term))
|
|
2595
|
+
|
|
2596
|
+
# process the header parameters
|
|
2597
|
+
if accept_language is not None:
|
|
2598
|
+
_header_params['Accept-Language'] = accept_language
|
|
2599
|
+
# process the form parameters
|
|
2600
|
+
# process the body parameter
|
|
2601
|
+
|
|
2602
|
+
|
|
2603
|
+
# set the HTTP header `Accept`
|
|
2604
|
+
if 'Accept' not in _header_params:
|
|
2605
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
2606
|
+
[
|
|
2607
|
+
'application/json'
|
|
2608
|
+
]
|
|
2609
|
+
)
|
|
2610
|
+
|
|
2611
|
+
|
|
2612
|
+
# authentication setting
|
|
2613
|
+
_auth_settings: List[str] = [
|
|
2614
|
+
'api_key'
|
|
2615
|
+
]
|
|
2616
|
+
|
|
2617
|
+
return self.api_client.param_serialize(
|
|
2618
|
+
method='GET',
|
|
2619
|
+
resource_path='/v1/skills/search',
|
|
2620
|
+
path_params=_path_params,
|
|
2621
|
+
query_params=_query_params,
|
|
2622
|
+
header_params=_header_params,
|
|
2623
|
+
body=_body_params,
|
|
2624
|
+
post_params=_form_params,
|
|
2625
|
+
files=_files,
|
|
2626
|
+
auth_settings=_auth_settings,
|
|
2627
|
+
collection_formats=_collection_formats,
|
|
2628
|
+
_host=_host,
|
|
2629
|
+
_request_auth=_request_auth
|
|
2630
|
+
)
|
|
2631
|
+
|
|
2632
|
+
|