@@ -44,6 +44,14 @@ type forwardingrulesInterface interface {
44
44
Get (ctx context.Context , key * meta.Key , options ... k8scloud.Option ) (* compute.ForwardingRule , error )
45
45
Insert (ctx context.Context , key * meta.Key , obj * compute.ForwardingRule , options ... k8scloud.Option ) error
46
46
Delete (ctx context.Context , key * meta.Key , options ... k8scloud.Option ) error
47
+ SetLabels (ctx context.Context , key * meta.Key , obj * compute.GlobalSetLabelsRequest , options ... k8scloud.Option ) error
48
+ }
49
+
50
+ type regionalforwardingrulesInterface interface {
51
+ Get (ctx context.Context , key * meta.Key , options ... k8scloud.Option ) (* compute.ForwardingRule , error )
52
+ Insert (ctx context.Context , key * meta.Key , obj * compute.ForwardingRule , options ... k8scloud.Option ) error
53
+ Delete (ctx context.Context , key * meta.Key , options ... k8scloud.Option ) error
54
+ SetLabels (ctx context.Context , key * meta.Key , obj * compute.RegionSetLabelsRequest , options ... k8scloud.Option ) error
47
55
}
48
56
49
57
type healthchecksInterface interface {
@@ -89,7 +97,7 @@ type Service struct {
89
97
backendservices backendservicesInterface
90
98
regionalbackendservices backendservicesInterface
91
99
forwardingrules forwardingrulesInterface
92
- regionalforwardingrules forwardingrulesInterface
100
+ regionalforwardingrules regionalforwardingrulesInterface
93
101
healthchecks healthchecksInterface
94
102
regionalhealthchecks healthchecksInterface
95
103
instancegroups instancegroupsInterface
0 commit comments