-
Notifications
You must be signed in to change notification settings - Fork 123
/
zz_apigatewayv2_setup.go
executable file
·48 lines (43 loc) · 1.82 KB
/
zz_apigatewayv2_setup.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// SPDX-FileCopyrightText: 2023 The Crossplane Authors <https://crossplane.io>
//
// SPDX-License-Identifier: Apache-2.0
package controller
import (
ctrl "sigs.k8s.io/controller-runtime"
"github.com/crossplane/upjet/pkg/controller"
api "github.com/upbound/provider-aws/internal/controller/apigatewayv2/api"
apimapping "github.com/upbound/provider-aws/internal/controller/apigatewayv2/apimapping"
authorizer "github.com/upbound/provider-aws/internal/controller/apigatewayv2/authorizer"
deployment "github.com/upbound/provider-aws/internal/controller/apigatewayv2/deployment"
domainname "github.com/upbound/provider-aws/internal/controller/apigatewayv2/domainname"
integration "github.com/upbound/provider-aws/internal/controller/apigatewayv2/integration"
integrationresponse "github.com/upbound/provider-aws/internal/controller/apigatewayv2/integrationresponse"
model "github.com/upbound/provider-aws/internal/controller/apigatewayv2/model"
route "github.com/upbound/provider-aws/internal/controller/apigatewayv2/route"
routeresponse "github.com/upbound/provider-aws/internal/controller/apigatewayv2/routeresponse"
stage "github.com/upbound/provider-aws/internal/controller/apigatewayv2/stage"
vpclink "github.com/upbound/provider-aws/internal/controller/apigatewayv2/vpclink"
)
// Setup_apigatewayv2 creates all controllers with the supplied logger and adds them to
// the supplied manager.
func Setup_apigatewayv2(mgr ctrl.Manager, o controller.Options) error {
for _, setup := range []func(ctrl.Manager, controller.Options) error{
api.Setup,
apimapping.Setup,
authorizer.Setup,
deployment.Setup,
domainname.Setup,
integration.Setup,
integrationresponse.Setup,
model.Setup,
route.Setup,
routeresponse.Setup,
stage.Setup,
vpclink.Setup,
} {
if err := setup(mgr, o); err != nil {
return err
}
}
return nil
}