mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-14 10:24:24 -05:00
087855ec00
* deps: update module github.com/gophercloud/gophercloud to v2 * update module github.com/gophercloud/utils to v2 and add context Signed-off-by: Daniel Weiße <dw@edgeless.systems> --------- Signed-off-by: Daniel Weiße <dw@edgeless.systems> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Daniel Weiße <dw@edgeless.systems>
32 lines
812 B
Go
32 lines
812 B
Go
/*
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
package openstack
|
|
|
|
import (
|
|
"github.com/gophercloud/gophercloud/v2"
|
|
"github.com/gophercloud/gophercloud/v2/openstack/compute/v2/servers"
|
|
"github.com/gophercloud/gophercloud/v2/openstack/networking/v2/networks"
|
|
"github.com/gophercloud/gophercloud/v2/openstack/networking/v2/subnets"
|
|
)
|
|
|
|
type apiClient struct {
|
|
servers *gophercloud.ServiceClient
|
|
networks *gophercloud.ServiceClient
|
|
}
|
|
|
|
func (c *apiClient) ListServers(opts servers.ListOptsBuilder) pagerAPI {
|
|
return servers.List(c.servers, opts)
|
|
}
|
|
|
|
func (c *apiClient) ListNetworks(opts networks.ListOptsBuilder) pagerAPI {
|
|
return networks.List(c.networks, opts)
|
|
}
|
|
|
|
func (c *apiClient) ListSubnets(opts subnets.ListOpts) pagerAPI {
|
|
return subnets.List(c.networks, opts)
|
|
}
|