From cecdf8a7014803cba227a405a38ac78b73aaa968 Mon Sep 17 00:00:00 2001 From: fmunoz Date: Wed, 9 Aug 2023 16:39:09 -0600 Subject: [PATCH 1/2] ## [1.1.22] - 2023-08-09 - Support for nested children conditions was added. - Adding parameter `RequestBasicPwdAuth` to `RequestAllowedProtocolsCreateAllowedProtocolAllowedProtocolsTeap` struct. --- CHANGELOG.md | 9 ++- sdk/allowed_protocols.go | 1 + sdk/network_access_policy_set.go | 132 ++----------------------------- 3 files changed, 14 insertions(+), 128 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b35008..dc9e457 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.1.22] - 2023-08-09 +- Support for nested children conditions was added. +- Adding parameter `RequestBasicPwdAuth` to `RequestAllowedProtocolsCreateAllowedProtocolAllowedProtocolsTeap` struct. + ## [1.1.21] - 2023-06-27 - `ResponseNetworkDeviceGroupGetNetworkDeviceGroupByNameNetworkDeviceGroup`, `ResponseNetworkDeviceGroupGetNetworkDeviceGroupByIDNetworkDeviceGroup` and `RequestNetworkDeviceGroupUpdateNetworkDeviceGroupByIDNetworkDeviceGroup` change Ndgtype TO Othername on network_device_group.go. - Adding `ParentID` parameter on `ResponseEndpointIDentityGroupGetEndpointGroupByNameEndPointGroup` and `ResponseEndpointIDentityGroupGetEndpointGroupByIDEndPointGroup` structs on endpoint_identity_group. @@ -210,5 +214,6 @@ Following parameters were added to `RequestNetworkAccessAuthenticationRulesCreat [1.1.18]: https://github.com/CiscoISE/ciscoise-go-sdk/compare/v1.1.17...v1.1.18 [1.1.19]: https://github.com/CiscoISE/ciscoise-go-sdk/compare/v1.1.18...v1.1.19 [1.1.20]: https://github.com/CiscoISE/ciscoise-go-sdk/compare/v1.1.19...v1.1.20 -[1.1.21]: https://github.com/CiscoISE/ciscoise-go-sdk/compare/v1.1.19...v1.1.20 -[Unreleased]: https://github.com/cisco-en-programmability/dnacenter-go-sdk/compare/v1.1.21...main +[1.1.21]: https://github.com/CiscoISE/ciscoise-go-sdk/compare/v1.1.20...v1.1.21 +[1.1.22]: https://github.com/CiscoISE/ciscoise-go-sdk/compare/v1.1.21...v1.1.22 +[Unreleased]: https://github.com/cisco-en-programmability/dnacenter-go-sdk/compare/v1.1.22...main diff --git a/sdk/allowed_protocols.go b/sdk/allowed_protocols.go index dc1fa60..ea90cda 100644 --- a/sdk/allowed_protocols.go +++ b/sdk/allowed_protocols.go @@ -507,6 +507,7 @@ type RequestAllowedProtocolsCreateAllowedProtocolAllowedProtocolsTeap struct { AcceptClientCertDuringTunnelEst *bool `json:"acceptClientCertDuringTunnelEst,omitempty"` // EnableEapChaining *bool `json:"enableEapChaining,omitempty"` // AllowDowngradeMsk *bool `json:"allowDowngradeMsk,omitempty"` // + RequestBasicPwdAuth *bool `json:"requestBasicPwdAuth,omitempty"` // } //GetAllowedProtocolByName Get allowed protocol by name diff --git a/sdk/network_access_policy_set.go b/sdk/network_access_policy_set.go index e1500e5..0f146b5 100644 --- a/sdk/network_access_policy_set.go +++ b/sdk/network_access_policy_set.go @@ -40,7 +40,7 @@ type ResponseNetworkAccessPolicySetGetNetworkAccessPolicySetsResponseCondition s ID string `json:"id,omitempty"` // Name string `json:"name,omitempty"` // Condition name DictionaryValue string `json:"dictionaryValue,omitempty"` // Dictionary value - Children *[]ResponseNetworkAccessPolicySetGetNetworkAccessPolicySetsResponseConditionChildren `json:"children,omitempty"` // In case type is andBlock or orBlock addtional conditions will be aggregated under this logical (OR/AND) condition + Children *[]ResponseNetworkAccessPolicySetGetNetworkAccessPolicySetsResponseCondition `json:"children,omitempty"` // In case type is andBlock or orBlock addtional conditions will be aggregated under this logical (OR/AND) condition DatesRange *ResponseNetworkAccessPolicySetGetNetworkAccessPolicySetsResponseConditionDatesRange `json:"datesRange,omitempty"` //

Defines for which date/s TimeAndDate condition will be matched
Options are - Date range, for specific date, the same date should be used for start/end date
Default - no specific dates
In order to reset the dates to have no specific dates Date format - yyyy-mm-dd (MM = month, dd = day, yyyy = year)

DatesRangeException *ResponseNetworkAccessPolicySetGetNetworkAccessPolicySetsResponseConditionDatesRangeException `json:"datesRangeException,omitempty"` //

Defines for which date/s TimeAndDate condition will be matched
Options are - Date range, for specific date, the same date should be used for start/end date
Default - no specific dates
In order to reset the dates to have no specific dates Date format - yyyy-mm-dd (MM = month, dd = day, yyyy = year)

HoursRange *ResponseNetworkAccessPolicySetGetNetworkAccessPolicySetsResponseConditionHoursRange `json:"hoursRange,omitempty"` //

Defines for which hours a TimeAndDate condition will be matched
Time format - hh:mm ( h = hour , mm = minutes )
Default - All Day

@@ -55,26 +55,6 @@ type ResponseNetworkAccessPolicySetGetNetworkAccessPolicySetsResponseConditionLi Type string `json:"type,omitempty"` // } -type ResponseNetworkAccessPolicySetGetNetworkAccessPolicySetsResponseConditionChildren struct { - ConditionType string `json:"conditionType,omitempty"` // - IsNegate *bool `json:"isNegate,omitempty"` // Indicates whereas this condition is in negate mode - Link *ResponseNetworkAccessPolicySetGetNetworkAccessPolicySetsResponseConditionChildrenLink `json:"link,omitempty"` // - DictionaryName string `json:"dictionaryName,omitempty"` // Dictionary Name - AttributeName string `json:"attributeName,omitempty"` // Atribute Name - Operator string `json:"operator,omitempty"` // Operator - AttributeValue string `json:"attributeValue,omitempty"` // Attibute Name - Description string `json:"description,omitempty"` // Condition description - ID string `json:"id,omitempty"` // - Name string `json:"name,omitempty"` // Condition name - DictionaryValue string `json:"dictionaryValue,omitempty"` // Dictionary value -} - -type ResponseNetworkAccessPolicySetGetNetworkAccessPolicySetsResponseConditionChildrenLink struct { - Href string `json:"href,omitempty"` // - Rel string `json:"rel,omitempty"` // - Type string `json:"type,omitempty"` // -} - type ResponseNetworkAccessPolicySetGetNetworkAccessPolicySetsResponseConditionDatesRange struct { EndDate string `json:"endDate,omitempty"` // StartDate string `json:"startDate,omitempty"` // @@ -132,7 +112,7 @@ type ResponseNetworkAccessPolicySetCreateNetworkAccessPolicySetResponseCondition ID string `json:"id,omitempty"` // Name string `json:"name,omitempty"` // Condition name DictionaryValue string `json:"dictionaryValue,omitempty"` // Dictionary value - Children *[]ResponseNetworkAccessPolicySetCreateNetworkAccessPolicySetResponseConditionChildren `json:"children,omitempty"` // In case type is andBlock or orBlock addtional conditions will be aggregated under this logical (OR/AND) condition + Children *[]ResponseNetworkAccessPolicySetCreateNetworkAccessPolicySetResponseCondition `json:"children,omitempty"` // In case type is andBlock or orBlock addtional conditions will be aggregated under this logical (OR/AND) condition DatesRange *ResponseNetworkAccessPolicySetCreateNetworkAccessPolicySetResponseConditionDatesRange `json:"datesRange,omitempty"` //

Defines for which date/s TimeAndDate condition will be matched
Options are - Date range, for specific date, the same date should be used for start/end date
Default - no specific dates
In order to reset the dates to have no specific dates Date format - yyyy-mm-dd (MM = month, dd = day, yyyy = year)

DatesRangeException *ResponseNetworkAccessPolicySetCreateNetworkAccessPolicySetResponseConditionDatesRangeException `json:"datesRangeException,omitempty"` //

Defines for which date/s TimeAndDate condition will be matched
Options are - Date range, for specific date, the same date should be used for start/end date
Default - no specific dates
In order to reset the dates to have no specific dates Date format - yyyy-mm-dd (MM = month, dd = day, yyyy = year)

HoursRange *ResponseNetworkAccessPolicySetCreateNetworkAccessPolicySetResponseConditionHoursRange `json:"hoursRange,omitempty"` //

Defines for which hours a TimeAndDate condition will be matched
Time format - hh:mm ( h = hour , mm = minutes )
Default - All Day

@@ -147,26 +127,6 @@ type ResponseNetworkAccessPolicySetCreateNetworkAccessPolicySetResponseCondition Type string `json:"type,omitempty"` // } -type ResponseNetworkAccessPolicySetCreateNetworkAccessPolicySetResponseConditionChildren struct { - ConditionType string `json:"conditionType,omitempty"` // - IsNegate *bool `json:"isNegate,omitempty"` // Indicates whereas this condition is in negate mode - Link *ResponseNetworkAccessPolicySetCreateNetworkAccessPolicySetResponseConditionChildrenLink `json:"link,omitempty"` // - DictionaryName string `json:"dictionaryName,omitempty"` // Dictionary Name - AttributeName string `json:"attributeName,omitempty"` // Atribute Name - Operator string `json:"operator,omitempty"` // Operator - AttributeValue string `json:"attributeValue,omitempty"` // Attibute Name - Description string `json:"description,omitempty"` // Condition description - ID string `json:"id,omitempty"` // - Name string `json:"name,omitempty"` // Condition name - DictionaryValue string `json:"dictionaryValue,omitempty"` // Dictionary value -} - -type ResponseNetworkAccessPolicySetCreateNetworkAccessPolicySetResponseConditionChildrenLink struct { - Href string `json:"href,omitempty"` // - Rel string `json:"rel,omitempty"` // - Type string `json:"type,omitempty"` // -} - type ResponseNetworkAccessPolicySetCreateNetworkAccessPolicySetResponseConditionDatesRange struct { EndDate string `json:"endDate,omitempty"` // StartDate string `json:"startDate,omitempty"` // @@ -228,7 +188,7 @@ type ResponseNetworkAccessPolicySetGetNetworkAccessPolicySetByIDResponseConditio ID string `json:"id,omitempty"` // Name string `json:"name,omitempty"` // Condition name DictionaryValue string `json:"dictionaryValue,omitempty"` // Dictionary value - Children *[]ResponseNetworkAccessPolicySetGetNetworkAccessPolicySetByIDResponseConditionChildren `json:"children,omitempty"` // In case type is andBlock or orBlock addtional conditions will be aggregated under this logical (OR/AND) condition + Children *[]ResponseNetworkAccessPolicySetGetNetworkAccessPolicySetByIDResponseCondition `json:"children,omitempty"` // In case type is andBlock or orBlock addtional conditions will be aggregated under this logical (OR/AND) condition DatesRange *ResponseNetworkAccessPolicySetGetNetworkAccessPolicySetByIDResponseConditionDatesRange `json:"datesRange,omitempty"` //

Defines for which date/s TimeAndDate condition will be matched
Options are - Date range, for specific date, the same date should be used for start/end date
Default - no specific dates
In order to reset the dates to have no specific dates Date format - yyyy-mm-dd (MM = month, dd = day, yyyy = year)

DatesRangeException *ResponseNetworkAccessPolicySetGetNetworkAccessPolicySetByIDResponseConditionDatesRangeException `json:"datesRangeException,omitempty"` //

Defines for which date/s TimeAndDate condition will be matched
Options are - Date range, for specific date, the same date should be used for start/end date
Default - no specific dates
In order to reset the dates to have no specific dates Date format - yyyy-mm-dd (MM = month, dd = day, yyyy = year)

HoursRange *ResponseNetworkAccessPolicySetGetNetworkAccessPolicySetByIDResponseConditionHoursRange `json:"hoursRange,omitempty"` //

Defines for which hours a TimeAndDate condition will be matched
Time format - hh:mm ( h = hour , mm = minutes )
Default - All Day

@@ -243,26 +203,6 @@ type ResponseNetworkAccessPolicySetGetNetworkAccessPolicySetByIDResponseConditio Type string `json:"type,omitempty"` // } -type ResponseNetworkAccessPolicySetGetNetworkAccessPolicySetByIDResponseConditionChildren struct { - ConditionType string `json:"conditionType,omitempty"` // - IsNegate *bool `json:"isNegate,omitempty"` // Indicates whereas this condition is in negate mode - Link *ResponseNetworkAccessPolicySetGetNetworkAccessPolicySetByIDResponseConditionChildrenLink `json:"link,omitempty"` // - DictionaryName string `json:"dictionaryName,omitempty"` // Dictionary Name - AttributeName string `json:"attributeName,omitempty"` // Atribute Name - Operator string `json:"operator,omitempty"` // Operator - AttributeValue string `json:"attributeValue,omitempty"` // Attibute Name - Description string `json:"description,omitempty"` // Condition description - ID string `json:"id,omitempty"` // - Name string `json:"name,omitempty"` // Condition name - DictionaryValue string `json:"dictionaryValue,omitempty"` // Dictionary value -} - -type ResponseNetworkAccessPolicySetGetNetworkAccessPolicySetByIDResponseConditionChildrenLink struct { - Href string `json:"href,omitempty"` // - Rel string `json:"rel,omitempty"` // - Type string `json:"type,omitempty"` // -} - type ResponseNetworkAccessPolicySetGetNetworkAccessPolicySetByIDResponseConditionDatesRange struct { EndDate string `json:"endDate,omitempty"` // StartDate string `json:"startDate,omitempty"` // @@ -320,7 +260,7 @@ type ResponseNetworkAccessPolicySetUpdateNetworkAccessPolicySetByIDResponseCondi ID string `json:"id,omitempty"` // Name string `json:"name,omitempty"` // Condition name DictionaryValue string `json:"dictionaryValue,omitempty"` // Dictionary value - Children *[]ResponseNetworkAccessPolicySetUpdateNetworkAccessPolicySetByIDResponseConditionChildren `json:"children,omitempty"` // In case type is andBlock or orBlock addtional conditions will be aggregated under this logical (OR/AND) condition + Children *[]ResponseNetworkAccessPolicySetUpdateNetworkAccessPolicySetByIDResponseCondition `json:"children,omitempty"` // In case type is andBlock or orBlock addtional conditions will be aggregated under this logical (OR/AND) condition DatesRange *ResponseNetworkAccessPolicySetUpdateNetworkAccessPolicySetByIDResponseConditionDatesRange `json:"datesRange,omitempty"` //

Defines for which date/s TimeAndDate condition will be matched
Options are - Date range, for specific date, the same date should be used for start/end date
Default - no specific dates
In order to reset the dates to have no specific dates Date format - yyyy-mm-dd (MM = month, dd = day, yyyy = year)

DatesRangeException *ResponseNetworkAccessPolicySetUpdateNetworkAccessPolicySetByIDResponseConditionDatesRangeException `json:"datesRangeException,omitempty"` //

Defines for which date/s TimeAndDate condition will be matched
Options are - Date range, for specific date, the same date should be used for start/end date
Default - no specific dates
In order to reset the dates to have no specific dates Date format - yyyy-mm-dd (MM = month, dd = day, yyyy = year)

HoursRange *ResponseNetworkAccessPolicySetUpdateNetworkAccessPolicySetByIDResponseConditionHoursRange `json:"hoursRange,omitempty"` //

Defines for which hours a TimeAndDate condition will be matched
Time format - hh:mm ( h = hour , mm = minutes )
Default - All Day

@@ -335,26 +275,6 @@ type ResponseNetworkAccessPolicySetUpdateNetworkAccessPolicySetByIDResponseCondi Type string `json:"type,omitempty"` // } -type ResponseNetworkAccessPolicySetUpdateNetworkAccessPolicySetByIDResponseConditionChildren struct { - ConditionType string `json:"conditionType,omitempty"` // - IsNegate *bool `json:"isNegate,omitempty"` // Indicates whereas this condition is in negate mode - Link *ResponseNetworkAccessPolicySetUpdateNetworkAccessPolicySetByIDResponseConditionChildrenLink `json:"link,omitempty"` // - DictionaryName string `json:"dictionaryName,omitempty"` // Dictionary Name - AttributeName string `json:"attributeName,omitempty"` // Atribute Name - Operator string `json:"operator,omitempty"` // Operator - AttributeValue string `json:"attributeValue,omitempty"` // Attibute Name - Description string `json:"description,omitempty"` // Condition description - ID string `json:"id,omitempty"` // - Name string `json:"name,omitempty"` // Condition name - DictionaryValue string `json:"dictionaryValue,omitempty"` // Dictionary value -} - -type ResponseNetworkAccessPolicySetUpdateNetworkAccessPolicySetByIDResponseConditionChildrenLink struct { - Href string `json:"href,omitempty"` // - Rel string `json:"rel,omitempty"` // - Type string `json:"type,omitempty"` // -} - type ResponseNetworkAccessPolicySetUpdateNetworkAccessPolicySetByIDResponseConditionDatesRange struct { EndDate string `json:"endDate,omitempty"` // StartDate string `json:"startDate,omitempty"` // @@ -411,7 +331,7 @@ type RequestNetworkAccessPolicySetCreateNetworkAccessPolicySetCondition struct { ID string `json:"id,omitempty"` // Name string `json:"name,omitempty"` // Condition name DictionaryValue string `json:"dictionaryValue,omitempty"` // Dictionary value - Children *[]RequestNetworkAccessPolicySetCreateNetworkAccessPolicySetConditionChildren `json:"children,omitempty"` // In case type is andBlock or orBlock addtional conditions will be aggregated under this logical (OR/AND) condition + Children *[]RequestNetworkAccessPolicySetCreateNetworkAccessPolicySetCondition `json:"children,omitempty"` // In case type is andBlock or orBlock addtional conditions will be aggregated under this logical (OR/AND) condition DatesRange *RequestNetworkAccessPolicySetCreateNetworkAccessPolicySetConditionDatesRange `json:"datesRange,omitempty"` //

Defines for which date/s TimeAndDate condition will be matched
Options are - Date range, for specific date, the same date should be used for start/end date
Default - no specific dates
In order to reset the dates to have no specific dates Date format - yyyy-mm-dd (MM = month, dd = day, yyyy = year)

DatesRangeException *RequestNetworkAccessPolicySetCreateNetworkAccessPolicySetConditionDatesRangeException `json:"datesRangeException,omitempty"` //

Defines for which date/s TimeAndDate condition will be matched
Options are - Date range, for specific date, the same date should be used for start/end date
Default - no specific dates
In order to reset the dates to have no specific dates Date format - yyyy-mm-dd (MM = month, dd = day, yyyy = year)

HoursRange *RequestNetworkAccessPolicySetCreateNetworkAccessPolicySetConditionHoursRange `json:"hoursRange,omitempty"` //

Defines for which hours a TimeAndDate condition will be matched
Time format - hh:mm ( h = hour , mm = minutes )
Default - All Day

@@ -426,26 +346,6 @@ type RequestNetworkAccessPolicySetCreateNetworkAccessPolicySetConditionLink stru Type string `json:"type,omitempty"` // } -type RequestNetworkAccessPolicySetCreateNetworkAccessPolicySetConditionChildren struct { - ConditionType string `json:"conditionType,omitempty"` // - IsNegate *bool `json:"isNegate,omitempty"` // Indicates whereas this condition is in negate mode - Link *RequestNetworkAccessPolicySetCreateNetworkAccessPolicySetConditionChildrenLink `json:"link,omitempty"` // - DictionaryName string `json:"dictionaryName,omitempty"` // Dictionary Name - AttributeName string `json:"attributeName,omitempty"` // Atribute Name - Operator string `json:"operator,omitempty"` // Operator - AttributeValue string `json:"attributeValue,omitempty"` // Attibute Name - Description string `json:"description,omitempty"` // Condition description - ID string `json:"id,omitempty"` // - Name string `json:"name,omitempty"` // Condition name - DictionaryValue string `json:"dictionaryValue,omitempty"` // Dictionary value -} - -type RequestNetworkAccessPolicySetCreateNetworkAccessPolicySetConditionChildrenLink struct { - Href string `json:"href,omitempty"` // - Rel string `json:"rel,omitempty"` // - Type string `json:"type,omitempty"` // -} - type RequestNetworkAccessPolicySetCreateNetworkAccessPolicySetConditionDatesRange struct { EndDate string `json:"endDate,omitempty"` // StartDate string `json:"startDate,omitempty"` // @@ -498,7 +398,7 @@ type RequestNetworkAccessPolicySetUpdateNetworkAccessPolicySetByIDCondition stru ID string `json:"id,omitempty"` // Name string `json:"name,omitempty"` // Condition name DictionaryValue string `json:"dictionaryValue,omitempty"` // Dictionary value - Children *[]RequestNetworkAccessPolicySetUpdateNetworkAccessPolicySetByIDConditionChildren `json:"children,omitempty"` // In case type is andBlock or orBlock addtional conditions will be aggregated under this logical (OR/AND) condition + Children *[]RequestNetworkAccessPolicySetUpdateNetworkAccessPolicySetByIDCondition `json:"children,omitempty"` // In case type is andBlock or orBlock addtional conditions will be aggregated under this logical (OR/AND) condition DatesRange *RequestNetworkAccessPolicySetUpdateNetworkAccessPolicySetByIDConditionDatesRange `json:"datesRange,omitempty"` //

Defines for which date/s TimeAndDate condition will be matched
Options are - Date range, for specific date, the same date should be used for start/end date
Default - no specific dates
In order to reset the dates to have no specific dates Date format - yyyy-mm-dd (MM = month, dd = day, yyyy = year)

DatesRangeException *RequestNetworkAccessPolicySetUpdateNetworkAccessPolicySetByIDConditionDatesRangeException `json:"datesRangeException,omitempty"` //

Defines for which date/s TimeAndDate condition will be matched
Options are - Date range, for specific date, the same date should be used for start/end date
Default - no specific dates
In order to reset the dates to have no specific dates Date format - yyyy-mm-dd (MM = month, dd = day, yyyy = year)

HoursRange *RequestNetworkAccessPolicySetUpdateNetworkAccessPolicySetByIDConditionHoursRange `json:"hoursRange,omitempty"` //

Defines for which hours a TimeAndDate condition will be matched
Time format - hh:mm ( h = hour , mm = minutes )
Default - All Day

@@ -513,26 +413,6 @@ type RequestNetworkAccessPolicySetUpdateNetworkAccessPolicySetByIDConditionLink Type string `json:"type,omitempty"` // } -type RequestNetworkAccessPolicySetUpdateNetworkAccessPolicySetByIDConditionChildren struct { - ConditionType string `json:"conditionType,omitempty"` // - IsNegate *bool `json:"isNegate,omitempty"` // Indicates whereas this condition is in negate mode - Link *RequestNetworkAccessPolicySetUpdateNetworkAccessPolicySetByIDConditionChildrenLink `json:"link,omitempty"` // - DictionaryName string `json:"dictionaryName,omitempty"` // Dictionary Name - AttributeName string `json:"attributeName,omitempty"` // Atribute Name - Operator string `json:"operator,omitempty"` // Operator - AttributeValue string `json:"attributeValue,omitempty"` // Attibute Name - Description string `json:"description,omitempty"` // Condition description - ID string `json:"id,omitempty"` // - Name string `json:"name,omitempty"` // Condition name - DictionaryValue string `json:"dictionaryValue,omitempty"` // Dictionary value -} - -type RequestNetworkAccessPolicySetUpdateNetworkAccessPolicySetByIDConditionChildrenLink struct { - Href string `json:"href,omitempty"` // - Rel string `json:"rel,omitempty"` // - Type string `json:"type,omitempty"` // -} - type RequestNetworkAccessPolicySetUpdateNetworkAccessPolicySetByIDConditionDatesRange struct { EndDate string `json:"endDate,omitempty"` // StartDate string `json:"startDate,omitempty"` // From 7f12f21d5e2674a1d5cd0a8eaa9ab90135c84f9f Mon Sep 17 00:00:00 2001 From: fmunoz Date: Wed, 9 Aug 2023 16:42:09 -0600 Subject: [PATCH 2/2] ## [1.1.22] - 2023-08-09 - Support for nested children conditions was added. - Adding parameter `RequestBasicPwdAuth` to `RequestAllowedProtocolsCreateAllowedProtocolAllowedProtocolsTeap` and `RequestAllowedProtocolsUpdateAllowedProtocolByIDAllowedProtocolsTeap` struct. --- CHANGELOG.md | 2 +- sdk/allowed_protocols.go | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dc9e457..86c1d62 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [1.1.22] - 2023-08-09 - Support for nested children conditions was added. -- Adding parameter `RequestBasicPwdAuth` to `RequestAllowedProtocolsCreateAllowedProtocolAllowedProtocolsTeap` struct. +- Adding parameter `RequestBasicPwdAuth` to `RequestAllowedProtocolsCreateAllowedProtocolAllowedProtocolsTeap` and `RequestAllowedProtocolsUpdateAllowedProtocolByIDAllowedProtocolsTeap` struct. ## [1.1.21] - 2023-06-27 - `ResponseNetworkDeviceGroupGetNetworkDeviceGroupByNameNetworkDeviceGroup`, `ResponseNetworkDeviceGroupGetNetworkDeviceGroupByIDNetworkDeviceGroup` and `RequestNetworkDeviceGroupUpdateNetworkDeviceGroupByIDNetworkDeviceGroup` change Ndgtype TO Othername on network_device_group.go. diff --git a/sdk/allowed_protocols.go b/sdk/allowed_protocols.go index ea90cda..7926cf1 100644 --- a/sdk/allowed_protocols.go +++ b/sdk/allowed_protocols.go @@ -405,6 +405,7 @@ type RequestAllowedProtocolsUpdateAllowedProtocolByIDAllowedProtocolsTeap struct AcceptClientCertDuringTunnelEst *bool `json:"acceptClientCertDuringTunnelEst,omitempty"` // EnableEapChaining *bool `json:"enableEapChaining,omitempty"` // AllowDowngradeMsk *bool `json:"allowDowngradeMsk,omitempty"` // + RequestBasicPwdAuth *bool `json:"requestBasicPwdAuth,omitempty"` // } type RequestAllowedProtocolsCreateAllowedProtocol struct {