diff --git a/edgeapplications/docs/ApplicationResults.md b/edgeapplications/docs/ApplicationResults.md index aa3392c..5debfbe 100644 --- a/edgeapplications/docs/ApplicationResults.md +++ b/edgeapplications/docs/ApplicationResults.md @@ -24,6 +24,7 @@ Name | Type | Description | Notes **load_balancer** | **bool** | | **raw_logs** | **bool** | | **web_application_firewall** | **bool** | | +**websocket** | Option<**bool**> | | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/edgeapplications/docs/ApplicationResultsCreate.md b/edgeapplications/docs/ApplicationResultsCreate.md index 2d3d447..041b836 100644 --- a/edgeapplications/docs/ApplicationResultsCreate.md +++ b/edgeapplications/docs/ApplicationResultsCreate.md @@ -24,6 +24,7 @@ Name | Type | Description | Notes **raw_logs** | **bool** | | **web_application_firewall** | **bool** | | **l2_caching** | Option<**bool**> | | [optional] +**websocket** | Option<**bool**> | | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/edgeapplications/docs/ApplicationUpdateResults.md b/edgeapplications/docs/ApplicationUpdateResults.md index 73d9d44..1a901eb 100644 --- a/edgeapplications/docs/ApplicationUpdateResults.md +++ b/edgeapplications/docs/ApplicationUpdateResults.md @@ -24,6 +24,7 @@ Name | Type | Description | Notes **load_balancer** | **bool** | | **raw_logs** | **bool** | | **web_application_firewall** | **bool** | | +**websocket** | Option<**bool**> | | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/edgeapplications/src/models/application_results.rs b/edgeapplications/src/models/application_results.rs index 9041821..7092986 100644 --- a/edgeapplications/src/models/application_results.rs +++ b/edgeapplications/src/models/application_results.rs @@ -53,6 +53,8 @@ pub struct ApplicationResults { pub raw_logs: bool, #[serde(rename = "web_application_firewall")] pub web_application_firewall: bool, + #[serde(rename = "websocket", skip_serializing_if = "Option::is_none")] + pub websocket: Option, } impl ApplicationResults { @@ -78,6 +80,7 @@ impl ApplicationResults { load_balancer, raw_logs, web_application_firewall, + websocket: None, } } } diff --git a/edgeapplications/src/models/application_results_create.rs b/edgeapplications/src/models/application_results_create.rs index b7bcda6..6a6d114 100644 --- a/edgeapplications/src/models/application_results_create.rs +++ b/edgeapplications/src/models/application_results_create.rs @@ -53,6 +53,8 @@ pub struct ApplicationResultsCreate { pub web_application_firewall: bool, #[serde(rename = "l2_caching", skip_serializing_if = "Option::is_none")] pub l2_caching: Option, + #[serde(rename = "websocket", skip_serializing_if = "Option::is_none")] + pub websocket: Option, } impl ApplicationResultsCreate { @@ -78,6 +80,7 @@ impl ApplicationResultsCreate { raw_logs, web_application_firewall, l2_caching: None, + websocket: None, } } } diff --git a/edgeapplications/src/models/application_update_results.rs b/edgeapplications/src/models/application_update_results.rs index 0b2006f..9f608b5 100644 --- a/edgeapplications/src/models/application_update_results.rs +++ b/edgeapplications/src/models/application_update_results.rs @@ -53,6 +53,8 @@ pub struct ApplicationUpdateResults { pub raw_logs: bool, #[serde(rename = "web_application_firewall")] pub web_application_firewall: bool, + #[serde(rename = "websocket", skip_serializing_if = "Option::is_none")] + pub websocket: Option, } impl ApplicationUpdateResults { @@ -78,6 +80,7 @@ impl ApplicationUpdateResults { load_balancer, raw_logs, web_application_firewall, + websocket: None, } } }