@@ -44,6 +44,14 @@ type forwardingrulesInterface interface {
4444 Get (ctx context.Context , key * meta.Key , options ... k8scloud.Option ) (* compute.ForwardingRule , error )
4545 Insert (ctx context.Context , key * meta.Key , obj * compute.ForwardingRule , options ... k8scloud.Option ) error
4646 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
4755}
4856
4957type healthchecksInterface interface {
@@ -89,7 +97,7 @@ type Service struct {
8997 backendservices backendservicesInterface
9098 regionalbackendservices backendservicesInterface
9199 forwardingrules forwardingrulesInterface
92- regionalforwardingrules forwardingrulesInterface
100+ regionalforwardingrules regionalforwardingrulesInterface
93101 healthchecks healthchecksInterface
94102 regionalhealthchecks healthchecksInterface
95103 instancegroups instancegroupsInterface
0 commit comments