Skip to content

Commit

Permalink
Merge pull request #73 from cisco-en-programmability/develop
Browse files Browse the repository at this point in the history
## [5.0.22] - 2023-11-24
  • Loading branch information
fmunozmiranda authored Nov 24, 2023
2 parents eaa9349 + d36b9ae commit 932c70a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [5.0.22] - 2023-11-24
- `Progress` struct added to `ResponseDeviceOnboardingPnpGetDeviceByIDDeviceInfo`.

## [5.0.21] - 2023-11-20
- `ResponseConfigurationTemplatesGetProjectsDetails` is now an array.

Expand Down Expand Up @@ -593,4 +596,5 @@ Services removed on Cisco DNA Center 2.3.3.0's API:
[5.0.19]: https://github.com/cisco-en-programmability/dnacenter-go-sdk/compare/v5.0.18...v5.0.19
[5.0.20]: https://github.com/cisco-en-programmability/dnacenter-go-sdk/compare/v5.0.19...v5.0.20
[5.0.21]: https://github.com/cisco-en-programmability/dnacenter-go-sdk/compare/v5.0.20...v5.0.21
[Unreleased]: https://github.com/cisco-en-programmability/dnacenter-go-sdk/compare/v5.0.21...main
[5.0.22]: https://github.com/cisco-en-programmability/dnacenter-go-sdk/compare/v5.0.21...v5.0.22
[Unreleased]: https://github.com/cisco-en-programmability/dnacenter-go-sdk/compare/v5.0.22...main
8 changes: 8 additions & 0 deletions sdk/device_onboarding_pnp.go
Original file line number Diff line number Diff line change
Expand Up @@ -1925,7 +1925,15 @@ type ResponseDeviceOnboardingPnpGetDeviceByIDDeviceInfo struct {
PopulateInventory *bool `json:"populateInventory,omitempty"` // Populate Inventory
SiteName string `json:"siteName,omitempty"` // Site Name
Name string `json:"name,omitempty"` // Name
Progress *ResponseDeviceOnboardingPnpGetDeviceByIDDeviceInfoProgress `json:"progress,omitempty"` // Progress
}

type ResponseDeviceOnboardingPnpGetDeviceByIDDeviceInfoProgress struct {
Message string `json:"message,omitempty"`
InProgress bool `json:"inProgress,omitempty"`
ProgressPercent int `json:"progressPercent,omitempty"`
}

type ResponseDeviceOnboardingPnpGetDeviceByIDDeviceInfoLocation struct {
SiteID string `json:"siteId,omitempty"` // Site Id
Address string `json:"address,omitempty"` // Address
Expand Down

0 comments on commit 932c70a

Please sign in to comment.