Skip to content

Commit

Permalink
Merge pull request #70 from cisco-en-programmability/develop
Browse files Browse the repository at this point in the history
New version 5.0.19
  • Loading branch information
bvargasre authored Nov 14, 2023
2 parents f9f850f + 597ffa5 commit fcadcec
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
8 changes: 7 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]

## [5.0.19] - 2023-11-14
### Chaged
- Add `Progress`parameter to `ResponseItemDeviceOnboardingPnpGetDeviceList2`.

## [5.0.18] - 2023-11-14
### Chaged
- `tag service` updated to `Items` to array of `object`.
Expand Down Expand Up @@ -578,4 +582,6 @@ Services removed on Cisco DNA Center 2.3.3.0's API:
[5.0.15]: https://github.com/cisco-en-programmability/dnacenter-go-sdk/compare/v5.0.14...v5.0.15
[5.0.16]: https://github.com/cisco-en-programmability/dnacenter-go-sdk/compare/v5.0.15...v5.0.16
[5.0.17]: https://github.com/cisco-en-programmability/dnacenter-go-sdk/compare/v5.0.16...v5.0.17
[Unreleased]: https://github.com/cisco-en-programmability/dnacenter-go-sdk/compare/v5.0.17...main
[5.0.18]: https://github.com/cisco-en-programmability/dnacenter-go-sdk/compare/v5.0.17...v5.0.18
[5.0.19]: https://github.com/cisco-en-programmability/dnacenter-go-sdk/compare/v5.0.18...v5.0.19
[Unreleased]: https://github.com/cisco-en-programmability/dnacenter-go-sdk/compare/v5.0.19...main
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ if devices.Response != nil {
| 2.y.z | 2.2.2.3 |
| 3.y.z | 2.2.3.3 |
| 4.y.z | 2.3.3.0 |
| 5.y.z | 2.3.5.3 |
| 5.y.z | 2.3.5.3 |

## Changelog

Expand Down
6 changes: 6 additions & 0 deletions sdk/device_onboarding_pnp.go
Original file line number Diff line number Diff line change
Expand Up @@ -408,6 +408,7 @@ type ResponseItemDeviceOnboardingPnpGetDeviceList2 struct {
DayZeroConfigPreview *ResponseItemDeviceOnboardingPnpGetDeviceList2DayZeroConfigPreview `json:"dayZeroConfigPreview,omitempty"` // Day Zero Config Preview
Version *float64 `json:"version,omitempty"` // Version
TenantID string `json:"tenantId,omitempty"` // Tenant Id
Progress *ResponseItemDeviceOnboardingPnpGetDeviceList2Progress `json:"progress,omitempty"` //
ID string `json:"id,omitempty"` // Id
}
type ResponseItemDeviceOnboardingPnpGetDeviceList2DeviceInfo struct {
Expand Down Expand Up @@ -729,6 +730,11 @@ type ResponseDeviceOnboardingPnpClaimDevice struct {
Message string `json:"message,omitempty"` // Message
StatusCode *float64 `json:"statusCode,omitempty"` // Status Code
}
type ResponseItemDeviceOnboardingPnpGetDeviceList2Progress struct {
Message string `json:"message,omitempty"`
InProgress bool `json:"inProgress,omitempty"`
ProgressPercent int `json:"progressPercent,omitempty"`
}
type ResponseDeviceOnboardingPnpClaimDeviceJSONArrayResponse interface{}
type ResponseDeviceOnboardingPnpClaimDeviceJSONResponse interface{}
type ResponseDeviceOnboardingPnpGetDeviceCount struct {
Expand Down

0 comments on commit fcadcec

Please sign in to comment.