Skip to content

Commit

Permalink
Merge pull request #88 from aziontech/generated-sdk
Browse files Browse the repository at this point in the history
Auto-generated SDK
  • Loading branch information
PatrickMenoti authored Jun 14, 2024
2 parents c0d072d + 9463c96 commit 1578acd
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions edgeapplications/docs/ApplicationResults.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
1 change: 1 addition & 0 deletions edgeapplications/docs/ApplicationResultsCreate.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
1 change: 1 addition & 0 deletions edgeapplications/docs/ApplicationUpdateResults.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
3 changes: 3 additions & 0 deletions edgeapplications/src/models/application_results.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<bool>,
}

impl ApplicationResults {
Expand All @@ -78,6 +80,7 @@ impl ApplicationResults {
load_balancer,
raw_logs,
web_application_firewall,
websocket: None,
}
}
}
Expand Down
3 changes: 3 additions & 0 deletions edgeapplications/src/models/application_results_create.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<bool>,
#[serde(rename = "websocket", skip_serializing_if = "Option::is_none")]
pub websocket: Option<bool>,
}

impl ApplicationResultsCreate {
Expand All @@ -78,6 +80,7 @@ impl ApplicationResultsCreate {
raw_logs,
web_application_firewall,
l2_caching: None,
websocket: None,
}
}
}
Expand Down
3 changes: 3 additions & 0 deletions edgeapplications/src/models/application_update_results.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<bool>,
}

impl ApplicationUpdateResults {
Expand All @@ -78,6 +80,7 @@ impl ApplicationUpdateResults {
load_balancer,
raw_logs,
web_application_firewall,
websocket: None,
}
}
}
Expand Down

0 comments on commit 1578acd

Please sign in to comment.