Skip to content

Commit

Permalink
Fix: change Kubernetes node pool lan id to uint32
Browse files Browse the repository at this point in the history
  • Loading branch information
apica-ionos committed Jul 16, 2020
1 parent be41629 commit f1d9f2d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2242,7 +2242,7 @@ GetResourceByType(resourcetype, resourceId)
| Name | Required | Type | Description |
| ---- | -------- | ------ | ---------------------------- |
| ID | **no** | string | The ID of the LAN in the VDC |
| ID | **yes** | uint32 | The ID of the LAN in the VDC |
## MaintenanceWindow Resource Object
Expand Down
2 changes: 1 addition & 1 deletion k8s.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ type AutoScaling struct {
type KubernetesNodePoolLAN struct {
// The ID of the lan the Kubernetes Node Pool should be part of
// Required: true
ID string `json:"id"`
ID uint32 `json:"id"`
}

type MaintenanceWindow struct {
Expand Down

0 comments on commit f1d9f2d

Please sign in to comment.