2022-09-05 03:06:08 -04:00
|
|
|
/*
|
|
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-03-22 11:03:15 -04:00
|
|
|
package gcp
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
compute "cloud.google.com/go/compute/apiv1"
|
|
|
|
|
|
|
|
"github.com/googleapis/gax-go/v2"
|
|
|
|
computepb "google.golang.org/genproto/googleapis/cloud/compute/v1"
|
|
|
|
)
|
|
|
|
|
|
|
|
type instanceAPI interface {
|
|
|
|
Get(ctx context.Context, req *computepb.GetInstanceRequest, opts ...gax.CallOption) (*computepb.Instance, error)
|
|
|
|
List(ctx context.Context, req *computepb.ListInstancesRequest, opts ...gax.CallOption) InstanceIterator
|
|
|
|
SetMetadata(ctx context.Context, req *computepb.SetMetadataInstanceRequest, opts ...gax.CallOption) (*compute.Operation, error)
|
|
|
|
Close() error
|
|
|
|
}
|
|
|
|
|
2022-05-24 04:04:42 -04:00
|
|
|
type subnetworkAPI interface {
|
|
|
|
List(ctx context.Context, req *computepb.ListSubnetworksRequest, opts ...gax.CallOption) SubnetworkIterator
|
|
|
|
Get(ctx context.Context, req *computepb.GetSubnetworkRequest, opts ...gax.CallOption) (*computepb.Subnetwork, error)
|
|
|
|
Close() error
|
|
|
|
}
|
|
|
|
|
2022-06-09 16:26:36 -04:00
|
|
|
type forwardingRulesAPI interface {
|
2022-08-31 21:40:29 -04:00
|
|
|
List(ctx context.Context, req *computepb.ListGlobalForwardingRulesRequest, opts ...gax.CallOption) ForwardingRuleIterator
|
2022-06-09 16:26:36 -04:00
|
|
|
Close() error
|
|
|
|
}
|
|
|
|
|
2022-03-22 11:03:15 -04:00
|
|
|
type metadataAPI interface {
|
|
|
|
InstanceAttributeValue(attr string) (string, error)
|
2022-10-24 10:58:21 -04:00
|
|
|
InstanceID() (string, error)
|
2022-03-22 11:03:15 -04:00
|
|
|
ProjectID() (string, error)
|
|
|
|
Zone() (string, error)
|
|
|
|
InstanceName() (string, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
type Operation interface {
|
|
|
|
Proto() *computepb.Operation
|
|
|
|
}
|
|
|
|
|
|
|
|
type InstanceIterator interface {
|
|
|
|
Next() (*computepb.Instance, error)
|
|
|
|
}
|
2022-05-24 04:04:42 -04:00
|
|
|
|
|
|
|
type SubnetworkIterator interface {
|
|
|
|
Next() (*computepb.Subnetwork, error)
|
|
|
|
}
|
2022-06-09 16:26:36 -04:00
|
|
|
|
|
|
|
type ForwardingRuleIterator interface {
|
|
|
|
Next() (*computepb.ForwardingRule, error)
|
|
|
|
}
|