2017-03-15 22:28:03 +00:00
|
|
|
/*
|
|
|
|
Copyright 2017 The Kubernetes Authors.
|
|
|
|
|
|
|
|
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 gce
|
|
|
|
|
2017-04-12 18:57:20 +00:00
|
|
|
import (
|
|
|
|
"time"
|
2017-03-15 22:28:03 +00:00
|
|
|
|
2017-04-12 18:57:20 +00:00
|
|
|
compute "google.golang.org/api/compute/v1"
|
|
|
|
)
|
|
|
|
|
2017-06-01 22:22:34 +00:00
|
|
|
func newAddressMetricContext(request, region string) *metricContext {
|
2017-04-12 18:57:20 +00:00
|
|
|
return &metricContext{
|
|
|
|
start: time.Now(),
|
2017-06-01 22:22:34 +00:00
|
|
|
attributes: []string{"address_" + request, region, unusedMetricLabel},
|
2017-04-12 18:57:20 +00:00
|
|
|
}
|
|
|
|
}
|
2017-03-15 22:28:03 +00:00
|
|
|
|
2017-06-01 22:22:34 +00:00
|
|
|
// ReserveGlobalAddress creates a global address.
|
2017-03-15 22:28:03 +00:00
|
|
|
// Caller is allocated a random IP if they do not specify an ipAddress. If an
|
|
|
|
// ipAddress is specified, it must belong to the current project, eg: an
|
|
|
|
// ephemeral IP associated with a global forwarding rule.
|
2017-07-13 03:06:18 +00:00
|
|
|
func (gce *GCECloud) ReserveGlobalAddress(addr *compute.Address) error {
|
2017-06-01 22:22:34 +00:00
|
|
|
mc := newAddressMetricContext("reserve", "")
|
|
|
|
op, err := gce.service.GlobalAddresses.Insert(gce.projectID, addr).Do()
|
2017-03-15 22:28:03 +00:00
|
|
|
if err != nil {
|
2017-07-13 03:06:18 +00:00
|
|
|
return mc.Observe(err)
|
2017-03-15 22:28:03 +00:00
|
|
|
}
|
2017-07-13 03:06:18 +00:00
|
|
|
return gce.waitForGlobalOp(op, mc)
|
2017-03-15 22:28:03 +00:00
|
|
|
}
|
|
|
|
|
2017-06-01 22:22:34 +00:00
|
|
|
// DeleteGlobalAddress deletes a global address by name.
|
|
|
|
func (gce *GCECloud) DeleteGlobalAddress(name string) error {
|
|
|
|
mc := newAddressMetricContext("delete", "")
|
2017-03-15 22:28:03 +00:00
|
|
|
op, err := gce.service.GlobalAddresses.Delete(gce.projectID, name).Do()
|
|
|
|
if err != nil {
|
2017-04-12 18:57:20 +00:00
|
|
|
return mc.Observe(err)
|
2017-03-15 22:28:03 +00:00
|
|
|
}
|
2017-04-12 18:57:20 +00:00
|
|
|
return gce.waitForGlobalOp(op, mc)
|
2017-03-15 22:28:03 +00:00
|
|
|
}
|
|
|
|
|
2017-06-01 22:22:34 +00:00
|
|
|
// GetGlobalAddress returns the global address by name.
|
|
|
|
func (gce *GCECloud) GetGlobalAddress(name string) (*compute.Address, error) {
|
|
|
|
mc := newAddressMetricContext("get", "")
|
2017-05-05 01:04:34 +00:00
|
|
|
v, err := gce.service.GlobalAddresses.Get(gce.projectID, name).Do()
|
|
|
|
return v, mc.Observe(err)
|
2017-03-15 22:28:03 +00:00
|
|
|
}
|
2017-06-01 22:22:34 +00:00
|
|
|
|
|
|
|
// ReserveRegionAddress creates a region address
|
2017-07-13 03:06:18 +00:00
|
|
|
func (gce *GCECloud) ReserveRegionAddress(addr *compute.Address, region string) error {
|
2017-06-01 22:22:34 +00:00
|
|
|
mc := newAddressMetricContext("reserve", region)
|
|
|
|
op, err := gce.service.Addresses.Insert(gce.projectID, region, addr).Do()
|
|
|
|
if err != nil {
|
2017-07-13 03:06:18 +00:00
|
|
|
return mc.Observe(err)
|
2017-06-01 22:22:34 +00:00
|
|
|
}
|
2017-07-13 03:06:18 +00:00
|
|
|
return gce.waitForRegionOp(op, region, mc)
|
2017-06-01 22:22:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteRegionAddress deletes a region address by name.
|
|
|
|
func (gce *GCECloud) DeleteRegionAddress(name, region string) error {
|
|
|
|
mc := newAddressMetricContext("delete", region)
|
|
|
|
op, err := gce.service.Addresses.Delete(gce.projectID, region, name).Do()
|
|
|
|
if err != nil {
|
|
|
|
return mc.Observe(err)
|
|
|
|
}
|
|
|
|
return gce.waitForRegionOp(op, region, mc)
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetRegionAddress returns the region address by name
|
|
|
|
func (gce *GCECloud) GetRegionAddress(name, region string) (*compute.Address, error) {
|
|
|
|
mc := newAddressMetricContext("get", region)
|
|
|
|
v, err := gce.service.Addresses.Get(gce.projectID, region, name).Do()
|
|
|
|
return v, mc.Observe(err)
|
|
|
|
}
|