diff --git a/.generator/src/generator/templates/api.j2 b/.generator/src/generator/templates/api.j2 index f2a2085b3..addae0422 100644 --- a/.generator/src/generator/templates/api.j2 +++ b/.generator/src/generator/templates/api.j2 @@ -113,7 +113,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(), @@ -132,7 +132,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 ffebd6f00..36645d7f2 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 ece5429f5..1e7d08d8a 100644 --- a/.generator/src/generator/templates/function_mappings.j2 +++ b/.generator/src/generator/templates/function_mappings.j2 @@ -90,7 +90,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 66b86febb..bc4b59ea2 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 25cd7234c..54f9e63f2 100644 --- a/src/datadogV2/api/api_incident_services.rs +++ b/src/datadogV2/api/api_incident_services.rs @@ -165,7 +165,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(), @@ -251,7 +251,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(), @@ -339,7 +339,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(), @@ -430,7 +430,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(), @@ -540,7 +540,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 cb19fd316..46a4201e0 100644 --- a/src/datadogV2/api/api_incident_teams.rs +++ b/src/datadogV2/api/api_incident_teams.rs @@ -163,7 +163,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(), @@ -246,7 +246,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(), @@ -329,7 +329,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(), @@ -418,7 +418,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(), @@ -526,7 +526,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 fd7833f56..20f46653d 100644 --- a/src/datadogV2/api/api_incidents.rs +++ b/src/datadogV2/api/api_incidents.rs @@ -422,7 +422,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(), @@ -516,7 +516,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(), @@ -609,7 +609,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(), @@ -693,7 +693,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(), @@ -773,7 +773,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(), @@ -784,7 +784,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= @@ -855,7 +855,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(), @@ -934,7 +934,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(), @@ -1036,7 +1036,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(), @@ -1047,7 +1047,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= @@ -1124,7 +1124,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(), @@ -1213,7 +1213,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(), @@ -1326,7 +1326,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(), @@ -1410,7 +1410,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(), @@ -1490,7 +1490,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(), @@ -1597,7 +1597,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(), @@ -1707,7 +1707,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(), @@ -1819,7 +1819,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(), @@ -1931,7 +1931,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(), @@ -1942,7 +1942,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= @@ -2028,7 +2028,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 ffc5d39e3..70ad868c7 100644 --- a/src/datadogV2/api/api_metrics.rs +++ b/src/datadogV2/api/api_metrics.rs @@ -1261,7 +1261,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(), @@ -1352,7 +1352,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 02f268956..2e86935b6 100644 --- a/src/datadogV2/api/api_security_monitoring.rs +++ b/src/datadogV2/api/api_security_monitoring.rs @@ -1028,7 +1028,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(), @@ -1416,7 +1416,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(), @@ -1839,7 +1839,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 ea00c8aaf..bd11f09ff 100644 --- a/src/datadogV2/api/api_service_scorecards.rs +++ b/src/datadogV2/api/api_service_scorecards.rs @@ -264,7 +264,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(), @@ -351,7 +351,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(), @@ -434,7 +434,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(), @@ -513,7 +513,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(), @@ -648,7 +648,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 e867af7b1..84393f42b 100644 --- a/src/datadogV2/api/api_usage_metering.rs +++ b/src/datadogV2/api/api_usage_metering.rs @@ -404,7 +404,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(), @@ -938,7 +938,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 0e8052f37..6e5f8bc4b 100644 --- a/tests/scenarios/function_mappings.rs +++ b/tests/scenarios/function_mappings.rs @@ -2400,7 +2400,7 @@ fn test_v1_get_ip_ranges(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -2424,7 +2424,7 @@ fn test_v1_list_api_keys(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -2449,7 +2449,7 @@ fn test_v1_create_api_key(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -2474,7 +2474,7 @@ fn test_v1_delete_api_key(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -2499,7 +2499,7 @@ fn test_v1_get_api_key(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -2525,7 +2525,7 @@ fn test_v1_update_api_key(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -2549,7 +2549,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}"), }; } }; @@ -2574,7 +2574,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}"), }; } }; @@ -2599,7 +2599,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}"), }; } }; @@ -2624,7 +2624,7 @@ fn test_v1_get_application_key(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -2650,7 +2650,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}"), }; } }; @@ -2675,7 +2675,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}"), }; } }; @@ -2720,7 +2720,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}"), }; } }; @@ -2749,7 +2749,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}"), }; } }; @@ -2794,7 +2794,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}"), }; } }; @@ -2823,7 +2823,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}"), }; } }; @@ -2854,7 +2854,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}"), }; } }; @@ -2908,7 +2908,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}"), }; } }; @@ -2938,7 +2938,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}"), }; } }; @@ -2968,7 +2968,7 @@ fn test_v1_get_usage_lambda(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -3001,7 +3001,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}"), }; } }; @@ -3031,7 +3031,7 @@ fn test_v1_get_usage_ci_app(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -3066,7 +3066,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}"), }; } }; @@ -3096,7 +3096,7 @@ fn test_v1_get_usage_cws(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -3126,7 +3126,7 @@ fn test_v1_get_usage_dbm(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -3156,7 +3156,7 @@ fn test_v1_get_usage_fargate(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -3186,7 +3186,7 @@ fn test_v1_get_usage_hosts(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -3236,7 +3236,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}"), }; } }; @@ -3267,7 +3267,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}"), }; } }; @@ -3298,7 +3298,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}"), }; } }; @@ -3328,7 +3328,7 @@ fn test_v1_get_ingested_spans(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -3363,7 +3363,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}"), }; } }; @@ -3393,7 +3393,7 @@ fn test_v1_get_usage_logs(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -3428,7 +3428,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}"), }; } }; @@ -3463,7 +3463,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}"), }; } }; @@ -3523,7 +3523,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}"), }; } }; @@ -3554,7 +3554,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}"), }; } }; @@ -3585,7 +3585,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}"), }; } }; @@ -3619,7 +3619,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}"), }; } }; @@ -3649,7 +3649,7 @@ fn test_v1_get_usage_profiling(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -3679,7 +3679,7 @@ fn test_v1_get_usage_rum_units(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -3714,7 +3714,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}"), }; } }; @@ -3744,7 +3744,7 @@ fn test_v1_get_usage_sds(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -3774,7 +3774,7 @@ fn test_v1_get_usage_snmp(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -3809,7 +3809,7 @@ fn test_v1_get_usage_summary(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -3840,7 +3840,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}"), }; } }; @@ -3874,7 +3874,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}"), }; } }; @@ -3909,7 +3909,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}"), }; } }; @@ -3940,7 +3940,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}"), }; } }; @@ -3989,7 +3989,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}"), }; } }; @@ -4014,7 +4014,7 @@ fn test_v1_delete_dashboards(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4055,7 +4055,7 @@ fn test_v1_list_dashboards(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4080,7 +4080,7 @@ fn test_v1_restore_dashboards(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4105,7 +4105,7 @@ fn test_v1_create_dashboard(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4130,7 +4130,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}"), }; } }; @@ -4155,7 +4155,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}"), }; } }; @@ -4180,7 +4180,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}"), }; } }; @@ -4206,7 +4206,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}"), }; } }; @@ -4236,7 +4236,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}"), }; } }; @@ -4275,7 +4275,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}"), }; } }; @@ -4305,7 +4305,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}"), }; } }; @@ -4331,7 +4331,7 @@ fn test_v1_delete_dashboard(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4357,7 +4357,7 @@ fn test_v1_get_dashboard(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4384,7 +4384,7 @@ fn test_v1_update_dashboard(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4408,7 +4408,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}"), }; } }; @@ -4433,7 +4433,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}"), }; } }; @@ -4458,7 +4458,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}"), }; } }; @@ -4483,7 +4483,7 @@ fn test_v1_get_dashboard_list(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4509,7 +4509,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}"), }; } }; @@ -4542,7 +4542,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}"), }; } }; @@ -4576,7 +4576,7 @@ fn test_v1_list_active_metrics(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4602,7 +4602,7 @@ fn test_v1_get_metric_metadata(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4629,7 +4629,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}"), }; } }; @@ -4656,7 +4656,7 @@ fn test_v1_query_metrics(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4681,7 +4681,7 @@ fn test_v1_list_metrics(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4711,7 +4711,7 @@ fn test_v1_submit_metrics(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4744,7 +4744,7 @@ fn test_v1_list_downtimes(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4769,7 +4769,7 @@ fn test_v1_create_downtime(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4797,7 +4797,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}"), }; } }; @@ -4823,7 +4823,7 @@ fn test_v1_cancel_downtime(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4849,7 +4849,7 @@ fn test_v1_get_downtime(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4876,7 +4876,7 @@ fn test_v1_update_downtime(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4902,7 +4902,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}"), }; } }; @@ -4953,7 +4953,7 @@ fn test_v1_list_events(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -4978,7 +4978,7 @@ fn test_v1_create_event(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -5003,7 +5003,7 @@ fn test_v1_get_event(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -5054,7 +5054,7 @@ fn test_v1_get_graph_snapshot(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -5080,7 +5080,7 @@ fn test_v1_mute_host(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -5105,7 +5105,7 @@ fn test_v1_unmute_host(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -5162,7 +5162,7 @@ fn test_v1_list_hosts(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -5191,7 +5191,7 @@ fn test_v1_get_host_totals(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -5216,7 +5216,7 @@ fn test_v1_delete_aws_account(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -5253,7 +5253,7 @@ fn test_v1_list_aws_accounts(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -5278,7 +5278,7 @@ fn test_v1_create_aws_account(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -5316,7 +5316,7 @@ fn test_v1_update_aws_account(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -5343,7 +5343,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}"), }; } }; @@ -5371,7 +5371,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}"), }; } }; @@ -5398,7 +5398,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}"), }; } }; @@ -5426,7 +5426,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}"), }; } }; @@ -5451,7 +5451,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}"), }; } }; @@ -5477,7 +5477,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}"), }; } }; @@ -5502,7 +5502,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}"), }; } }; @@ -5530,7 +5530,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}"), }; } }; @@ -5555,7 +5555,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}"), }; } }; @@ -5582,7 +5582,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}"), }; } }; @@ -5607,7 +5607,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}"), }; } }; @@ -5635,7 +5635,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}"), }; } }; @@ -5659,7 +5659,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}"), }; } }; @@ -5684,7 +5684,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}"), }; } }; @@ -5712,7 +5712,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}"), }; } }; @@ -5740,7 +5740,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}"), }; } }; @@ -5764,7 +5764,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}"), }; } }; @@ -5792,7 +5792,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}"), }; } }; @@ -5820,7 +5820,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}"), }; } }; @@ -5848,7 +5848,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}"), }; } }; @@ -5873,7 +5873,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}"), }; } }; @@ -5897,7 +5897,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}"), }; } }; @@ -5922,7 +5922,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}"), }; } }; @@ -5947,7 +5947,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}"), }; } }; @@ -5975,7 +5975,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}"), }; } }; @@ -6005,7 +6005,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}"), }; } }; @@ -6035,7 +6035,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}"), }; } }; @@ -6067,7 +6067,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}"), }; } }; @@ -6096,7 +6096,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}"), }; } }; @@ -6127,7 +6127,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}"), }; } }; @@ -6160,7 +6160,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}"), }; } }; @@ -6193,7 +6193,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}"), }; } }; @@ -6229,7 +6229,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}"), }; } }; @@ -6258,7 +6258,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}"), }; } }; @@ -6289,7 +6289,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}"), }; } }; @@ -6320,7 +6320,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}"), }; } }; @@ -6352,7 +6352,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}"), }; } }; @@ -6380,7 +6380,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}"), }; } }; @@ -6409,7 +6409,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}"), }; } }; @@ -6438,7 +6438,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}"), }; } }; @@ -6469,7 +6469,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}"), }; } }; @@ -6494,7 +6494,7 @@ fn test_v1_list_logs(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -6528,7 +6528,7 @@ fn test_v1_submit_log(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -6552,7 +6552,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}"), }; } }; @@ -6577,7 +6577,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}"), }; } }; @@ -6601,7 +6601,7 @@ fn test_v1_list_log_indexes(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -6626,7 +6626,7 @@ fn test_v1_create_logs_index(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -6651,7 +6651,7 @@ fn test_v1_get_logs_index(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -6677,7 +6677,7 @@ fn test_v1_update_logs_index(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -6701,7 +6701,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}"), }; } }; @@ -6729,7 +6729,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}"), }; } }; @@ -6753,7 +6753,7 @@ fn test_v1_list_logs_pipelines(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -6778,7 +6778,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}"), }; } }; @@ -6804,7 +6804,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}"), }; } }; @@ -6830,7 +6830,7 @@ fn test_v1_get_logs_pipeline(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -6857,7 +6857,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}"), }; } }; @@ -6914,7 +6914,7 @@ fn test_v1_list_monitors(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -6939,7 +6939,7 @@ fn test_v1_create_monitor(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -6968,7 +6968,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}"), }; } }; @@ -7009,7 +7009,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}"), }; } }; @@ -7050,7 +7050,7 @@ fn test_v1_search_monitors(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7075,7 +7075,7 @@ fn test_v1_validate_monitor(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7106,7 +7106,7 @@ fn test_v1_delete_monitor(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7141,7 +7141,7 @@ fn test_v1_get_monitor(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7168,7 +7168,7 @@ fn test_v1_update_monitor(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7198,7 +7198,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}"), }; } }; @@ -7263,7 +7263,7 @@ fn test_v1_list_notebooks(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7288,7 +7288,7 @@ fn test_v1_create_notebook(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7314,7 +7314,7 @@ fn test_v1_delete_notebook(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7340,7 +7340,7 @@ fn test_v1_get_notebook(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7367,7 +7367,7 @@ fn test_v1_update_notebook(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7391,7 +7391,7 @@ fn test_v1_list_orgs(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7416,7 +7416,7 @@ fn test_v1_create_child_org(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7441,7 +7441,7 @@ fn test_v1_get_org(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7467,7 +7467,7 @@ fn test_v1_update_org(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7492,7 +7492,7 @@ fn test_v1_downgrade_org(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7524,7 +7524,7 @@ fn test_v1_upload_id_p_for_org(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7555,7 +7555,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}"), }; } }; @@ -7586,7 +7586,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}"), }; } }; @@ -7616,7 +7616,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}"), }; } }; @@ -7666,7 +7666,7 @@ fn test_v1_list_sl_os(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7691,7 +7691,7 @@ fn test_v1_create_slo(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7719,7 +7719,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}"), }; } }; @@ -7744,7 +7744,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}"), }; } }; @@ -7786,7 +7786,7 @@ fn test_v1_search_slo(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7817,7 +7817,7 @@ fn test_v1_delete_slo(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7847,7 +7847,7 @@ fn test_v1_get_slo(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7873,7 +7873,7 @@ fn test_v1_update_slo(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7898,7 +7898,7 @@ fn test_v1_get_slo_corrections(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7936,7 +7936,7 @@ fn test_v1_get_slo_history(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7969,7 +7969,7 @@ fn test_v1_list_slo_correction(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -7994,7 +7994,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}"), }; } }; @@ -8020,7 +8020,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}"), }; } }; @@ -8046,7 +8046,7 @@ fn test_v1_get_slo_correction(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8074,7 +8074,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}"), }; } }; @@ -8099,7 +8099,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}"), }; } }; @@ -8123,7 +8123,7 @@ fn test_v1_list_locations(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8148,7 +8148,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}"), }; } }; @@ -8174,7 +8174,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}"), }; } }; @@ -8200,7 +8200,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}"), }; } }; @@ -8227,7 +8227,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}"), }; } }; @@ -8254,7 +8254,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}"), }; } }; @@ -8287,7 +8287,7 @@ fn test_v1_list_tests(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8315,7 +8315,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}"), }; } }; @@ -8340,7 +8340,7 @@ fn test_v1_get_api_test(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8366,7 +8366,7 @@ fn test_v1_update_api_test(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8394,7 +8394,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}"), }; } }; @@ -8419,7 +8419,7 @@ fn test_v1_get_browser_test(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8445,7 +8445,7 @@ fn test_v1_update_browser_test(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8488,7 +8488,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}"), }; } }; @@ -8515,7 +8515,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}"), }; } }; @@ -8540,7 +8540,7 @@ fn test_v1_delete_tests(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8565,7 +8565,7 @@ fn test_v1_trigger_tests(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8590,7 +8590,7 @@ fn test_v1_trigger_ci_tests(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8615,7 +8615,7 @@ fn test_v1_get_test(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8641,7 +8641,7 @@ fn test_v1_patch_test(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8684,7 +8684,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}"), }; } }; @@ -8710,7 +8710,7 @@ fn test_v1_get_api_test_result(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8739,7 +8739,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}"), }; } }; @@ -8763,7 +8763,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}"), }; } }; @@ -8788,7 +8788,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}"), }; } }; @@ -8814,7 +8814,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}"), }; } }; @@ -8840,7 +8840,7 @@ fn test_v1_get_global_variable(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8867,7 +8867,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}"), }; } }; @@ -8896,7 +8896,7 @@ fn test_v1_list_host_tags(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8926,7 +8926,7 @@ fn test_v1_delete_host_tags(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8956,7 +8956,7 @@ fn test_v1_get_host_tags(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -8987,7 +8987,7 @@ fn test_v1_create_host_tags(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9018,7 +9018,7 @@ fn test_v1_update_host_tags(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9042,7 +9042,7 @@ fn test_v1_list_users(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9067,7 +9067,7 @@ fn test_v1_create_user(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9093,7 +9093,7 @@ fn test_v1_disable_user(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9119,7 +9119,7 @@ fn test_v1_get_user(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9146,7 +9146,7 @@ fn test_v1_update_user(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9170,7 +9170,7 @@ fn test_v1_validate(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9239,7 +9239,7 @@ fn test_v2_list_api_keys(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9264,7 +9264,7 @@ fn test_v2_create_api_key(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9290,7 +9290,7 @@ fn test_v2_delete_api_key(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9321,7 +9321,7 @@ fn test_v2_get_api_key(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9348,7 +9348,7 @@ fn test_v2_update_api_key(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9402,7 +9402,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}"), }; } }; @@ -9428,7 +9428,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}"), }; } }; @@ -9459,7 +9459,7 @@ fn test_v2_get_application_key(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9486,7 +9486,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}"), }; } }; @@ -9543,7 +9543,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}"), }; } }; @@ -9571,7 +9571,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}"), }; } }; @@ -9601,7 +9601,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}"), }; } }; @@ -9630,7 +9630,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}"), }; } }; @@ -9661,7 +9661,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}"), }; } }; @@ -9685,7 +9685,7 @@ fn test_v2_list_spans_metrics(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9710,7 +9710,7 @@ fn test_v2_create_spans_metric(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9735,7 +9735,7 @@ fn test_v2_delete_spans_metric(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9760,7 +9760,7 @@ fn test_v2_get_spans_metric(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9786,7 +9786,7 @@ fn test_v2_update_spans_metric(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -9813,7 +9813,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}"), }; } }; @@ -9841,7 +9841,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}"), }; } }; @@ -9869,7 +9869,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}"), }; } }; @@ -9897,7 +9897,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}"), }; } }; @@ -9925,7 +9925,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}"), }; } }; @@ -9954,7 +9954,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}"), }; } }; @@ -10003,7 +10003,7 @@ fn test_v2_list_audit_logs(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -10032,7 +10032,7 @@ fn test_v2_search_audit_logs(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -10074,7 +10074,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}"), }; } }; @@ -10099,7 +10099,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}"), }; } }; @@ -10125,7 +10125,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}"), }; } }; @@ -10151,7 +10151,7 @@ fn test_v2_get_auth_n_mapping(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -10179,7 +10179,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}"), }; } }; @@ -10207,7 +10207,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}"), }; } }; @@ -10235,7 +10235,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}"), }; } }; @@ -10289,7 +10289,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}"), }; } }; @@ -10321,7 +10321,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}"), }; } }; @@ -10349,7 +10349,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}"), }; } }; @@ -10399,7 +10399,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}"), }; } }; @@ -10432,7 +10432,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}"), }; } }; @@ -10478,7 +10478,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}"), }; } }; @@ -10523,7 +10523,7 @@ fn test_v2_list_containers(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -10550,7 +10550,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}"), }; } }; @@ -10578,7 +10578,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}"), }; } }; @@ -10607,7 +10607,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}"), }; } }; @@ -10638,7 +10638,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}"), }; } }; @@ -10674,7 +10674,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}"), }; } }; @@ -10701,7 +10701,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}"), }; } }; @@ -10729,7 +10729,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}"), }; } }; @@ -10759,7 +10759,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}"), }; } }; @@ -10790,7 +10790,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}"), }; } }; @@ -10814,7 +10814,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}"), }; } }; @@ -10841,7 +10841,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}"), }; } }; @@ -10899,7 +10899,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}"), }; } }; @@ -10934,7 +10934,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}"), }; } }; @@ -10965,7 +10965,7 @@ fn test_v2_get_cost_by_org(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -11014,7 +11014,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}"), }; } }; @@ -11054,7 +11054,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}"), }; } }; @@ -11113,7 +11113,7 @@ fn test_v2_get_hourly_usage(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -11149,7 +11149,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}"), }; } }; @@ -11184,7 +11184,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}"), }; } }; @@ -11213,7 +11213,7 @@ fn test_v2_get_projected_cost(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -11244,7 +11244,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}"), }; } }; @@ -11273,7 +11273,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}"), }; } }; @@ -11304,7 +11304,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}"), }; } }; @@ -11335,7 +11335,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}"), }; } }; @@ -11360,7 +11360,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}"), }; } }; @@ -11385,7 +11385,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}"), }; } }; @@ -11426,7 +11426,7 @@ fn test_v2_list_downtimes(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -11451,7 +11451,7 @@ fn test_v2_create_downtime(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -11477,7 +11477,7 @@ fn test_v2_cancel_downtime(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -11508,7 +11508,7 @@ fn test_v2_get_downtime(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -11535,7 +11535,7 @@ fn test_v2_update_downtime(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -11570,7 +11570,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}"), }; } }; @@ -11619,7 +11619,7 @@ fn test_v2_list_events(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -11648,7 +11648,7 @@ fn test_v2_search_events(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -11685,7 +11685,7 @@ fn test_v2_list_incidents(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -11710,7 +11710,7 @@ fn test_v2_create_incident(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -11752,7 +11752,7 @@ fn test_v2_search_incidents(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -11778,7 +11778,7 @@ fn test_v2_delete_incident(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -11809,7 +11809,7 @@ fn test_v2_get_incident(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -11841,7 +11841,7 @@ fn test_v2_update_incident(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -11881,7 +11881,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}"), }; } }; @@ -11918,7 +11918,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}"), }; } }; @@ -11947,7 +11947,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}"), }; } }; @@ -11978,7 +11978,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}"), }; } }; @@ -12012,7 +12012,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}"), }; } }; @@ -12046,7 +12046,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}"), }; } }; @@ -12083,7 +12083,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}"), }; } }; @@ -12109,7 +12109,7 @@ fn test_v2_list_incident_todos(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -12136,7 +12136,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}"), }; } }; @@ -12163,7 +12163,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}"), }; } }; @@ -12190,7 +12190,7 @@ fn test_v2_get_incident_todo(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -12219,7 +12219,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}"), }; } }; @@ -12243,7 +12243,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}"), }; } }; @@ -12268,7 +12268,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}"), }; } }; @@ -12294,7 +12294,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}"), }; } }; @@ -12321,7 +12321,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}"), }; } }; @@ -12345,7 +12345,7 @@ fn test_v2_get_gcpsts_delegate(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -12375,7 +12375,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}"), }; } }; @@ -12399,7 +12399,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}"), }; } }; @@ -12424,7 +12424,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}"), }; } }; @@ -12451,7 +12451,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}"), }; } }; @@ -12477,7 +12477,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}"), }; } }; @@ -12505,7 +12505,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}"), }; } }; @@ -12532,7 +12532,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}"), }; } }; @@ -12560,7 +12560,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}"), }; } }; @@ -12589,7 +12589,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}"), }; } }; @@ -12615,7 +12615,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}"), }; } }; @@ -12645,7 +12645,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}"), }; } }; @@ -12669,7 +12669,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}"), }; } }; @@ -12697,7 +12697,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}"), }; } }; @@ -12726,7 +12726,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}"), }; } }; @@ -12752,7 +12752,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}"), }; } }; @@ -12782,7 +12782,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}"), }; } }; @@ -12808,7 +12808,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}"), }; } }; @@ -12838,7 +12838,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}"), }; } }; @@ -12870,7 +12870,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}"), }; } }; @@ -12899,7 +12899,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}"), }; } }; @@ -12933,7 +12933,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}"), }; } }; @@ -12957,7 +12957,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}"), }; } }; @@ -12982,7 +12982,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}"), }; } }; @@ -13008,7 +13008,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}"), }; } }; @@ -13034,7 +13034,7 @@ fn test_v2_get_fastly_account(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13061,7 +13061,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}"), }; } }; @@ -13087,7 +13087,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}"), }; } }; @@ -13114,7 +13114,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}"), }; } }; @@ -13143,7 +13143,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}"), }; } }; @@ -13171,7 +13171,7 @@ fn test_v2_get_fastly_service(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13201,7 +13201,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}"), }; } }; @@ -13225,7 +13225,7 @@ fn test_v2_list_okta_accounts(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13250,7 +13250,7 @@ fn test_v2_create_okta_account(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13276,7 +13276,7 @@ fn test_v2_delete_okta_account(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13302,7 +13302,7 @@ fn test_v2_get_okta_account(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13329,7 +13329,7 @@ fn test_v2_update_okta_account(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13353,7 +13353,7 @@ fn test_v2_get_ip_allowlist(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13378,7 +13378,7 @@ fn test_v2_update_ip_allowlist(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13412,7 +13412,7 @@ fn test_v2_submit_log(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13437,7 +13437,7 @@ fn test_v2_aggregate_logs(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13494,7 +13494,7 @@ fn test_v2_list_logs_get(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13523,7 +13523,7 @@ fn test_v2_list_logs(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13547,7 +13547,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}"), }; } }; @@ -13575,7 +13575,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}"), }; } }; @@ -13599,7 +13599,7 @@ fn test_v2_list_logs_archives(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13624,7 +13624,7 @@ fn test_v2_create_logs_archive(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13650,7 +13650,7 @@ fn test_v2_delete_logs_archive(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13676,7 +13676,7 @@ fn test_v2_get_logs_archive(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13703,7 +13703,7 @@ fn test_v2_update_logs_archive(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13733,7 +13733,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}"), }; } }; @@ -13759,7 +13759,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}"), }; } }; @@ -13789,7 +13789,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}"), }; } }; @@ -13813,7 +13813,7 @@ fn test_v2_list_logs_metrics(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13838,7 +13838,7 @@ fn test_v2_create_logs_metric(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13863,7 +13863,7 @@ fn test_v2_delete_logs_metric(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13888,7 +13888,7 @@ fn test_v2_get_logs_metric(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13914,7 +13914,7 @@ fn test_v2_update_logs_metric(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -13967,7 +13967,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}"), }; } }; @@ -13995,7 +13995,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}"), }; } }; @@ -14023,7 +14023,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}"), }; } }; @@ -14059,7 +14059,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}"), }; } }; @@ -14088,7 +14088,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}"), }; } }; @@ -14140,7 +14140,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}"), }; } }; @@ -14169,7 +14169,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}"), }; } }; @@ -14198,7 +14198,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}"), }; } }; @@ -14228,7 +14228,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}"), }; } }; @@ -14258,7 +14258,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}"), }; } }; @@ -14287,7 +14287,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}"), }; } }; @@ -14312,7 +14312,7 @@ fn test_v2_query_scalar_data(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -14337,7 +14337,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}"), }; } }; @@ -14367,7 +14367,7 @@ fn test_v2_submit_metrics(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -14394,7 +14394,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}"), }; } }; @@ -14422,7 +14422,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}"), }; } }; @@ -14450,7 +14450,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}"), }; } }; @@ -14478,7 +14478,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}"), }; } }; @@ -14508,7 +14508,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}"), }; } }; @@ -14532,7 +14532,7 @@ fn test_v2_list_permissions(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -14577,7 +14577,7 @@ fn test_v2_list_roles(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -14602,7 +14602,7 @@ fn test_v2_create_role(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -14627,7 +14627,7 @@ fn test_v2_delete_role(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -14652,7 +14652,7 @@ fn test_v2_get_role(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -14678,7 +14678,7 @@ fn test_v2_update_role(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -14704,7 +14704,7 @@ fn test_v2_clone_role(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -14733,7 +14733,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}"), }; } }; @@ -14758,7 +14758,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}"), }; } }; @@ -14784,7 +14784,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}"), }; } }; @@ -14810,7 +14810,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}"), }; } }; @@ -14852,7 +14852,7 @@ fn test_v2_list_role_users(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -14878,7 +14878,7 @@ fn test_v2_add_user_to_role(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -14951,7 +14951,7 @@ fn test_v2_list_findings(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -14976,7 +14976,7 @@ fn test_v2_mute_findings(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -15007,7 +15007,7 @@ fn test_v2_get_finding(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -15031,7 +15031,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}"), }; } }; @@ -15056,7 +15056,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}"), }; } }; @@ -15082,7 +15082,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}"), }; } }; @@ -15108,7 +15108,7 @@ fn test_v2_get_security_filter(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -15136,7 +15136,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}"), }; } }; @@ -15174,7 +15174,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}"), }; } }; @@ -15202,7 +15202,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}"), }; } }; @@ -15230,7 +15230,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}"), }; } }; @@ -15258,7 +15258,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}"), }; } }; @@ -15288,7 +15288,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}"), }; } }; @@ -15340,7 +15340,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}"), }; } }; @@ -15372,7 +15372,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}"), }; } }; @@ -15400,7 +15400,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}"), }; } }; @@ -15431,7 +15431,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}"), }; } }; @@ -15462,7 +15462,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}"), }; } }; @@ -15492,7 +15492,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}"), }; } }; @@ -15525,7 +15525,7 @@ fn test_v2_list_powerpacks(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -15550,7 +15550,7 @@ fn test_v2_create_powerpack(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -15576,7 +15576,7 @@ fn test_v2_delete_powerpack(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -15602,7 +15602,7 @@ fn test_v2_get_powerpack(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -15629,7 +15629,7 @@ fn test_v2_update_powerpack(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -15678,7 +15678,7 @@ fn test_v2_list_processes(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -15707,7 +15707,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}"), }; } }; @@ -15733,7 +15733,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}"), }; } }; @@ -15763,7 +15763,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}"), }; } }; @@ -15788,7 +15788,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}"), }; } }; @@ -15812,7 +15812,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}"), }; } }; @@ -15837,7 +15837,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}"), }; } }; @@ -15862,7 +15862,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}"), }; } }; @@ -15887,7 +15887,7 @@ fn test_v2_get_rum_application(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -15913,7 +15913,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}"), }; } }; @@ -15962,7 +15962,7 @@ fn test_v2_list_rum_events(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -15987,7 +15987,7 @@ fn test_v2_search_rum_events(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -16016,7 +16016,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}"), }; } }; @@ -16082,7 +16082,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}"), }; } }; @@ -16110,7 +16110,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}"), }; } }; @@ -16176,7 +16176,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}"), }; } }; @@ -16201,7 +16201,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}"), }; } }; @@ -16226,7 +16226,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}"), }; } }; @@ -16253,7 +16253,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}"), }; } }; @@ -16280,7 +16280,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}"), }; } }; @@ -16309,7 +16309,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}"), }; } }; @@ -16340,7 +16340,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}"), }; } }; @@ -16370,7 +16370,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}"), }; } }; @@ -16402,7 +16402,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}"), }; } }; @@ -16426,7 +16426,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}"), }; } }; @@ -16451,7 +16451,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}"), }; } }; @@ -16476,7 +16476,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}"), }; } }; @@ -16502,7 +16502,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}"), }; } }; @@ -16528,7 +16528,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}"), }; } }; @@ -16553,7 +16553,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}"), }; } }; @@ -16579,7 +16579,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}"), }; } }; @@ -16605,7 +16605,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}"), }; } }; @@ -16629,7 +16629,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}"), }; } }; @@ -16654,7 +16654,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}"), }; } }; @@ -16710,7 +16710,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}"), }; } }; @@ -16742,7 +16742,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}"), }; } }; @@ -16775,7 +16775,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}"), }; } }; @@ -16808,7 +16808,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}"), }; } }; @@ -16844,7 +16844,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}"), }; } }; @@ -16886,7 +16886,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}"), }; } }; @@ -16911,7 +16911,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}"), }; } }; @@ -16937,7 +16937,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}"), }; } }; @@ -16969,7 +16969,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}"), }; } }; @@ -16996,7 +16996,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}"), }; } }; @@ -17037,7 +17037,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}"), }; } }; @@ -17065,7 +17065,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}"), }; } }; @@ -17094,7 +17094,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}"), }; } }; @@ -17126,7 +17126,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}"), }; } }; @@ -17151,7 +17151,7 @@ fn test_v2_aggregate_spans(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17200,7 +17200,7 @@ fn test_v2_list_spans_get(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17225,7 +17225,7 @@ fn test_v2_list_spans(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17252,7 +17252,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}"), }; } }; @@ -17280,7 +17280,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}"), }; } }; @@ -17333,7 +17333,7 @@ fn test_v2_list_teams(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17358,7 +17358,7 @@ fn test_v2_create_team(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17383,7 +17383,7 @@ fn test_v2_delete_team(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17408,7 +17408,7 @@ fn test_v2_get_team(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17434,7 +17434,7 @@ fn test_v2_update_team(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17459,7 +17459,7 @@ fn test_v2_get_team_links(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17485,7 +17485,7 @@ fn test_v2_create_team_link(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17511,7 +17511,7 @@ fn test_v2_delete_team_link(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17537,7 +17537,7 @@ fn test_v2_get_team_link(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17564,7 +17564,7 @@ fn test_v2_update_team_link(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17606,7 +17606,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}"), }; } }; @@ -17632,7 +17632,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}"), }; } }; @@ -17658,7 +17658,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}"), }; } }; @@ -17686,7 +17686,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}"), }; } }; @@ -17714,7 +17714,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}"), }; } }; @@ -17745,7 +17745,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}"), }; } }; @@ -17770,7 +17770,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}"), }; } }; @@ -17811,7 +17811,7 @@ fn test_v2_list_incident_teams(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17836,7 +17836,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}"), }; } }; @@ -17861,7 +17861,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}"), }; } }; @@ -17891,7 +17891,7 @@ fn test_v2_get_incident_team(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17917,7 +17917,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}"), }; } }; @@ -17942,7 +17942,7 @@ fn test_v2_send_invitations(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -17968,7 +17968,7 @@ fn test_v2_get_invitation(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -18017,7 +18017,7 @@ fn test_v2_list_users(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -18042,7 +18042,7 @@ fn test_v2_create_user(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -18067,7 +18067,7 @@ fn test_v2_disable_user(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -18092,7 +18092,7 @@ fn test_v2_get_user(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -18118,7 +18118,7 @@ fn test_v2_update_user(world: &mut DatadogWorld, _parameters: &HashMap panic!("error parsing response: {}", error), + _ => panic!("error parsing response: {error}"), }; } }; @@ -18143,7 +18143,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}"), }; } }; @@ -18168,7 +18168,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}"), }; } };