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
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"""
|
|
4
4
|
Instana REST API documentation
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
Documentation for INSTANA REST API
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.
|
|
8
|
+
The version of the OpenAPI document: 1.306.1368
|
|
9
9
|
Contact: support@instana.com
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -64,7 +64,7 @@ class ApplicationSettingsApi:
|
|
|
64
64
|
) -> ApplicationConfig:
|
|
65
65
|
"""Add application configuration
|
|
66
66
|
|
|
67
|
-
|
|
67
|
+
For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
68
68
|
|
|
69
69
|
:param new_application_config: (required)
|
|
70
70
|
:type new_application_config: NewApplicationConfig
|
|
@@ -131,7 +131,7 @@ class ApplicationSettingsApi:
|
|
|
131
131
|
) -> ApiResponse[ApplicationConfig]:
|
|
132
132
|
"""Add application configuration
|
|
133
133
|
|
|
134
|
-
|
|
134
|
+
For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
135
135
|
|
|
136
136
|
:param new_application_config: (required)
|
|
137
137
|
:type new_application_config: NewApplicationConfig
|
|
@@ -198,7 +198,7 @@ class ApplicationSettingsApi:
|
|
|
198
198
|
) -> RESTResponseType:
|
|
199
199
|
"""Add application configuration
|
|
200
200
|
|
|
201
|
-
|
|
201
|
+
For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
202
202
|
|
|
203
203
|
:param new_application_config: (required)
|
|
204
204
|
:type new_application_config: NewApplicationConfig
|
|
@@ -338,7 +338,7 @@ class ApplicationSettingsApi:
|
|
|
338
338
|
) -> ManualServiceConfig:
|
|
339
339
|
"""Add manual service configuration
|
|
340
340
|
|
|
341
|
-
|
|
341
|
+
For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
342
342
|
|
|
343
343
|
:param new_manual_service_config: (required)
|
|
344
344
|
:type new_manual_service_config: NewManualServiceConfig
|
|
@@ -405,7 +405,7 @@ class ApplicationSettingsApi:
|
|
|
405
405
|
) -> ApiResponse[ManualServiceConfig]:
|
|
406
406
|
"""Add manual service configuration
|
|
407
407
|
|
|
408
|
-
|
|
408
|
+
For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
409
409
|
|
|
410
410
|
:param new_manual_service_config: (required)
|
|
411
411
|
:type new_manual_service_config: NewManualServiceConfig
|
|
@@ -472,7 +472,7 @@ class ApplicationSettingsApi:
|
|
|
472
472
|
) -> RESTResponseType:
|
|
473
473
|
"""Add manual service configuration
|
|
474
474
|
|
|
475
|
-
|
|
475
|
+
For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
476
476
|
|
|
477
477
|
:param new_manual_service_config: (required)
|
|
478
478
|
:type new_manual_service_config: NewManualServiceConfig
|
|
@@ -612,7 +612,7 @@ class ApplicationSettingsApi:
|
|
|
612
612
|
) -> ServiceConfig:
|
|
613
613
|
"""Add service configuration
|
|
614
614
|
|
|
615
|
-
Use this API endpoint if one wants to create a custom service rule. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
615
|
+
Use this API endpoint if one wants to create a custom service rule. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. ## Errata: The following field is documented in the request schema: - The `id` field is not mandatory and one can't have a service configuration id before creating one configuration. Instana creates it automatically. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
616
616
|
|
|
617
617
|
:param service_config: (required)
|
|
618
618
|
:type service_config: ServiceConfig
|
|
@@ -679,7 +679,7 @@ class ApplicationSettingsApi:
|
|
|
679
679
|
) -> ApiResponse[ServiceConfig]:
|
|
680
680
|
"""Add service configuration
|
|
681
681
|
|
|
682
|
-
Use this API endpoint if one wants to create a custom service rule. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
682
|
+
Use this API endpoint if one wants to create a custom service rule. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. ## Errata: The following field is documented in the request schema: - The `id` field is not mandatory and one can't have a service configuration id before creating one configuration. Instana creates it automatically. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
683
683
|
|
|
684
684
|
:param service_config: (required)
|
|
685
685
|
:type service_config: ServiceConfig
|
|
@@ -746,7 +746,7 @@ class ApplicationSettingsApi:
|
|
|
746
746
|
) -> RESTResponseType:
|
|
747
747
|
"""Add service configuration
|
|
748
748
|
|
|
749
|
-
Use this API endpoint if one wants to create a custom service rule. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
749
|
+
Use this API endpoint if one wants to create a custom service rule. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. ## Errata: The following field is documented in the request schema: - The `id` field is not mandatory and one can't have a service configuration id before creating one configuration. Instana creates it automatically. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
750
750
|
|
|
751
751
|
:param service_config: (required)
|
|
752
752
|
:type service_config: ServiceConfig
|
|
@@ -886,7 +886,7 @@ class ApplicationSettingsApi:
|
|
|
886
886
|
) -> EndpointConfig:
|
|
887
887
|
"""Create endpoint configuration
|
|
888
888
|
|
|
889
|
-
Use this API endpoint if one wants to create an endpoint configuration of a service. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
889
|
+
Use this API endpoint if one wants to create an endpoint configuration of a service. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
890
890
|
|
|
891
891
|
:param endpoint_config: (required)
|
|
892
892
|
:type endpoint_config: EndpointConfig
|
|
@@ -953,7 +953,7 @@ class ApplicationSettingsApi:
|
|
|
953
953
|
) -> ApiResponse[EndpointConfig]:
|
|
954
954
|
"""Create endpoint configuration
|
|
955
955
|
|
|
956
|
-
Use this API endpoint if one wants to create an endpoint configuration of a service. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
956
|
+
Use this API endpoint if one wants to create an endpoint configuration of a service. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
957
957
|
|
|
958
958
|
:param endpoint_config: (required)
|
|
959
959
|
:type endpoint_config: EndpointConfig
|
|
@@ -1020,7 +1020,7 @@ class ApplicationSettingsApi:
|
|
|
1020
1020
|
) -> RESTResponseType:
|
|
1021
1021
|
"""Create endpoint configuration
|
|
1022
1022
|
|
|
1023
|
-
Use this API endpoint if one wants to create an endpoint configuration of a service. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
1023
|
+
Use this API endpoint if one wants to create an endpoint configuration of a service. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
1024
1024
|
|
|
1025
1025
|
:param endpoint_config: (required)
|
|
1026
1026
|
:type endpoint_config: EndpointConfig
|
|
@@ -1160,7 +1160,7 @@ class ApplicationSettingsApi:
|
|
|
1160
1160
|
) -> HttpEndpointConfig:
|
|
1161
1161
|
"""(Deprecated) Create HTTP endpoint configuration
|
|
1162
1162
|
|
|
1163
|
-
This is a deprecated endpoint. Use `Create endpoint configuration` instead. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
1163
|
+
This is a deprecated endpoint. Use `Create endpoint configuration` instead. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
1164
1164
|
|
|
1165
1165
|
:param http_endpoint_config: (required)
|
|
1166
1166
|
:type http_endpoint_config: HttpEndpointConfig
|
|
@@ -1228,7 +1228,7 @@ class ApplicationSettingsApi:
|
|
|
1228
1228
|
) -> ApiResponse[HttpEndpointConfig]:
|
|
1229
1229
|
"""(Deprecated) Create HTTP endpoint configuration
|
|
1230
1230
|
|
|
1231
|
-
This is a deprecated endpoint. Use `Create endpoint configuration` instead. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
1231
|
+
This is a deprecated endpoint. Use `Create endpoint configuration` instead. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
1232
1232
|
|
|
1233
1233
|
:param http_endpoint_config: (required)
|
|
1234
1234
|
:type http_endpoint_config: HttpEndpointConfig
|
|
@@ -1296,7 +1296,7 @@ class ApplicationSettingsApi:
|
|
|
1296
1296
|
) -> RESTResponseType:
|
|
1297
1297
|
"""(Deprecated) Create HTTP endpoint configuration
|
|
1298
1298
|
|
|
1299
|
-
This is a deprecated endpoint. Use `Create endpoint configuration` instead. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
1299
|
+
This is a deprecated endpoint. Use `Create endpoint configuration` instead. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
1300
1300
|
|
|
1301
1301
|
:param http_endpoint_config: (required)
|
|
1302
1302
|
:type http_endpoint_config: HttpEndpointConfig
|
|
@@ -1437,7 +1437,7 @@ class ApplicationSettingsApi:
|
|
|
1437
1437
|
) -> None:
|
|
1438
1438
|
"""Delete application configuration
|
|
1439
1439
|
|
|
1440
|
-
Use this API endpoint if one wants to delete an Application Perspective. This endpoint requires `canConfigureApplications` permission.
|
|
1440
|
+
Use this API endpoint if one wants to delete an Application Perspective. This endpoint requires `canConfigureApplications` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureApplications` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. ## Deprecated Parameters **matchSpecification:** A binary tree structure of match expression connected with binary operator AND or OR. It is replaced by **tagFilterExpression** which is also used in Application Analyze API endpoints. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
1441
1441
|
|
|
1442
1442
|
:param id: (required)
|
|
1443
1443
|
:type id: str
|
|
@@ -1472,6 +1472,9 @@ class ApplicationSettingsApi:
|
|
|
1472
1472
|
)
|
|
1473
1473
|
|
|
1474
1474
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1475
|
+
'204': None,
|
|
1476
|
+
'401': None,
|
|
1477
|
+
'403': None,
|
|
1475
1478
|
}
|
|
1476
1479
|
response_data = self.api_client.call_api(
|
|
1477
1480
|
*_param,
|
|
@@ -1503,7 +1506,7 @@ class ApplicationSettingsApi:
|
|
|
1503
1506
|
) -> ApiResponse[None]:
|
|
1504
1507
|
"""Delete application configuration
|
|
1505
1508
|
|
|
1506
|
-
Use this API endpoint if one wants to delete an Application Perspective. This endpoint requires `canConfigureApplications` permission.
|
|
1509
|
+
Use this API endpoint if one wants to delete an Application Perspective. This endpoint requires `canConfigureApplications` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureApplications` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. ## Deprecated Parameters **matchSpecification:** A binary tree structure of match expression connected with binary operator AND or OR. It is replaced by **tagFilterExpression** which is also used in Application Analyze API endpoints. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
1507
1510
|
|
|
1508
1511
|
:param id: (required)
|
|
1509
1512
|
:type id: str
|
|
@@ -1538,6 +1541,9 @@ class ApplicationSettingsApi:
|
|
|
1538
1541
|
)
|
|
1539
1542
|
|
|
1540
1543
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1544
|
+
'204': None,
|
|
1545
|
+
'401': None,
|
|
1546
|
+
'403': None,
|
|
1541
1547
|
}
|
|
1542
1548
|
response_data = self.api_client.call_api(
|
|
1543
1549
|
*_param,
|
|
@@ -1569,7 +1575,7 @@ class ApplicationSettingsApi:
|
|
|
1569
1575
|
) -> RESTResponseType:
|
|
1570
1576
|
"""Delete application configuration
|
|
1571
1577
|
|
|
1572
|
-
Use this API endpoint if one wants to delete an Application Perspective. This endpoint requires `canConfigureApplications` permission.
|
|
1578
|
+
Use this API endpoint if one wants to delete an Application Perspective. This endpoint requires `canConfigureApplications` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureApplications` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. ## Deprecated Parameters **matchSpecification:** A binary tree structure of match expression connected with binary operator AND or OR. It is replaced by **tagFilterExpression** which is also used in Application Analyze API endpoints. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
1573
1579
|
|
|
1574
1580
|
:param id: (required)
|
|
1575
1581
|
:type id: str
|
|
@@ -1604,6 +1610,9 @@ class ApplicationSettingsApi:
|
|
|
1604
1610
|
)
|
|
1605
1611
|
|
|
1606
1612
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1613
|
+
'204': None,
|
|
1614
|
+
'401': None,
|
|
1615
|
+
'403': None,
|
|
1607
1616
|
}
|
|
1608
1617
|
response_data = self.api_client.call_api(
|
|
1609
1618
|
*_param,
|
|
@@ -1644,13 +1653,6 @@ class ApplicationSettingsApi:
|
|
|
1644
1653
|
# process the body parameter
|
|
1645
1654
|
|
|
1646
1655
|
|
|
1647
|
-
# set the HTTP header `Accept`
|
|
1648
|
-
if 'Accept' not in _header_params:
|
|
1649
|
-
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
1650
|
-
[
|
|
1651
|
-
'application/json'
|
|
1652
|
-
]
|
|
1653
|
-
)
|
|
1654
1656
|
|
|
1655
1657
|
|
|
1656
1658
|
# authentication setting
|
|
@@ -1695,7 +1697,7 @@ class ApplicationSettingsApi:
|
|
|
1695
1697
|
) -> None:
|
|
1696
1698
|
"""Delete endpoint configuration
|
|
1697
1699
|
|
|
1698
|
-
Use this API endpoint if one wants to delete an endpoint configuration of a service. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
1700
|
+
Use this API endpoint if one wants to delete an endpoint configuration of a service. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
1699
1701
|
|
|
1700
1702
|
:param id: (required)
|
|
1701
1703
|
:type id: str
|
|
@@ -1730,6 +1732,9 @@ class ApplicationSettingsApi:
|
|
|
1730
1732
|
)
|
|
1731
1733
|
|
|
1732
1734
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1735
|
+
'204': None,
|
|
1736
|
+
'401': None,
|
|
1737
|
+
'403': None,
|
|
1733
1738
|
}
|
|
1734
1739
|
response_data = self.api_client.call_api(
|
|
1735
1740
|
*_param,
|
|
@@ -1761,7 +1766,7 @@ class ApplicationSettingsApi:
|
|
|
1761
1766
|
) -> ApiResponse[None]:
|
|
1762
1767
|
"""Delete endpoint configuration
|
|
1763
1768
|
|
|
1764
|
-
Use this API endpoint if one wants to delete an endpoint configuration of a service. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
1769
|
+
Use this API endpoint if one wants to delete an endpoint configuration of a service. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
1765
1770
|
|
|
1766
1771
|
:param id: (required)
|
|
1767
1772
|
:type id: str
|
|
@@ -1796,6 +1801,9 @@ class ApplicationSettingsApi:
|
|
|
1796
1801
|
)
|
|
1797
1802
|
|
|
1798
1803
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1804
|
+
'204': None,
|
|
1805
|
+
'401': None,
|
|
1806
|
+
'403': None,
|
|
1799
1807
|
}
|
|
1800
1808
|
response_data = self.api_client.call_api(
|
|
1801
1809
|
*_param,
|
|
@@ -1827,7 +1835,7 @@ class ApplicationSettingsApi:
|
|
|
1827
1835
|
) -> RESTResponseType:
|
|
1828
1836
|
"""Delete endpoint configuration
|
|
1829
1837
|
|
|
1830
|
-
Use this API endpoint if one wants to delete an endpoint configuration of a service. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
1838
|
+
Use this API endpoint if one wants to delete an endpoint configuration of a service. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
1831
1839
|
|
|
1832
1840
|
:param id: (required)
|
|
1833
1841
|
:type id: str
|
|
@@ -1862,6 +1870,9 @@ class ApplicationSettingsApi:
|
|
|
1862
1870
|
)
|
|
1863
1871
|
|
|
1864
1872
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1873
|
+
'204': None,
|
|
1874
|
+
'401': None,
|
|
1875
|
+
'403': None,
|
|
1865
1876
|
}
|
|
1866
1877
|
response_data = self.api_client.call_api(
|
|
1867
1878
|
*_param,
|
|
@@ -1902,13 +1913,6 @@ class ApplicationSettingsApi:
|
|
|
1902
1913
|
# process the body parameter
|
|
1903
1914
|
|
|
1904
1915
|
|
|
1905
|
-
# set the HTTP header `Accept`
|
|
1906
|
-
if 'Accept' not in _header_params:
|
|
1907
|
-
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
1908
|
-
[
|
|
1909
|
-
'application/json'
|
|
1910
|
-
]
|
|
1911
|
-
)
|
|
1912
1916
|
|
|
1913
1917
|
|
|
1914
1918
|
# authentication setting
|
|
@@ -1953,7 +1957,7 @@ class ApplicationSettingsApi:
|
|
|
1953
1957
|
) -> None:
|
|
1954
1958
|
"""(Deprecated) Delete HTTP endpoint configuration
|
|
1955
1959
|
|
|
1956
|
-
This is a deprecated endpoint. Use `Delete endpoint configuration` instead. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
1960
|
+
This is a deprecated endpoint. Use `Delete endpoint configuration` instead. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
1957
1961
|
|
|
1958
1962
|
:param id: (required)
|
|
1959
1963
|
:type id: str
|
|
@@ -2020,7 +2024,7 @@ class ApplicationSettingsApi:
|
|
|
2020
2024
|
) -> ApiResponse[None]:
|
|
2021
2025
|
"""(Deprecated) Delete HTTP endpoint configuration
|
|
2022
2026
|
|
|
2023
|
-
This is a deprecated endpoint. Use `Delete endpoint configuration` instead. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
2027
|
+
This is a deprecated endpoint. Use `Delete endpoint configuration` instead. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
2024
2028
|
|
|
2025
2029
|
:param id: (required)
|
|
2026
2030
|
:type id: str
|
|
@@ -2087,7 +2091,7 @@ class ApplicationSettingsApi:
|
|
|
2087
2091
|
) -> RESTResponseType:
|
|
2088
2092
|
"""(Deprecated) Delete HTTP endpoint configuration
|
|
2089
2093
|
|
|
2090
|
-
This is a deprecated endpoint. Use `Delete endpoint configuration` instead. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
2094
|
+
This is a deprecated endpoint. Use `Delete endpoint configuration` instead. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
2091
2095
|
|
|
2092
2096
|
:param id: (required)
|
|
2093
2097
|
:type id: str
|
|
@@ -2214,7 +2218,7 @@ class ApplicationSettingsApi:
|
|
|
2214
2218
|
) -> None:
|
|
2215
2219
|
"""Delete manual service configuration
|
|
2216
2220
|
|
|
2217
|
-
|
|
2221
|
+
For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
2218
2222
|
|
|
2219
2223
|
:param id: (required)
|
|
2220
2224
|
:type id: str
|
|
@@ -2280,7 +2284,7 @@ class ApplicationSettingsApi:
|
|
|
2280
2284
|
) -> ApiResponse[None]:
|
|
2281
2285
|
"""Delete manual service configuration
|
|
2282
2286
|
|
|
2283
|
-
|
|
2287
|
+
For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
2284
2288
|
|
|
2285
2289
|
:param id: (required)
|
|
2286
2290
|
:type id: str
|
|
@@ -2346,7 +2350,7 @@ class ApplicationSettingsApi:
|
|
|
2346
2350
|
) -> RESTResponseType:
|
|
2347
2351
|
"""Delete manual service configuration
|
|
2348
2352
|
|
|
2349
|
-
|
|
2353
|
+
For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
2350
2354
|
|
|
2351
2355
|
:param id: (required)
|
|
2352
2356
|
:type id: str
|
|
@@ -2472,7 +2476,7 @@ class ApplicationSettingsApi:
|
|
|
2472
2476
|
) -> None:
|
|
2473
2477
|
"""Delete service configuration
|
|
2474
2478
|
|
|
2475
|
-
Use this API endpoint if one wants to delete a service configuration. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
2479
|
+
Use this API endpoint if one wants to delete a service configuration. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
2476
2480
|
|
|
2477
2481
|
:param id: (required)
|
|
2478
2482
|
:type id: str
|
|
@@ -2538,7 +2542,7 @@ class ApplicationSettingsApi:
|
|
|
2538
2542
|
) -> ApiResponse[None]:
|
|
2539
2543
|
"""Delete service configuration
|
|
2540
2544
|
|
|
2541
|
-
Use this API endpoint if one wants to delete a service configuration. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
2545
|
+
Use this API endpoint if one wants to delete a service configuration. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
2542
2546
|
|
|
2543
2547
|
:param id: (required)
|
|
2544
2548
|
:type id: str
|
|
@@ -2604,7 +2608,7 @@ class ApplicationSettingsApi:
|
|
|
2604
2608
|
) -> RESTResponseType:
|
|
2605
2609
|
"""Delete service configuration
|
|
2606
2610
|
|
|
2607
|
-
Use this API endpoint if one wants to delete a service configuration. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
2611
|
+
Use this API endpoint if one wants to delete a service configuration. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
2608
2612
|
|
|
2609
2613
|
:param id: (required)
|
|
2610
2614
|
:type id: str
|
|
@@ -2729,7 +2733,7 @@ class ApplicationSettingsApi:
|
|
|
2729
2733
|
) -> List[ManualServiceConfig]:
|
|
2730
2734
|
"""All manual service configurations
|
|
2731
2735
|
|
|
2732
|
-
|
|
2736
|
+
For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
2733
2737
|
|
|
2734
2738
|
:param _request_timeout: timeout setting for this request. If one
|
|
2735
2739
|
number provided, it will be total request
|
|
@@ -2792,7 +2796,7 @@ class ApplicationSettingsApi:
|
|
|
2792
2796
|
) -> ApiResponse[List[ManualServiceConfig]]:
|
|
2793
2797
|
"""All manual service configurations
|
|
2794
2798
|
|
|
2795
|
-
|
|
2799
|
+
For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
2796
2800
|
|
|
2797
2801
|
:param _request_timeout: timeout setting for this request. If one
|
|
2798
2802
|
number provided, it will be total request
|
|
@@ -2855,7 +2859,7 @@ class ApplicationSettingsApi:
|
|
|
2855
2859
|
) -> RESTResponseType:
|
|
2856
2860
|
"""All manual service configurations
|
|
2857
2861
|
|
|
2858
|
-
|
|
2862
|
+
For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
2859
2863
|
|
|
2860
2864
|
:param _request_timeout: timeout setting for this request. If one
|
|
2861
2865
|
number provided, it will be total request
|
|
@@ -2976,7 +2980,7 @@ class ApplicationSettingsApi:
|
|
|
2976
2980
|
) -> ApplicationConfig:
|
|
2977
2981
|
"""Application configuration
|
|
2978
2982
|
|
|
2979
|
-
Use this API endpoint if one wants to retrieve an Application Perspective with its configuration setting. This endpoint requires `canConfigureApplications` permission.
|
|
2983
|
+
Use this API endpoint if one wants to retrieve an Application Perspective with its configuration setting. This endpoint requires `canConfigureApplications` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureApplications` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Configuration of applications` to `true`. ## Deprecated Parameters **matchSpecification:** A binary tree structure of match expression connected with binary operator AND or OR. It is replaced by **tagFilterExpression** which is also used in Application Analyze API endpoints. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
2980
2984
|
|
|
2981
2985
|
:param id: (required)
|
|
2982
2986
|
:type id: str
|
|
@@ -3012,6 +3016,8 @@ class ApplicationSettingsApi:
|
|
|
3012
3016
|
|
|
3013
3017
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
3014
3018
|
'200': "ApplicationConfig",
|
|
3019
|
+
'403': None,
|
|
3020
|
+
'404': None,
|
|
3015
3021
|
}
|
|
3016
3022
|
response_data = self.api_client.call_api(
|
|
3017
3023
|
*_param,
|
|
@@ -3043,7 +3049,7 @@ class ApplicationSettingsApi:
|
|
|
3043
3049
|
) -> ApiResponse[ApplicationConfig]:
|
|
3044
3050
|
"""Application configuration
|
|
3045
3051
|
|
|
3046
|
-
Use this API endpoint if one wants to retrieve an Application Perspective with its configuration setting. This endpoint requires `canConfigureApplications` permission.
|
|
3052
|
+
Use this API endpoint if one wants to retrieve an Application Perspective with its configuration setting. This endpoint requires `canConfigureApplications` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureApplications` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Configuration of applications` to `true`. ## Deprecated Parameters **matchSpecification:** A binary tree structure of match expression connected with binary operator AND or OR. It is replaced by **tagFilterExpression** which is also used in Application Analyze API endpoints. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
3047
3053
|
|
|
3048
3054
|
:param id: (required)
|
|
3049
3055
|
:type id: str
|
|
@@ -3079,6 +3085,8 @@ class ApplicationSettingsApi:
|
|
|
3079
3085
|
|
|
3080
3086
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
3081
3087
|
'200': "ApplicationConfig",
|
|
3088
|
+
'403': None,
|
|
3089
|
+
'404': None,
|
|
3082
3090
|
}
|
|
3083
3091
|
response_data = self.api_client.call_api(
|
|
3084
3092
|
*_param,
|
|
@@ -3110,7 +3118,7 @@ class ApplicationSettingsApi:
|
|
|
3110
3118
|
) -> RESTResponseType:
|
|
3111
3119
|
"""Application configuration
|
|
3112
3120
|
|
|
3113
|
-
Use this API endpoint if one wants to retrieve an Application Perspective with its configuration setting. This endpoint requires `canConfigureApplications` permission.
|
|
3121
|
+
Use this API endpoint if one wants to retrieve an Application Perspective with its configuration setting. This endpoint requires `canConfigureApplications` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureApplications` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Configuration of applications` to `true`. ## Deprecated Parameters **matchSpecification:** A binary tree structure of match expression connected with binary operator AND or OR. It is replaced by **tagFilterExpression** which is also used in Application Analyze API endpoints. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
3114
3122
|
|
|
3115
3123
|
:param id: (required)
|
|
3116
3124
|
:type id: str
|
|
@@ -3146,6 +3154,8 @@ class ApplicationSettingsApi:
|
|
|
3146
3154
|
|
|
3147
3155
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
3148
3156
|
'200': "ApplicationConfig",
|
|
3157
|
+
'403': None,
|
|
3158
|
+
'404': None,
|
|
3149
3159
|
}
|
|
3150
3160
|
response_data = self.api_client.call_api(
|
|
3151
3161
|
*_param,
|
|
@@ -3236,7 +3246,7 @@ class ApplicationSettingsApi:
|
|
|
3236
3246
|
) -> List[ApplicationConfig]:
|
|
3237
3247
|
"""All Application configurations
|
|
3238
3248
|
|
|
3239
|
-
Use this API endpoint if one wants to retrieve a list of all Application Perspectives with their configuration settings. This endpoint requires `canConfigureApplications` permission.
|
|
3249
|
+
Use this API endpoint if one wants to retrieve a list of all Application Perspectives with their configuration settings. This endpoint requires `canConfigureApplications` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureApplications` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Configuration of applications` to `true`. ## Deprecated Parameters **matchSpecification:** A binary tree sturcture of match expression connected with binary operator AND or OR. It is replaced by **tagFilterExpression** which is also used in Application Analyze API endpoints. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
3240
3250
|
|
|
3241
3251
|
:param _request_timeout: timeout setting for this request. If one
|
|
3242
3252
|
number provided, it will be total request
|
|
@@ -3299,7 +3309,7 @@ class ApplicationSettingsApi:
|
|
|
3299
3309
|
) -> ApiResponse[List[ApplicationConfig]]:
|
|
3300
3310
|
"""All Application configurations
|
|
3301
3311
|
|
|
3302
|
-
Use this API endpoint if one wants to retrieve a list of all Application Perspectives with their configuration settings. This endpoint requires `canConfigureApplications` permission.
|
|
3312
|
+
Use this API endpoint if one wants to retrieve a list of all Application Perspectives with their configuration settings. This endpoint requires `canConfigureApplications` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureApplications` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Configuration of applications` to `true`. ## Deprecated Parameters **matchSpecification:** A binary tree sturcture of match expression connected with binary operator AND or OR. It is replaced by **tagFilterExpression** which is also used in Application Analyze API endpoints. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
3303
3313
|
|
|
3304
3314
|
:param _request_timeout: timeout setting for this request. If one
|
|
3305
3315
|
number provided, it will be total request
|
|
@@ -3362,7 +3372,7 @@ class ApplicationSettingsApi:
|
|
|
3362
3372
|
) -> RESTResponseType:
|
|
3363
3373
|
"""All Application configurations
|
|
3364
3374
|
|
|
3365
|
-
Use this API endpoint if one wants to retrieve a list of all Application Perspectives with their configuration settings. This endpoint requires `canConfigureApplications` permission.
|
|
3375
|
+
Use this API endpoint if one wants to retrieve a list of all Application Perspectives with their configuration settings. This endpoint requires `canConfigureApplications` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureApplications` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Configuration of applications` to `true`. ## Deprecated Parameters **matchSpecification:** A binary tree sturcture of match expression connected with binary operator AND or OR. It is replaced by **tagFilterExpression** which is also used in Application Analyze API endpoints. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
3366
3376
|
|
|
3367
3377
|
:param _request_timeout: timeout setting for this request. If one
|
|
3368
3378
|
number provided, it will be total request
|
|
@@ -3483,7 +3493,7 @@ class ApplicationSettingsApi:
|
|
|
3483
3493
|
) -> EndpointConfig:
|
|
3484
3494
|
"""Endpoint configuration
|
|
3485
3495
|
|
|
3486
|
-
Use this API endpoint if one wants to retrieve the endpoint configuration of a service. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
3496
|
+
Use this API endpoint if one wants to retrieve the endpoint configuration of a service. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
3487
3497
|
|
|
3488
3498
|
:param id: (required)
|
|
3489
3499
|
:type id: str
|
|
@@ -3519,6 +3529,8 @@ class ApplicationSettingsApi:
|
|
|
3519
3529
|
|
|
3520
3530
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
3521
3531
|
'200': "EndpointConfig",
|
|
3532
|
+
'403': None,
|
|
3533
|
+
'404': None,
|
|
3522
3534
|
}
|
|
3523
3535
|
response_data = self.api_client.call_api(
|
|
3524
3536
|
*_param,
|
|
@@ -3550,7 +3562,7 @@ class ApplicationSettingsApi:
|
|
|
3550
3562
|
) -> ApiResponse[EndpointConfig]:
|
|
3551
3563
|
"""Endpoint configuration
|
|
3552
3564
|
|
|
3553
|
-
Use this API endpoint if one wants to retrieve the endpoint configuration of a service. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
3565
|
+
Use this API endpoint if one wants to retrieve the endpoint configuration of a service. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
3554
3566
|
|
|
3555
3567
|
:param id: (required)
|
|
3556
3568
|
:type id: str
|
|
@@ -3586,6 +3598,8 @@ class ApplicationSettingsApi:
|
|
|
3586
3598
|
|
|
3587
3599
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
3588
3600
|
'200': "EndpointConfig",
|
|
3601
|
+
'403': None,
|
|
3602
|
+
'404': None,
|
|
3589
3603
|
}
|
|
3590
3604
|
response_data = self.api_client.call_api(
|
|
3591
3605
|
*_param,
|
|
@@ -3617,7 +3631,7 @@ class ApplicationSettingsApi:
|
|
|
3617
3631
|
) -> RESTResponseType:
|
|
3618
3632
|
"""Endpoint configuration
|
|
3619
3633
|
|
|
3620
|
-
Use this API endpoint if one wants to retrieve the endpoint configuration of a service. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
3634
|
+
Use this API endpoint if one wants to retrieve the endpoint configuration of a service. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
3621
3635
|
|
|
3622
3636
|
:param id: (required)
|
|
3623
3637
|
:type id: str
|
|
@@ -3653,6 +3667,8 @@ class ApplicationSettingsApi:
|
|
|
3653
3667
|
|
|
3654
3668
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
3655
3669
|
'200': "EndpointConfig",
|
|
3670
|
+
'403': None,
|
|
3671
|
+
'404': None,
|
|
3656
3672
|
}
|
|
3657
3673
|
response_data = self.api_client.call_api(
|
|
3658
3674
|
*_param,
|
|
@@ -3743,7 +3759,7 @@ class ApplicationSettingsApi:
|
|
|
3743
3759
|
) -> List[EndpointConfig]:
|
|
3744
3760
|
"""All Endpoint configurations
|
|
3745
3761
|
|
|
3746
|
-
Use this API endpoint if one wants to retrieve a list of all endpoint configurations. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
3762
|
+
Use this API endpoint if one wants to retrieve a list of all endpoint configurations. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
3747
3763
|
|
|
3748
3764
|
:param _request_timeout: timeout setting for this request. If one
|
|
3749
3765
|
number provided, it will be total request
|
|
@@ -3806,7 +3822,7 @@ class ApplicationSettingsApi:
|
|
|
3806
3822
|
) -> ApiResponse[List[EndpointConfig]]:
|
|
3807
3823
|
"""All Endpoint configurations
|
|
3808
3824
|
|
|
3809
|
-
Use this API endpoint if one wants to retrieve a list of all endpoint configurations. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
3825
|
+
Use this API endpoint if one wants to retrieve a list of all endpoint configurations. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
3810
3826
|
|
|
3811
3827
|
:param _request_timeout: timeout setting for this request. If one
|
|
3812
3828
|
number provided, it will be total request
|
|
@@ -3869,7 +3885,7 @@ class ApplicationSettingsApi:
|
|
|
3869
3885
|
) -> RESTResponseType:
|
|
3870
3886
|
"""All Endpoint configurations
|
|
3871
3887
|
|
|
3872
|
-
Use this API endpoint if one wants to retrieve a list of all endpoint configurations. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
3888
|
+
Use this API endpoint if one wants to retrieve a list of all endpoint configurations. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
3873
3889
|
|
|
3874
3890
|
:param _request_timeout: timeout setting for this request. If one
|
|
3875
3891
|
number provided, it will be total request
|
|
@@ -3990,7 +4006,7 @@ class ApplicationSettingsApi:
|
|
|
3990
4006
|
) -> HttpEndpointConfig:
|
|
3991
4007
|
"""(Deprecated) HTTP Endpoint configuration
|
|
3992
4008
|
|
|
3993
|
-
This is a deprecated endpoint. Use `Endpoint configuration` instead. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
4009
|
+
This is a deprecated endpoint. Use `Endpoint configuration` instead. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
3994
4010
|
|
|
3995
4011
|
:param id: (required)
|
|
3996
4012
|
:type id: str
|
|
@@ -4058,7 +4074,7 @@ class ApplicationSettingsApi:
|
|
|
4058
4074
|
) -> ApiResponse[HttpEndpointConfig]:
|
|
4059
4075
|
"""(Deprecated) HTTP Endpoint configuration
|
|
4060
4076
|
|
|
4061
|
-
This is a deprecated endpoint. Use `Endpoint configuration` instead. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
4077
|
+
This is a deprecated endpoint. Use `Endpoint configuration` instead. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
4062
4078
|
|
|
4063
4079
|
:param id: (required)
|
|
4064
4080
|
:type id: str
|
|
@@ -4126,7 +4142,7 @@ class ApplicationSettingsApi:
|
|
|
4126
4142
|
) -> RESTResponseType:
|
|
4127
4143
|
"""(Deprecated) HTTP Endpoint configuration
|
|
4128
4144
|
|
|
4129
|
-
This is a deprecated endpoint. Use `Endpoint configuration` instead. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
4145
|
+
This is a deprecated endpoint. Use `Endpoint configuration` instead. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
4130
4146
|
|
|
4131
4147
|
:param id: (required)
|
|
4132
4148
|
:type id: str
|
|
@@ -4253,7 +4269,7 @@ class ApplicationSettingsApi:
|
|
|
4253
4269
|
) -> List[HttpEndpointConfig]:
|
|
4254
4270
|
"""(Deprecated) All HTTP endpoint configurations
|
|
4255
4271
|
|
|
4256
|
-
This is a deprecated endpoint. Use `All Endpoint configurations` instead. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
4272
|
+
This is a deprecated endpoint. Use `All Endpoint configurations` instead. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
4257
4273
|
|
|
4258
4274
|
:param _request_timeout: timeout setting for this request. If one
|
|
4259
4275
|
number provided, it will be total request
|
|
@@ -4317,7 +4333,7 @@ class ApplicationSettingsApi:
|
|
|
4317
4333
|
) -> ApiResponse[List[HttpEndpointConfig]]:
|
|
4318
4334
|
"""(Deprecated) All HTTP endpoint configurations
|
|
4319
4335
|
|
|
4320
|
-
This is a deprecated endpoint. Use `All Endpoint configurations` instead. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
4336
|
+
This is a deprecated endpoint. Use `All Endpoint configurations` instead. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
4321
4337
|
|
|
4322
4338
|
:param _request_timeout: timeout setting for this request. If one
|
|
4323
4339
|
number provided, it will be total request
|
|
@@ -4381,7 +4397,7 @@ class ApplicationSettingsApi:
|
|
|
4381
4397
|
) -> RESTResponseType:
|
|
4382
4398
|
"""(Deprecated) All HTTP endpoint configurations
|
|
4383
4399
|
|
|
4384
|
-
This is a deprecated endpoint. Use `All Endpoint configurations` instead. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
4400
|
+
This is a deprecated endpoint. Use `All Endpoint configurations` instead. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
4385
4401
|
|
|
4386
4402
|
:param _request_timeout: timeout setting for this request. If one
|
|
4387
4403
|
number provided, it will be total request
|
|
@@ -4503,7 +4519,7 @@ class ApplicationSettingsApi:
|
|
|
4503
4519
|
) -> ServiceConfig:
|
|
4504
4520
|
"""Service configuration
|
|
4505
4521
|
|
|
4506
|
-
Use this API endpoint if one wants to retrieve a particular custom service rule. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
4522
|
+
Use this API endpoint if one wants to retrieve a particular custom service rule. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
4507
4523
|
|
|
4508
4524
|
:param id: (required)
|
|
4509
4525
|
:type id: str
|
|
@@ -4539,6 +4555,9 @@ class ApplicationSettingsApi:
|
|
|
4539
4555
|
|
|
4540
4556
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
4541
4557
|
'200': "ServiceConfig",
|
|
4558
|
+
'401': None,
|
|
4559
|
+
'403': None,
|
|
4560
|
+
'404': None,
|
|
4542
4561
|
}
|
|
4543
4562
|
response_data = self.api_client.call_api(
|
|
4544
4563
|
*_param,
|
|
@@ -4570,7 +4589,7 @@ class ApplicationSettingsApi:
|
|
|
4570
4589
|
) -> ApiResponse[ServiceConfig]:
|
|
4571
4590
|
"""Service configuration
|
|
4572
4591
|
|
|
4573
|
-
Use this API endpoint if one wants to retrieve a particular custom service rule. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
4592
|
+
Use this API endpoint if one wants to retrieve a particular custom service rule. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
4574
4593
|
|
|
4575
4594
|
:param id: (required)
|
|
4576
4595
|
:type id: str
|
|
@@ -4606,6 +4625,9 @@ class ApplicationSettingsApi:
|
|
|
4606
4625
|
|
|
4607
4626
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
4608
4627
|
'200': "ServiceConfig",
|
|
4628
|
+
'401': None,
|
|
4629
|
+
'403': None,
|
|
4630
|
+
'404': None,
|
|
4609
4631
|
}
|
|
4610
4632
|
response_data = self.api_client.call_api(
|
|
4611
4633
|
*_param,
|
|
@@ -4637,7 +4659,7 @@ class ApplicationSettingsApi:
|
|
|
4637
4659
|
) -> RESTResponseType:
|
|
4638
4660
|
"""Service configuration
|
|
4639
4661
|
|
|
4640
|
-
Use this API endpoint if one wants to retrieve a particular custom service rule. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
4662
|
+
Use this API endpoint if one wants to retrieve a particular custom service rule. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
4641
4663
|
|
|
4642
4664
|
:param id: (required)
|
|
4643
4665
|
:type id: str
|
|
@@ -4673,6 +4695,9 @@ class ApplicationSettingsApi:
|
|
|
4673
4695
|
|
|
4674
4696
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
4675
4697
|
'200': "ServiceConfig",
|
|
4698
|
+
'401': None,
|
|
4699
|
+
'403': None,
|
|
4700
|
+
'404': None,
|
|
4676
4701
|
}
|
|
4677
4702
|
response_data = self.api_client.call_api(
|
|
4678
4703
|
*_param,
|
|
@@ -4763,7 +4788,7 @@ class ApplicationSettingsApi:
|
|
|
4763
4788
|
) -> List[ServiceConfig]:
|
|
4764
4789
|
"""All service configurations
|
|
4765
4790
|
|
|
4766
|
-
Use this API endpoint if one wants to retrive a list of all service configurations. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
4791
|
+
Use this API endpoint if one wants to retrive a list of all service configurations. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
4767
4792
|
|
|
4768
4793
|
:param _request_timeout: timeout setting for this request. If one
|
|
4769
4794
|
number provided, it will be total request
|
|
@@ -4826,7 +4851,7 @@ class ApplicationSettingsApi:
|
|
|
4826
4851
|
) -> ApiResponse[List[ServiceConfig]]:
|
|
4827
4852
|
"""All service configurations
|
|
4828
4853
|
|
|
4829
|
-
Use this API endpoint if one wants to retrive a list of all service configurations. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
4854
|
+
Use this API endpoint if one wants to retrive a list of all service configurations. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
4830
4855
|
|
|
4831
4856
|
:param _request_timeout: timeout setting for this request. If one
|
|
4832
4857
|
number provided, it will be total request
|
|
@@ -4889,7 +4914,7 @@ class ApplicationSettingsApi:
|
|
|
4889
4914
|
) -> RESTResponseType:
|
|
4890
4915
|
"""All service configurations
|
|
4891
4916
|
|
|
4892
|
-
Use this API endpoint if one wants to retrive a list of all service configurations. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
4917
|
+
Use this API endpoint if one wants to retrive a list of all service configurations. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
4893
4918
|
|
|
4894
4919
|
:param _request_timeout: timeout setting for this request. If one
|
|
4895
4920
|
number provided, it will be total request
|
|
@@ -5010,7 +5035,7 @@ class ApplicationSettingsApi:
|
|
|
5010
5035
|
) -> None:
|
|
5011
5036
|
"""Order of service configuration
|
|
5012
5037
|
|
|
5013
|
-
Use this API endpoint if one wants to change the order of service configurations aka custom service rules. Note that all service configuration IDs have to be passed in the request to re-order the configurations. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
5038
|
+
Use this API endpoint if one wants to change the order of service configurations aka custom service rules. Note that all service configuration IDs have to be passed in the request to re-order the configurations. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
5014
5039
|
|
|
5015
5040
|
:param request_body: (required)
|
|
5016
5041
|
:type request_body: List[str]
|
|
@@ -5045,6 +5070,10 @@ class ApplicationSettingsApi:
|
|
|
5045
5070
|
)
|
|
5046
5071
|
|
|
5047
5072
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
5073
|
+
'204': None,
|
|
5074
|
+
'400': None,
|
|
5075
|
+
'401': None,
|
|
5076
|
+
'403': None,
|
|
5048
5077
|
}
|
|
5049
5078
|
response_data = self.api_client.call_api(
|
|
5050
5079
|
*_param,
|
|
@@ -5076,7 +5105,7 @@ class ApplicationSettingsApi:
|
|
|
5076
5105
|
) -> ApiResponse[None]:
|
|
5077
5106
|
"""Order of service configuration
|
|
5078
5107
|
|
|
5079
|
-
Use this API endpoint if one wants to change the order of service configurations aka custom service rules. Note that all service configuration IDs have to be passed in the request to re-order the configurations. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
5108
|
+
Use this API endpoint if one wants to change the order of service configurations aka custom service rules. Note that all service configuration IDs have to be passed in the request to re-order the configurations. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
5080
5109
|
|
|
5081
5110
|
:param request_body: (required)
|
|
5082
5111
|
:type request_body: List[str]
|
|
@@ -5111,6 +5140,10 @@ class ApplicationSettingsApi:
|
|
|
5111
5140
|
)
|
|
5112
5141
|
|
|
5113
5142
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
5143
|
+
'204': None,
|
|
5144
|
+
'400': None,
|
|
5145
|
+
'401': None,
|
|
5146
|
+
'403': None,
|
|
5114
5147
|
}
|
|
5115
5148
|
response_data = self.api_client.call_api(
|
|
5116
5149
|
*_param,
|
|
@@ -5142,7 +5175,7 @@ class ApplicationSettingsApi:
|
|
|
5142
5175
|
) -> RESTResponseType:
|
|
5143
5176
|
"""Order of service configuration
|
|
5144
5177
|
|
|
5145
|
-
Use this API endpoint if one wants to change the order of service configurations aka custom service rules. Note that all service configuration IDs have to be passed in the request to re-order the configurations. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
5178
|
+
Use this API endpoint if one wants to change the order of service configurations aka custom service rules. Note that all service configuration IDs have to be passed in the request to re-order the configurations. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
5146
5179
|
|
|
5147
5180
|
:param request_body: (required)
|
|
5148
5181
|
:type request_body: List[str]
|
|
@@ -5177,6 +5210,10 @@ class ApplicationSettingsApi:
|
|
|
5177
5210
|
)
|
|
5178
5211
|
|
|
5179
5212
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
5213
|
+
'204': None,
|
|
5214
|
+
'400': None,
|
|
5215
|
+
'401': None,
|
|
5216
|
+
'403': None,
|
|
5180
5217
|
}
|
|
5181
5218
|
response_data = self.api_client.call_api(
|
|
5182
5219
|
*_param,
|
|
@@ -5218,13 +5255,6 @@ class ApplicationSettingsApi:
|
|
|
5218
5255
|
_body_params = request_body
|
|
5219
5256
|
|
|
5220
5257
|
|
|
5221
|
-
# set the HTTP header `Accept`
|
|
5222
|
-
if 'Accept' not in _header_params:
|
|
5223
|
-
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
5224
|
-
[
|
|
5225
|
-
'application/json'
|
|
5226
|
-
]
|
|
5227
|
-
)
|
|
5228
5258
|
|
|
5229
5259
|
# set the HTTP header `Content-Type`
|
|
5230
5260
|
if _content_type:
|
|
@@ -5283,7 +5313,7 @@ class ApplicationSettingsApi:
|
|
|
5283
5313
|
) -> ApplicationConfig:
|
|
5284
5314
|
"""Update application configuration
|
|
5285
5315
|
|
|
5286
|
-
|
|
5316
|
+
For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
5287
5317
|
|
|
5288
5318
|
:param id: (required)
|
|
5289
5319
|
:type id: str
|
|
@@ -5354,7 +5384,7 @@ class ApplicationSettingsApi:
|
|
|
5354
5384
|
) -> ApiResponse[ApplicationConfig]:
|
|
5355
5385
|
"""Update application configuration
|
|
5356
5386
|
|
|
5357
|
-
|
|
5387
|
+
For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
5358
5388
|
|
|
5359
5389
|
:param id: (required)
|
|
5360
5390
|
:type id: str
|
|
@@ -5425,7 +5455,7 @@ class ApplicationSettingsApi:
|
|
|
5425
5455
|
) -> RESTResponseType:
|
|
5426
5456
|
"""Update application configuration
|
|
5427
5457
|
|
|
5428
|
-
|
|
5458
|
+
For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
5429
5459
|
|
|
5430
5460
|
:param id: (required)
|
|
5431
5461
|
:type id: str
|
|
@@ -5572,7 +5602,7 @@ class ApplicationSettingsApi:
|
|
|
5572
5602
|
) -> ServiceConfig:
|
|
5573
5603
|
"""Update service configuration
|
|
5574
5604
|
|
|
5575
|
-
Use this API endpoint if one wants to update a particular custom service rule. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
5605
|
+
Use this API endpoint if one wants to update a particular custom service rule. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
5576
5606
|
|
|
5577
5607
|
:param id: (required)
|
|
5578
5608
|
:type id: str
|
|
@@ -5643,7 +5673,7 @@ class ApplicationSettingsApi:
|
|
|
5643
5673
|
) -> ApiResponse[ServiceConfig]:
|
|
5644
5674
|
"""Update service configuration
|
|
5645
5675
|
|
|
5646
|
-
Use this API endpoint if one wants to update a particular custom service rule. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
5676
|
+
Use this API endpoint if one wants to update a particular custom service rule. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
5647
5677
|
|
|
5648
5678
|
:param id: (required)
|
|
5649
5679
|
:type id: str
|
|
@@ -5714,7 +5744,7 @@ class ApplicationSettingsApi:
|
|
|
5714
5744
|
) -> RESTResponseType:
|
|
5715
5745
|
"""Update service configuration
|
|
5716
5746
|
|
|
5717
|
-
Use this API endpoint if one wants to update a particular custom service rule. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
5747
|
+
Use this API endpoint if one wants to update a particular custom service rule. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
5718
5748
|
|
|
5719
5749
|
:param id: (required)
|
|
5720
5750
|
:type id: str
|
|
@@ -5860,7 +5890,7 @@ class ApplicationSettingsApi:
|
|
|
5860
5890
|
) -> List[ServiceConfig]:
|
|
5861
5891
|
"""Replace all service configurations
|
|
5862
5892
|
|
|
5863
|
-
Use this API endpoint if one wants to modify 1 or more existing service configuration. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
5893
|
+
Use this API endpoint if one wants to modify 1 or more existing service configuration. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
5864
5894
|
|
|
5865
5895
|
:param service_config: (required)
|
|
5866
5896
|
:type service_config: List[ServiceConfig]
|
|
@@ -5927,7 +5957,7 @@ class ApplicationSettingsApi:
|
|
|
5927
5957
|
) -> ApiResponse[List[ServiceConfig]]:
|
|
5928
5958
|
"""Replace all service configurations
|
|
5929
5959
|
|
|
5930
|
-
Use this API endpoint if one wants to modify 1 or more existing service configuration. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
5960
|
+
Use this API endpoint if one wants to modify 1 or more existing service configuration. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
5931
5961
|
|
|
5932
5962
|
:param service_config: (required)
|
|
5933
5963
|
:type service_config: List[ServiceConfig]
|
|
@@ -5994,7 +6024,7 @@ class ApplicationSettingsApi:
|
|
|
5994
6024
|
) -> RESTResponseType:
|
|
5995
6025
|
"""Replace all service configurations
|
|
5996
6026
|
|
|
5997
|
-
Use this API endpoint if one wants to modify 1 or more existing service configuration. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
6027
|
+
Use this API endpoint if one wants to modify 1 or more existing service configuration. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
5998
6028
|
|
|
5999
6029
|
:param service_config: (required)
|
|
6000
6030
|
:type service_config: List[ServiceConfig]
|
|
@@ -6135,7 +6165,7 @@ class ApplicationSettingsApi:
|
|
|
6135
6165
|
) -> List[ManualServiceConfig]:
|
|
6136
6166
|
"""Replace all manual service configurations
|
|
6137
6167
|
|
|
6138
|
-
|
|
6168
|
+
For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
6139
6169
|
|
|
6140
6170
|
:param new_manual_service_config: (required)
|
|
6141
6171
|
:type new_manual_service_config: List[NewManualServiceConfig]
|
|
@@ -6202,7 +6232,7 @@ class ApplicationSettingsApi:
|
|
|
6202
6232
|
) -> ApiResponse[List[ManualServiceConfig]]:
|
|
6203
6233
|
"""Replace all manual service configurations
|
|
6204
6234
|
|
|
6205
|
-
|
|
6235
|
+
For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
6206
6236
|
|
|
6207
6237
|
:param new_manual_service_config: (required)
|
|
6208
6238
|
:type new_manual_service_config: List[NewManualServiceConfig]
|
|
@@ -6269,7 +6299,7 @@ class ApplicationSettingsApi:
|
|
|
6269
6299
|
) -> RESTResponseType:
|
|
6270
6300
|
"""Replace all manual service configurations
|
|
6271
6301
|
|
|
6272
|
-
|
|
6302
|
+
For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
6273
6303
|
|
|
6274
6304
|
:param new_manual_service_config: (required)
|
|
6275
6305
|
:type new_manual_service_config: List[NewManualServiceConfig]
|
|
@@ -6411,7 +6441,7 @@ class ApplicationSettingsApi:
|
|
|
6411
6441
|
) -> EndpointConfig:
|
|
6412
6442
|
"""Update endpoint configuration
|
|
6413
6443
|
|
|
6414
|
-
Use this API endpoint if one wants to update an existing endpoint configuration of a service. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
6444
|
+
Use this API endpoint if one wants to update an existing endpoint configuration of a service. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
6415
6445
|
|
|
6416
6446
|
:param id: (required)
|
|
6417
6447
|
:type id: str
|
|
@@ -6482,7 +6512,7 @@ class ApplicationSettingsApi:
|
|
|
6482
6512
|
) -> ApiResponse[EndpointConfig]:
|
|
6483
6513
|
"""Update endpoint configuration
|
|
6484
6514
|
|
|
6485
|
-
Use this API endpoint if one wants to update an existing endpoint configuration of a service. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
6515
|
+
Use this API endpoint if one wants to update an existing endpoint configuration of a service. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
6486
6516
|
|
|
6487
6517
|
:param id: (required)
|
|
6488
6518
|
:type id: str
|
|
@@ -6553,7 +6583,7 @@ class ApplicationSettingsApi:
|
|
|
6553
6583
|
) -> RESTResponseType:
|
|
6554
6584
|
"""Update endpoint configuration
|
|
6555
6585
|
|
|
6556
|
-
Use this API endpoint if one wants to update an existing endpoint configuration of a service. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
6586
|
+
Use this API endpoint if one wants to update an existing endpoint configuration of a service. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
6557
6587
|
|
|
6558
6588
|
:param id: (required)
|
|
6559
6589
|
:type id: str
|
|
@@ -6700,7 +6730,7 @@ class ApplicationSettingsApi:
|
|
|
6700
6730
|
) -> HttpEndpointConfig:
|
|
6701
6731
|
"""(Deprecated) Update HTTP endpoint configuration
|
|
6702
6732
|
|
|
6703
|
-
This is a deprecated endpoint. Use `Update endpoint configuration` instead. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
6733
|
+
This is a deprecated endpoint. Use `Update endpoint configuration` instead. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
6704
6734
|
|
|
6705
6735
|
:param id: (required)
|
|
6706
6736
|
:type id: str
|
|
@@ -6772,7 +6802,7 @@ class ApplicationSettingsApi:
|
|
|
6772
6802
|
) -> ApiResponse[HttpEndpointConfig]:
|
|
6773
6803
|
"""(Deprecated) Update HTTP endpoint configuration
|
|
6774
6804
|
|
|
6775
|
-
This is a deprecated endpoint. Use `Update endpoint configuration` instead. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
6805
|
+
This is a deprecated endpoint. Use `Update endpoint configuration` instead. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
6776
6806
|
|
|
6777
6807
|
:param id: (required)
|
|
6778
6808
|
:type id: str
|
|
@@ -6844,7 +6874,7 @@ class ApplicationSettingsApi:
|
|
|
6844
6874
|
) -> RESTResponseType:
|
|
6845
6875
|
"""(Deprecated) Update HTTP endpoint configuration
|
|
6846
6876
|
|
|
6847
|
-
This is a deprecated endpoint. Use `Update endpoint configuration` instead. This endpoint requires `CanConfigureServiceMapping` permission.
|
|
6877
|
+
This is a deprecated endpoint. Use `Update endpoint configuration` instead. This endpoint requires `CanConfigureServiceMapping` permission. One can use `Create or update an API token` endpoint to update the permission by setting `canConfigureServiceMapping` to `true`. If one wants to enable the permission from Instana UI, go to Settings -> Security & Access -> Access Control -> API Token. There one can update the existing token or create a new token and set `Customize service rules and endpoint mapping` to `true`. For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
6848
6878
|
|
|
6849
6879
|
:param id: (required)
|
|
6850
6880
|
:type id: str
|
|
@@ -6992,7 +7022,7 @@ class ApplicationSettingsApi:
|
|
|
6992
7022
|
) -> ManualServiceConfig:
|
|
6993
7023
|
"""Update manual service configuration
|
|
6994
7024
|
|
|
6995
|
-
|
|
7025
|
+
For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
6996
7026
|
|
|
6997
7027
|
:param id: (required)
|
|
6998
7028
|
:type id: str
|
|
@@ -7063,7 +7093,7 @@ class ApplicationSettingsApi:
|
|
|
7063
7093
|
) -> ApiResponse[ManualServiceConfig]:
|
|
7064
7094
|
"""Update manual service configuration
|
|
7065
7095
|
|
|
7066
|
-
|
|
7096
|
+
For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
7067
7097
|
|
|
7068
7098
|
:param id: (required)
|
|
7069
7099
|
:type id: str
|
|
@@ -7134,7 +7164,7 @@ class ApplicationSettingsApi:
|
|
|
7134
7164
|
) -> RESTResponseType:
|
|
7135
7165
|
"""Update manual service configuration
|
|
7136
7166
|
|
|
7137
|
-
|
|
7167
|
+
For more information on Application Settings please access the https://developer.ibm.com/apis/catalog/instana--instana-rest-api/Applications#application-settings.
|
|
7138
7168
|
|
|
7139
7169
|
:param id: (required)
|
|
7140
7170
|
:type id: str
|