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"
|
|
|
|
|
|
|
|
"github.com/googleapis/gax-go/v2"
|
|
|
|
computepb "google.golang.org/genproto/googleapis/cloud/compute/v1"
|
|
|
|
)
|
|
|
|
|
2022-06-09 16:26:36 -04:00
|
|
|
type forwardingRulesAPI interface {
|
2022-11-09 08:43:48 -05:00
|
|
|
List(ctx context.Context, req *computepb.ListGlobalForwardingRulesRequest, opts ...gax.CallOption) forwardingRuleIterator
|
2022-06-09 16:26:36 -04:00
|
|
|
Close() error
|
|
|
|
}
|
|
|
|
|
2022-11-09 08:43:48 -05:00
|
|
|
type imdsAPI interface {
|
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)
|
|
|
|
}
|
|
|
|
|
2022-11-09 08:43:48 -05:00
|
|
|
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
|
|
|
|
Close() error
|
2022-05-24 04:04:42 -04:00
|
|
|
}
|
2022-06-09 16:26:36 -04:00
|
|
|
|
2022-11-09 08:43:48 -05:00
|
|
|
type subnetAPI interface {
|
|
|
|
Get(ctx context.Context, req *computepb.GetSubnetworkRequest, opts ...gax.CallOption) (*computepb.Subnetwork, error)
|
|
|
|
Close() error
|
2022-06-09 16:26:36 -04:00
|
|
|
}
|