From 782091c91da21e18b97b449e6792dd72d5e2f5eb Mon Sep 17 00:00:00 2001 From: Kevin Zou Date: Thu, 15 Feb 2024 16:35:19 -0500 Subject: [PATCH] shorten format strings --- .generator/src/generator/templates/api.j2 | 4 +- .../src/generator/templates/configuration.j2 | 7 +- .../generator/templates/function_mappings.j2 | 2 +- src/datadog/configuration.rs | 7 +- src/datadogV1/api/api_slack_integration.rs | 6 +- src/datadogV2/api/api_dora_metrics.rs | 4 +- src/datadogV2/api/api_incident_services.rs | 10 +- src/datadogV2/api/api_incident_teams.rs | 10 +- src/datadogV2/api/api_incidents.rs | 42 +- src/datadogV2/api/api_metrics.rs | 4 +- src/datadogV2/api/api_security_monitoring.rs | 6 +- src/datadogV2/api/api_service_scorecards.rs | 10 +- src/datadogV2/api/api_usage_metering.rs | 4 +- tests/scenarios/function_mappings.rs | 1050 ++++++++--------- 14 files changed, 580 insertions(+), 586 deletions(-) diff --git a/.generator/src/generator/templates/api.j2 b/.generator/src/generator/templates/api.j2 index 0f247c770..2836feebd 100644 --- a/.generator/src/generator/templates/api.j2 +++ b/.generator/src/generator/templates/api.j2 @@ -112,7 +112,7 @@ impl {{ structName }} { let operation_id = "{{ version }}.{{ operation.operationId | snake_case }}"; {%- if "x-unstable" in operation %} if local_configuration.is_unstable_operation_enabled(operation_id) { - warn!("Using unstable operation {}", operation_id); + warn!("Using unstable operation {operation_id}"); } else { let local_error = UnstableOperationDisabledError { msg: "Operation '{{ version }}.{{ operation.operationId | snake_case }}' is not enabled".to_string(), @@ -131,7 +131,7 @@ impl {{ structName }} { let local_client = &local_configuration.client; let local_uri_str = format!( - "{}{{path}}", + "{}{{path}}", local_configuration.get_operation_host(operation_id) {%- for name, parameter in operation|parameters if parameter.in == "path" %}, {{ name|variable_name }}= {%- if parameter.schema.type == "string" %} diff --git a/.generator/src/generator/templates/configuration.j2 b/.generator/src/generator/templates/configuration.j2 index 50ce317f5..b0b6ce00c 100644 --- a/.generator/src/generator/templates/configuration.j2 +++ b/.generator/src/generator/templates/configuration.j2 @@ -24,12 +24,9 @@ impl ServerConfiguration { for (name, variable) in &self.variables { let value = variables.get(name).unwrap_or(&variable.default_value); if !variable.enum_values.contains(value) && !variable.enum_values.is_empty() { - panic!( - "Value {} for variable {} is not in the enum values", - value, name - ); + panic!("Value {value} for variable {name} is not in the enum values"); } - url = url.replace(&format!("{{ '{{{}}}' }}", name), &value); + url = url.replace(&format!("{{ '{{{name}}}' }}"), &value); } url } diff --git a/.generator/src/generator/templates/function_mappings.j2 b/.generator/src/generator/templates/function_mappings.j2 index 2927e99a0..99dcd6933 100644 --- a/.generator/src/generator/templates/function_mappings.j2 +++ b/.generator/src/generator/templates/function_mappings.j2 @@ -92,7 +92,7 @@ fn test_{{version}}_{{ operation['operationId'] | snake_case }}(world: &mut Data world.response.object = serde_json::to_value(entity).unwrap(); } }, - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; diff --git a/src/datadog/configuration.rs b/src/datadog/configuration.rs index e82ba86c7..9ad2e7fc0 100644 --- a/src/datadog/configuration.rs +++ b/src/datadog/configuration.rs @@ -26,12 +26,9 @@ impl ServerConfiguration { for (name, variable) in &self.variables { let value = variables.get(name).unwrap_or(&variable.default_value); if !variable.enum_values.contains(value) && !variable.enum_values.is_empty() { - panic!( - "Value {} for variable {} is not in the enum values", - value, name - ); + panic!("Value {value} for variable {name} is not in the enum values"); } - url = url.replace(&format!("{{{}}}", name), &value); + url = url.replace(&format!("{{{name}}}"), &value); } url } diff --git a/src/datadogV1/api/api_slack_integration.rs b/src/datadogV1/api/api_slack_integration.rs index cdfbb1c5e..1e3e24d04 100644 --- a/src/datadogV1/api/api_slack_integration.rs +++ b/src/datadogV1/api/api_slack_integration.rs @@ -201,7 +201,7 @@ impl SlackIntegrationAPI { let local_client = &local_configuration.client; let local_uri_str = format!( - "{}/api/v1/integration/slack/configuration/accounts/{account_name}/channels/{channel_name}", + "{}/api/v1/integration/slack/configuration/accounts/{account_name}/channels/{channel_name}", local_configuration.get_operation_host(operation_id), account_name= urlencode(account_name) , channel_name= @@ -355,7 +355,7 @@ impl SlackIntegrationAPI { let local_client = &local_configuration.client; let local_uri_str = format!( - "{}/api/v1/integration/slack/configuration/accounts/{account_name}/channels/{channel_name}", + "{}/api/v1/integration/slack/configuration/accounts/{account_name}/channels/{channel_name}", local_configuration.get_operation_host(operation_id), account_name= urlencode(account_name) , channel_name= @@ -437,7 +437,7 @@ impl SlackIntegrationAPI { let local_client = &local_configuration.client; let local_uri_str = format!( - "{}/api/v1/integration/slack/configuration/accounts/{account_name}/channels/{channel_name}", + "{}/api/v1/integration/slack/configuration/accounts/{account_name}/channels/{channel_name}", local_configuration.get_operation_host(operation_id), account_name= urlencode(account_name) , channel_name= diff --git a/src/datadogV2/api/api_dora_metrics.rs b/src/datadogV2/api/api_dora_metrics.rs index 9f0537f8f..e3354d05a 100644 --- a/src/datadogV2/api/api_dora_metrics.rs +++ b/src/datadogV2/api/api_dora_metrics.rs @@ -82,7 +82,7 @@ impl DORAMetricsAPI { let local_configuration = &self.config; let operation_id = "v2.create_dora_deployment"; if local_configuration.is_unstable_operation_enabled(operation_id) { - warn!("Using unstable operation {}", operation_id); + warn!("Using unstable operation {operation_id}"); } else { let local_error = UnstableOperationDisabledError { msg: "Operation 'v2.create_dora_deployment' is not enabled".to_string(), @@ -174,7 +174,7 @@ impl DORAMetricsAPI { let local_configuration = &self.config; let operation_id = "v2.create_dora_incident"; if local_configuration.is_unstable_operation_enabled(operation_id) { - warn!("Using unstable operation {}", operation_id); + warn!("Using unstable operation {operation_id}"); } else { let local_error = UnstableOperationDisabledError { msg: "Operation 'v2.create_dora_incident' is not enabled".to_string(), diff --git a/src/datadogV2/api/api_incident_services.rs b/src/datadogV2/api/api_incident_services.rs index a1a5efab4..cdf20bfd5 100644 --- a/src/datadogV2/api/api_incident_services.rs +++ b/src/datadogV2/api/api_incident_services.rs @@ -163,7 +163,7 @@ impl IncidentServicesAPI { let local_configuration = &self.config; let operation_id = "v2.create_incident_service"; if local_configuration.is_unstable_operation_enabled(operation_id) { - warn!("Using unstable operation {}", operation_id); + warn!("Using unstable operation {operation_id}"); } else { let local_error = UnstableOperationDisabledError { msg: "Operation 'v2.create_incident_service' is not enabled".to_string(), @@ -249,7 +249,7 @@ impl IncidentServicesAPI { let local_configuration = &self.config; let operation_id = "v2.delete_incident_service"; if local_configuration.is_unstable_operation_enabled(operation_id) { - warn!("Using unstable operation {}", operation_id); + warn!("Using unstable operation {operation_id}"); } else { let local_error = UnstableOperationDisabledError { msg: "Operation 'v2.delete_incident_service' is not enabled".to_string(), @@ -337,7 +337,7 @@ impl IncidentServicesAPI { let local_configuration = &self.config; let operation_id = "v2.get_incident_service"; if local_configuration.is_unstable_operation_enabled(operation_id) { - warn!("Using unstable operation {}", operation_id); + warn!("Using unstable operation {operation_id}"); } else { let local_error = UnstableOperationDisabledError { msg: "Operation 'v2.get_incident_service' is not enabled".to_string(), @@ -428,7 +428,7 @@ impl IncidentServicesAPI { let local_configuration = &self.config; let operation_id = "v2.list_incident_services"; if local_configuration.is_unstable_operation_enabled(operation_id) { - warn!("Using unstable operation {}", operation_id); + warn!("Using unstable operation {operation_id}"); } else { let local_error = UnstableOperationDisabledError { msg: "Operation 'v2.list_incident_services' is not enabled".to_string(), @@ -538,7 +538,7 @@ impl IncidentServicesAPI { let local_configuration = &self.config; let operation_id = "v2.update_incident_service"; if local_configuration.is_unstable_operation_enabled(operation_id) { - warn!("Using unstable operation {}", operation_id); + warn!("Using unstable operation {operation_id}"); } else { let local_error = UnstableOperationDisabledError { msg: "Operation 'v2.update_incident_service' is not enabled".to_string(), diff --git a/src/datadogV2/api/api_incident_teams.rs b/src/datadogV2/api/api_incident_teams.rs index 45d70c751..8a93f95a1 100644 --- a/src/datadogV2/api/api_incident_teams.rs +++ b/src/datadogV2/api/api_incident_teams.rs @@ -161,7 +161,7 @@ impl IncidentTeamsAPI { let local_configuration = &self.config; let operation_id = "v2.create_incident_team"; if local_configuration.is_unstable_operation_enabled(operation_id) { - warn!("Using unstable operation {}", operation_id); + warn!("Using unstable operation {operation_id}"); } else { let local_error = UnstableOperationDisabledError { msg: "Operation 'v2.create_incident_team' is not enabled".to_string(), @@ -244,7 +244,7 @@ impl IncidentTeamsAPI { let local_configuration = &self.config; let operation_id = "v2.delete_incident_team"; if local_configuration.is_unstable_operation_enabled(operation_id) { - warn!("Using unstable operation {}", operation_id); + warn!("Using unstable operation {operation_id}"); } else { let local_error = UnstableOperationDisabledError { msg: "Operation 'v2.delete_incident_team' is not enabled".to_string(), @@ -327,7 +327,7 @@ impl IncidentTeamsAPI { let local_configuration = &self.config; let operation_id = "v2.get_incident_team"; if local_configuration.is_unstable_operation_enabled(operation_id) { - warn!("Using unstable operation {}", operation_id); + warn!("Using unstable operation {operation_id}"); } else { let local_error = UnstableOperationDisabledError { msg: "Operation 'v2.get_incident_team' is not enabled".to_string(), @@ -416,7 +416,7 @@ impl IncidentTeamsAPI { let local_configuration = &self.config; let operation_id = "v2.list_incident_teams"; if local_configuration.is_unstable_operation_enabled(operation_id) { - warn!("Using unstable operation {}", operation_id); + warn!("Using unstable operation {operation_id}"); } else { let local_error = UnstableOperationDisabledError { msg: "Operation 'v2.list_incident_teams' is not enabled".to_string(), @@ -524,7 +524,7 @@ impl IncidentTeamsAPI { let local_configuration = &self.config; let operation_id = "v2.update_incident_team"; if local_configuration.is_unstable_operation_enabled(operation_id) { - warn!("Using unstable operation {}", operation_id); + warn!("Using unstable operation {operation_id}"); } else { let local_error = UnstableOperationDisabledError { msg: "Operation 'v2.update_incident_team' is not enabled".to_string(), diff --git a/src/datadogV2/api/api_incidents.rs b/src/datadogV2/api/api_incidents.rs index b4acc4857..c210a73f3 100644 --- a/src/datadogV2/api/api_incidents.rs +++ b/src/datadogV2/api/api_incidents.rs @@ -416,7 +416,7 @@ impl IncidentsAPI { let local_configuration = &self.config; let operation_id = "v2.create_incident"; if local_configuration.is_unstable_operation_enabled(operation_id) { - warn!("Using unstable operation {}", operation_id); + warn!("Using unstable operation {operation_id}"); } else { let local_error = UnstableOperationDisabledError { msg: "Operation 'v2.create_incident' is not enabled".to_string(), @@ -510,7 +510,7 @@ impl IncidentsAPI { let local_configuration = &self.config; let operation_id = "v2.create_incident_integration"; if local_configuration.is_unstable_operation_enabled(operation_id) { - warn!("Using unstable operation {}", operation_id); + warn!("Using unstable operation {operation_id}"); } else { let local_error = UnstableOperationDisabledError { msg: "Operation 'v2.create_incident_integration' is not enabled".to_string(), @@ -603,7 +603,7 @@ impl IncidentsAPI { let local_configuration = &self.config; let operation_id = "v2.create_incident_todo"; if local_configuration.is_unstable_operation_enabled(operation_id) { - warn!("Using unstable operation {}", operation_id); + warn!("Using unstable operation {operation_id}"); } else { let local_error = UnstableOperationDisabledError { msg: "Operation 'v2.create_incident_todo' is not enabled".to_string(), @@ -687,7 +687,7 @@ impl IncidentsAPI { let local_configuration = &self.config; let operation_id = "v2.delete_incident"; if local_configuration.is_unstable_operation_enabled(operation_id) { - warn!("Using unstable operation {}", operation_id); + warn!("Using unstable operation {operation_id}"); } else { let local_error = UnstableOperationDisabledError { msg: "Operation 'v2.delete_incident' is not enabled".to_string(), @@ -767,7 +767,7 @@ impl IncidentsAPI { let local_configuration = &self.config; let operation_id = "v2.delete_incident_integration"; if local_configuration.is_unstable_operation_enabled(operation_id) { - warn!("Using unstable operation {}", operation_id); + warn!("Using unstable operation {operation_id}"); } else { let local_error = UnstableOperationDisabledError { msg: "Operation 'v2.delete_incident_integration' is not enabled".to_string(), @@ -778,7 +778,7 @@ impl IncidentsAPI { let local_client = &local_configuration.client; let local_uri_str = format!( - "{}/api/v2/incidents/{incident_id}/relationships/integrations/{integration_metadata_id}", + "{}/api/v2/incidents/{incident_id}/relationships/integrations/{integration_metadata_id}", local_configuration.get_operation_host(operation_id), incident_id= urlencode(incident_id) , integration_metadata_id= @@ -849,7 +849,7 @@ impl IncidentsAPI { let local_configuration = &self.config; let operation_id = "v2.delete_incident_todo"; if local_configuration.is_unstable_operation_enabled(operation_id) { - warn!("Using unstable operation {}", operation_id); + warn!("Using unstable operation {operation_id}"); } else { let local_error = UnstableOperationDisabledError { msg: "Operation 'v2.delete_incident_todo' is not enabled".to_string(), @@ -928,7 +928,7 @@ impl IncidentsAPI { let local_configuration = &self.config; let operation_id = "v2.get_incident"; if local_configuration.is_unstable_operation_enabled(operation_id) { - warn!("Using unstable operation {}", operation_id); + warn!("Using unstable operation {operation_id}"); } else { let local_error = UnstableOperationDisabledError { msg: "Operation 'v2.get_incident' is not enabled".to_string(), @@ -1030,7 +1030,7 @@ impl IncidentsAPI { let local_configuration = &self.config; let operation_id = "v2.get_incident_integration"; if local_configuration.is_unstable_operation_enabled(operation_id) { - warn!("Using unstable operation {}", operation_id); + warn!("Using unstable operation {operation_id}"); } else { let local_error = UnstableOperationDisabledError { msg: "Operation 'v2.get_incident_integration' is not enabled".to_string(), @@ -1041,7 +1041,7 @@ impl IncidentsAPI { let local_client = &local_configuration.client; let local_uri_str = format!( - "{}/api/v2/incidents/{incident_id}/relationships/integrations/{integration_metadata_id}", + "{}/api/v2/incidents/{incident_id}/relationships/integrations/{integration_metadata_id}", local_configuration.get_operation_host(operation_id), incident_id= urlencode(incident_id) , integration_metadata_id= @@ -1118,7 +1118,7 @@ impl IncidentsAPI { let local_configuration = &self.config; let operation_id = "v2.get_incident_todo"; if local_configuration.is_unstable_operation_enabled(operation_id) { - warn!("Using unstable operation {}", operation_id); + warn!("Using unstable operation {operation_id}"); } else { let local_error = UnstableOperationDisabledError { msg: "Operation 'v2.get_incident_todo' is not enabled".to_string(), @@ -1207,7 +1207,7 @@ impl IncidentsAPI { let local_configuration = &self.config; let operation_id = "v2.list_incident_attachments"; if local_configuration.is_unstable_operation_enabled(operation_id) { - warn!("Using unstable operation {}", operation_id); + warn!("Using unstable operation {operation_id}"); } else { let local_error = UnstableOperationDisabledError { msg: "Operation 'v2.list_incident_attachments' is not enabled".to_string(), @@ -1320,7 +1320,7 @@ impl IncidentsAPI { let local_configuration = &self.config; let operation_id = "v2.list_incident_integrations"; if local_configuration.is_unstable_operation_enabled(operation_id) { - warn!("Using unstable operation {}", operation_id); + warn!("Using unstable operation {operation_id}"); } else { let local_error = UnstableOperationDisabledError { msg: "Operation 'v2.list_incident_integrations' is not enabled".to_string(), @@ -1404,7 +1404,7 @@ impl IncidentsAPI { let local_configuration = &self.config; let operation_id = "v2.list_incident_todos"; if local_configuration.is_unstable_operation_enabled(operation_id) { - warn!("Using unstable operation {}", operation_id); + warn!("Using unstable operation {operation_id}"); } else { let local_error = UnstableOperationDisabledError { msg: "Operation 'v2.list_incident_todos' is not enabled".to_string(), @@ -1484,7 +1484,7 @@ impl IncidentsAPI { let local_configuration = &self.config; let operation_id = "v2.list_incidents"; if local_configuration.is_unstable_operation_enabled(operation_id) { - warn!("Using unstable operation {}", operation_id); + warn!("Using unstable operation {operation_id}"); } else { let local_error = UnstableOperationDisabledError { msg: "Operation 'v2.list_incidents' is not enabled".to_string(), @@ -1591,7 +1591,7 @@ impl IncidentsAPI { let local_configuration = &self.config; let operation_id = "v2.search_incidents"; if local_configuration.is_unstable_operation_enabled(operation_id) { - warn!("Using unstable operation {}", operation_id); + warn!("Using unstable operation {operation_id}"); } else { let local_error = UnstableOperationDisabledError { msg: "Operation 'v2.search_incidents' is not enabled".to_string(), @@ -1701,7 +1701,7 @@ impl IncidentsAPI { let local_configuration = &self.config; let operation_id = "v2.update_incident"; if local_configuration.is_unstable_operation_enabled(operation_id) { - warn!("Using unstable operation {}", operation_id); + warn!("Using unstable operation {operation_id}"); } else { let local_error = UnstableOperationDisabledError { msg: "Operation 'v2.update_incident' is not enabled".to_string(), @@ -1813,7 +1813,7 @@ impl IncidentsAPI { let local_configuration = &self.config; let operation_id = "v2.update_incident_attachments"; if local_configuration.is_unstable_operation_enabled(operation_id) { - warn!("Using unstable operation {}", operation_id); + warn!("Using unstable operation {operation_id}"); } else { let local_error = UnstableOperationDisabledError { msg: "Operation 'v2.update_incident_attachments' is not enabled".to_string(), @@ -1925,7 +1925,7 @@ impl IncidentsAPI { let local_configuration = &self.config; let operation_id = "v2.update_incident_integration"; if local_configuration.is_unstable_operation_enabled(operation_id) { - warn!("Using unstable operation {}", operation_id); + warn!("Using unstable operation {operation_id}"); } else { let local_error = UnstableOperationDisabledError { msg: "Operation 'v2.update_incident_integration' is not enabled".to_string(), @@ -1936,7 +1936,7 @@ impl IncidentsAPI { let local_client = &local_configuration.client; let local_uri_str = format!( - "{}/api/v2/incidents/{incident_id}/relationships/integrations/{integration_metadata_id}", + "{}/api/v2/incidents/{incident_id}/relationships/integrations/{integration_metadata_id}", local_configuration.get_operation_host(operation_id), incident_id= urlencode(incident_id) , integration_metadata_id= @@ -2022,7 +2022,7 @@ impl IncidentsAPI { let local_configuration = &self.config; let operation_id = "v2.update_incident_todo"; if local_configuration.is_unstable_operation_enabled(operation_id) { - warn!("Using unstable operation {}", operation_id); + warn!("Using unstable operation {operation_id}"); } else { let local_error = UnstableOperationDisabledError { msg: "Operation 'v2.update_incident_todo' is not enabled".to_string(), diff --git a/src/datadogV2/api/api_metrics.rs b/src/datadogV2/api/api_metrics.rs index 40ef68a60..d2635b060 100644 --- a/src/datadogV2/api/api_metrics.rs +++ b/src/datadogV2/api/api_metrics.rs @@ -1257,7 +1257,7 @@ impl MetricsAPI { let local_configuration = &self.config; let operation_id = "v2.query_scalar_data"; if local_configuration.is_unstable_operation_enabled(operation_id) { - warn!("Using unstable operation {}", operation_id); + warn!("Using unstable operation {operation_id}"); } else { let local_error = UnstableOperationDisabledError { msg: "Operation 'v2.query_scalar_data' is not enabled".to_string(), @@ -1348,7 +1348,7 @@ impl MetricsAPI { let local_configuration = &self.config; let operation_id = "v2.query_timeseries_data"; if local_configuration.is_unstable_operation_enabled(operation_id) { - warn!("Using unstable operation {}", operation_id); + warn!("Using unstable operation {operation_id}"); } else { let local_error = UnstableOperationDisabledError { msg: "Operation 'v2.query_timeseries_data' is not enabled".to_string(), diff --git a/src/datadogV2/api/api_security_monitoring.rs b/src/datadogV2/api/api_security_monitoring.rs index ceafc7e0e..57f229fdd 100644 --- a/src/datadogV2/api/api_security_monitoring.rs +++ b/src/datadogV2/api/api_security_monitoring.rs @@ -1023,7 +1023,7 @@ impl SecurityMonitoringAPI { let local_configuration = &self.config; let operation_id = "v2.get_finding"; if local_configuration.is_unstable_operation_enabled(operation_id) { - warn!("Using unstable operation {}", operation_id); + warn!("Using unstable operation {operation_id}"); } else { let local_error = UnstableOperationDisabledError { msg: "Operation 'v2.get_finding' is not enabled".to_string(), @@ -1411,7 +1411,7 @@ impl SecurityMonitoringAPI { let local_configuration = &self.config; let operation_id = "v2.list_findings"; if local_configuration.is_unstable_operation_enabled(operation_id) { - warn!("Using unstable operation {}", operation_id); + warn!("Using unstable operation {operation_id}"); } else { let local_error = UnstableOperationDisabledError { msg: "Operation 'v2.list_findings' is not enabled".to_string(), @@ -1834,7 +1834,7 @@ impl SecurityMonitoringAPI { let local_configuration = &self.config; let operation_id = "v2.mute_findings"; if local_configuration.is_unstable_operation_enabled(operation_id) { - warn!("Using unstable operation {}", operation_id); + warn!("Using unstable operation {operation_id}"); } else { let local_error = UnstableOperationDisabledError { msg: "Operation 'v2.mute_findings' is not enabled".to_string(), diff --git a/src/datadogV2/api/api_service_scorecards.rs b/src/datadogV2/api/api_service_scorecards.rs index 4fed7eedf..7bc50c95b 100644 --- a/src/datadogV2/api/api_service_scorecards.rs +++ b/src/datadogV2/api/api_service_scorecards.rs @@ -262,7 +262,7 @@ impl ServiceScorecardsAPI { let local_configuration = &self.config; let operation_id = "v2.create_scorecard_outcomes_batch"; if local_configuration.is_unstable_operation_enabled(operation_id) { - warn!("Using unstable operation {}", operation_id); + warn!("Using unstable operation {operation_id}"); } else { let local_error = UnstableOperationDisabledError { msg: "Operation 'v2.create_scorecard_outcomes_batch' is not enabled".to_string(), @@ -349,7 +349,7 @@ impl ServiceScorecardsAPI { let local_configuration = &self.config; let operation_id = "v2.create_scorecard_rule"; if local_configuration.is_unstable_operation_enabled(operation_id) { - warn!("Using unstable operation {}", operation_id); + warn!("Using unstable operation {operation_id}"); } else { let local_error = UnstableOperationDisabledError { msg: "Operation 'v2.create_scorecard_rule' is not enabled".to_string(), @@ -432,7 +432,7 @@ impl ServiceScorecardsAPI { let local_configuration = &self.config; let operation_id = "v2.delete_scorecard_rule"; if local_configuration.is_unstable_operation_enabled(operation_id) { - warn!("Using unstable operation {}", operation_id); + warn!("Using unstable operation {operation_id}"); } else { let local_error = UnstableOperationDisabledError { msg: "Operation 'v2.delete_scorecard_rule' is not enabled".to_string(), @@ -511,7 +511,7 @@ impl ServiceScorecardsAPI { let local_configuration = &self.config; let operation_id = "v2.list_scorecard_outcomes"; if local_configuration.is_unstable_operation_enabled(operation_id) { - warn!("Using unstable operation {}", operation_id); + warn!("Using unstable operation {operation_id}"); } else { let local_error = UnstableOperationDisabledError { msg: "Operation 'v2.list_scorecard_outcomes' is not enabled".to_string(), @@ -646,7 +646,7 @@ impl ServiceScorecardsAPI { let local_configuration = &self.config; let operation_id = "v2.list_scorecard_rules"; if local_configuration.is_unstable_operation_enabled(operation_id) { - warn!("Using unstable operation {}", operation_id); + warn!("Using unstable operation {operation_id}"); } else { let local_error = UnstableOperationDisabledError { msg: "Operation 'v2.list_scorecard_rules' is not enabled".to_string(), diff --git a/src/datadogV2/api/api_usage_metering.rs b/src/datadogV2/api/api_usage_metering.rs index 9216638f3..fbb5eb982 100644 --- a/src/datadogV2/api/api_usage_metering.rs +++ b/src/datadogV2/api/api_usage_metering.rs @@ -395,7 +395,7 @@ impl UsageMeteringAPI { let local_configuration = &self.config; let operation_id = "v2.get_active_billing_dimensions"; if local_configuration.is_unstable_operation_enabled(operation_id) { - warn!("Using unstable operation {}", operation_id); + warn!("Using unstable operation {operation_id}"); } else { let local_error = UnstableOperationDisabledError { msg: "Operation 'v2.get_active_billing_dimensions' is not enabled".to_string(), @@ -929,7 +929,7 @@ impl UsageMeteringAPI { let local_configuration = &self.config; let operation_id = "v2.get_monthly_cost_attribution"; if local_configuration.is_unstable_operation_enabled(operation_id) { - warn!("Using unstable operation {}", operation_id); + warn!("Using unstable operation {operation_id}"); } else { let local_error = UnstableOperationDisabledError { msg: "Operation 'v2.get_monthly_cost_attribution' is not enabled".to_string(), diff --git a/tests/scenarios/function_mappings.rs b/tests/scenarios/function_mappings.rs index e7f77fbba..d922beac0 100644 --- a/tests/scenarios/function_mappings.rs +++ b/tests/scenarios/function_mappings.rs @@ -2484,7 +2484,7 @@ fn test_v1_get_ip_ranges(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -2508,7 +2508,7 @@ fn test_v1_list_api_keys(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -2533,7 +2533,7 @@ fn test_v1_create_api_key(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -2558,7 +2558,7 @@ fn test_v1_delete_api_key(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -2583,7 +2583,7 @@ fn test_v1_get_api_key(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -2609,7 +2609,7 @@ fn test_v1_update_api_key(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -2633,7 +2633,7 @@ fn test_v1_list_application_keys(world: &mut DatadogWorld, _parameters: &HashMap world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -2658,7 +2658,7 @@ fn test_v1_create_application_key(world: &mut DatadogWorld, _parameters: &HashMa world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -2683,7 +2683,7 @@ fn test_v1_delete_application_key(world: &mut DatadogWorld, _parameters: &HashMa world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -2708,7 +2708,7 @@ fn test_v1_get_application_key(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -2734,7 +2734,7 @@ fn test_v1_update_application_key(world: &mut DatadogWorld, _parameters: &HashMa world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -2759,7 +2759,7 @@ fn test_v1_submit_service_check(world: &mut DatadogWorld, _parameters: &HashMap< world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -2812,7 +2812,7 @@ fn test_v1_get_daily_custom_reports( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -2841,7 +2841,7 @@ fn test_v1_get_specified_daily_custom_reports( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -2894,7 +2894,7 @@ fn test_v1_get_monthly_custom_reports( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -2923,7 +2923,7 @@ fn test_v1_get_specified_monthly_custom_reports( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -2954,7 +2954,7 @@ fn test_v1_get_usage_analyzed_logs(world: &mut DatadogWorld, _parameters: &HashM world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -3020,7 +3020,7 @@ fn test_v1_get_usage_attribution(world: &mut DatadogWorld, _parameters: &HashMap world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -3051,7 +3051,7 @@ fn test_v1_get_usage_audit_logs(world: &mut DatadogWorld, _parameters: &HashMap< world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -3082,7 +3082,7 @@ fn test_v1_get_usage_lambda(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -3116,7 +3116,7 @@ fn test_v1_get_usage_billable_summary( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -3147,7 +3147,7 @@ fn test_v1_get_usage_ci_app(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -3186,7 +3186,7 @@ fn test_v1_get_usage_cloud_security_posture_management( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -3217,7 +3217,7 @@ fn test_v1_get_usage_cws(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -3248,7 +3248,7 @@ fn test_v1_get_usage_dbm(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -3279,7 +3279,7 @@ fn test_v1_get_usage_fargate(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -3310,7 +3310,7 @@ fn test_v1_get_usage_hosts(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -3368,7 +3368,7 @@ fn test_v1_get_hourly_usage_attribution( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -3399,7 +3399,7 @@ fn test_v1_get_incident_management(world: &mut DatadogWorld, _parameters: &HashM world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -3430,7 +3430,7 @@ fn test_v1_get_usage_indexed_spans(world: &mut DatadogWorld, _parameters: &HashM world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -3461,7 +3461,7 @@ fn test_v1_get_ingested_spans(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -3497,7 +3497,7 @@ fn test_v1_get_usage_internet_of_things( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -3528,7 +3528,7 @@ fn test_v1_get_usage_logs(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -3564,7 +3564,7 @@ fn test_v1_get_usage_logs_by_retention( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -3603,7 +3603,7 @@ fn test_v1_get_usage_logs_by_index(world: &mut DatadogWorld, _parameters: &HashM world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -3675,7 +3675,7 @@ fn test_v1_get_monthly_usage_attribution( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -3706,7 +3706,7 @@ fn test_v1_get_usage_network_flows(world: &mut DatadogWorld, _parameters: &HashM world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -3737,7 +3737,7 @@ fn test_v1_get_usage_network_hosts(world: &mut DatadogWorld, _parameters: &HashM world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -3771,7 +3771,7 @@ fn test_v1_get_usage_online_archive( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -3802,7 +3802,7 @@ fn test_v1_get_usage_profiling(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -3833,7 +3833,7 @@ fn test_v1_get_usage_rum_units(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -3870,7 +3870,7 @@ fn test_v1_get_usage_rum_sessions(world: &mut DatadogWorld, _parameters: &HashMa world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -3901,7 +3901,7 @@ fn test_v1_get_usage_sds(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -3932,7 +3932,7 @@ fn test_v1_get_usage_snmp(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -3972,7 +3972,7 @@ fn test_v1_get_usage_summary(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4003,7 +4003,7 @@ fn test_v1_get_usage_synthetics(world: &mut DatadogWorld, _parameters: &HashMap< world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4037,7 +4037,7 @@ fn test_v1_get_usage_synthetics_api( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4073,7 +4073,7 @@ fn test_v1_get_usage_synthetics_browser( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4104,7 +4104,7 @@ fn test_v1_get_usage_timeseries(world: &mut DatadogWorld, _parameters: &HashMap< world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4163,7 +4163,7 @@ fn test_v1_get_usage_top_avg_metrics( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4188,7 +4188,7 @@ fn test_v1_delete_dashboards(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4238,7 +4238,7 @@ fn test_v1_list_dashboards(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4263,7 +4263,7 @@ fn test_v1_restore_dashboards(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4288,7 +4288,7 @@ fn test_v1_create_dashboard(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4313,7 +4313,7 @@ fn test_v1_create_public_dashboard(world: &mut DatadogWorld, _parameters: &HashM world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4338,7 +4338,7 @@ fn test_v1_delete_public_dashboard(world: &mut DatadogWorld, _parameters: &HashM world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4363,7 +4363,7 @@ fn test_v1_get_public_dashboard(world: &mut DatadogWorld, _parameters: &HashMap< world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4389,7 +4389,7 @@ fn test_v1_update_public_dashboard(world: &mut DatadogWorld, _parameters: &HashM world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4419,7 +4419,7 @@ fn test_v1_delete_public_dashboard_invitation( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4462,7 +4462,7 @@ fn test_v1_get_public_dashboard_invitations( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4492,7 +4492,7 @@ fn test_v1_send_public_dashboard_invitation( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4518,7 +4518,7 @@ fn test_v1_delete_dashboard(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4544,7 +4544,7 @@ fn test_v1_get_dashboard(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4571,7 +4571,7 @@ fn test_v1_update_dashboard(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4595,7 +4595,7 @@ fn test_v1_list_dashboard_lists(world: &mut DatadogWorld, _parameters: &HashMap< world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4620,7 +4620,7 @@ fn test_v1_create_dashboard_list(world: &mut DatadogWorld, _parameters: &HashMap world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4645,7 +4645,7 @@ fn test_v1_delete_dashboard_list(world: &mut DatadogWorld, _parameters: &HashMap world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4670,7 +4670,7 @@ fn test_v1_get_dashboard_list(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4696,7 +4696,7 @@ fn test_v1_update_dashboard_list(world: &mut DatadogWorld, _parameters: &HashMap world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4731,7 +4731,7 @@ fn test_v1_submit_distribution_points( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4767,7 +4767,7 @@ fn test_v1_list_active_metrics(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4793,7 +4793,7 @@ fn test_v1_get_metric_metadata(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4820,7 +4820,7 @@ fn test_v1_update_metric_metadata(world: &mut DatadogWorld, _parameters: &HashMa world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4847,7 +4847,7 @@ fn test_v1_query_metrics(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4872,7 +4872,7 @@ fn test_v1_list_metrics(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4903,7 +4903,7 @@ fn test_v1_submit_metrics(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4941,7 +4941,7 @@ fn test_v1_list_downtimes(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4966,7 +4966,7 @@ fn test_v1_create_downtime(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4994,7 +4994,7 @@ fn test_v1_cancel_downtimes_by_scope( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -5020,7 +5020,7 @@ fn test_v1_cancel_downtime(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -5046,7 +5046,7 @@ fn test_v1_get_downtime(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -5073,7 +5073,7 @@ fn test_v1_update_downtime(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -5099,7 +5099,7 @@ fn test_v1_list_monitor_downtimes(world: &mut DatadogWorld, _parameters: &HashMa world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -5163,7 +5163,7 @@ fn test_v1_list_events(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -5188,7 +5188,7 @@ fn test_v1_create_event(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -5213,7 +5213,7 @@ fn test_v1_get_event(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -5277,7 +5277,7 @@ fn test_v1_get_graph_snapshot(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -5303,7 +5303,7 @@ fn test_v1_mute_host(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -5328,7 +5328,7 @@ fn test_v1_unmute_host(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -5403,7 +5403,7 @@ fn test_v1_list_hosts(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -5433,7 +5433,7 @@ fn test_v1_get_host_totals(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -5458,7 +5458,7 @@ fn test_v1_delete_aws_account(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -5502,7 +5502,7 @@ fn test_v1_list_aws_accounts(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -5527,7 +5527,7 @@ fn test_v1_create_aws_account(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -5572,7 +5572,7 @@ fn test_v1_update_aws_account(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -5599,7 +5599,7 @@ fn test_v1_list_available_aws_namespaces( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -5627,7 +5627,7 @@ fn test_v1_delete_aws_event_bridge_source( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -5654,7 +5654,7 @@ fn test_v1_list_aws_event_bridge_sources( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -5682,7 +5682,7 @@ fn test_v1_create_aws_event_bridge_source( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -5707,7 +5707,7 @@ fn test_v1_delete_aws_tag_filter(world: &mut DatadogWorld, _parameters: &HashMap world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -5733,7 +5733,7 @@ fn test_v1_list_aws_tag_filters(world: &mut DatadogWorld, _parameters: &HashMap< world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -5758,7 +5758,7 @@ fn test_v1_create_aws_tag_filter(world: &mut DatadogWorld, _parameters: &HashMap world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -5786,7 +5786,7 @@ fn test_v1_create_new_aws_external_id( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -5811,7 +5811,7 @@ fn test_v1_delete_aws_lambda_arn(world: &mut DatadogWorld, _parameters: &HashMap world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -5838,7 +5838,7 @@ fn test_v1_list_aws_logs_integrations( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -5863,7 +5863,7 @@ fn test_v1_create_aws_lambda_arn(world: &mut DatadogWorld, _parameters: &HashMap world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -5891,7 +5891,7 @@ fn test_v1_check_aws_logs_lambda_async( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -5915,7 +5915,7 @@ fn test_v1_list_aws_logs_services(world: &mut DatadogWorld, _parameters: &HashMa world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -5940,7 +5940,7 @@ fn test_v1_enable_aws_log_services(world: &mut DatadogWorld, _parameters: &HashM world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -5968,7 +5968,7 @@ fn test_v1_check_aws_logs_services_async( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -5996,7 +5996,7 @@ fn test_v1_delete_azure_integration( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -6020,7 +6020,7 @@ fn test_v1_list_azure_integration(world: &mut DatadogWorld, _parameters: &HashMa world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -6048,7 +6048,7 @@ fn test_v1_create_azure_integration( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -6076,7 +6076,7 @@ fn test_v1_update_azure_integration( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -6104,7 +6104,7 @@ fn test_v1_update_azure_host_filters( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -6129,7 +6129,7 @@ fn test_v1_delete_gcp_integration(world: &mut DatadogWorld, _parameters: &HashMa world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -6153,7 +6153,7 @@ fn test_v1_list_gcp_integration(world: &mut DatadogWorld, _parameters: &HashMap< world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -6178,7 +6178,7 @@ fn test_v1_create_gcp_integration(world: &mut DatadogWorld, _parameters: &HashMa world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -6203,7 +6203,7 @@ fn test_v1_update_gcp_integration(world: &mut DatadogWorld, _parameters: &HashMa world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -6231,7 +6231,7 @@ fn test_v1_create_pager_duty_integration_service( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -6261,7 +6261,7 @@ fn test_v1_delete_pager_duty_integration_service( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -6291,7 +6291,7 @@ fn test_v1_get_pager_duty_integration_service( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -6323,7 +6323,7 @@ fn test_v1_update_pager_duty_integration_service( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -6352,7 +6352,7 @@ fn test_v1_get_slack_integration_channels( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -6383,7 +6383,7 @@ fn test_v1_create_slack_integration_channel( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -6416,7 +6416,7 @@ fn test_v1_remove_slack_integration_channel( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -6449,7 +6449,7 @@ fn test_v1_get_slack_integration_channel( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -6485,7 +6485,7 @@ fn test_v1_update_slack_integration_channel( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -6514,7 +6514,7 @@ fn test_v1_create_webhooks_integration_custom_variable( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -6545,7 +6545,7 @@ fn test_v1_delete_webhooks_integration_custom_variable( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -6576,7 +6576,7 @@ fn test_v1_get_webhooks_integration_custom_variable( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -6608,7 +6608,7 @@ fn test_v1_update_webhooks_integration_custom_variable( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -6636,7 +6636,7 @@ fn test_v1_create_webhooks_integration( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -6665,7 +6665,7 @@ fn test_v1_delete_webhooks_integration( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -6694,7 +6694,7 @@ fn test_v1_get_webhooks_integration( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -6725,7 +6725,7 @@ fn test_v1_update_webhooks_integration( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -6750,7 +6750,7 @@ fn test_v1_list_logs(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -6789,7 +6789,7 @@ fn test_v1_submit_log(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -6813,7 +6813,7 @@ fn test_v1_get_logs_index_order(world: &mut DatadogWorld, _parameters: &HashMap< world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -6838,7 +6838,7 @@ fn test_v1_update_logs_index_order(world: &mut DatadogWorld, _parameters: &HashM world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -6862,7 +6862,7 @@ fn test_v1_list_log_indexes(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -6887,7 +6887,7 @@ fn test_v1_create_logs_index(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -6912,7 +6912,7 @@ fn test_v1_get_logs_index(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -6938,7 +6938,7 @@ fn test_v1_update_logs_index(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -6962,7 +6962,7 @@ fn test_v1_get_logs_pipeline_order(world: &mut DatadogWorld, _parameters: &HashM world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -6990,7 +6990,7 @@ fn test_v1_update_logs_pipeline_order( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7014,7 +7014,7 @@ fn test_v1_list_logs_pipelines(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7039,7 +7039,7 @@ fn test_v1_create_logs_pipeline(world: &mut DatadogWorld, _parameters: &HashMap< world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7065,7 +7065,7 @@ fn test_v1_delete_logs_pipeline(world: &mut DatadogWorld, _parameters: &HashMap< world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7091,7 +7091,7 @@ fn test_v1_get_logs_pipeline(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7118,7 +7118,7 @@ fn test_v1_update_logs_pipeline(world: &mut DatadogWorld, _parameters: &HashMap< world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7192,7 +7192,7 @@ fn test_v1_list_monitors(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7217,7 +7217,7 @@ fn test_v1_create_monitor(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7246,7 +7246,7 @@ fn test_v1_check_can_delete_monitor( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7296,7 +7296,7 @@ fn test_v1_search_monitor_groups(world: &mut DatadogWorld, _parameters: &HashMap world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7346,7 +7346,7 @@ fn test_v1_search_monitors(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7371,7 +7371,7 @@ fn test_v1_validate_monitor(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7403,7 +7403,7 @@ fn test_v1_delete_monitor(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7443,7 +7443,7 @@ fn test_v1_get_monitor(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7470,7 +7470,7 @@ fn test_v1_update_monitor(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7500,7 +7500,7 @@ fn test_v1_validate_existing_monitor( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7586,7 +7586,7 @@ fn test_v1_list_notebooks(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7611,7 +7611,7 @@ fn test_v1_create_notebook(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7637,7 +7637,7 @@ fn test_v1_delete_notebook(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7663,7 +7663,7 @@ fn test_v1_get_notebook(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7690,7 +7690,7 @@ fn test_v1_update_notebook(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7714,7 +7714,7 @@ fn test_v1_list_orgs(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7739,7 +7739,7 @@ fn test_v1_create_child_org(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7764,7 +7764,7 @@ fn test_v1_get_org(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7790,7 +7790,7 @@ fn test_v1_update_org(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7815,7 +7815,7 @@ fn test_v1_downgrade_org(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7847,7 +7847,7 @@ fn test_v1_upload_id_p_for_org(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7878,7 +7878,7 @@ fn test_v1_add_security_monitoring_signal_to_incident( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7909,7 +7909,7 @@ fn test_v1_edit_security_monitoring_signal_assignee( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7939,7 +7939,7 @@ fn test_v1_edit_security_monitoring_signal_state( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8001,7 +8001,7 @@ fn test_v1_list_sl_os(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8026,7 +8026,7 @@ fn test_v1_create_slo(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8054,7 +8054,7 @@ fn test_v1_delete_slo_timeframe_in_bulk( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8079,7 +8079,7 @@ fn test_v1_check_can_delete_slo(world: &mut DatadogWorld, _parameters: &HashMap< world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8129,7 +8129,7 @@ fn test_v1_search_slo(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8160,7 +8160,7 @@ fn test_v1_delete_slo(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8194,7 +8194,7 @@ fn test_v1_get_slo(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8220,7 +8220,7 @@ fn test_v1_update_slo(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8245,7 +8245,7 @@ fn test_v1_get_slo_corrections(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8287,7 +8287,7 @@ fn test_v1_get_slo_history(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8326,7 +8326,7 @@ fn test_v1_list_slo_correction(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8351,7 +8351,7 @@ fn test_v1_create_slo_correction(world: &mut DatadogWorld, _parameters: &HashMap world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8377,7 +8377,7 @@ fn test_v1_delete_slo_correction(world: &mut DatadogWorld, _parameters: &HashMap world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8403,7 +8403,7 @@ fn test_v1_get_slo_correction(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8431,7 +8431,7 @@ fn test_v1_update_slo_correction(world: &mut DatadogWorld, _parameters: &HashMap world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8456,7 +8456,7 @@ fn test_v1_get_synthetics_ci_batch(world: &mut DatadogWorld, _parameters: &HashM world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8480,7 +8480,7 @@ fn test_v1_list_locations(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8505,7 +8505,7 @@ fn test_v1_create_private_location(world: &mut DatadogWorld, _parameters: &HashM world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8531,7 +8531,7 @@ fn test_v1_delete_private_location(world: &mut DatadogWorld, _parameters: &HashM world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8557,7 +8557,7 @@ fn test_v1_get_private_location(world: &mut DatadogWorld, _parameters: &HashMap< world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8584,7 +8584,7 @@ fn test_v1_update_private_location(world: &mut DatadogWorld, _parameters: &HashM world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8611,7 +8611,7 @@ fn test_v1_get_synthetics_default_locations( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8649,7 +8649,7 @@ fn test_v1_list_tests(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8677,7 +8677,7 @@ fn test_v1_create_synthetics_api_test( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8702,7 +8702,7 @@ fn test_v1_get_api_test(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8728,7 +8728,7 @@ fn test_v1_update_api_test(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8756,7 +8756,7 @@ fn test_v1_create_synthetics_browser_test( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8781,7 +8781,7 @@ fn test_v1_get_browser_test(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8807,7 +8807,7 @@ fn test_v1_update_browser_test(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8856,7 +8856,7 @@ fn test_v1_get_browser_test_latest_results( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8883,7 +8883,7 @@ fn test_v1_get_browser_test_result(world: &mut DatadogWorld, _parameters: &HashM world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8908,7 +8908,7 @@ fn test_v1_delete_tests(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8933,7 +8933,7 @@ fn test_v1_trigger_tests(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8958,7 +8958,7 @@ fn test_v1_trigger_ci_tests(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8983,7 +8983,7 @@ fn test_v1_get_test(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9009,7 +9009,7 @@ fn test_v1_patch_test(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9058,7 +9058,7 @@ fn test_v1_get_api_test_latest_results( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9084,7 +9084,7 @@ fn test_v1_get_api_test_result(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9113,7 +9113,7 @@ fn test_v1_update_test_pause_status( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9137,7 +9137,7 @@ fn test_v1_list_global_variables(world: &mut DatadogWorld, _parameters: &HashMap world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9162,7 +9162,7 @@ fn test_v1_create_global_variable(world: &mut DatadogWorld, _parameters: &HashMa world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9188,7 +9188,7 @@ fn test_v1_delete_global_variable(world: &mut DatadogWorld, _parameters: &HashMa world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9214,7 +9214,7 @@ fn test_v1_get_global_variable(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9241,7 +9241,7 @@ fn test_v1_edit_global_variable(world: &mut DatadogWorld, _parameters: &HashMap< world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9271,7 +9271,7 @@ fn test_v1_list_host_tags(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9302,7 +9302,7 @@ fn test_v1_delete_host_tags(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9333,7 +9333,7 @@ fn test_v1_get_host_tags(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9365,7 +9365,7 @@ fn test_v1_create_host_tags(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9397,7 +9397,7 @@ fn test_v1_update_host_tags(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9421,7 +9421,7 @@ fn test_v1_list_users(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9446,7 +9446,7 @@ fn test_v1_create_user(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9472,7 +9472,7 @@ fn test_v1_disable_user(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9498,7 +9498,7 @@ fn test_v1_get_user(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9525,7 +9525,7 @@ fn test_v1_update_user(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9549,7 +9549,7 @@ fn test_v1_validate(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9644,7 +9644,7 @@ fn test_v2_list_api_keys(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9669,7 +9669,7 @@ fn test_v2_create_api_key(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9695,7 +9695,7 @@ fn test_v2_delete_api_key(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9727,7 +9727,7 @@ fn test_v2_get_api_key(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9754,7 +9754,7 @@ fn test_v2_update_api_key(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9823,7 +9823,7 @@ fn test_v2_list_application_keys(world: &mut DatadogWorld, _parameters: &HashMap world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9849,7 +9849,7 @@ fn test_v2_delete_application_key(world: &mut DatadogWorld, _parameters: &HashMa world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9881,7 +9881,7 @@ fn test_v2_get_application_key(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9908,7 +9908,7 @@ fn test_v2_update_application_key(world: &mut DatadogWorld, _parameters: &HashMa world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9980,7 +9980,7 @@ fn test_v2_list_current_user_application_keys( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -10008,7 +10008,7 @@ fn test_v2_create_current_user_application_key( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -10038,7 +10038,7 @@ fn test_v2_delete_current_user_application_key( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -10067,7 +10067,7 @@ fn test_v2_get_current_user_application_key( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -10098,7 +10098,7 @@ fn test_v2_update_current_user_application_key( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -10122,7 +10122,7 @@ fn test_v2_list_spans_metrics(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -10147,7 +10147,7 @@ fn test_v2_create_spans_metric(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -10172,7 +10172,7 @@ fn test_v2_delete_spans_metric(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -10197,7 +10197,7 @@ fn test_v2_get_spans_metric(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -10223,7 +10223,7 @@ fn test_v2_update_spans_metric(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -10250,7 +10250,7 @@ fn test_v2_list_apm_retention_filters( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -10278,7 +10278,7 @@ fn test_v2_create_apm_retention_filter( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -10306,7 +10306,7 @@ fn test_v2_reorder_apm_retention_filters( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -10334,7 +10334,7 @@ fn test_v2_delete_apm_retention_filter( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -10362,7 +10362,7 @@ fn test_v2_get_apm_retention_filter( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -10391,7 +10391,7 @@ fn test_v2_update_apm_retention_filter( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -10453,7 +10453,7 @@ fn test_v2_list_audit_logs(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -10483,7 +10483,7 @@ fn test_v2_search_audit_logs(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -10533,7 +10533,7 @@ fn test_v2_list_auth_n_mappings(world: &mut DatadogWorld, _parameters: &HashMap< world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -10558,7 +10558,7 @@ fn test_v2_create_auth_n_mapping(world: &mut DatadogWorld, _parameters: &HashMap world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -10584,7 +10584,7 @@ fn test_v2_delete_auth_n_mapping(world: &mut DatadogWorld, _parameters: &HashMap world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -10610,7 +10610,7 @@ fn test_v2_get_auth_n_mapping(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -10638,7 +10638,7 @@ fn test_v2_update_auth_n_mapping(world: &mut DatadogWorld, _parameters: &HashMap world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -10666,7 +10666,7 @@ fn test_v2_create_ci_app_pipeline_event( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -10694,7 +10694,7 @@ fn test_v2_aggregate_ci_app_pipeline_events( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -10760,7 +10760,7 @@ fn test_v2_list_ci_app_pipeline_events( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -10796,7 +10796,7 @@ fn test_v2_search_ci_app_pipeline_events( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -10824,7 +10824,7 @@ fn test_v2_aggregate_ci_app_test_events( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -10886,7 +10886,7 @@ fn test_v2_list_ci_app_test_events(world: &mut DatadogWorld, _parameters: &HashM world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -10920,7 +10920,7 @@ fn test_v2_search_ci_app_test_events( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -10976,7 +10976,7 @@ fn test_v2_list_container_images(world: &mut DatadogWorld, _parameters: &HashMap world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -11032,7 +11032,7 @@ fn test_v2_list_containers(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -11059,7 +11059,7 @@ fn test_v2_list_cost_awscur_configs( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -11087,7 +11087,7 @@ fn test_v2_create_cost_awscur_config( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -11116,7 +11116,7 @@ fn test_v2_delete_cost_awscur_config( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -11147,7 +11147,7 @@ fn test_v2_update_cost_awscur_config( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -11183,7 +11183,7 @@ fn test_v2_list_aws_related_accounts( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -11210,7 +11210,7 @@ fn test_v2_list_cost_azure_uc_configs( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -11238,7 +11238,7 @@ fn test_v2_create_cost_azure_uc_configs( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -11268,7 +11268,7 @@ fn test_v2_delete_cost_azure_uc_config( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -11299,7 +11299,7 @@ fn test_v2_update_cost_azure_uc_configs( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -11323,7 +11323,7 @@ fn test_v2_get_cloud_cost_activity(world: &mut DatadogWorld, _parameters: &HashM world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -11350,7 +11350,7 @@ fn test_v2_get_active_billing_dimensions( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -11418,7 +11418,7 @@ fn test_v2_get_monthly_cost_attribution( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -11457,7 +11457,7 @@ fn test_v2_get_usage_application_security_monitoring( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -11489,7 +11489,7 @@ fn test_v2_get_cost_by_org(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -11548,7 +11548,7 @@ fn test_v2_get_estimated_cost_by_org( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -11592,7 +11592,7 @@ fn test_v2_get_historical_cost_by_org( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -11666,7 +11666,7 @@ fn test_v2_get_hourly_usage(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -11704,7 +11704,7 @@ fn test_v2_get_usage_lambda_traced_invocations( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -11740,7 +11740,7 @@ fn test_v2_get_usage_observability_pipelines( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -11770,7 +11770,7 @@ fn test_v2_get_projected_cost(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -11801,7 +11801,7 @@ fn test_v2_delete_dashboard_list_items( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -11830,7 +11830,7 @@ fn test_v2_get_dashboard_list_items( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -11861,7 +11861,7 @@ fn test_v2_create_dashboard_list_items( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -11892,7 +11892,7 @@ fn test_v2_update_dashboard_list_items( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -11917,7 +11917,7 @@ fn test_v2_create_dora_deployment(world: &mut DatadogWorld, _parameters: &HashMa world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -11942,7 +11942,7 @@ fn test_v2_create_dora_incident(world: &mut DatadogWorld, _parameters: &HashMap< world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -11992,7 +11992,7 @@ fn test_v2_list_downtimes(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -12017,7 +12017,7 @@ fn test_v2_create_downtime(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -12043,7 +12043,7 @@ fn test_v2_cancel_downtime(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -12075,7 +12075,7 @@ fn test_v2_get_downtime(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -12102,7 +12102,7 @@ fn test_v2_update_downtime(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -12142,7 +12142,7 @@ fn test_v2_list_monitor_downtimes(world: &mut DatadogWorld, _parameters: &HashMa world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -12204,7 +12204,7 @@ fn test_v2_list_events(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -12234,7 +12234,7 @@ fn test_v2_search_events(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -12278,7 +12278,7 @@ fn test_v2_list_incidents(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -12303,7 +12303,7 @@ fn test_v2_create_incident(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -12354,7 +12354,7 @@ fn test_v2_search_incidents(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -12380,7 +12380,7 @@ fn test_v2_delete_incident(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -12412,7 +12412,7 @@ fn test_v2_get_incident(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -12445,7 +12445,7 @@ fn test_v2_update_incident(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -12489,7 +12489,7 @@ fn test_v2_list_incident_attachments( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -12526,7 +12526,7 @@ fn test_v2_update_incident_attachments( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -12555,7 +12555,7 @@ fn test_v2_list_incident_integrations( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -12586,7 +12586,7 @@ fn test_v2_create_incident_integration( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -12620,7 +12620,7 @@ fn test_v2_delete_incident_integration( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -12654,7 +12654,7 @@ fn test_v2_get_incident_integration( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -12691,7 +12691,7 @@ fn test_v2_update_incident_integration( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -12717,7 +12717,7 @@ fn test_v2_list_incident_todos(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -12744,7 +12744,7 @@ fn test_v2_create_incident_todo(world: &mut DatadogWorld, _parameters: &HashMap< world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -12771,7 +12771,7 @@ fn test_v2_delete_incident_todo(world: &mut DatadogWorld, _parameters: &HashMap< world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -12798,7 +12798,7 @@ fn test_v2_get_incident_todo(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -12827,7 +12827,7 @@ fn test_v2_update_incident_todo(world: &mut DatadogWorld, _parameters: &HashMap< world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -12851,7 +12851,7 @@ fn test_v2_list_gcpsts_accounts(world: &mut DatadogWorld, _parameters: &HashMap< world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -12876,7 +12876,7 @@ fn test_v2_create_gcpsts_account(world: &mut DatadogWorld, _parameters: &HashMap world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -12902,7 +12902,7 @@ fn test_v2_delete_gcpsts_account(world: &mut DatadogWorld, _parameters: &HashMap world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -12929,7 +12929,7 @@ fn test_v2_update_gcpsts_account(world: &mut DatadogWorld, _parameters: &HashMap world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -12953,7 +12953,7 @@ fn test_v2_get_gcpsts_delegate(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -12983,7 +12983,7 @@ fn test_v2_make_gcpsts_delegate(world: &mut DatadogWorld, _parameters: &HashMap< world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13007,7 +13007,7 @@ fn test_v2_list_opsgenie_services(world: &mut DatadogWorld, _parameters: &HashMa world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13032,7 +13032,7 @@ fn test_v2_create_opsgenie_service(world: &mut DatadogWorld, _parameters: &HashM world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13059,7 +13059,7 @@ fn test_v2_delete_opsgenie_service(world: &mut DatadogWorld, _parameters: &HashM world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13085,7 +13085,7 @@ fn test_v2_get_opsgenie_service(world: &mut DatadogWorld, _parameters: &HashMap< world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13113,7 +13113,7 @@ fn test_v2_update_opsgenie_service(world: &mut DatadogWorld, _parameters: &HashM world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13140,7 +13140,7 @@ fn test_v2_list_cloudflare_accounts( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13168,7 +13168,7 @@ fn test_v2_create_cloudflare_account( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13197,7 +13197,7 @@ fn test_v2_delete_cloudflare_account( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13223,7 +13223,7 @@ fn test_v2_get_cloudflare_account(world: &mut DatadogWorld, _parameters: &HashMa world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13253,7 +13253,7 @@ fn test_v2_update_cloudflare_account( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13277,7 +13277,7 @@ fn test_v2_list_confluent_account(world: &mut DatadogWorld, _parameters: &HashMa world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13305,7 +13305,7 @@ fn test_v2_create_confluent_account( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13334,7 +13334,7 @@ fn test_v2_delete_confluent_account( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13360,7 +13360,7 @@ fn test_v2_get_confluent_account(world: &mut DatadogWorld, _parameters: &HashMap world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13390,7 +13390,7 @@ fn test_v2_update_confluent_account( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13416,7 +13416,7 @@ fn test_v2_list_confluent_resource(world: &mut DatadogWorld, _parameters: &HashM world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13446,7 +13446,7 @@ fn test_v2_create_confluent_resource( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13478,7 +13478,7 @@ fn test_v2_delete_confluent_resource( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13507,7 +13507,7 @@ fn test_v2_get_confluent_resource(world: &mut DatadogWorld, _parameters: &HashMa world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13541,7 +13541,7 @@ fn test_v2_update_confluent_resource( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13565,7 +13565,7 @@ fn test_v2_list_fastly_accounts(world: &mut DatadogWorld, _parameters: &HashMap< world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13590,7 +13590,7 @@ fn test_v2_create_fastly_account(world: &mut DatadogWorld, _parameters: &HashMap world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13616,7 +13616,7 @@ fn test_v2_delete_fastly_account(world: &mut DatadogWorld, _parameters: &HashMap world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13642,7 +13642,7 @@ fn test_v2_get_fastly_account(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13669,7 +13669,7 @@ fn test_v2_update_fastly_account(world: &mut DatadogWorld, _parameters: &HashMap world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13695,7 +13695,7 @@ fn test_v2_list_fastly_services(world: &mut DatadogWorld, _parameters: &HashMap< world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13722,7 +13722,7 @@ fn test_v2_create_fastly_service(world: &mut DatadogWorld, _parameters: &HashMap world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13751,7 +13751,7 @@ fn test_v2_delete_fastly_service(world: &mut DatadogWorld, _parameters: &HashMap world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13779,7 +13779,7 @@ fn test_v2_get_fastly_service(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13809,7 +13809,7 @@ fn test_v2_update_fastly_service(world: &mut DatadogWorld, _parameters: &HashMap world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13833,7 +13833,7 @@ fn test_v2_list_okta_accounts(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13858,7 +13858,7 @@ fn test_v2_create_okta_account(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13884,7 +13884,7 @@ fn test_v2_delete_okta_account(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13910,7 +13910,7 @@ fn test_v2_get_okta_account(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13937,7 +13937,7 @@ fn test_v2_update_okta_account(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13961,7 +13961,7 @@ fn test_v2_get_ip_allowlist(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13986,7 +13986,7 @@ fn test_v2_update_ip_allowlist(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -14025,7 +14025,7 @@ fn test_v2_submit_log(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -14050,7 +14050,7 @@ fn test_v2_aggregate_logs(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -14124,7 +14124,7 @@ fn test_v2_list_logs_get(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -14154,7 +14154,7 @@ fn test_v2_list_logs(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -14178,7 +14178,7 @@ fn test_v2_get_logs_archive_order(world: &mut DatadogWorld, _parameters: &HashMa world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -14206,7 +14206,7 @@ fn test_v2_update_logs_archive_order( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -14230,7 +14230,7 @@ fn test_v2_list_logs_archives(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -14255,7 +14255,7 @@ fn test_v2_create_logs_archive(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -14281,7 +14281,7 @@ fn test_v2_delete_logs_archive(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -14307,7 +14307,7 @@ fn test_v2_get_logs_archive(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -14334,7 +14334,7 @@ fn test_v2_update_logs_archive(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -14364,7 +14364,7 @@ fn test_v2_remove_role_from_archive( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -14390,7 +14390,7 @@ fn test_v2_list_archive_read_roles(world: &mut DatadogWorld, _parameters: &HashM world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -14420,7 +14420,7 @@ fn test_v2_add_read_role_to_archive( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -14444,7 +14444,7 @@ fn test_v2_list_logs_metrics(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -14469,7 +14469,7 @@ fn test_v2_create_logs_metric(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -14494,7 +14494,7 @@ fn test_v2_delete_logs_metric(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -14519,7 +14519,7 @@ fn test_v2_get_logs_metric(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -14545,7 +14545,7 @@ fn test_v2_update_logs_metric(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -14614,7 +14614,7 @@ fn test_v2_list_tag_configurations(world: &mut DatadogWorld, _parameters: &HashM world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -14642,7 +14642,7 @@ fn test_v2_delete_bulk_tags_metrics_configuration( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -14670,7 +14670,7 @@ fn test_v2_create_bulk_tags_metrics_configuration( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -14708,7 +14708,7 @@ fn test_v2_list_active_metric_configurations( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -14737,7 +14737,7 @@ fn test_v2_list_tags_by_metric_name( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -14799,7 +14799,7 @@ fn test_v2_estimate_metrics_output_series( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -14828,7 +14828,7 @@ fn test_v2_delete_tag_configuration( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -14857,7 +14857,7 @@ fn test_v2_list_tag_configuration_by_name( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -14887,7 +14887,7 @@ fn test_v2_update_tag_configuration( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -14917,7 +14917,7 @@ fn test_v2_create_tag_configuration( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -14946,7 +14946,7 @@ fn test_v2_list_volumes_by_metric_name( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -14971,7 +14971,7 @@ fn test_v2_query_scalar_data(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -14996,7 +14996,7 @@ fn test_v2_query_timeseries_data(world: &mut DatadogWorld, _parameters: &HashMap world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -15027,7 +15027,7 @@ fn test_v2_submit_metrics(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -15054,7 +15054,7 @@ fn test_v2_list_monitor_config_policies( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -15082,7 +15082,7 @@ fn test_v2_create_monitor_config_policy( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -15110,7 +15110,7 @@ fn test_v2_delete_monitor_config_policy( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -15138,7 +15138,7 @@ fn test_v2_get_monitor_config_policy( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -15168,7 +15168,7 @@ fn test_v2_update_monitor_config_policy( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -15192,7 +15192,7 @@ fn test_v2_list_permissions(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -15248,7 +15248,7 @@ fn test_v2_list_roles(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -15273,7 +15273,7 @@ fn test_v2_create_role(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -15298,7 +15298,7 @@ fn test_v2_delete_role(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -15323,7 +15323,7 @@ fn test_v2_get_role(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -15349,7 +15349,7 @@ fn test_v2_update_role(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -15375,7 +15375,7 @@ fn test_v2_clone_role(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -15404,7 +15404,7 @@ fn test_v2_remove_permission_from_role( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -15429,7 +15429,7 @@ fn test_v2_list_role_permissions(world: &mut DatadogWorld, _parameters: &HashMap world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -15455,7 +15455,7 @@ fn test_v2_add_permission_to_role(world: &mut DatadogWorld, _parameters: &HashMa world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -15481,7 +15481,7 @@ fn test_v2_remove_user_from_role(world: &mut DatadogWorld, _parameters: &HashMap world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -15532,7 +15532,7 @@ fn test_v2_list_role_users(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -15558,7 +15558,7 @@ fn test_v2_add_user_to_role(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -15658,7 +15658,7 @@ fn test_v2_list_findings(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -15683,7 +15683,7 @@ fn test_v2_mute_findings(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -15716,7 +15716,7 @@ fn test_v2_get_finding(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -15740,7 +15740,7 @@ fn test_v2_list_security_filters(world: &mut DatadogWorld, _parameters: &HashMap world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -15765,7 +15765,7 @@ fn test_v2_create_security_filter(world: &mut DatadogWorld, _parameters: &HashMa world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -15791,7 +15791,7 @@ fn test_v2_delete_security_filter(world: &mut DatadogWorld, _parameters: &HashMa world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -15817,7 +15817,7 @@ fn test_v2_get_security_filter(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -15845,7 +15845,7 @@ fn test_v2_update_security_filter(world: &mut DatadogWorld, _parameters: &HashMa world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -15887,7 +15887,7 @@ fn test_v2_list_security_monitoring_rules( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -15915,7 +15915,7 @@ fn test_v2_create_security_monitoring_rule( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -15943,7 +15943,7 @@ fn test_v2_delete_security_monitoring_rule( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -15971,7 +15971,7 @@ fn test_v2_get_security_monitoring_rule( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -16001,7 +16001,7 @@ fn test_v2_update_security_monitoring_rule( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -16067,7 +16067,7 @@ fn test_v2_list_security_monitoring_signals( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -16103,7 +16103,7 @@ fn test_v2_search_security_monitoring_signals( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -16131,7 +16131,7 @@ fn test_v2_get_security_monitoring_signal( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -16162,7 +16162,7 @@ fn test_v2_edit_security_monitoring_signal_assignee( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -16193,7 +16193,7 @@ fn test_v2_edit_security_monitoring_signal_incidents( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -16223,7 +16223,7 @@ fn test_v2_edit_security_monitoring_signal_state( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -16261,7 +16261,7 @@ fn test_v2_list_powerpacks(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -16286,7 +16286,7 @@ fn test_v2_create_powerpack(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -16312,7 +16312,7 @@ fn test_v2_delete_powerpack(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -16338,7 +16338,7 @@ fn test_v2_get_powerpack(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -16365,7 +16365,7 @@ fn test_v2_update_powerpack(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -16427,7 +16427,7 @@ fn test_v2_list_processes(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -16456,7 +16456,7 @@ fn test_v2_delete_restriction_policy( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -16482,7 +16482,7 @@ fn test_v2_get_restriction_policy(world: &mut DatadogWorld, _parameters: &HashMa world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -16512,7 +16512,7 @@ fn test_v2_update_restriction_policy( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -16537,7 +16537,7 @@ fn test_v2_aggregate_rum_events(world: &mut DatadogWorld, _parameters: &HashMap< world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -16561,7 +16561,7 @@ fn test_v2_get_rum_applications(world: &mut DatadogWorld, _parameters: &HashMap< world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -16586,7 +16586,7 @@ fn test_v2_create_rum_application(world: &mut DatadogWorld, _parameters: &HashMa world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -16611,7 +16611,7 @@ fn test_v2_delete_rum_application(world: &mut DatadogWorld, _parameters: &HashMa world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -16636,7 +16636,7 @@ fn test_v2_get_rum_application(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -16662,7 +16662,7 @@ fn test_v2_update_rum_application(world: &mut DatadogWorld, _parameters: &HashMa world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -16724,7 +16724,7 @@ fn test_v2_list_rum_events(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -16749,7 +16749,7 @@ fn test_v2_search_rum_events(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -16779,7 +16779,7 @@ fn test_v2_upload_id_p_metadata(world: &mut DatadogWorld, _parameters: &HashMap< world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -16866,7 +16866,7 @@ fn test_v2_list_scorecard_outcomes(world: &mut DatadogWorld, _parameters: &HashM world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -16894,7 +16894,7 @@ fn test_v2_create_scorecard_outcomes_batch( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -16981,7 +16981,7 @@ fn test_v2_list_scorecard_rules(world: &mut DatadogWorld, _parameters: &HashMap< world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17006,7 +17006,7 @@ fn test_v2_create_scorecard_rule(world: &mut DatadogWorld, _parameters: &HashMap world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17031,7 +17031,7 @@ fn test_v2_delete_scorecard_rule(world: &mut DatadogWorld, _parameters: &HashMap world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17058,7 +17058,7 @@ fn test_v2_download_cloud_workload_policy_file( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17085,7 +17085,7 @@ fn test_v2_list_cloud_workload_security_agent_rules( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17114,7 +17114,7 @@ fn test_v2_create_cloud_workload_security_agent_rule( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17145,7 +17145,7 @@ fn test_v2_delete_cloud_workload_security_agent_rule( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17175,7 +17175,7 @@ fn test_v2_get_cloud_workload_security_agent_rule( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17207,7 +17207,7 @@ fn test_v2_update_cloud_workload_security_agent_rule( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17231,7 +17231,7 @@ fn test_v2_list_scanning_groups(world: &mut DatadogWorld, _parameters: &HashMap< world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17256,7 +17256,7 @@ fn test_v2_reorder_scanning_groups(world: &mut DatadogWorld, _parameters: &HashM world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17281,7 +17281,7 @@ fn test_v2_create_scanning_group(world: &mut DatadogWorld, _parameters: &HashMap world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17307,7 +17307,7 @@ fn test_v2_delete_scanning_group(world: &mut DatadogWorld, _parameters: &HashMap world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17333,7 +17333,7 @@ fn test_v2_update_scanning_group(world: &mut DatadogWorld, _parameters: &HashMap world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17358,7 +17358,7 @@ fn test_v2_create_scanning_rule(world: &mut DatadogWorld, _parameters: &HashMap< world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17384,7 +17384,7 @@ fn test_v2_delete_scanning_rule(world: &mut DatadogWorld, _parameters: &HashMap< world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17410,7 +17410,7 @@ fn test_v2_update_scanning_rule(world: &mut DatadogWorld, _parameters: &HashMap< world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17434,7 +17434,7 @@ fn test_v2_list_standard_patterns(world: &mut DatadogWorld, _parameters: &HashMa world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17459,7 +17459,7 @@ fn test_v2_create_service_account(world: &mut DatadogWorld, _parameters: &HashMa world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17530,7 +17530,7 @@ fn test_v2_list_service_account_application_keys( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17562,7 +17562,7 @@ fn test_v2_create_service_account_application_key( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17595,7 +17595,7 @@ fn test_v2_delete_service_account_application_key( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17628,7 +17628,7 @@ fn test_v2_get_service_account_application_key( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17664,7 +17664,7 @@ fn test_v2_update_service_account_application_key( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17714,7 +17714,7 @@ fn test_v2_list_incident_services(world: &mut DatadogWorld, _parameters: &HashMa world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17739,7 +17739,7 @@ fn test_v2_create_incident_service(world: &mut DatadogWorld, _parameters: &HashM world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17765,7 +17765,7 @@ fn test_v2_delete_incident_service(world: &mut DatadogWorld, _parameters: &HashM world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17798,7 +17798,7 @@ fn test_v2_get_incident_service(world: &mut DatadogWorld, _parameters: &HashMap< world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17825,7 +17825,7 @@ fn test_v2_update_incident_service(world: &mut DatadogWorld, _parameters: &HashM world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17872,7 +17872,7 @@ fn test_v2_list_service_definitions( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17900,7 +17900,7 @@ fn test_v2_create_or_update_service_definitions( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17929,7 +17929,7 @@ fn test_v2_delete_service_definition( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17963,7 +17963,7 @@ fn test_v2_get_service_definition(world: &mut DatadogWorld, _parameters: &HashMa world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17988,7 +17988,7 @@ fn test_v2_aggregate_spans(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -18050,7 +18050,7 @@ fn test_v2_list_spans_get(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -18075,7 +18075,7 @@ fn test_v2_list_spans(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -18102,7 +18102,7 @@ fn test_v2_get_on_demand_concurrency_cap( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -18130,7 +18130,7 @@ fn test_v2_set_on_demand_concurrency_cap( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -18198,7 +18198,7 @@ fn test_v2_list_teams(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -18223,7 +18223,7 @@ fn test_v2_create_team(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -18248,7 +18248,7 @@ fn test_v2_delete_team(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -18273,7 +18273,7 @@ fn test_v2_get_team(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -18299,7 +18299,7 @@ fn test_v2_update_team(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -18324,7 +18324,7 @@ fn test_v2_get_team_links(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -18350,7 +18350,7 @@ fn test_v2_create_team_link(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -18376,7 +18376,7 @@ fn test_v2_delete_team_link(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -18402,7 +18402,7 @@ fn test_v2_get_team_link(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -18429,7 +18429,7 @@ fn test_v2_update_team_link(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -18480,7 +18480,7 @@ fn test_v2_get_team_memberships(world: &mut DatadogWorld, _parameters: &HashMap< world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -18506,7 +18506,7 @@ fn test_v2_create_team_membership(world: &mut DatadogWorld, _parameters: &HashMa world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -18532,7 +18532,7 @@ fn test_v2_delete_team_membership(world: &mut DatadogWorld, _parameters: &HashMa world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -18560,7 +18560,7 @@ fn test_v2_update_team_membership(world: &mut DatadogWorld, _parameters: &HashMa world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -18588,7 +18588,7 @@ fn test_v2_get_team_permission_settings( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -18619,7 +18619,7 @@ fn test_v2_update_team_permission_setting( world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -18644,7 +18644,7 @@ fn test_v2_get_user_memberships(world: &mut DatadogWorld, _parameters: &HashMap< world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -18694,7 +18694,7 @@ fn test_v2_list_incident_teams(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -18719,7 +18719,7 @@ fn test_v2_create_incident_team(world: &mut DatadogWorld, _parameters: &HashMap< world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -18744,7 +18744,7 @@ fn test_v2_delete_incident_team(world: &mut DatadogWorld, _parameters: &HashMap< world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -18775,7 +18775,7 @@ fn test_v2_get_incident_team(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -18801,7 +18801,7 @@ fn test_v2_update_incident_team(world: &mut DatadogWorld, _parameters: &HashMap< world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -18826,7 +18826,7 @@ fn test_v2_send_invitations(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -18852,7 +18852,7 @@ fn test_v2_get_invitation(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -18914,7 +18914,7 @@ fn test_v2_list_users(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -18939,7 +18939,7 @@ fn test_v2_create_user(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -18964,7 +18964,7 @@ fn test_v2_disable_user(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -18989,7 +18989,7 @@ fn test_v2_get_user(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -19015,7 +19015,7 @@ fn test_v2_update_user(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -19040,7 +19040,7 @@ fn test_v2_list_user_organizations(world: &mut DatadogWorld, _parameters: &HashM world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -19065,7 +19065,7 @@ fn test_v2_list_user_permissions(world: &mut DatadogWorld, _parameters: &HashMap world.response.object = serde_json::to_value(entity).unwrap(); } } - _ => panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } };