// Copyright (c) 2016 VMware, Inc. All Rights Reserved. // // This product is licensed to you under the Apache License, Version 2.0 (the "License"). // You may not use this product except in compliance with the License. // // This product may include a number of subcomponents with separate copyright notices and // license terms. Your use of these subcomponents is subject to the terms and conditions // of the subcomponent's license, as noted in the LICENSE file. package photon import ( "bytes" "encoding/json" ) // Contains functionality for networks API. type SubnetsAPI struct { client *Client } // Options used for GetAll API type SubnetGetOptions struct { Name string `urlParam:"name"` } var subnetUrl string = "/subnets" // Creates a network. func (api *SubnetsAPI) Create(networkSpec *SubnetCreateSpec) (task *Task, err error) { body, err := json.Marshal(networkSpec) if err != nil { return } res, err := api.client.restClient.Post( api.client.Endpoint+subnetUrl, "application/json", bytes.NewBuffer(body), api.client.options.TokenOptions.AccessToken) if err != nil { return } defer res.Body.Close() task, err = getTask(getError(res)) return } // Deletes a network with specified ID. func (api *SubnetsAPI) Delete(id string) (task *Task, err error) { res, err := api.client.restClient.Delete(api.client.Endpoint+subnetUrl+"/"+id, api.client.options.TokenOptions.AccessToken) if err != nil { return } defer res.Body.Close() task, err = getTask(getError(res)) return } // Gets a network with the specified ID. func (api *SubnetsAPI) Get(id string) (network *Subnet, err error) { res, err := api.client.restClient.Get(api.client.Endpoint+subnetUrl+"/"+id, api.client.options.TokenOptions.AccessToken) if err != nil { return } defer res.Body.Close() res, err = getError(res) if err != nil { return } var result Subnet err = json.NewDecoder(res.Body).Decode(&result) return &result, nil } // Returns all networks func (api *SubnetsAPI) GetAll(options *SubnetGetOptions) (result *Subnets, err error) { uri := api.client.Endpoint + subnetUrl if options != nil { uri += getQueryString(options) } res, err := api.client.restClient.GetList(api.client.Endpoint, uri, api.client.options.TokenOptions.AccessToken) result = &Subnets{} err = json.Unmarshal(res, result) return } // Sets default network. func (api *SubnetsAPI) SetDefault(id string) (task *Task, err error) { res, err := api.client.restClient.Post( api.client.Endpoint+subnetUrl+"/"+id+"/set_default", "application/json", bytes.NewBuffer([]byte("")), api.client.options.TokenOptions.AccessToken) if err != nil { return } defer res.Body.Close() task, err = getTask(getError(res)) return }