instana-client 1.0.0__py3-none-any.whl → 1.0.1__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.
- instana_client/__init__.py +1754 -514
- instana_client/api/__init__.py +85 -1
- instana_client/api/action_catalog_api.py +329 -6
- instana_client/api/action_history_api.py +54 -2
- instana_client/api/ai_management_api.py +1973 -0
- instana_client/api/apdex_report_api.py +2 -2
- instana_client/api/apdex_settings_api.py +8 -9
- instana_client/api/api_token_api.py +17 -17
- instana_client/api/application_alert_configuration_api.py +79 -66
- instana_client/api/application_analyze_api.py +20 -282
- instana_client/api/application_catalog_api.py +11 -11
- instana_client/api/application_metrics_api.py +14 -14
- instana_client/api/application_resources_api.py +21 -21
- instana_client/api/application_settings_api.py +134 -104
- instana_client/api/application_topology_api.py +11 -2
- instana_client/api/audit_log_api.py +2 -2
- instana_client/api/authentication_api.py +2 -2
- instana_client/api/business_monitoring_api.py +2 -2
- instana_client/api/custom_dashboards_api.py +29 -19
- instana_client/api/custom_entities_api.py +1673 -0
- instana_client/api/end_user_monitoring_api.py +310 -0
- instana_client/api/event_settings_api.py +1251 -653
- instana_client/api/events_api.py +11 -26
- instana_client/api/global_application_alert_configuration_api.py +53 -56
- instana_client/api/groups_api.py +1121 -62
- instana_client/api/health_api.py +8 -5
- instana_client/api/host_agent_api.py +274 -8
- instana_client/api/infrastructure_alert_configuration_api.py +2 -2
- instana_client/api/infrastructure_analyze_api.py +14 -14
- instana_client/api/infrastructure_catalog_api.py +44 -13
- instana_client/api/infrastructure_metrics_api.py +5 -5
- instana_client/api/infrastructure_resources_api.py +11 -11
- instana_client/api/infrastructure_topology_api.py +2 -2
- instana_client/api/log_alert_configuration_api.py +44 -30
- instana_client/api/logging_analyze_api.py +343 -0
- instana_client/api/maintenance_configuration_api.py +32 -20
- instana_client/api/mobile_app_analyze_api.py +2 -2
- instana_client/api/mobile_app_catalog_api.py +8 -2
- instana_client/api/mobile_app_configuration_api.py +3058 -334
- instana_client/api/mobile_app_metrics_api.py +3 -6
- instana_client/api/policies_api.py +14 -11
- instana_client/api/releases_api.py +8 -11
- instana_client/api/roles_api.py +1394 -0
- instana_client/api/service_levels_alert_configuration_api.py +2 -2
- instana_client/api/service_levels_objective_slo_configurations_api.py +160 -89
- instana_client/api/service_levels_objective_slo_report_api.py +38 -2
- instana_client/api/session_settings_api.py +2 -2
- instana_client/api/sli_report_api.py +2 -2
- instana_client/api/sli_settings_api.py +5 -8
- instana_client/api/slo_correction_configurations_api.py +1528 -0
- instana_client/api/slo_correction_windows_api.py +392 -0
- instana_client/api/synthetic_alert_configuration_api.py +53 -56
- instana_client/api/synthetic_calls_api.py +20 -9
- instana_client/api/synthetic_catalog_api.py +20 -2
- instana_client/api/synthetic_metrics_api.py +5 -5
- instana_client/api/synthetic_settings_api.py +1238 -369
- instana_client/api/synthetic_test_playback_results_api.py +307 -20
- instana_client/api/teams_api.py +1380 -0
- instana_client/api/usage_api.py +2 -2
- instana_client/api/user_api.py +302 -28
- instana_client/api/website_analyze_api.py +8 -8
- instana_client/api/website_catalog_api.py +11 -8
- instana_client/api/website_configuration_api.py +1801 -336
- instana_client/api/website_metrics_api.py +3 -3
- instana_client/api_client.py +11 -4
- instana_client/configuration.py +14 -7
- instana_client/exceptions.py +2 -2
- instana_client/models/__init__.py +585 -9
- instana_client/models/abstract_integration.py +11 -5
- instana_client/models/abstract_rule.py +2 -2
- instana_client/models/access_log_entry.py +12 -7
- instana_client/models/access_log_response.py +2 -2
- instana_client/models/access_rule.py +2 -2
- instana_client/models/action.py +2 -2
- instana_client/models/action_configuration.py +2 -2
- instana_client/models/action_instance.py +2 -2
- instana_client/models/action_instance_metadata_entry.py +2 -2
- instana_client/models/action_instance_parameter.py +2 -2
- instana_client/models/action_instance_request.py +2 -2
- instana_client/models/action_instance_request_parameters.py +2 -2
- instana_client/models/action_match.py +19 -6
- instana_client/models/action_search_space.py +2 -2
- instana_client/models/adaptive_baseline.py +3 -3
- instana_client/models/adaptive_threshold_rule.py +3 -3
- instana_client/models/addition.py +97 -0
- instana_client/models/adjusted_timeframe.py +2 -2
- instana_client/models/agent_configuration_update.py +2 -2
- instana_client/models/alerting_configuration.py +2 -2
- instana_client/models/alerting_configuration_with_last_updated.py +2 -2
- instana_client/models/alerting_time_window.py +2 -2
- instana_client/models/apdex_configuration.py +2 -2
- instana_client/models/apdex_configuration_input.py +2 -2
- instana_client/models/apdex_entity.py +2 -2
- instana_client/models/apdex_report.py +2 -2
- instana_client/models/api_create_group.py +2 -2
- instana_client/models/api_create_role.py +101 -0
- instana_client/models/api_group.py +2 -2
- instana_client/models/api_member.py +5 -3
- instana_client/models/api_permission_set.py +12 -3
- instana_client/models/api_restricted_application_filter.py +2 -2
- instana_client/models/api_role.py +102 -0
- instana_client/models/api_tag.py +91 -0
- instana_client/models/api_team.py +113 -0
- instana_client/models/api_team_info.py +89 -0
- instana_client/models/api_team_member.py +102 -0
- instana_client/models/api_team_role.py +92 -0
- instana_client/models/api_team_scope.py +131 -0
- instana_client/models/api_token.py +29 -5
- instana_client/models/app_data_metric_configuration.py +2 -2
- instana_client/models/application.py +2 -2
- instana_client/models/application_alert_config.py +2 -2
- instana_client/models/application_alert_config_with_metadata.py +2 -2
- instana_client/models/application_alert_rule.py +2 -2
- instana_client/models/application_apdex_entity.py +2 -2
- instana_client/models/application_config.py +2 -2
- instana_client/models/application_event_result.py +5 -7
- instana_client/models/application_item.py +2 -2
- instana_client/models/application_metric_result.py +2 -2
- instana_client/models/application_node.py +2 -2
- instana_client/models/application_result.py +2 -2
- instana_client/models/application_scope.py +4 -4
- instana_client/models/application_scope_with_metadata.py +6 -6
- instana_client/models/application_sli_entity.py +2 -2
- instana_client/models/application_slo_entity.py +2 -2
- instana_client/models/application_time_threshold.py +2 -2
- instana_client/models/arithmetic_configuration.py +121 -0
- instana_client/models/arithmetic_operand.py +154 -0
- instana_client/models/arithmetic_operation.py +128 -0
- instana_client/models/audit_log_entry.py +2 -2
- instana_client/models/audit_log_ui_response.py +2 -2
- instana_client/models/author.py +2 -2
- instana_client/models/availability_blueprint_indicator.py +5 -16
- instana_client/models/availability_sli_entity.py +2 -2
- instana_client/models/available_metrics.py +2 -2
- instana_client/models/available_plugins.py +2 -2
- instana_client/models/backend_trace_reference.py +2 -2
- instana_client/models/bidirectional_ms_teams_app_integration.py +108 -0
- instana_client/models/bidirectional_slack_app_integration.py +102 -0
- instana_client/models/binary_operator_dto.py +2 -2
- instana_client/models/browser_script_configuration.py +5 -3
- instana_client/models/built_in_event_specification.py +2 -2
- instana_client/models/built_in_event_specification_with_last_updated.py +2 -2
- instana_client/models/business_activity.py +5 -3
- instana_client/models/business_perspective_config.py +2 -2
- instana_client/models/call_groups_item.py +2 -2
- instana_client/models/call_groups_result.py +2 -2
- instana_client/models/call_relation.py +2 -2
- instana_client/models/change_summary.py +2 -2
- instana_client/models/cloudfoundry_physical_context.py +4 -4
- instana_client/models/condition.py +2 -2
- instana_client/models/config_version.py +2 -2
- instana_client/models/correction.py +105 -0
- instana_client/models/correction_configuration.py +109 -0
- instana_client/models/correction_scheduling.py +104 -0
- instana_client/models/correction_window.py +95 -0
- instana_client/models/crash_mobile_app_alert_rule.py +2 -2
- instana_client/models/create_website_request_inner.py +90 -0
- instana_client/models/cursor_paginated_business_activity_item.py +2 -2
- instana_client/models/cursor_pagination.py +2 -2
- instana_client/models/cursor_pagination_infra_explore_cursor.py +2 -2
- instana_client/models/custom_blueprint_indicator.py +8 -4
- instana_client/models/custom_dashboard.py +2 -2
- instana_client/models/custom_dashboard_preview.py +2 -2
- instana_client/models/custom_dashboard_with_user_specific_information.py +115 -0
- instana_client/models/custom_dependency.py +116 -0
- instana_client/models/custom_email_subject_prefix.py +2 -2
- instana_client/models/custom_entity_model.py +126 -0
- instana_client/models/custom_entity_with_metadata.py +98 -0
- instana_client/models/custom_event_mobile_app_alert_rule.py +2 -2
- instana_client/models/custom_event_specification.py +9 -3
- instana_client/models/custom_event_specification_with_last_updated.py +9 -3
- instana_client/models/custom_event_website_alert_rule.py +2 -2
- instana_client/models/custom_metric.py +134 -0
- instana_client/models/custom_payload_configuration.py +2 -2
- instana_client/models/custom_payload_field.py +2 -2
- instana_client/models/custom_payload_with_last_updated.py +2 -2
- instana_client/models/custom_payload_with_version.py +101 -0
- instana_client/models/dashboard_api_token.py +2 -2
- instana_client/models/database_integration.py +2 -2
- instana_client/models/deprecated_tag_filter.py +4 -4
- instana_client/models/division.py +97 -0
- instana_client/models/dns_configuration.py +146 -0
- instana_client/models/dns_filter_query_time.py +99 -0
- instana_client/models/dns_filter_target_value.py +106 -0
- instana_client/models/duration.py +2 -2
- instana_client/models/dynamic_field.py +2 -2
- instana_client/models/dynamic_field_value.py +2 -2
- instana_client/models/dynamic_parameter.py +2 -2
- instana_client/models/edit_user.py +2 -2
- instana_client/models/email_integration.py +2 -2
- instana_client/models/empty_configuration.py +2 -2
- instana_client/models/endpoint.py +4 -4
- instana_client/models/endpoint_config.py +2 -2
- instana_client/models/endpoint_event_result.py +7 -9
- instana_client/models/endpoint_item.py +2 -2
- instana_client/models/endpoint_metric_result.py +2 -2
- instana_client/models/endpoint_node.py +2 -2
- instana_client/models/endpoint_result.py +3 -3
- instana_client/models/endpoint_simple.py +3 -3
- instana_client/models/entity_count_rule.py +2 -2
- instana_client/models/entity_count_verification_rule.py +3 -3
- instana_client/models/entity_health_info.py +2 -2
- instana_client/models/entity_id.py +2 -2
- instana_client/models/entity_verification_rule.py +3 -3
- instana_client/models/error_budget_alert_rule.py +5 -5
- instana_client/models/errors_application_alert_rule.py +2 -2
- instana_client/models/event.py +7 -3
- instana_client/models/event_filtering_configuration.py +2 -2
- instana_client/models/event_result.py +2 -2
- instana_client/models/event_specification_info.py +2 -2
- instana_client/models/extended_service.py +2 -2
- instana_client/models/failure_synthetic_alert_rule.py +2 -2
- instana_client/models/fixed_http_path_segment_matching_rule.py +2 -2
- instana_client/models/fixed_time_window.py +4 -3
- instana_client/models/generic_infra_alert_rule.py +12 -4
- instana_client/models/geo_location_configuration.py +2 -2
- instana_client/models/geo_mapping_rule.py +2 -2
- instana_client/models/geo_subdivision.py +2 -2
- instana_client/models/get_activities.py +2 -2
- instana_client/models/get_application_metrics.py +2 -2
- instana_client/models/get_applications.py +2 -2
- instana_client/models/get_available_metrics_query.py +2 -2
- instana_client/models/get_available_plugins_query.py +2 -2
- instana_client/models/get_call_groups.py +2 -2
- instana_client/models/get_combined_metrics.py +2 -2
- instana_client/models/get_dynamic_parameter_values.py +2 -2
- instana_client/models/get_endpoints.py +2 -2
- instana_client/models/get_infrastructure_groups_query.py +2 -2
- instana_client/models/get_infrastructure_query.py +2 -2
- instana_client/models/get_metrics_result.py +2 -2
- instana_client/models/get_mobile_app_beacon_groups.py +2 -2
- instana_client/models/get_mobile_app_beacons.py +2 -2
- instana_client/models/get_mobile_app_metrics.py +2 -2
- instana_client/models/get_mobile_app_metrics_v2.py +2 -2
- instana_client/models/get_payload_keys_result.py +2 -2
- instana_client/models/get_services.py +2 -2
- instana_client/models/get_snapshots_query.py +2 -2
- instana_client/models/get_test_result.py +2 -2
- instana_client/models/get_test_result_analytic.py +126 -0
- instana_client/models/get_test_result_base.py +2 -2
- instana_client/models/get_test_result_list.py +2 -2
- instana_client/models/get_test_summary_result.py +2 -2
- instana_client/models/get_trace_download_result_item.py +3 -3
- instana_client/models/get_trace_groups.py +2 -2
- instana_client/models/get_traces.py +4 -4
- instana_client/models/get_website_beacon_groups.py +2 -2
- instana_client/models/get_website_beacons.py +2 -2
- instana_client/models/get_website_metrics.py +2 -2
- instana_client/models/get_website_metrics_v2.py +2 -2
- instana_client/models/global_application_alert_config_with_metadata.py +2 -2
- instana_client/models/global_applications_alert_config.py +2 -2
- instana_client/models/google_chat_integration.py +2 -2
- instana_client/models/graph_edge.py +2 -2
- instana_client/models/graph_node.py +2 -2
- instana_client/models/group.py +2 -2
- instana_client/models/group_by_tag.py +2 -2
- instana_client/models/group_mapping.py +5 -3
- instana_client/models/group_mapping_overview.py +96 -0
- instana_client/models/health_state.py +2 -2
- instana_client/models/historic_baseline.py +3 -3
- instana_client/models/host_availability_rule.py +2 -2
- instana_client/models/http_action_configuration.py +2 -2
- instana_client/models/http_endpoint_config.py +2 -2
- instana_client/models/http_endpoint_rule.py +2 -2
- instana_client/models/http_path_segment_matching_rule.py +2 -2
- instana_client/models/http_script_configuration.py +5 -3
- instana_client/models/hyper_param.py +2 -2
- instana_client/models/identity_provider_patch.py +2 -2
- instana_client/models/impacted_beacon_info.py +96 -0
- instana_client/models/infra_alert_config.py +8 -6
- instana_client/models/infra_alert_config_with_metadata.py +7 -5
- instana_client/models/infra_alert_rule.py +9 -3
- instana_client/models/infra_event_result.py +6 -8
- instana_client/models/infra_metric_configuration.py +103 -80
- instana_client/models/infra_slo_entity.py +95 -0
- instana_client/models/infra_time_threshold.py +2 -2
- instana_client/models/infrastructure_entities_result.py +2 -2
- instana_client/models/infrastructure_group.py +5 -3
- instana_client/models/infrastructure_groups_result.py +2 -2
- instana_client/models/infrastructure_item.py +2 -2
- instana_client/models/infrastructure_metric_result.py +2 -2
- instana_client/models/instana_version_info.py +2 -2
- instana_client/models/integration_overview.py +14 -4
- instana_client/models/invitation.py +2 -2
- instana_client/models/invitation_response.py +2 -2
- instana_client/models/invitation_result.py +2 -2
- instana_client/models/ip_masking_configuration.py +2 -2
- instana_client/models/js_stack_trace_line.py +2 -2
- instana_client/models/kubernetes_physical_context.py +3 -3
- instana_client/models/latency_blueprint_indicator.py +5 -16
- instana_client/models/llm_egress_gateway.py +125 -0
- instana_client/models/location_status.py +2 -2
- instana_client/models/log_alert_config.py +8 -6
- instana_client/models/log_alert_config_with_metadata.py +8 -6
- instana_client/models/log_alert_rule.py +2 -2
- instana_client/models/log_count_alert_rule.py +2 -2
- instana_client/models/log_entry_actor.py +2 -2
- instana_client/models/log_event_result.py +5 -7
- instana_client/models/log_time_threshold.py +2 -2
- instana_client/models/log_volume_group.py +91 -0
- instana_client/models/log_volume_usage_item.py +101 -0
- instana_client/models/log_volume_usage_result.py +96 -0
- instana_client/models/logs_application_alert_rule.py +4 -4
- instana_client/models/maintenance_config.py +2 -2
- instana_client/models/maintenance_config_scheduling.py +2 -2
- instana_client/models/maintenance_config_v2.py +2 -2
- instana_client/models/maintenance_config_v2_with_state_and_occurrence.py +2 -2
- instana_client/models/maintenance_config_with_last_updated.py +2 -2
- instana_client/models/maintenance_window.py +2 -2
- instana_client/models/manual_alerting_channel_configuration.py +2 -2
- instana_client/models/manual_close_info.py +2 -2
- instana_client/models/manual_service_config.py +2 -2
- instana_client/models/match_all_http_path_segment_matching_rule.py +2 -2
- instana_client/models/match_expression_dto.py +3 -3
- instana_client/models/meta_data.py +2 -2
- instana_client/models/metric_api_result.py +2 -2
- instana_client/models/metric_config.py +2 -2
- instana_client/models/metric_configuration.py +3 -3
- instana_client/models/metric_description.py +2 -2
- instana_client/models/metric_instance.py +2 -2
- instana_client/models/metric_item.py +2 -2
- instana_client/models/metric_metadata.py +4 -4
- instana_client/models/metric_pattern.py +2 -2
- instana_client/models/metric_query.py +128 -0
- instana_client/models/metrics_result.py +2 -2
- instana_client/models/metrics_result_item.py +5 -3
- instana_client/models/metrics_test_result_item.py +2 -2
- instana_client/models/mobile_app.py +2 -2
- instana_client/models/mobile_app_alert_config.py +2 -2
- instana_client/models/mobile_app_alert_rule.py +8 -5
- instana_client/models/mobile_app_beacon_groups_item.py +2 -2
- instana_client/models/mobile_app_beacon_groups_result.py +2 -2
- instana_client/models/mobile_app_beacon_result.py +2 -2
- instana_client/models/mobile_app_beacon_tag_group.py +2 -2
- instana_client/models/mobile_app_beacons_item.py +11 -5
- instana_client/models/mobile_app_event_result.py +5 -7
- instana_client/models/mobile_app_metric_result.py +2 -2
- instana_client/models/mobile_app_monitoring_beacon.py +22 -4
- instana_client/models/mobile_app_monitoring_metric_description.py +5 -3
- instana_client/models/mobile_app_monitoring_metrics_configuration.py +2 -2
- instana_client/models/mobile_app_time_threshold.py +2 -2
- instana_client/models/model_field.py +2 -2
- instana_client/models/monitored_entities_stats.py +92 -0
- instana_client/models/monitoring_state.py +11 -3
- instana_client/models/multiple_scripts_configuration.py +2 -2
- instana_client/models/multiplication.py +97 -0
- instana_client/models/nested_operation.py +128 -0
- instana_client/models/new_application_config.py +2 -2
- instana_client/models/new_business_perspective_config.py +2 -2
- instana_client/models/new_manual_service_config.py +2 -2
- instana_client/models/o_auth_config.py +107 -0
- instana_client/models/o_auth_integration.py +98 -0
- instana_client/models/o_auth_token.py +121 -0
- instana_client/models/occurrence.py +2 -2
- instana_client/models/office365_integration.py +2 -2
- instana_client/models/one_time_maintenance_window.py +2 -2
- instana_client/models/opsgenie_integration.py +2 -2
- instana_client/models/order.py +2 -2
- instana_client/models/pagerduty_integration.py +2 -2
- instana_client/models/paginated_result.py +2 -2
- instana_client/models/pagination.py +2 -2
- instana_client/models/parameter.py +2 -2
- instana_client/models/parameter_value.py +2 -2
- instana_client/models/path_parameter_http_path_segment_matching_rule.py +2 -2
- instana_client/models/physical_context.py +3 -3
- instana_client/models/plugin_result.py +2 -2
- instana_client/models/policy.py +2 -2
- instana_client/models/policy_runnable.py +2 -2
- instana_client/models/policy_scheduling.py +91 -0
- instana_client/models/post_mobile_app_source_map_config_request.py +88 -0
- instana_client/models/post_snapshots_result.py +2 -2
- instana_client/models/problem.py +2 -2
- instana_client/models/prometheus_webhook_integration.py +2 -2
- instana_client/models/recurrent_maintenance_window.py +2 -2
- instana_client/models/release.py +6 -6
- instana_client/models/release_scope.py +2 -2
- instana_client/models/release_with_metadata.py +8 -8
- instana_client/models/retention_period.py +101 -0
- instana_client/models/rolling_time_window.py +4 -3
- instana_client/models/rule_input.py +2 -2
- instana_client/models/rule_with_threshold_application_alert_rule.py +2 -2
- instana_client/models/rule_with_threshold_infra_alert_rule.py +2 -2
- instana_client/models/rule_with_threshold_log_alert_rule.py +2 -2
- instana_client/models/rule_with_threshold_mobile_app_alert_rule.py +2 -2
- instana_client/models/rule_with_threshold_website_alert_rule.py +2 -2
- instana_client/models/run_configuration.py +2 -2
- instana_client/models/salesforce_integration.py +2 -2
- instana_client/models/saturation_blueprint_indicator.py +97 -0
- instana_client/models/scope_binding.py +2 -2
- instana_client/models/search_field_result.py +2 -2
- instana_client/models/service.py +3 -3
- instana_client/models/service_config.py +2 -2
- instana_client/models/service_event_result.py +5 -7
- instana_client/models/service_item.py +2 -2
- instana_client/models/service_level_indicator.py +10 -7
- instana_client/models/service_level_objective_alert_rule.py +2 -2
- instana_client/models/service_level_objective_configuration.py +3 -3
- instana_client/models/service_levels_alert_config.py +15 -5
- instana_client/models/service_levels_alert_rule.py +2 -2
- instana_client/models/service_levels_burn_rate_config.py +115 -0
- instana_client/models/service_levels_burn_rate_time_windows.py +2 -2
- instana_client/models/service_levels_static_threshold_config.py +100 -0
- instana_client/models/service_levels_time_threshold.py +5 -5
- instana_client/models/service_levelse_alert_config_with_metadata.py +15 -5
- instana_client/models/service_map.py +2 -2
- instana_client/models/service_map_connection.py +2 -2
- instana_client/models/service_matching_rule.py +2 -2
- instana_client/models/service_metric_result.py +2 -2
- instana_client/models/service_node.py +2 -2
- instana_client/models/service_now_enhanced_integration.py +2 -2
- instana_client/models/service_now_integration.py +2 -2
- instana_client/models/service_result.py +3 -3
- instana_client/models/service_scope.py +4 -4
- instana_client/models/service_scope_with_metadata.py +5 -5
- instana_client/models/service_scoped_to.py +3 -3
- instana_client/models/service_scoped_to_with_metadata.py +4 -4
- instana_client/models/service_simple.py +2 -2
- instana_client/models/session_settings.py +4 -4
- instana_client/models/simple_metric_configuration.py +121 -0
- instana_client/models/single_value.py +128 -0
- instana_client/models/slack_integration.py +2 -2
- instana_client/models/sli_configuration.py +2 -2
- instana_client/models/sli_configuration_with_last_updated.py +2 -2
- instana_client/models/sli_entity.py +2 -2
- instana_client/models/sli_report.py +2 -2
- instana_client/models/slo_config_with_rbac_tag.py +128 -0
- instana_client/models/slo_entity.py +8 -5
- instana_client/models/slo_report.py +2 -2
- instana_client/models/slowness_application_alert_rule.py +2 -2
- instana_client/models/slowness_mobile_app_alert_rule.py +90 -0
- instana_client/models/slowness_website_alert_rule.py +2 -2
- instana_client/models/snapshot_item.py +2 -2
- instana_client/models/snapshot_preview.py +7 -7
- instana_client/models/snapshot_result.py +2 -2
- instana_client/models/software_user.py +2 -2
- instana_client/models/software_version.py +2 -2
- instana_client/models/source_map_file_blob.py +2 -2
- instana_client/models/source_map_file_meta.py +2 -2
- instana_client/models/source_map_upload_config.py +2 -2
- instana_client/models/source_map_upload_configs.py +106 -0
- instana_client/models/span_excerpt.py +12 -12
- instana_client/models/span_relation.py +3 -3
- instana_client/models/specific_js_errors_website_alert_rule.py +4 -4
- instana_client/models/splunk_integration.py +2 -2
- instana_client/models/ssl_certificate_configuration.py +17 -5
- instana_client/models/ssl_certificate_validation.py +99 -0
- instana_client/models/stack_trace_item.py +7 -7
- instana_client/models/stack_trace_line.py +2 -2
- instana_client/models/static_baseline_threshold_rule.py +3 -3
- instana_client/models/static_string_field.py +2 -2
- instana_client/models/static_threshold.py +2 -2
- instana_client/models/static_threshold_rule.py +2 -2
- instana_client/models/status_code_application_alert_rule.py +2 -2
- instana_client/models/status_code_mobile_app_alert_rule.py +4 -4
- instana_client/models/status_code_website_alert_rule.py +4 -4
- instana_client/models/subtraction.py +97 -0
- instana_client/models/synthetic_alert_config.py +2 -2
- instana_client/models/synthetic_alert_config_with_metadata.py +2 -2
- instana_client/models/synthetic_alert_rule.py +2 -2
- instana_client/models/synthetic_call_config.py +4 -4
- instana_client/models/synthetic_call_rule.py +6 -6
- instana_client/models/synthetic_call_with_defaults_config.py +4 -4
- instana_client/models/synthetic_configuration.py +93 -0
- instana_client/models/synthetic_credential.py +23 -3
- instana_client/models/synthetic_datacenter.py +2 -2
- instana_client/models/synthetic_datacenter_configuration.py +2 -2
- instana_client/models/synthetic_geo_point.py +2 -2
- instana_client/models/synthetic_location.py +2 -2
- instana_client/models/synthetic_location_configuration.py +2 -2
- instana_client/models/synthetic_metric_configuration.py +2 -2
- instana_client/models/synthetic_metric_tag_group.py +2 -2
- instana_client/models/synthetic_playback_capabilities.py +17 -4
- instana_client/models/synthetic_slo_entity.py +7 -5
- instana_client/models/synthetic_test.py +27 -3
- instana_client/models/synthetic_test_cicd.py +96 -0
- instana_client/models/synthetic_test_cicd_customization.py +96 -0
- instana_client/models/synthetic_test_cicd_item.py +114 -0
- instana_client/models/synthetic_test_cicd_response.py +92 -0
- instana_client/models/synthetic_time_threshold.py +2 -2
- instana_client/models/synthetic_type_configuration.py +11 -11
- instana_client/models/synthetics_event_result.py +5 -7
- instana_client/models/system_rule.py +2 -2
- instana_client/models/system_rule_label.py +2 -2
- instana_client/models/tag.py +6 -6
- instana_client/models/tag_catalog.py +2 -2
- instana_client/models/tag_filter.py +4 -4
- instana_client/models/tag_filter_expression.py +2 -2
- instana_client/models/tag_filter_expression_element.py +2 -2
- instana_client/models/tag_matcher_dto.py +2 -2
- instana_client/models/tag_tree_level.py +2 -2
- instana_client/models/tag_tree_node.py +2 -2
- instana_client/models/tag_tree_tag.py +2 -2
- instana_client/models/test_common_properties.py +2 -2
- instana_client/models/test_last_error.py +90 -0
- instana_client/models/test_result.py +2 -2
- instana_client/models/test_result_common_properties.py +24 -3
- instana_client/models/test_result_detail_data.py +2 -2
- instana_client/models/test_result_item.py +2 -2
- instana_client/models/test_result_list_item.py +2 -2
- instana_client/models/test_result_list_result.py +2 -2
- instana_client/models/test_result_metadata.py +2 -2
- instana_client/models/test_result_subtransaction.py +2 -2
- instana_client/models/threshold.py +2 -2
- instana_client/models/threshold_config_rule.py +2 -2
- instana_client/models/threshold_rule.py +2 -2
- instana_client/models/throughput_application_alert_rule.py +2 -2
- instana_client/models/throughput_mobile_app_alert_rule.py +2 -2
- instana_client/models/throughput_website_alert_rule.py +2 -2
- instana_client/models/time_frame.py +2 -2
- instana_client/models/time_window.py +5 -4
- instana_client/models/topology.py +2 -2
- instana_client/models/trace.py +8 -8
- instana_client/models/trace_activity_tree_node_details.py +13 -13
- instana_client/models/trace_download_result.py +2 -2
- instana_client/models/trace_groups_item.py +2 -2
- instana_client/models/trace_groups_result.py +2 -2
- instana_client/models/trace_impact_application_time_threshold.py +2 -2
- instana_client/models/trace_item.py +2 -2
- instana_client/models/trace_result.py +2 -2
- instana_client/models/traffic_blueprint_indicator.py +3 -3
- instana_client/models/trigger.py +15 -7
- instana_client/models/type_configuration.py +2 -2
- instana_client/models/unsupported_http_path_segment_matching_rule.py +2 -2
- instana_client/models/updated_business_perspective_config.py +2 -2
- instana_client/models/usage_result.py +2 -2
- instana_client/models/usage_result_items.py +2 -2
- instana_client/models/user_basic_result.py +2 -2
- instana_client/models/user_impact_mobile_app_time_threshold.py +3 -3
- instana_client/models/user_impact_website_time_threshold.py +3 -3
- instana_client/models/user_result.py +2 -2
- instana_client/models/users_result.py +2 -2
- instana_client/models/validated_alerting_channel_input_info.py +4 -4
- instana_client/models/validated_alerting_configuration.py +2 -2
- instana_client/models/validated_maintenance_config_v2_with_state_and_occurrence.py +2 -2
- instana_client/models/validated_maintenance_config_with_status.py +2 -2
- instana_client/models/victor_ops_integration.py +2 -2
- instana_client/models/violations_in_period_application_time_threshold.py +2 -2
- instana_client/models/violations_in_period_mobile_app_time_threshold.py +2 -2
- instana_client/models/violations_in_period_website_time_threshold.py +2 -2
- instana_client/models/violations_in_sequence_application_time_threshold.py +2 -2
- instana_client/models/violations_in_sequence_infra_time_threshold.py +2 -2
- instana_client/models/violations_in_sequence_log_time_threshold.py +2 -2
- instana_client/models/violations_in_sequence_mobile_app_time_threshold.py +2 -2
- instana_client/models/violations_in_sequence_synthetic_time_threshold.py +2 -2
- instana_client/models/violations_in_sequence_website_time_threshold.py +2 -2
- instana_client/models/watson_ai_ops_webhook_integration.py +2 -2
- instana_client/models/webex_teams_webhook_integration.py +2 -2
- instana_client/models/webhook_integration.py +14 -4
- instana_client/models/webpage_action_configuration.py +2 -2
- instana_client/models/webpage_script_configuration.py +5 -3
- instana_client/models/website.py +2 -2
- instana_client/models/website_alert_config.py +2 -2
- instana_client/models/website_alert_config_with_metadata.py +2 -2
- instana_client/models/website_alert_rule.py +2 -2
- instana_client/models/website_apdex_entity.py +2 -2
- instana_client/models/website_beacon_groups_item.py +2 -2
- instana_client/models/website_beacon_groups_result.py +2 -2
- instana_client/models/website_beacon_result.py +2 -2
- instana_client/models/website_beacon_tag_group.py +2 -2
- instana_client/models/website_beacons_item.py +11 -5
- instana_client/models/website_event_based_sli_entity.py +2 -2
- instana_client/models/website_event_result.py +4 -6
- instana_client/models/website_metric_result.py +2 -2
- instana_client/models/website_monitoring_beacon.py +7 -3
- instana_client/models/website_monitoring_metric_description.py +2 -2
- instana_client/models/website_monitoring_metrics_configuration.py +2 -2
- instana_client/models/website_slo_entity.py +2 -2
- instana_client/models/website_time_based_sli_entity.py +2 -2
- instana_client/models/website_time_threshold.py +2 -2
- instana_client/models/widget.py +2 -2
- instana_client/models/with_metadata.py +2 -2
- instana_client/models/with_resolved_name.py +2 -2
- instana_client/models/z_chat_ops_integration.py +2 -2
- instana_client/rest.py +3 -2
- instana_client-1.0.1.dist-info/METADATA +1068 -0
- instana_client-1.0.1.dist-info/RECORD +581 -0
- {instana_client-1.0.0.dist-info → instana_client-1.0.1.dist-info}/WHEEL +1 -1
- instana_client/models/dns_action_configuration.py +0 -134
- instana_client/models/dns_action_filter_query_time.py +0 -99
- instana_client/models/dns_action_filter_target_value.py +0 -106
- instana_client/models/full_trace.py +0 -97
- instana_client/models/span.py +0 -156
- instana_client-1.0.0.dist-info/METADATA +0 -25
- instana_client-1.0.0.dist-info/RECORD +0 -515
- {instana_client-1.0.0.dist-info → instana_client-1.0.1.dist-info}/licenses/LICENSE +0 -0
- {instana_client-1.0.0.dist-info → instana_client-1.0.1.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,1673 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Instana REST API documentation
|
|
5
|
+
|
|
6
|
+
Documentation for INSTANA REST API
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.306.1368
|
|
9
|
+
Contact: support@instana.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 StrictStr
|
|
21
|
+
from instana_client.models.custom_entity_model import CustomEntityModel
|
|
22
|
+
from instana_client.models.custom_entity_with_metadata import CustomEntityWithMetadata
|
|
23
|
+
from instana_client.models.get_infrastructure_query import GetInfrastructureQuery
|
|
24
|
+
|
|
25
|
+
from instana_client.api_client import ApiClient, RequestSerialized
|
|
26
|
+
from instana_client.api_response import ApiResponse
|
|
27
|
+
from instana_client.rest import RESTResponseType
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
class CustomEntitiesApi:
|
|
31
|
+
"""NOTE: This class is auto generated by OpenAPI Generator
|
|
32
|
+
Ref: https://openapi-generator.tech
|
|
33
|
+
|
|
34
|
+
Do not edit the class manually.
|
|
35
|
+
"""
|
|
36
|
+
|
|
37
|
+
def __init__(self, api_client=None) -> None:
|
|
38
|
+
if api_client is None:
|
|
39
|
+
api_client = ApiClient.get_default()
|
|
40
|
+
self.api_client = api_client
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
@validate_call
|
|
44
|
+
def create_custom_entities(
|
|
45
|
+
self,
|
|
46
|
+
custom_entity_model: CustomEntityModel,
|
|
47
|
+
_request_timeout: Union[
|
|
48
|
+
None,
|
|
49
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
50
|
+
Tuple[
|
|
51
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
52
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
53
|
+
]
|
|
54
|
+
] = None,
|
|
55
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
56
|
+
_content_type: Optional[StrictStr] = None,
|
|
57
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
58
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
59
|
+
) -> CustomEntityWithMetadata:
|
|
60
|
+
"""Create a Custom Entity type
|
|
61
|
+
|
|
62
|
+
This end point creates a custom entity type
|
|
63
|
+
|
|
64
|
+
:param custom_entity_model: (required)
|
|
65
|
+
:type custom_entity_model: CustomEntityModel
|
|
66
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
67
|
+
number provided, it will be total request
|
|
68
|
+
timeout. It can also be a pair (tuple) of
|
|
69
|
+
(connection, read) timeouts.
|
|
70
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
71
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
72
|
+
request; this effectively ignores the
|
|
73
|
+
authentication in the spec for a single request.
|
|
74
|
+
:type _request_auth: dict, optional
|
|
75
|
+
:param _content_type: force content-type for the request.
|
|
76
|
+
:type _content_type: str, Optional
|
|
77
|
+
:param _headers: set to override the headers for a single
|
|
78
|
+
request; this effectively ignores the headers
|
|
79
|
+
in the spec for a single request.
|
|
80
|
+
:type _headers: dict, optional
|
|
81
|
+
:param _host_index: set to override the host_index for a single
|
|
82
|
+
request; this effectively ignores the host_index
|
|
83
|
+
in the spec for a single request.
|
|
84
|
+
:type _host_index: int, optional
|
|
85
|
+
:return: Returns the result object.
|
|
86
|
+
""" # noqa: E501
|
|
87
|
+
|
|
88
|
+
_param = self._create_custom_entities_serialize(
|
|
89
|
+
custom_entity_model=custom_entity_model,
|
|
90
|
+
_request_auth=_request_auth,
|
|
91
|
+
_content_type=_content_type,
|
|
92
|
+
_headers=_headers,
|
|
93
|
+
_host_index=_host_index
|
|
94
|
+
)
|
|
95
|
+
|
|
96
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
97
|
+
'200': "CustomEntityWithMetadata",
|
|
98
|
+
}
|
|
99
|
+
response_data = self.api_client.call_api(
|
|
100
|
+
*_param,
|
|
101
|
+
_request_timeout=_request_timeout
|
|
102
|
+
)
|
|
103
|
+
response_data.read()
|
|
104
|
+
return self.api_client.response_deserialize(
|
|
105
|
+
response_data=response_data,
|
|
106
|
+
response_types_map=_response_types_map,
|
|
107
|
+
).data
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
@validate_call
|
|
111
|
+
def create_custom_entities_with_http_info(
|
|
112
|
+
self,
|
|
113
|
+
custom_entity_model: CustomEntityModel,
|
|
114
|
+
_request_timeout: Union[
|
|
115
|
+
None,
|
|
116
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
117
|
+
Tuple[
|
|
118
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
119
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
120
|
+
]
|
|
121
|
+
] = None,
|
|
122
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
123
|
+
_content_type: Optional[StrictStr] = None,
|
|
124
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
125
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
126
|
+
) -> ApiResponse[CustomEntityWithMetadata]:
|
|
127
|
+
"""Create a Custom Entity type
|
|
128
|
+
|
|
129
|
+
This end point creates a custom entity type
|
|
130
|
+
|
|
131
|
+
:param custom_entity_model: (required)
|
|
132
|
+
:type custom_entity_model: CustomEntityModel
|
|
133
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
134
|
+
number provided, it will be total request
|
|
135
|
+
timeout. It can also be a pair (tuple) of
|
|
136
|
+
(connection, read) timeouts.
|
|
137
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
138
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
139
|
+
request; this effectively ignores the
|
|
140
|
+
authentication in the spec for a single request.
|
|
141
|
+
:type _request_auth: dict, optional
|
|
142
|
+
:param _content_type: force content-type for the request.
|
|
143
|
+
:type _content_type: str, Optional
|
|
144
|
+
:param _headers: set to override the headers for a single
|
|
145
|
+
request; this effectively ignores the headers
|
|
146
|
+
in the spec for a single request.
|
|
147
|
+
:type _headers: dict, optional
|
|
148
|
+
:param _host_index: set to override the host_index for a single
|
|
149
|
+
request; this effectively ignores the host_index
|
|
150
|
+
in the spec for a single request.
|
|
151
|
+
:type _host_index: int, optional
|
|
152
|
+
:return: Returns the result object.
|
|
153
|
+
""" # noqa: E501
|
|
154
|
+
|
|
155
|
+
_param = self._create_custom_entities_serialize(
|
|
156
|
+
custom_entity_model=custom_entity_model,
|
|
157
|
+
_request_auth=_request_auth,
|
|
158
|
+
_content_type=_content_type,
|
|
159
|
+
_headers=_headers,
|
|
160
|
+
_host_index=_host_index
|
|
161
|
+
)
|
|
162
|
+
|
|
163
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
164
|
+
'200': "CustomEntityWithMetadata",
|
|
165
|
+
}
|
|
166
|
+
response_data = self.api_client.call_api(
|
|
167
|
+
*_param,
|
|
168
|
+
_request_timeout=_request_timeout
|
|
169
|
+
)
|
|
170
|
+
response_data.read()
|
|
171
|
+
return self.api_client.response_deserialize(
|
|
172
|
+
response_data=response_data,
|
|
173
|
+
response_types_map=_response_types_map,
|
|
174
|
+
)
|
|
175
|
+
|
|
176
|
+
|
|
177
|
+
@validate_call
|
|
178
|
+
def create_custom_entities_without_preload_content(
|
|
179
|
+
self,
|
|
180
|
+
custom_entity_model: CustomEntityModel,
|
|
181
|
+
_request_timeout: Union[
|
|
182
|
+
None,
|
|
183
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
184
|
+
Tuple[
|
|
185
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
186
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
187
|
+
]
|
|
188
|
+
] = None,
|
|
189
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
190
|
+
_content_type: Optional[StrictStr] = None,
|
|
191
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
192
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
193
|
+
) -> RESTResponseType:
|
|
194
|
+
"""Create a Custom Entity type
|
|
195
|
+
|
|
196
|
+
This end point creates a custom entity type
|
|
197
|
+
|
|
198
|
+
:param custom_entity_model: (required)
|
|
199
|
+
:type custom_entity_model: CustomEntityModel
|
|
200
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
201
|
+
number provided, it will be total request
|
|
202
|
+
timeout. It can also be a pair (tuple) of
|
|
203
|
+
(connection, read) timeouts.
|
|
204
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
205
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
206
|
+
request; this effectively ignores the
|
|
207
|
+
authentication in the spec for a single request.
|
|
208
|
+
:type _request_auth: dict, optional
|
|
209
|
+
:param _content_type: force content-type for the request.
|
|
210
|
+
:type _content_type: str, Optional
|
|
211
|
+
:param _headers: set to override the headers for a single
|
|
212
|
+
request; this effectively ignores the headers
|
|
213
|
+
in the spec for a single request.
|
|
214
|
+
:type _headers: dict, optional
|
|
215
|
+
:param _host_index: set to override the host_index for a single
|
|
216
|
+
request; this effectively ignores the host_index
|
|
217
|
+
in the spec for a single request.
|
|
218
|
+
:type _host_index: int, optional
|
|
219
|
+
:return: Returns the result object.
|
|
220
|
+
""" # noqa: E501
|
|
221
|
+
|
|
222
|
+
_param = self._create_custom_entities_serialize(
|
|
223
|
+
custom_entity_model=custom_entity_model,
|
|
224
|
+
_request_auth=_request_auth,
|
|
225
|
+
_content_type=_content_type,
|
|
226
|
+
_headers=_headers,
|
|
227
|
+
_host_index=_host_index
|
|
228
|
+
)
|
|
229
|
+
|
|
230
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
231
|
+
'200': "CustomEntityWithMetadata",
|
|
232
|
+
}
|
|
233
|
+
response_data = self.api_client.call_api(
|
|
234
|
+
*_param,
|
|
235
|
+
_request_timeout=_request_timeout
|
|
236
|
+
)
|
|
237
|
+
return response_data.response
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
def _create_custom_entities_serialize(
|
|
241
|
+
self,
|
|
242
|
+
custom_entity_model,
|
|
243
|
+
_request_auth,
|
|
244
|
+
_content_type,
|
|
245
|
+
_headers,
|
|
246
|
+
_host_index,
|
|
247
|
+
) -> RequestSerialized:
|
|
248
|
+
|
|
249
|
+
_host = None
|
|
250
|
+
|
|
251
|
+
_collection_formats: Dict[str, str] = {
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
_path_params: Dict[str, str] = {}
|
|
255
|
+
_query_params: List[Tuple[str, str]] = []
|
|
256
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
257
|
+
_form_params: List[Tuple[str, str]] = []
|
|
258
|
+
_files: Dict[
|
|
259
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
260
|
+
] = {}
|
|
261
|
+
_body_params: Optional[bytes] = None
|
|
262
|
+
|
|
263
|
+
# process the path parameters
|
|
264
|
+
# process the query parameters
|
|
265
|
+
# process the header parameters
|
|
266
|
+
# process the form parameters
|
|
267
|
+
# process the body parameter
|
|
268
|
+
if custom_entity_model is not None:
|
|
269
|
+
_body_params = custom_entity_model
|
|
270
|
+
|
|
271
|
+
|
|
272
|
+
# set the HTTP header `Accept`
|
|
273
|
+
if 'Accept' not in _header_params:
|
|
274
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
275
|
+
[
|
|
276
|
+
'application/json'
|
|
277
|
+
]
|
|
278
|
+
)
|
|
279
|
+
|
|
280
|
+
# set the HTTP header `Content-Type`
|
|
281
|
+
if _content_type:
|
|
282
|
+
_header_params['Content-Type'] = _content_type
|
|
283
|
+
else:
|
|
284
|
+
_default_content_type = (
|
|
285
|
+
self.api_client.select_header_content_type(
|
|
286
|
+
[
|
|
287
|
+
'application/json'
|
|
288
|
+
]
|
|
289
|
+
)
|
|
290
|
+
)
|
|
291
|
+
if _default_content_type is not None:
|
|
292
|
+
_header_params['Content-Type'] = _default_content_type
|
|
293
|
+
|
|
294
|
+
# authentication setting
|
|
295
|
+
_auth_settings: List[str] = [
|
|
296
|
+
'ApiKeyAuth'
|
|
297
|
+
]
|
|
298
|
+
|
|
299
|
+
return self.api_client.param_serialize(
|
|
300
|
+
method='POST',
|
|
301
|
+
resource_path='/api/custom-entitytypes',
|
|
302
|
+
path_params=_path_params,
|
|
303
|
+
query_params=_query_params,
|
|
304
|
+
header_params=_header_params,
|
|
305
|
+
body=_body_params,
|
|
306
|
+
post_params=_form_params,
|
|
307
|
+
files=_files,
|
|
308
|
+
auth_settings=_auth_settings,
|
|
309
|
+
collection_formats=_collection_formats,
|
|
310
|
+
_host=_host,
|
|
311
|
+
_request_auth=_request_auth
|
|
312
|
+
)
|
|
313
|
+
|
|
314
|
+
|
|
315
|
+
|
|
316
|
+
|
|
317
|
+
@validate_call
|
|
318
|
+
def delete_custom_entity(
|
|
319
|
+
self,
|
|
320
|
+
id: StrictStr,
|
|
321
|
+
custom_entity_model: CustomEntityModel,
|
|
322
|
+
_request_timeout: Union[
|
|
323
|
+
None,
|
|
324
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
325
|
+
Tuple[
|
|
326
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
327
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
328
|
+
]
|
|
329
|
+
] = None,
|
|
330
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
331
|
+
_content_type: Optional[StrictStr] = None,
|
|
332
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
333
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
334
|
+
) -> CustomEntityWithMetadata:
|
|
335
|
+
"""Delete a Custom Entity Type
|
|
336
|
+
|
|
337
|
+
This end point deletes a custom Entity type definition
|
|
338
|
+
|
|
339
|
+
:param id: (required)
|
|
340
|
+
:type id: str
|
|
341
|
+
:param custom_entity_model: (required)
|
|
342
|
+
:type custom_entity_model: CustomEntityModel
|
|
343
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
344
|
+
number provided, it will be total request
|
|
345
|
+
timeout. It can also be a pair (tuple) of
|
|
346
|
+
(connection, read) timeouts.
|
|
347
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
348
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
349
|
+
request; this effectively ignores the
|
|
350
|
+
authentication in the spec for a single request.
|
|
351
|
+
:type _request_auth: dict, optional
|
|
352
|
+
:param _content_type: force content-type for the request.
|
|
353
|
+
:type _content_type: str, Optional
|
|
354
|
+
:param _headers: set to override the headers for a single
|
|
355
|
+
request; this effectively ignores the headers
|
|
356
|
+
in the spec for a single request.
|
|
357
|
+
:type _headers: dict, optional
|
|
358
|
+
:param _host_index: set to override the host_index for a single
|
|
359
|
+
request; this effectively ignores the host_index
|
|
360
|
+
in the spec for a single request.
|
|
361
|
+
:type _host_index: int, optional
|
|
362
|
+
:return: Returns the result object.
|
|
363
|
+
""" # noqa: E501
|
|
364
|
+
|
|
365
|
+
_param = self._delete_custom_entity_serialize(
|
|
366
|
+
id=id,
|
|
367
|
+
custom_entity_model=custom_entity_model,
|
|
368
|
+
_request_auth=_request_auth,
|
|
369
|
+
_content_type=_content_type,
|
|
370
|
+
_headers=_headers,
|
|
371
|
+
_host_index=_host_index
|
|
372
|
+
)
|
|
373
|
+
|
|
374
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
375
|
+
'200': "CustomEntityWithMetadata",
|
|
376
|
+
}
|
|
377
|
+
response_data = self.api_client.call_api(
|
|
378
|
+
*_param,
|
|
379
|
+
_request_timeout=_request_timeout
|
|
380
|
+
)
|
|
381
|
+
response_data.read()
|
|
382
|
+
return self.api_client.response_deserialize(
|
|
383
|
+
response_data=response_data,
|
|
384
|
+
response_types_map=_response_types_map,
|
|
385
|
+
).data
|
|
386
|
+
|
|
387
|
+
|
|
388
|
+
@validate_call
|
|
389
|
+
def delete_custom_entity_with_http_info(
|
|
390
|
+
self,
|
|
391
|
+
id: StrictStr,
|
|
392
|
+
custom_entity_model: CustomEntityModel,
|
|
393
|
+
_request_timeout: Union[
|
|
394
|
+
None,
|
|
395
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
396
|
+
Tuple[
|
|
397
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
398
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
399
|
+
]
|
|
400
|
+
] = None,
|
|
401
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
402
|
+
_content_type: Optional[StrictStr] = None,
|
|
403
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
404
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
405
|
+
) -> ApiResponse[CustomEntityWithMetadata]:
|
|
406
|
+
"""Delete a Custom Entity Type
|
|
407
|
+
|
|
408
|
+
This end point deletes a custom Entity type definition
|
|
409
|
+
|
|
410
|
+
:param id: (required)
|
|
411
|
+
:type id: str
|
|
412
|
+
:param custom_entity_model: (required)
|
|
413
|
+
:type custom_entity_model: CustomEntityModel
|
|
414
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
415
|
+
number provided, it will be total request
|
|
416
|
+
timeout. It can also be a pair (tuple) of
|
|
417
|
+
(connection, read) timeouts.
|
|
418
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
419
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
420
|
+
request; this effectively ignores the
|
|
421
|
+
authentication in the spec for a single request.
|
|
422
|
+
:type _request_auth: dict, optional
|
|
423
|
+
:param _content_type: force content-type for the request.
|
|
424
|
+
:type _content_type: str, Optional
|
|
425
|
+
:param _headers: set to override the headers for a single
|
|
426
|
+
request; this effectively ignores the headers
|
|
427
|
+
in the spec for a single request.
|
|
428
|
+
:type _headers: dict, optional
|
|
429
|
+
:param _host_index: set to override the host_index for a single
|
|
430
|
+
request; this effectively ignores the host_index
|
|
431
|
+
in the spec for a single request.
|
|
432
|
+
:type _host_index: int, optional
|
|
433
|
+
:return: Returns the result object.
|
|
434
|
+
""" # noqa: E501
|
|
435
|
+
|
|
436
|
+
_param = self._delete_custom_entity_serialize(
|
|
437
|
+
id=id,
|
|
438
|
+
custom_entity_model=custom_entity_model,
|
|
439
|
+
_request_auth=_request_auth,
|
|
440
|
+
_content_type=_content_type,
|
|
441
|
+
_headers=_headers,
|
|
442
|
+
_host_index=_host_index
|
|
443
|
+
)
|
|
444
|
+
|
|
445
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
446
|
+
'200': "CustomEntityWithMetadata",
|
|
447
|
+
}
|
|
448
|
+
response_data = self.api_client.call_api(
|
|
449
|
+
*_param,
|
|
450
|
+
_request_timeout=_request_timeout
|
|
451
|
+
)
|
|
452
|
+
response_data.read()
|
|
453
|
+
return self.api_client.response_deserialize(
|
|
454
|
+
response_data=response_data,
|
|
455
|
+
response_types_map=_response_types_map,
|
|
456
|
+
)
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
@validate_call
|
|
460
|
+
def delete_custom_entity_without_preload_content(
|
|
461
|
+
self,
|
|
462
|
+
id: StrictStr,
|
|
463
|
+
custom_entity_model: CustomEntityModel,
|
|
464
|
+
_request_timeout: Union[
|
|
465
|
+
None,
|
|
466
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
467
|
+
Tuple[
|
|
468
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
469
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
470
|
+
]
|
|
471
|
+
] = None,
|
|
472
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
473
|
+
_content_type: Optional[StrictStr] = None,
|
|
474
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
475
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
476
|
+
) -> RESTResponseType:
|
|
477
|
+
"""Delete a Custom Entity Type
|
|
478
|
+
|
|
479
|
+
This end point deletes a custom Entity type definition
|
|
480
|
+
|
|
481
|
+
:param id: (required)
|
|
482
|
+
:type id: str
|
|
483
|
+
:param custom_entity_model: (required)
|
|
484
|
+
:type custom_entity_model: CustomEntityModel
|
|
485
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
486
|
+
number provided, it will be total request
|
|
487
|
+
timeout. It can also be a pair (tuple) of
|
|
488
|
+
(connection, read) timeouts.
|
|
489
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
490
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
491
|
+
request; this effectively ignores the
|
|
492
|
+
authentication in the spec for a single request.
|
|
493
|
+
:type _request_auth: dict, optional
|
|
494
|
+
:param _content_type: force content-type for the request.
|
|
495
|
+
:type _content_type: str, Optional
|
|
496
|
+
:param _headers: set to override the headers for a single
|
|
497
|
+
request; this effectively ignores the headers
|
|
498
|
+
in the spec for a single request.
|
|
499
|
+
:type _headers: dict, optional
|
|
500
|
+
:param _host_index: set to override the host_index for a single
|
|
501
|
+
request; this effectively ignores the host_index
|
|
502
|
+
in the spec for a single request.
|
|
503
|
+
:type _host_index: int, optional
|
|
504
|
+
:return: Returns the result object.
|
|
505
|
+
""" # noqa: E501
|
|
506
|
+
|
|
507
|
+
_param = self._delete_custom_entity_serialize(
|
|
508
|
+
id=id,
|
|
509
|
+
custom_entity_model=custom_entity_model,
|
|
510
|
+
_request_auth=_request_auth,
|
|
511
|
+
_content_type=_content_type,
|
|
512
|
+
_headers=_headers,
|
|
513
|
+
_host_index=_host_index
|
|
514
|
+
)
|
|
515
|
+
|
|
516
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
517
|
+
'200': "CustomEntityWithMetadata",
|
|
518
|
+
}
|
|
519
|
+
response_data = self.api_client.call_api(
|
|
520
|
+
*_param,
|
|
521
|
+
_request_timeout=_request_timeout
|
|
522
|
+
)
|
|
523
|
+
return response_data.response
|
|
524
|
+
|
|
525
|
+
|
|
526
|
+
def _delete_custom_entity_serialize(
|
|
527
|
+
self,
|
|
528
|
+
id,
|
|
529
|
+
custom_entity_model,
|
|
530
|
+
_request_auth,
|
|
531
|
+
_content_type,
|
|
532
|
+
_headers,
|
|
533
|
+
_host_index,
|
|
534
|
+
) -> RequestSerialized:
|
|
535
|
+
|
|
536
|
+
_host = None
|
|
537
|
+
|
|
538
|
+
_collection_formats: Dict[str, str] = {
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
_path_params: Dict[str, str] = {}
|
|
542
|
+
_query_params: List[Tuple[str, str]] = []
|
|
543
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
544
|
+
_form_params: List[Tuple[str, str]] = []
|
|
545
|
+
_files: Dict[
|
|
546
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
547
|
+
] = {}
|
|
548
|
+
_body_params: Optional[bytes] = None
|
|
549
|
+
|
|
550
|
+
# process the path parameters
|
|
551
|
+
if id is not None:
|
|
552
|
+
_path_params['id'] = id
|
|
553
|
+
# process the query parameters
|
|
554
|
+
# process the header parameters
|
|
555
|
+
# process the form parameters
|
|
556
|
+
# process the body parameter
|
|
557
|
+
if custom_entity_model is not None:
|
|
558
|
+
_body_params = custom_entity_model
|
|
559
|
+
|
|
560
|
+
|
|
561
|
+
# set the HTTP header `Accept`
|
|
562
|
+
if 'Accept' not in _header_params:
|
|
563
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
564
|
+
[
|
|
565
|
+
'application/json'
|
|
566
|
+
]
|
|
567
|
+
)
|
|
568
|
+
|
|
569
|
+
# set the HTTP header `Content-Type`
|
|
570
|
+
if _content_type:
|
|
571
|
+
_header_params['Content-Type'] = _content_type
|
|
572
|
+
else:
|
|
573
|
+
_default_content_type = (
|
|
574
|
+
self.api_client.select_header_content_type(
|
|
575
|
+
[
|
|
576
|
+
'application/json'
|
|
577
|
+
]
|
|
578
|
+
)
|
|
579
|
+
)
|
|
580
|
+
if _default_content_type is not None:
|
|
581
|
+
_header_params['Content-Type'] = _default_content_type
|
|
582
|
+
|
|
583
|
+
# authentication setting
|
|
584
|
+
_auth_settings: List[str] = [
|
|
585
|
+
'ApiKeyAuth'
|
|
586
|
+
]
|
|
587
|
+
|
|
588
|
+
return self.api_client.param_serialize(
|
|
589
|
+
method='DELETE',
|
|
590
|
+
resource_path='/api/custom-entitytypes/{id}',
|
|
591
|
+
path_params=_path_params,
|
|
592
|
+
query_params=_query_params,
|
|
593
|
+
header_params=_header_params,
|
|
594
|
+
body=_body_params,
|
|
595
|
+
post_params=_form_params,
|
|
596
|
+
files=_files,
|
|
597
|
+
auth_settings=_auth_settings,
|
|
598
|
+
collection_formats=_collection_formats,
|
|
599
|
+
_host=_host,
|
|
600
|
+
_request_auth=_request_auth
|
|
601
|
+
)
|
|
602
|
+
|
|
603
|
+
|
|
604
|
+
|
|
605
|
+
|
|
606
|
+
@validate_call
|
|
607
|
+
def get_custom_entity(
|
|
608
|
+
self,
|
|
609
|
+
id: StrictStr,
|
|
610
|
+
_request_timeout: Union[
|
|
611
|
+
None,
|
|
612
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
613
|
+
Tuple[
|
|
614
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
615
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
616
|
+
]
|
|
617
|
+
] = None,
|
|
618
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
619
|
+
_content_type: Optional[StrictStr] = None,
|
|
620
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
621
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
622
|
+
) -> CustomEntityWithMetadata:
|
|
623
|
+
"""Get custom Entity Types
|
|
624
|
+
|
|
625
|
+
This endpoint gets custom Entity Type by ID
|
|
626
|
+
|
|
627
|
+
:param id: (required)
|
|
628
|
+
:type id: str
|
|
629
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
630
|
+
number provided, it will be total request
|
|
631
|
+
timeout. It can also be a pair (tuple) of
|
|
632
|
+
(connection, read) timeouts.
|
|
633
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
634
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
635
|
+
request; this effectively ignores the
|
|
636
|
+
authentication in the spec for a single request.
|
|
637
|
+
:type _request_auth: dict, optional
|
|
638
|
+
:param _content_type: force content-type for the request.
|
|
639
|
+
:type _content_type: str, Optional
|
|
640
|
+
:param _headers: set to override the headers for a single
|
|
641
|
+
request; this effectively ignores the headers
|
|
642
|
+
in the spec for a single request.
|
|
643
|
+
:type _headers: dict, optional
|
|
644
|
+
:param _host_index: set to override the host_index for a single
|
|
645
|
+
request; this effectively ignores the host_index
|
|
646
|
+
in the spec for a single request.
|
|
647
|
+
:type _host_index: int, optional
|
|
648
|
+
:return: Returns the result object.
|
|
649
|
+
""" # noqa: E501
|
|
650
|
+
|
|
651
|
+
_param = self._get_custom_entity_serialize(
|
|
652
|
+
id=id,
|
|
653
|
+
_request_auth=_request_auth,
|
|
654
|
+
_content_type=_content_type,
|
|
655
|
+
_headers=_headers,
|
|
656
|
+
_host_index=_host_index
|
|
657
|
+
)
|
|
658
|
+
|
|
659
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
660
|
+
'200': "CustomEntityWithMetadata",
|
|
661
|
+
}
|
|
662
|
+
response_data = self.api_client.call_api(
|
|
663
|
+
*_param,
|
|
664
|
+
_request_timeout=_request_timeout
|
|
665
|
+
)
|
|
666
|
+
response_data.read()
|
|
667
|
+
return self.api_client.response_deserialize(
|
|
668
|
+
response_data=response_data,
|
|
669
|
+
response_types_map=_response_types_map,
|
|
670
|
+
).data
|
|
671
|
+
|
|
672
|
+
|
|
673
|
+
@validate_call
|
|
674
|
+
def get_custom_entity_with_http_info(
|
|
675
|
+
self,
|
|
676
|
+
id: StrictStr,
|
|
677
|
+
_request_timeout: Union[
|
|
678
|
+
None,
|
|
679
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
680
|
+
Tuple[
|
|
681
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
682
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
683
|
+
]
|
|
684
|
+
] = None,
|
|
685
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
686
|
+
_content_type: Optional[StrictStr] = None,
|
|
687
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
688
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
689
|
+
) -> ApiResponse[CustomEntityWithMetadata]:
|
|
690
|
+
"""Get custom Entity Types
|
|
691
|
+
|
|
692
|
+
This endpoint gets custom Entity Type by ID
|
|
693
|
+
|
|
694
|
+
:param id: (required)
|
|
695
|
+
:type id: str
|
|
696
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
697
|
+
number provided, it will be total request
|
|
698
|
+
timeout. It can also be a pair (tuple) of
|
|
699
|
+
(connection, read) timeouts.
|
|
700
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
701
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
702
|
+
request; this effectively ignores the
|
|
703
|
+
authentication in the spec for a single request.
|
|
704
|
+
:type _request_auth: dict, optional
|
|
705
|
+
:param _content_type: force content-type for the request.
|
|
706
|
+
:type _content_type: str, Optional
|
|
707
|
+
:param _headers: set to override the headers for a single
|
|
708
|
+
request; this effectively ignores the headers
|
|
709
|
+
in the spec for a single request.
|
|
710
|
+
:type _headers: dict, optional
|
|
711
|
+
:param _host_index: set to override the host_index for a single
|
|
712
|
+
request; this effectively ignores the host_index
|
|
713
|
+
in the spec for a single request.
|
|
714
|
+
:type _host_index: int, optional
|
|
715
|
+
:return: Returns the result object.
|
|
716
|
+
""" # noqa: E501
|
|
717
|
+
|
|
718
|
+
_param = self._get_custom_entity_serialize(
|
|
719
|
+
id=id,
|
|
720
|
+
_request_auth=_request_auth,
|
|
721
|
+
_content_type=_content_type,
|
|
722
|
+
_headers=_headers,
|
|
723
|
+
_host_index=_host_index
|
|
724
|
+
)
|
|
725
|
+
|
|
726
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
727
|
+
'200': "CustomEntityWithMetadata",
|
|
728
|
+
}
|
|
729
|
+
response_data = self.api_client.call_api(
|
|
730
|
+
*_param,
|
|
731
|
+
_request_timeout=_request_timeout
|
|
732
|
+
)
|
|
733
|
+
response_data.read()
|
|
734
|
+
return self.api_client.response_deserialize(
|
|
735
|
+
response_data=response_data,
|
|
736
|
+
response_types_map=_response_types_map,
|
|
737
|
+
)
|
|
738
|
+
|
|
739
|
+
|
|
740
|
+
@validate_call
|
|
741
|
+
def get_custom_entity_without_preload_content(
|
|
742
|
+
self,
|
|
743
|
+
id: StrictStr,
|
|
744
|
+
_request_timeout: Union[
|
|
745
|
+
None,
|
|
746
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
747
|
+
Tuple[
|
|
748
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
749
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
750
|
+
]
|
|
751
|
+
] = None,
|
|
752
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
753
|
+
_content_type: Optional[StrictStr] = None,
|
|
754
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
755
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
756
|
+
) -> RESTResponseType:
|
|
757
|
+
"""Get custom Entity Types
|
|
758
|
+
|
|
759
|
+
This endpoint gets custom Entity Type by ID
|
|
760
|
+
|
|
761
|
+
:param id: (required)
|
|
762
|
+
:type id: str
|
|
763
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
764
|
+
number provided, it will be total request
|
|
765
|
+
timeout. It can also be a pair (tuple) of
|
|
766
|
+
(connection, read) timeouts.
|
|
767
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
768
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
769
|
+
request; this effectively ignores the
|
|
770
|
+
authentication in the spec for a single request.
|
|
771
|
+
:type _request_auth: dict, optional
|
|
772
|
+
:param _content_type: force content-type for the request.
|
|
773
|
+
:type _content_type: str, Optional
|
|
774
|
+
:param _headers: set to override the headers for a single
|
|
775
|
+
request; this effectively ignores the headers
|
|
776
|
+
in the spec for a single request.
|
|
777
|
+
:type _headers: dict, optional
|
|
778
|
+
:param _host_index: set to override the host_index for a single
|
|
779
|
+
request; this effectively ignores the host_index
|
|
780
|
+
in the spec for a single request.
|
|
781
|
+
:type _host_index: int, optional
|
|
782
|
+
:return: Returns the result object.
|
|
783
|
+
""" # noqa: E501
|
|
784
|
+
|
|
785
|
+
_param = self._get_custom_entity_serialize(
|
|
786
|
+
id=id,
|
|
787
|
+
_request_auth=_request_auth,
|
|
788
|
+
_content_type=_content_type,
|
|
789
|
+
_headers=_headers,
|
|
790
|
+
_host_index=_host_index
|
|
791
|
+
)
|
|
792
|
+
|
|
793
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
794
|
+
'200': "CustomEntityWithMetadata",
|
|
795
|
+
}
|
|
796
|
+
response_data = self.api_client.call_api(
|
|
797
|
+
*_param,
|
|
798
|
+
_request_timeout=_request_timeout
|
|
799
|
+
)
|
|
800
|
+
return response_data.response
|
|
801
|
+
|
|
802
|
+
|
|
803
|
+
def _get_custom_entity_serialize(
|
|
804
|
+
self,
|
|
805
|
+
id,
|
|
806
|
+
_request_auth,
|
|
807
|
+
_content_type,
|
|
808
|
+
_headers,
|
|
809
|
+
_host_index,
|
|
810
|
+
) -> RequestSerialized:
|
|
811
|
+
|
|
812
|
+
_host = None
|
|
813
|
+
|
|
814
|
+
_collection_formats: Dict[str, str] = {
|
|
815
|
+
}
|
|
816
|
+
|
|
817
|
+
_path_params: Dict[str, str] = {}
|
|
818
|
+
_query_params: List[Tuple[str, str]] = []
|
|
819
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
820
|
+
_form_params: List[Tuple[str, str]] = []
|
|
821
|
+
_files: Dict[
|
|
822
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
823
|
+
] = {}
|
|
824
|
+
_body_params: Optional[bytes] = None
|
|
825
|
+
|
|
826
|
+
# process the path parameters
|
|
827
|
+
if id is not None:
|
|
828
|
+
_path_params['id'] = id
|
|
829
|
+
# process the query parameters
|
|
830
|
+
# process the header parameters
|
|
831
|
+
# process the form parameters
|
|
832
|
+
# process the body parameter
|
|
833
|
+
|
|
834
|
+
|
|
835
|
+
# set the HTTP header `Accept`
|
|
836
|
+
if 'Accept' not in _header_params:
|
|
837
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
838
|
+
[
|
|
839
|
+
'application/json'
|
|
840
|
+
]
|
|
841
|
+
)
|
|
842
|
+
|
|
843
|
+
|
|
844
|
+
# authentication setting
|
|
845
|
+
_auth_settings: List[str] = [
|
|
846
|
+
'ApiKeyAuth'
|
|
847
|
+
]
|
|
848
|
+
|
|
849
|
+
return self.api_client.param_serialize(
|
|
850
|
+
method='GET',
|
|
851
|
+
resource_path='/api/custom-entitytypes/{id}',
|
|
852
|
+
path_params=_path_params,
|
|
853
|
+
query_params=_query_params,
|
|
854
|
+
header_params=_header_params,
|
|
855
|
+
body=_body_params,
|
|
856
|
+
post_params=_form_params,
|
|
857
|
+
files=_files,
|
|
858
|
+
auth_settings=_auth_settings,
|
|
859
|
+
collection_formats=_collection_formats,
|
|
860
|
+
_host=_host,
|
|
861
|
+
_request_auth=_request_auth
|
|
862
|
+
)
|
|
863
|
+
|
|
864
|
+
|
|
865
|
+
|
|
866
|
+
|
|
867
|
+
@validate_call
|
|
868
|
+
def list_custom_entities(
|
|
869
|
+
self,
|
|
870
|
+
_request_timeout: Union[
|
|
871
|
+
None,
|
|
872
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
873
|
+
Tuple[
|
|
874
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
875
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
876
|
+
]
|
|
877
|
+
] = None,
|
|
878
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
879
|
+
_content_type: Optional[StrictStr] = None,
|
|
880
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
881
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
882
|
+
) -> CustomEntityWithMetadata:
|
|
883
|
+
"""List custom Entity Type Definition
|
|
884
|
+
|
|
885
|
+
This end point lists custom Entity Type Definition
|
|
886
|
+
|
|
887
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
888
|
+
number provided, it will be total request
|
|
889
|
+
timeout. It can also be a pair (tuple) of
|
|
890
|
+
(connection, read) timeouts.
|
|
891
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
892
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
893
|
+
request; this effectively ignores the
|
|
894
|
+
authentication in the spec for a single request.
|
|
895
|
+
:type _request_auth: dict, optional
|
|
896
|
+
:param _content_type: force content-type for the request.
|
|
897
|
+
:type _content_type: str, Optional
|
|
898
|
+
:param _headers: set to override the headers for a single
|
|
899
|
+
request; this effectively ignores the headers
|
|
900
|
+
in the spec for a single request.
|
|
901
|
+
:type _headers: dict, optional
|
|
902
|
+
:param _host_index: set to override the host_index for a single
|
|
903
|
+
request; this effectively ignores the host_index
|
|
904
|
+
in the spec for a single request.
|
|
905
|
+
:type _host_index: int, optional
|
|
906
|
+
:return: Returns the result object.
|
|
907
|
+
""" # noqa: E501
|
|
908
|
+
|
|
909
|
+
_param = self._list_custom_entities_serialize(
|
|
910
|
+
_request_auth=_request_auth,
|
|
911
|
+
_content_type=_content_type,
|
|
912
|
+
_headers=_headers,
|
|
913
|
+
_host_index=_host_index
|
|
914
|
+
)
|
|
915
|
+
|
|
916
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
917
|
+
'200': "CustomEntityWithMetadata",
|
|
918
|
+
}
|
|
919
|
+
response_data = self.api_client.call_api(
|
|
920
|
+
*_param,
|
|
921
|
+
_request_timeout=_request_timeout
|
|
922
|
+
)
|
|
923
|
+
response_data.read()
|
|
924
|
+
return self.api_client.response_deserialize(
|
|
925
|
+
response_data=response_data,
|
|
926
|
+
response_types_map=_response_types_map,
|
|
927
|
+
).data
|
|
928
|
+
|
|
929
|
+
|
|
930
|
+
@validate_call
|
|
931
|
+
def list_custom_entities_with_http_info(
|
|
932
|
+
self,
|
|
933
|
+
_request_timeout: Union[
|
|
934
|
+
None,
|
|
935
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
936
|
+
Tuple[
|
|
937
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
938
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
939
|
+
]
|
|
940
|
+
] = None,
|
|
941
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
942
|
+
_content_type: Optional[StrictStr] = None,
|
|
943
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
944
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
945
|
+
) -> ApiResponse[CustomEntityWithMetadata]:
|
|
946
|
+
"""List custom Entity Type Definition
|
|
947
|
+
|
|
948
|
+
This end point lists custom Entity Type Definition
|
|
949
|
+
|
|
950
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
951
|
+
number provided, it will be total request
|
|
952
|
+
timeout. It can also be a pair (tuple) of
|
|
953
|
+
(connection, read) timeouts.
|
|
954
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
955
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
956
|
+
request; this effectively ignores the
|
|
957
|
+
authentication in the spec for a single request.
|
|
958
|
+
:type _request_auth: dict, optional
|
|
959
|
+
:param _content_type: force content-type for the request.
|
|
960
|
+
:type _content_type: str, Optional
|
|
961
|
+
:param _headers: set to override the headers for a single
|
|
962
|
+
request; this effectively ignores the headers
|
|
963
|
+
in the spec for a single request.
|
|
964
|
+
:type _headers: dict, optional
|
|
965
|
+
:param _host_index: set to override the host_index for a single
|
|
966
|
+
request; this effectively ignores the host_index
|
|
967
|
+
in the spec for a single request.
|
|
968
|
+
:type _host_index: int, optional
|
|
969
|
+
:return: Returns the result object.
|
|
970
|
+
""" # noqa: E501
|
|
971
|
+
|
|
972
|
+
_param = self._list_custom_entities_serialize(
|
|
973
|
+
_request_auth=_request_auth,
|
|
974
|
+
_content_type=_content_type,
|
|
975
|
+
_headers=_headers,
|
|
976
|
+
_host_index=_host_index
|
|
977
|
+
)
|
|
978
|
+
|
|
979
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
980
|
+
'200': "CustomEntityWithMetadata",
|
|
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
|
+
)
|
|
991
|
+
|
|
992
|
+
|
|
993
|
+
@validate_call
|
|
994
|
+
def list_custom_entities_without_preload_content(
|
|
995
|
+
self,
|
|
996
|
+
_request_timeout: Union[
|
|
997
|
+
None,
|
|
998
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
999
|
+
Tuple[
|
|
1000
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1001
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
1002
|
+
]
|
|
1003
|
+
] = None,
|
|
1004
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1005
|
+
_content_type: Optional[StrictStr] = None,
|
|
1006
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1007
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1008
|
+
) -> RESTResponseType:
|
|
1009
|
+
"""List custom Entity Type Definition
|
|
1010
|
+
|
|
1011
|
+
This end point lists custom Entity Type Definition
|
|
1012
|
+
|
|
1013
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1014
|
+
number provided, it will be total request
|
|
1015
|
+
timeout. It can also be a pair (tuple) of
|
|
1016
|
+
(connection, read) timeouts.
|
|
1017
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1018
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1019
|
+
request; this effectively ignores the
|
|
1020
|
+
authentication in the spec for a single request.
|
|
1021
|
+
:type _request_auth: dict, optional
|
|
1022
|
+
:param _content_type: force content-type for the request.
|
|
1023
|
+
:type _content_type: str, Optional
|
|
1024
|
+
:param _headers: set to override the headers for a single
|
|
1025
|
+
request; this effectively ignores the headers
|
|
1026
|
+
in the spec for a single request.
|
|
1027
|
+
:type _headers: dict, optional
|
|
1028
|
+
:param _host_index: set to override the host_index for a single
|
|
1029
|
+
request; this effectively ignores the host_index
|
|
1030
|
+
in the spec for a single request.
|
|
1031
|
+
:type _host_index: int, optional
|
|
1032
|
+
:return: Returns the result object.
|
|
1033
|
+
""" # noqa: E501
|
|
1034
|
+
|
|
1035
|
+
_param = self._list_custom_entities_serialize(
|
|
1036
|
+
_request_auth=_request_auth,
|
|
1037
|
+
_content_type=_content_type,
|
|
1038
|
+
_headers=_headers,
|
|
1039
|
+
_host_index=_host_index
|
|
1040
|
+
)
|
|
1041
|
+
|
|
1042
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1043
|
+
'200': "CustomEntityWithMetadata",
|
|
1044
|
+
}
|
|
1045
|
+
response_data = self.api_client.call_api(
|
|
1046
|
+
*_param,
|
|
1047
|
+
_request_timeout=_request_timeout
|
|
1048
|
+
)
|
|
1049
|
+
return response_data.response
|
|
1050
|
+
|
|
1051
|
+
|
|
1052
|
+
def _list_custom_entities_serialize(
|
|
1053
|
+
self,
|
|
1054
|
+
_request_auth,
|
|
1055
|
+
_content_type,
|
|
1056
|
+
_headers,
|
|
1057
|
+
_host_index,
|
|
1058
|
+
) -> RequestSerialized:
|
|
1059
|
+
|
|
1060
|
+
_host = None
|
|
1061
|
+
|
|
1062
|
+
_collection_formats: Dict[str, str] = {
|
|
1063
|
+
}
|
|
1064
|
+
|
|
1065
|
+
_path_params: Dict[str, str] = {}
|
|
1066
|
+
_query_params: List[Tuple[str, str]] = []
|
|
1067
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
1068
|
+
_form_params: List[Tuple[str, str]] = []
|
|
1069
|
+
_files: Dict[
|
|
1070
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
1071
|
+
] = {}
|
|
1072
|
+
_body_params: Optional[bytes] = None
|
|
1073
|
+
|
|
1074
|
+
# process the path parameters
|
|
1075
|
+
# process the query parameters
|
|
1076
|
+
# process the header parameters
|
|
1077
|
+
# process the form parameters
|
|
1078
|
+
# process the body parameter
|
|
1079
|
+
|
|
1080
|
+
|
|
1081
|
+
# set the HTTP header `Accept`
|
|
1082
|
+
if 'Accept' not in _header_params:
|
|
1083
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
1084
|
+
[
|
|
1085
|
+
'application/json'
|
|
1086
|
+
]
|
|
1087
|
+
)
|
|
1088
|
+
|
|
1089
|
+
|
|
1090
|
+
# authentication setting
|
|
1091
|
+
_auth_settings: List[str] = [
|
|
1092
|
+
'ApiKeyAuth'
|
|
1093
|
+
]
|
|
1094
|
+
|
|
1095
|
+
return self.api_client.param_serialize(
|
|
1096
|
+
method='GET',
|
|
1097
|
+
resource_path='/api/custom-entitytypes',
|
|
1098
|
+
path_params=_path_params,
|
|
1099
|
+
query_params=_query_params,
|
|
1100
|
+
header_params=_header_params,
|
|
1101
|
+
body=_body_params,
|
|
1102
|
+
post_params=_form_params,
|
|
1103
|
+
files=_files,
|
|
1104
|
+
auth_settings=_auth_settings,
|
|
1105
|
+
collection_formats=_collection_formats,
|
|
1106
|
+
_host=_host,
|
|
1107
|
+
_request_auth=_request_auth
|
|
1108
|
+
)
|
|
1109
|
+
|
|
1110
|
+
|
|
1111
|
+
|
|
1112
|
+
|
|
1113
|
+
@validate_call
|
|
1114
|
+
def list_entities_from_infra_entities(
|
|
1115
|
+
self,
|
|
1116
|
+
get_infrastructure_query: GetInfrastructureQuery,
|
|
1117
|
+
_request_timeout: Union[
|
|
1118
|
+
None,
|
|
1119
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1120
|
+
Tuple[
|
|
1121
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1122
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
1123
|
+
]
|
|
1124
|
+
] = None,
|
|
1125
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1126
|
+
_content_type: Optional[StrictStr] = None,
|
|
1127
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1128
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1129
|
+
) -> CustomEntityWithMetadata:
|
|
1130
|
+
"""List all entity types that match the custom entity metadata
|
|
1131
|
+
|
|
1132
|
+
List all entity types that match the custom entity metadata
|
|
1133
|
+
|
|
1134
|
+
:param get_infrastructure_query: (required)
|
|
1135
|
+
:type get_infrastructure_query: GetInfrastructureQuery
|
|
1136
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1137
|
+
number provided, it will be total request
|
|
1138
|
+
timeout. It can also be a pair (tuple) of
|
|
1139
|
+
(connection, read) timeouts.
|
|
1140
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1141
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1142
|
+
request; this effectively ignores the
|
|
1143
|
+
authentication in the spec for a single request.
|
|
1144
|
+
:type _request_auth: dict, optional
|
|
1145
|
+
:param _content_type: force content-type for the request.
|
|
1146
|
+
:type _content_type: str, Optional
|
|
1147
|
+
:param _headers: set to override the headers for a single
|
|
1148
|
+
request; this effectively ignores the headers
|
|
1149
|
+
in the spec for a single request.
|
|
1150
|
+
:type _headers: dict, optional
|
|
1151
|
+
:param _host_index: set to override the host_index for a single
|
|
1152
|
+
request; this effectively ignores the host_index
|
|
1153
|
+
in the spec for a single request.
|
|
1154
|
+
:type _host_index: int, optional
|
|
1155
|
+
:return: Returns the result object.
|
|
1156
|
+
""" # noqa: E501
|
|
1157
|
+
|
|
1158
|
+
_param = self._list_entities_from_infra_entities_serialize(
|
|
1159
|
+
get_infrastructure_query=get_infrastructure_query,
|
|
1160
|
+
_request_auth=_request_auth,
|
|
1161
|
+
_content_type=_content_type,
|
|
1162
|
+
_headers=_headers,
|
|
1163
|
+
_host_index=_host_index
|
|
1164
|
+
)
|
|
1165
|
+
|
|
1166
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1167
|
+
'200': "CustomEntityWithMetadata",
|
|
1168
|
+
}
|
|
1169
|
+
response_data = self.api_client.call_api(
|
|
1170
|
+
*_param,
|
|
1171
|
+
_request_timeout=_request_timeout
|
|
1172
|
+
)
|
|
1173
|
+
response_data.read()
|
|
1174
|
+
return self.api_client.response_deserialize(
|
|
1175
|
+
response_data=response_data,
|
|
1176
|
+
response_types_map=_response_types_map,
|
|
1177
|
+
).data
|
|
1178
|
+
|
|
1179
|
+
|
|
1180
|
+
@validate_call
|
|
1181
|
+
def list_entities_from_infra_entities_with_http_info(
|
|
1182
|
+
self,
|
|
1183
|
+
get_infrastructure_query: GetInfrastructureQuery,
|
|
1184
|
+
_request_timeout: Union[
|
|
1185
|
+
None,
|
|
1186
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1187
|
+
Tuple[
|
|
1188
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1189
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
1190
|
+
]
|
|
1191
|
+
] = None,
|
|
1192
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1193
|
+
_content_type: Optional[StrictStr] = None,
|
|
1194
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1195
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1196
|
+
) -> ApiResponse[CustomEntityWithMetadata]:
|
|
1197
|
+
"""List all entity types that match the custom entity metadata
|
|
1198
|
+
|
|
1199
|
+
List all entity types that match the custom entity metadata
|
|
1200
|
+
|
|
1201
|
+
:param get_infrastructure_query: (required)
|
|
1202
|
+
:type get_infrastructure_query: GetInfrastructureQuery
|
|
1203
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1204
|
+
number provided, it will be total request
|
|
1205
|
+
timeout. It can also be a pair (tuple) of
|
|
1206
|
+
(connection, read) timeouts.
|
|
1207
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1208
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1209
|
+
request; this effectively ignores the
|
|
1210
|
+
authentication in the spec for a single request.
|
|
1211
|
+
:type _request_auth: dict, optional
|
|
1212
|
+
:param _content_type: force content-type for the request.
|
|
1213
|
+
:type _content_type: str, Optional
|
|
1214
|
+
:param _headers: set to override the headers for a single
|
|
1215
|
+
request; this effectively ignores the headers
|
|
1216
|
+
in the spec for a single request.
|
|
1217
|
+
:type _headers: dict, optional
|
|
1218
|
+
:param _host_index: set to override the host_index for a single
|
|
1219
|
+
request; this effectively ignores the host_index
|
|
1220
|
+
in the spec for a single request.
|
|
1221
|
+
:type _host_index: int, optional
|
|
1222
|
+
:return: Returns the result object.
|
|
1223
|
+
""" # noqa: E501
|
|
1224
|
+
|
|
1225
|
+
_param = self._list_entities_from_infra_entities_serialize(
|
|
1226
|
+
get_infrastructure_query=get_infrastructure_query,
|
|
1227
|
+
_request_auth=_request_auth,
|
|
1228
|
+
_content_type=_content_type,
|
|
1229
|
+
_headers=_headers,
|
|
1230
|
+
_host_index=_host_index
|
|
1231
|
+
)
|
|
1232
|
+
|
|
1233
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1234
|
+
'200': "CustomEntityWithMetadata",
|
|
1235
|
+
}
|
|
1236
|
+
response_data = self.api_client.call_api(
|
|
1237
|
+
*_param,
|
|
1238
|
+
_request_timeout=_request_timeout
|
|
1239
|
+
)
|
|
1240
|
+
response_data.read()
|
|
1241
|
+
return self.api_client.response_deserialize(
|
|
1242
|
+
response_data=response_data,
|
|
1243
|
+
response_types_map=_response_types_map,
|
|
1244
|
+
)
|
|
1245
|
+
|
|
1246
|
+
|
|
1247
|
+
@validate_call
|
|
1248
|
+
def list_entities_from_infra_entities_without_preload_content(
|
|
1249
|
+
self,
|
|
1250
|
+
get_infrastructure_query: GetInfrastructureQuery,
|
|
1251
|
+
_request_timeout: Union[
|
|
1252
|
+
None,
|
|
1253
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1254
|
+
Tuple[
|
|
1255
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1256
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
1257
|
+
]
|
|
1258
|
+
] = None,
|
|
1259
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1260
|
+
_content_type: Optional[StrictStr] = None,
|
|
1261
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1262
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1263
|
+
) -> RESTResponseType:
|
|
1264
|
+
"""List all entity types that match the custom entity metadata
|
|
1265
|
+
|
|
1266
|
+
List all entity types that match the custom entity metadata
|
|
1267
|
+
|
|
1268
|
+
:param get_infrastructure_query: (required)
|
|
1269
|
+
:type get_infrastructure_query: GetInfrastructureQuery
|
|
1270
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1271
|
+
number provided, it will be total request
|
|
1272
|
+
timeout. It can also be a pair (tuple) of
|
|
1273
|
+
(connection, read) timeouts.
|
|
1274
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1275
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1276
|
+
request; this effectively ignores the
|
|
1277
|
+
authentication in the spec for a single request.
|
|
1278
|
+
:type _request_auth: dict, optional
|
|
1279
|
+
:param _content_type: force content-type for the request.
|
|
1280
|
+
:type _content_type: str, Optional
|
|
1281
|
+
:param _headers: set to override the headers for a single
|
|
1282
|
+
request; this effectively ignores the headers
|
|
1283
|
+
in the spec for a single request.
|
|
1284
|
+
:type _headers: dict, optional
|
|
1285
|
+
:param _host_index: set to override the host_index for a single
|
|
1286
|
+
request; this effectively ignores the host_index
|
|
1287
|
+
in the spec for a single request.
|
|
1288
|
+
:type _host_index: int, optional
|
|
1289
|
+
:return: Returns the result object.
|
|
1290
|
+
""" # noqa: E501
|
|
1291
|
+
|
|
1292
|
+
_param = self._list_entities_from_infra_entities_serialize(
|
|
1293
|
+
get_infrastructure_query=get_infrastructure_query,
|
|
1294
|
+
_request_auth=_request_auth,
|
|
1295
|
+
_content_type=_content_type,
|
|
1296
|
+
_headers=_headers,
|
|
1297
|
+
_host_index=_host_index
|
|
1298
|
+
)
|
|
1299
|
+
|
|
1300
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1301
|
+
'200': "CustomEntityWithMetadata",
|
|
1302
|
+
}
|
|
1303
|
+
response_data = self.api_client.call_api(
|
|
1304
|
+
*_param,
|
|
1305
|
+
_request_timeout=_request_timeout
|
|
1306
|
+
)
|
|
1307
|
+
return response_data.response
|
|
1308
|
+
|
|
1309
|
+
|
|
1310
|
+
def _list_entities_from_infra_entities_serialize(
|
|
1311
|
+
self,
|
|
1312
|
+
get_infrastructure_query,
|
|
1313
|
+
_request_auth,
|
|
1314
|
+
_content_type,
|
|
1315
|
+
_headers,
|
|
1316
|
+
_host_index,
|
|
1317
|
+
) -> RequestSerialized:
|
|
1318
|
+
|
|
1319
|
+
_host = None
|
|
1320
|
+
|
|
1321
|
+
_collection_formats: Dict[str, str] = {
|
|
1322
|
+
}
|
|
1323
|
+
|
|
1324
|
+
_path_params: Dict[str, str] = {}
|
|
1325
|
+
_query_params: List[Tuple[str, str]] = []
|
|
1326
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
1327
|
+
_form_params: List[Tuple[str, str]] = []
|
|
1328
|
+
_files: Dict[
|
|
1329
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
1330
|
+
] = {}
|
|
1331
|
+
_body_params: Optional[bytes] = None
|
|
1332
|
+
|
|
1333
|
+
# process the path parameters
|
|
1334
|
+
# process the query parameters
|
|
1335
|
+
# process the header parameters
|
|
1336
|
+
# process the form parameters
|
|
1337
|
+
# process the body parameter
|
|
1338
|
+
if get_infrastructure_query is not None:
|
|
1339
|
+
_body_params = get_infrastructure_query
|
|
1340
|
+
|
|
1341
|
+
|
|
1342
|
+
# set the HTTP header `Accept`
|
|
1343
|
+
if 'Accept' not in _header_params:
|
|
1344
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
1345
|
+
[
|
|
1346
|
+
'application/json'
|
|
1347
|
+
]
|
|
1348
|
+
)
|
|
1349
|
+
|
|
1350
|
+
# set the HTTP header `Content-Type`
|
|
1351
|
+
if _content_type:
|
|
1352
|
+
_header_params['Content-Type'] = _content_type
|
|
1353
|
+
else:
|
|
1354
|
+
_default_content_type = (
|
|
1355
|
+
self.api_client.select_header_content_type(
|
|
1356
|
+
[
|
|
1357
|
+
'application/json'
|
|
1358
|
+
]
|
|
1359
|
+
)
|
|
1360
|
+
)
|
|
1361
|
+
if _default_content_type is not None:
|
|
1362
|
+
_header_params['Content-Type'] = _default_content_type
|
|
1363
|
+
|
|
1364
|
+
# authentication setting
|
|
1365
|
+
_auth_settings: List[str] = [
|
|
1366
|
+
'ApiKeyAuth'
|
|
1367
|
+
]
|
|
1368
|
+
|
|
1369
|
+
return self.api_client.param_serialize(
|
|
1370
|
+
method='POST',
|
|
1371
|
+
resource_path='/api/custom-entitytypes/entities',
|
|
1372
|
+
path_params=_path_params,
|
|
1373
|
+
query_params=_query_params,
|
|
1374
|
+
header_params=_header_params,
|
|
1375
|
+
body=_body_params,
|
|
1376
|
+
post_params=_form_params,
|
|
1377
|
+
files=_files,
|
|
1378
|
+
auth_settings=_auth_settings,
|
|
1379
|
+
collection_formats=_collection_formats,
|
|
1380
|
+
_host=_host,
|
|
1381
|
+
_request_auth=_request_auth
|
|
1382
|
+
)
|
|
1383
|
+
|
|
1384
|
+
|
|
1385
|
+
|
|
1386
|
+
|
|
1387
|
+
@validate_call
|
|
1388
|
+
def update_custom_entity(
|
|
1389
|
+
self,
|
|
1390
|
+
id: StrictStr,
|
|
1391
|
+
custom_entity_model: CustomEntityModel,
|
|
1392
|
+
_request_timeout: Union[
|
|
1393
|
+
None,
|
|
1394
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1395
|
+
Tuple[
|
|
1396
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1397
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
1398
|
+
]
|
|
1399
|
+
] = None,
|
|
1400
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1401
|
+
_content_type: Optional[StrictStr] = None,
|
|
1402
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1403
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1404
|
+
) -> CustomEntityWithMetadata:
|
|
1405
|
+
"""Update a Custom Entity Type
|
|
1406
|
+
|
|
1407
|
+
This end points updates the definition of a custom entity type
|
|
1408
|
+
|
|
1409
|
+
:param id: (required)
|
|
1410
|
+
:type id: str
|
|
1411
|
+
:param custom_entity_model: (required)
|
|
1412
|
+
:type custom_entity_model: CustomEntityModel
|
|
1413
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1414
|
+
number provided, it will be total request
|
|
1415
|
+
timeout. It can also be a pair (tuple) of
|
|
1416
|
+
(connection, read) timeouts.
|
|
1417
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1418
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1419
|
+
request; this effectively ignores the
|
|
1420
|
+
authentication in the spec for a single request.
|
|
1421
|
+
:type _request_auth: dict, optional
|
|
1422
|
+
:param _content_type: force content-type for the request.
|
|
1423
|
+
:type _content_type: str, Optional
|
|
1424
|
+
:param _headers: set to override the headers for a single
|
|
1425
|
+
request; this effectively ignores the headers
|
|
1426
|
+
in the spec for a single request.
|
|
1427
|
+
:type _headers: dict, optional
|
|
1428
|
+
:param _host_index: set to override the host_index for a single
|
|
1429
|
+
request; this effectively ignores the host_index
|
|
1430
|
+
in the spec for a single request.
|
|
1431
|
+
:type _host_index: int, optional
|
|
1432
|
+
:return: Returns the result object.
|
|
1433
|
+
""" # noqa: E501
|
|
1434
|
+
|
|
1435
|
+
_param = self._update_custom_entity_serialize(
|
|
1436
|
+
id=id,
|
|
1437
|
+
custom_entity_model=custom_entity_model,
|
|
1438
|
+
_request_auth=_request_auth,
|
|
1439
|
+
_content_type=_content_type,
|
|
1440
|
+
_headers=_headers,
|
|
1441
|
+
_host_index=_host_index
|
|
1442
|
+
)
|
|
1443
|
+
|
|
1444
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1445
|
+
'200': "CustomEntityWithMetadata",
|
|
1446
|
+
}
|
|
1447
|
+
response_data = self.api_client.call_api(
|
|
1448
|
+
*_param,
|
|
1449
|
+
_request_timeout=_request_timeout
|
|
1450
|
+
)
|
|
1451
|
+
response_data.read()
|
|
1452
|
+
return self.api_client.response_deserialize(
|
|
1453
|
+
response_data=response_data,
|
|
1454
|
+
response_types_map=_response_types_map,
|
|
1455
|
+
).data
|
|
1456
|
+
|
|
1457
|
+
|
|
1458
|
+
@validate_call
|
|
1459
|
+
def update_custom_entity_with_http_info(
|
|
1460
|
+
self,
|
|
1461
|
+
id: StrictStr,
|
|
1462
|
+
custom_entity_model: CustomEntityModel,
|
|
1463
|
+
_request_timeout: Union[
|
|
1464
|
+
None,
|
|
1465
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1466
|
+
Tuple[
|
|
1467
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1468
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
1469
|
+
]
|
|
1470
|
+
] = None,
|
|
1471
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1472
|
+
_content_type: Optional[StrictStr] = None,
|
|
1473
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1474
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1475
|
+
) -> ApiResponse[CustomEntityWithMetadata]:
|
|
1476
|
+
"""Update a Custom Entity Type
|
|
1477
|
+
|
|
1478
|
+
This end points updates the definition of a custom entity type
|
|
1479
|
+
|
|
1480
|
+
:param id: (required)
|
|
1481
|
+
:type id: str
|
|
1482
|
+
:param custom_entity_model: (required)
|
|
1483
|
+
:type custom_entity_model: CustomEntityModel
|
|
1484
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1485
|
+
number provided, it will be total request
|
|
1486
|
+
timeout. It can also be a pair (tuple) of
|
|
1487
|
+
(connection, read) timeouts.
|
|
1488
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1489
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1490
|
+
request; this effectively ignores the
|
|
1491
|
+
authentication in the spec for a single request.
|
|
1492
|
+
:type _request_auth: dict, optional
|
|
1493
|
+
:param _content_type: force content-type for the request.
|
|
1494
|
+
:type _content_type: str, Optional
|
|
1495
|
+
:param _headers: set to override the headers for a single
|
|
1496
|
+
request; this effectively ignores the headers
|
|
1497
|
+
in the spec for a single request.
|
|
1498
|
+
:type _headers: dict, optional
|
|
1499
|
+
:param _host_index: set to override the host_index for a single
|
|
1500
|
+
request; this effectively ignores the host_index
|
|
1501
|
+
in the spec for a single request.
|
|
1502
|
+
:type _host_index: int, optional
|
|
1503
|
+
:return: Returns the result object.
|
|
1504
|
+
""" # noqa: E501
|
|
1505
|
+
|
|
1506
|
+
_param = self._update_custom_entity_serialize(
|
|
1507
|
+
id=id,
|
|
1508
|
+
custom_entity_model=custom_entity_model,
|
|
1509
|
+
_request_auth=_request_auth,
|
|
1510
|
+
_content_type=_content_type,
|
|
1511
|
+
_headers=_headers,
|
|
1512
|
+
_host_index=_host_index
|
|
1513
|
+
)
|
|
1514
|
+
|
|
1515
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1516
|
+
'200': "CustomEntityWithMetadata",
|
|
1517
|
+
}
|
|
1518
|
+
response_data = self.api_client.call_api(
|
|
1519
|
+
*_param,
|
|
1520
|
+
_request_timeout=_request_timeout
|
|
1521
|
+
)
|
|
1522
|
+
response_data.read()
|
|
1523
|
+
return self.api_client.response_deserialize(
|
|
1524
|
+
response_data=response_data,
|
|
1525
|
+
response_types_map=_response_types_map,
|
|
1526
|
+
)
|
|
1527
|
+
|
|
1528
|
+
|
|
1529
|
+
@validate_call
|
|
1530
|
+
def update_custom_entity_without_preload_content(
|
|
1531
|
+
self,
|
|
1532
|
+
id: StrictStr,
|
|
1533
|
+
custom_entity_model: CustomEntityModel,
|
|
1534
|
+
_request_timeout: Union[
|
|
1535
|
+
None,
|
|
1536
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1537
|
+
Tuple[
|
|
1538
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1539
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
1540
|
+
]
|
|
1541
|
+
] = None,
|
|
1542
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1543
|
+
_content_type: Optional[StrictStr] = None,
|
|
1544
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1545
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1546
|
+
) -> RESTResponseType:
|
|
1547
|
+
"""Update a Custom Entity Type
|
|
1548
|
+
|
|
1549
|
+
This end points updates the definition of a custom entity type
|
|
1550
|
+
|
|
1551
|
+
:param id: (required)
|
|
1552
|
+
:type id: str
|
|
1553
|
+
:param custom_entity_model: (required)
|
|
1554
|
+
:type custom_entity_model: CustomEntityModel
|
|
1555
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1556
|
+
number provided, it will be total request
|
|
1557
|
+
timeout. It can also be a pair (tuple) of
|
|
1558
|
+
(connection, read) timeouts.
|
|
1559
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1560
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1561
|
+
request; this effectively ignores the
|
|
1562
|
+
authentication in the spec for a single request.
|
|
1563
|
+
:type _request_auth: dict, optional
|
|
1564
|
+
:param _content_type: force content-type for the request.
|
|
1565
|
+
:type _content_type: str, Optional
|
|
1566
|
+
:param _headers: set to override the headers for a single
|
|
1567
|
+
request; this effectively ignores the headers
|
|
1568
|
+
in the spec for a single request.
|
|
1569
|
+
:type _headers: dict, optional
|
|
1570
|
+
:param _host_index: set to override the host_index for a single
|
|
1571
|
+
request; this effectively ignores the host_index
|
|
1572
|
+
in the spec for a single request.
|
|
1573
|
+
:type _host_index: int, optional
|
|
1574
|
+
:return: Returns the result object.
|
|
1575
|
+
""" # noqa: E501
|
|
1576
|
+
|
|
1577
|
+
_param = self._update_custom_entity_serialize(
|
|
1578
|
+
id=id,
|
|
1579
|
+
custom_entity_model=custom_entity_model,
|
|
1580
|
+
_request_auth=_request_auth,
|
|
1581
|
+
_content_type=_content_type,
|
|
1582
|
+
_headers=_headers,
|
|
1583
|
+
_host_index=_host_index
|
|
1584
|
+
)
|
|
1585
|
+
|
|
1586
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1587
|
+
'200': "CustomEntityWithMetadata",
|
|
1588
|
+
}
|
|
1589
|
+
response_data = self.api_client.call_api(
|
|
1590
|
+
*_param,
|
|
1591
|
+
_request_timeout=_request_timeout
|
|
1592
|
+
)
|
|
1593
|
+
return response_data.response
|
|
1594
|
+
|
|
1595
|
+
|
|
1596
|
+
def _update_custom_entity_serialize(
|
|
1597
|
+
self,
|
|
1598
|
+
id,
|
|
1599
|
+
custom_entity_model,
|
|
1600
|
+
_request_auth,
|
|
1601
|
+
_content_type,
|
|
1602
|
+
_headers,
|
|
1603
|
+
_host_index,
|
|
1604
|
+
) -> RequestSerialized:
|
|
1605
|
+
|
|
1606
|
+
_host = None
|
|
1607
|
+
|
|
1608
|
+
_collection_formats: Dict[str, str] = {
|
|
1609
|
+
}
|
|
1610
|
+
|
|
1611
|
+
_path_params: Dict[str, str] = {}
|
|
1612
|
+
_query_params: List[Tuple[str, str]] = []
|
|
1613
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
1614
|
+
_form_params: List[Tuple[str, str]] = []
|
|
1615
|
+
_files: Dict[
|
|
1616
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
1617
|
+
] = {}
|
|
1618
|
+
_body_params: Optional[bytes] = None
|
|
1619
|
+
|
|
1620
|
+
# process the path parameters
|
|
1621
|
+
if id is not None:
|
|
1622
|
+
_path_params['id'] = id
|
|
1623
|
+
# process the query parameters
|
|
1624
|
+
# process the header parameters
|
|
1625
|
+
# process the form parameters
|
|
1626
|
+
# process the body parameter
|
|
1627
|
+
if custom_entity_model is not None:
|
|
1628
|
+
_body_params = custom_entity_model
|
|
1629
|
+
|
|
1630
|
+
|
|
1631
|
+
# set the HTTP header `Accept`
|
|
1632
|
+
if 'Accept' not in _header_params:
|
|
1633
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
1634
|
+
[
|
|
1635
|
+
'application/json'
|
|
1636
|
+
]
|
|
1637
|
+
)
|
|
1638
|
+
|
|
1639
|
+
# set the HTTP header `Content-Type`
|
|
1640
|
+
if _content_type:
|
|
1641
|
+
_header_params['Content-Type'] = _content_type
|
|
1642
|
+
else:
|
|
1643
|
+
_default_content_type = (
|
|
1644
|
+
self.api_client.select_header_content_type(
|
|
1645
|
+
[
|
|
1646
|
+
'application/json'
|
|
1647
|
+
]
|
|
1648
|
+
)
|
|
1649
|
+
)
|
|
1650
|
+
if _default_content_type is not None:
|
|
1651
|
+
_header_params['Content-Type'] = _default_content_type
|
|
1652
|
+
|
|
1653
|
+
# authentication setting
|
|
1654
|
+
_auth_settings: List[str] = [
|
|
1655
|
+
'ApiKeyAuth'
|
|
1656
|
+
]
|
|
1657
|
+
|
|
1658
|
+
return self.api_client.param_serialize(
|
|
1659
|
+
method='PUT',
|
|
1660
|
+
resource_path='/api/custom-entitytypes/{id}',
|
|
1661
|
+
path_params=_path_params,
|
|
1662
|
+
query_params=_query_params,
|
|
1663
|
+
header_params=_header_params,
|
|
1664
|
+
body=_body_params,
|
|
1665
|
+
post_params=_form_params,
|
|
1666
|
+
files=_files,
|
|
1667
|
+
auth_settings=_auth_settings,
|
|
1668
|
+
collection_formats=_collection_formats,
|
|
1669
|
+
_host=_host,
|
|
1670
|
+
_request_auth=_request_auth
|
|
1671
|
+
)
|
|
1672
|
+
|
|
1673
|
+
|