328 lines
8.2 KiB
Go
328 lines
8.2 KiB
Go
//
|
|
// Copyright 2018, Sander van Harmelen
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//
|
|
|
|
package cloudstack
|
|
|
|
import (
|
|
"encoding/json"
|
|
"net/url"
|
|
"strconv"
|
|
)
|
|
|
|
type AddBigSwitchBcfDeviceParams struct {
|
|
p map[string]interface{}
|
|
}
|
|
|
|
func (p *AddBigSwitchBcfDeviceParams) toURLValues() url.Values {
|
|
u := url.Values{}
|
|
if p.p == nil {
|
|
return u
|
|
}
|
|
if v, found := p.p["hostname"]; found {
|
|
u.Set("hostname", v.(string))
|
|
}
|
|
if v, found := p.p["nat"]; found {
|
|
vv := strconv.FormatBool(v.(bool))
|
|
u.Set("nat", vv)
|
|
}
|
|
if v, found := p.p["password"]; found {
|
|
u.Set("password", v.(string))
|
|
}
|
|
if v, found := p.p["physicalnetworkid"]; found {
|
|
u.Set("physicalnetworkid", v.(string))
|
|
}
|
|
if v, found := p.p["username"]; found {
|
|
u.Set("username", v.(string))
|
|
}
|
|
return u
|
|
}
|
|
|
|
func (p *AddBigSwitchBcfDeviceParams) SetHostname(v string) {
|
|
if p.p == nil {
|
|
p.p = make(map[string]interface{})
|
|
}
|
|
p.p["hostname"] = v
|
|
return
|
|
}
|
|
|
|
func (p *AddBigSwitchBcfDeviceParams) SetNat(v bool) {
|
|
if p.p == nil {
|
|
p.p = make(map[string]interface{})
|
|
}
|
|
p.p["nat"] = v
|
|
return
|
|
}
|
|
|
|
func (p *AddBigSwitchBcfDeviceParams) SetPassword(v string) {
|
|
if p.p == nil {
|
|
p.p = make(map[string]interface{})
|
|
}
|
|
p.p["password"] = v
|
|
return
|
|
}
|
|
|
|
func (p *AddBigSwitchBcfDeviceParams) SetPhysicalnetworkid(v string) {
|
|
if p.p == nil {
|
|
p.p = make(map[string]interface{})
|
|
}
|
|
p.p["physicalnetworkid"] = v
|
|
return
|
|
}
|
|
|
|
func (p *AddBigSwitchBcfDeviceParams) SetUsername(v string) {
|
|
if p.p == nil {
|
|
p.p = make(map[string]interface{})
|
|
}
|
|
p.p["username"] = v
|
|
return
|
|
}
|
|
|
|
// You should always use this function to get a new AddBigSwitchBcfDeviceParams instance,
|
|
// as then you are sure you have configured all required params
|
|
func (s *BigSwitchBCFService) NewAddBigSwitchBcfDeviceParams(hostname string, nat bool, password string, physicalnetworkid string, username string) *AddBigSwitchBcfDeviceParams {
|
|
p := &AddBigSwitchBcfDeviceParams{}
|
|
p.p = make(map[string]interface{})
|
|
p.p["hostname"] = hostname
|
|
p.p["nat"] = nat
|
|
p.p["password"] = password
|
|
p.p["physicalnetworkid"] = physicalnetworkid
|
|
p.p["username"] = username
|
|
return p
|
|
}
|
|
|
|
// Adds a BigSwitch BCF Controller device
|
|
func (s *BigSwitchBCFService) AddBigSwitchBcfDevice(p *AddBigSwitchBcfDeviceParams) (*AddBigSwitchBcfDeviceResponse, error) {
|
|
resp, err := s.cs.newRequest("addBigSwitchBcfDevice", p.toURLValues())
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var r AddBigSwitchBcfDeviceResponse
|
|
if err := json.Unmarshal(resp, &r); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// If we have a async client, we need to wait for the async result
|
|
if s.cs.async {
|
|
b, err := s.cs.GetAsyncJobResult(r.JobID, s.cs.timeout)
|
|
if err != nil {
|
|
if err == AsyncTimeoutErr {
|
|
return &r, err
|
|
}
|
|
return nil, err
|
|
}
|
|
|
|
b, err = getRawValue(b)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if err := json.Unmarshal(b, &r); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
return &r, nil
|
|
}
|
|
|
|
type AddBigSwitchBcfDeviceResponse struct {
|
|
JobID string `json:"jobid"`
|
|
Bcfdeviceid string `json:"bcfdeviceid"`
|
|
Bigswitchdevicename string `json:"bigswitchdevicename"`
|
|
Hostname string `json:"hostname"`
|
|
Nat bool `json:"nat"`
|
|
Password string `json:"password"`
|
|
Physicalnetworkid string `json:"physicalnetworkid"`
|
|
Provider string `json:"provider"`
|
|
Username string `json:"username"`
|
|
}
|
|
|
|
type DeleteBigSwitchBcfDeviceParams struct {
|
|
p map[string]interface{}
|
|
}
|
|
|
|
func (p *DeleteBigSwitchBcfDeviceParams) toURLValues() url.Values {
|
|
u := url.Values{}
|
|
if p.p == nil {
|
|
return u
|
|
}
|
|
if v, found := p.p["bcfdeviceid"]; found {
|
|
u.Set("bcfdeviceid", v.(string))
|
|
}
|
|
return u
|
|
}
|
|
|
|
func (p *DeleteBigSwitchBcfDeviceParams) SetBcfdeviceid(v string) {
|
|
if p.p == nil {
|
|
p.p = make(map[string]interface{})
|
|
}
|
|
p.p["bcfdeviceid"] = v
|
|
return
|
|
}
|
|
|
|
// You should always use this function to get a new DeleteBigSwitchBcfDeviceParams instance,
|
|
// as then you are sure you have configured all required params
|
|
func (s *BigSwitchBCFService) NewDeleteBigSwitchBcfDeviceParams(bcfdeviceid string) *DeleteBigSwitchBcfDeviceParams {
|
|
p := &DeleteBigSwitchBcfDeviceParams{}
|
|
p.p = make(map[string]interface{})
|
|
p.p["bcfdeviceid"] = bcfdeviceid
|
|
return p
|
|
}
|
|
|
|
// delete a BigSwitch BCF Controller device
|
|
func (s *BigSwitchBCFService) DeleteBigSwitchBcfDevice(p *DeleteBigSwitchBcfDeviceParams) (*DeleteBigSwitchBcfDeviceResponse, error) {
|
|
resp, err := s.cs.newRequest("deleteBigSwitchBcfDevice", p.toURLValues())
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var r DeleteBigSwitchBcfDeviceResponse
|
|
if err := json.Unmarshal(resp, &r); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// If we have a async client, we need to wait for the async result
|
|
if s.cs.async {
|
|
b, err := s.cs.GetAsyncJobResult(r.JobID, s.cs.timeout)
|
|
if err != nil {
|
|
if err == AsyncTimeoutErr {
|
|
return &r, err
|
|
}
|
|
return nil, err
|
|
}
|
|
|
|
if err := json.Unmarshal(b, &r); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
return &r, nil
|
|
}
|
|
|
|
type DeleteBigSwitchBcfDeviceResponse struct {
|
|
JobID string `json:"jobid"`
|
|
Displaytext string `json:"displaytext"`
|
|
Success bool `json:"success"`
|
|
}
|
|
|
|
type ListBigSwitchBcfDevicesParams struct {
|
|
p map[string]interface{}
|
|
}
|
|
|
|
func (p *ListBigSwitchBcfDevicesParams) toURLValues() url.Values {
|
|
u := url.Values{}
|
|
if p.p == nil {
|
|
return u
|
|
}
|
|
if v, found := p.p["bcfdeviceid"]; found {
|
|
u.Set("bcfdeviceid", v.(string))
|
|
}
|
|
if v, found := p.p["keyword"]; found {
|
|
u.Set("keyword", v.(string))
|
|
}
|
|
if v, found := p.p["page"]; found {
|
|
vv := strconv.Itoa(v.(int))
|
|
u.Set("page", vv)
|
|
}
|
|
if v, found := p.p["pagesize"]; found {
|
|
vv := strconv.Itoa(v.(int))
|
|
u.Set("pagesize", vv)
|
|
}
|
|
if v, found := p.p["physicalnetworkid"]; found {
|
|
u.Set("physicalnetworkid", v.(string))
|
|
}
|
|
return u
|
|
}
|
|
|
|
func (p *ListBigSwitchBcfDevicesParams) SetBcfdeviceid(v string) {
|
|
if p.p == nil {
|
|
p.p = make(map[string]interface{})
|
|
}
|
|
p.p["bcfdeviceid"] = v
|
|
return
|
|
}
|
|
|
|
func (p *ListBigSwitchBcfDevicesParams) SetKeyword(v string) {
|
|
if p.p == nil {
|
|
p.p = make(map[string]interface{})
|
|
}
|
|
p.p["keyword"] = v
|
|
return
|
|
}
|
|
|
|
func (p *ListBigSwitchBcfDevicesParams) SetPage(v int) {
|
|
if p.p == nil {
|
|
p.p = make(map[string]interface{})
|
|
}
|
|
p.p["page"] = v
|
|
return
|
|
}
|
|
|
|
func (p *ListBigSwitchBcfDevicesParams) SetPagesize(v int) {
|
|
if p.p == nil {
|
|
p.p = make(map[string]interface{})
|
|
}
|
|
p.p["pagesize"] = v
|
|
return
|
|
}
|
|
|
|
func (p *ListBigSwitchBcfDevicesParams) SetPhysicalnetworkid(v string) {
|
|
if p.p == nil {
|
|
p.p = make(map[string]interface{})
|
|
}
|
|
p.p["physicalnetworkid"] = v
|
|
return
|
|
}
|
|
|
|
// You should always use this function to get a new ListBigSwitchBcfDevicesParams instance,
|
|
// as then you are sure you have configured all required params
|
|
func (s *BigSwitchBCFService) NewListBigSwitchBcfDevicesParams() *ListBigSwitchBcfDevicesParams {
|
|
p := &ListBigSwitchBcfDevicesParams{}
|
|
p.p = make(map[string]interface{})
|
|
return p
|
|
}
|
|
|
|
// Lists BigSwitch BCF Controller devices
|
|
func (s *BigSwitchBCFService) ListBigSwitchBcfDevices(p *ListBigSwitchBcfDevicesParams) (*ListBigSwitchBcfDevicesResponse, error) {
|
|
resp, err := s.cs.newRequest("listBigSwitchBcfDevices", p.toURLValues())
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var r ListBigSwitchBcfDevicesResponse
|
|
if err := json.Unmarshal(resp, &r); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &r, nil
|
|
}
|
|
|
|
type ListBigSwitchBcfDevicesResponse struct {
|
|
Count int `json:"count"`
|
|
BigSwitchBcfDevices []*BigSwitchBcfDevice `json:"bigswitchbcfdevice"`
|
|
}
|
|
|
|
type BigSwitchBcfDevice struct {
|
|
Bcfdeviceid string `json:"bcfdeviceid"`
|
|
Bigswitchdevicename string `json:"bigswitchdevicename"`
|
|
Hostname string `json:"hostname"`
|
|
Nat bool `json:"nat"`
|
|
Password string `json:"password"`
|
|
Physicalnetworkid string `json:"physicalnetworkid"`
|
|
Provider string `json:"provider"`
|
|
Username string `json:"username"`
|
|
}
|