Skip to content

Commit

Permalink
Merge pull request #29 from CiscoISE/develop
Browse files Browse the repository at this point in the history
## [1.1.21] - 2023-06-27
  • Loading branch information
fmunozmiranda authored Jun 27, 2023
2 parents 2290920 + 666c2f3 commit 9d05426
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [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.

## [1.1.20] - 2023-06-19
- `RequestNetworkDeviceGroupCreateNetworkDeviceGroupNetworkDeviceGroup` change Ndgtype TO Othername on network_device_group.go.
- Adding `ParentID` parameter on `RequestEndpointIDentityGroupCreateEndpointGroupEndPointGroup` struct on endpoint_identity_group.
Expand Down Expand Up @@ -206,4 +210,5 @@ 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
[Unreleased]: https://github.com/cisco-en-programmability/dnacenter-go-sdk/compare/v1.1.20...main
[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
2 changes: 2 additions & 0 deletions sdk/endpoint_identity_group.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ type ResponseEndpointIDentityGroupGetEndpointGroupByNameEndPointGroup struct {
Description string `json:"description,omitempty"` //
SystemDefined *bool `json:"systemDefined,omitempty"` //
Link *ResponseEndpointIDentityGroupGetEndpointGroupByNameEndPointGroupLink `json:"link,omitempty"` //
ParentID string `json:"parentId,omitempty"` //
}

type ResponseEndpointIDentityGroupGetEndpointGroupByNameEndPointGroupLink struct {
Expand All @@ -47,6 +48,7 @@ type ResponseEndpointIDentityGroupGetEndpointGroupByIDEndPointGroup struct {
Description string `json:"description,omitempty"` //
SystemDefined *bool `json:"systemDefined,omitempty"` //
Link *ResponseEndpointIDentityGroupGetEndpointGroupByIDEndPointGroupLink `json:"link,omitempty"` //
ParentID string `json:"parentId,omitempty"` //
}

type ResponseEndpointIDentityGroupGetEndpointGroupByIDEndPointGroupLink struct {
Expand Down
6 changes: 3 additions & 3 deletions sdk/network_device_group.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ type ResponseNetworkDeviceGroupGetNetworkDeviceGroupByNameNetworkDeviceGroup str
Name string `json:"name,omitempty"` //
Description string `json:"description,omitempty"` //
Link *ResponseNetworkDeviceGroupGetNetworkDeviceGroupByNameNetworkDeviceGroupLink `json:"link,omitempty"` //
Ndgtype string `json:"ndgtype,omitempty"` //
Othername string `json:"othername,omitempty"` //
}

type ResponseNetworkDeviceGroupGetNetworkDeviceGroupByNameNetworkDeviceGroupLink struct {
Expand All @@ -46,7 +46,7 @@ type ResponseNetworkDeviceGroupGetNetworkDeviceGroupByIDNetworkDeviceGroup struc
Name string `json:"name,omitempty"` //
Description string `json:"description,omitempty"` //
Link *ResponseNetworkDeviceGroupGetNetworkDeviceGroupByIDNetworkDeviceGroupLink `json:"link,omitempty"` //
Ndgtype string `json:"ndgtype,omitempty"` //
Othername string `json:"othername,omitempty"` //
}

type ResponseNetworkDeviceGroupGetNetworkDeviceGroupByIDNetworkDeviceGroupLink struct {
Expand Down Expand Up @@ -132,7 +132,7 @@ type RequestNetworkDeviceGroupUpdateNetworkDeviceGroupByIDNetworkDeviceGroup str
ID string `json:"id,omitempty"` //
Name string `json:"name,omitempty"` //
Description string `json:"description,omitempty"` //
Ndgtype string `json:"ndgtype,omitempty"` //
Othername string `json:"othername,omitempty"` //
}

type RequestNetworkDeviceGroupCreateNetworkDeviceGroup struct {
Expand Down

0 comments on commit 9d05426

Please sign in to comment.