-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
regionUrlMaps_gen.go
executable file
·76 lines (64 loc) · 2.26 KB
/
regionUrlMaps_gen.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
// Copyright 2018 The Terraformer Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// AUTO-GENERATED CODE. DO NOT EDIT.
package gcp
import (
"context"
"log"
"github.com/GoogleCloudPlatform/terraformer/terraformutils"
"google.golang.org/api/compute/v1"
)
var regionUrlMapsAllowEmptyValues = []string{""}
var regionUrlMapsAdditionalFields = map[string]interface{}{}
type RegionUrlMapsGenerator struct {
GCPService
}
// Run on regionUrlMapsList and create for each TerraformResource
func (g RegionUrlMapsGenerator) createResources(ctx context.Context, regionUrlMapsList *compute.RegionUrlMapsListCall) []terraformutils.Resource {
resources := []terraformutils.Resource{}
if err := regionUrlMapsList.Pages(ctx, func(page *compute.UrlMapList) error {
for _, obj := range page.Items {
resources = append(resources, terraformutils.NewResource(
obj.Name,
obj.Name,
"google_compute_region_url_map",
g.ProviderName,
map[string]string{
"name": obj.Name,
"project": g.GetArgs()["project"].(string),
"region": g.GetArgs()["region"].(compute.Region).Name,
},
regionUrlMapsAllowEmptyValues,
regionUrlMapsAdditionalFields,
))
}
return nil
}); err != nil {
log.Println(err)
}
return resources
}
// Generate TerraformResources from GCP API,
// from each regionUrlMaps create 1 TerraformResource
// Need regionUrlMaps name as ID for terraform resource
func (g *RegionUrlMapsGenerator) InitResources() error {
ctx := context.Background()
computeService, err := compute.NewService(ctx)
if err != nil {
return err
}
regionUrlMapsList := computeService.RegionUrlMaps.List(g.GetArgs()["project"].(string), g.GetArgs()["region"].(compute.Region).Name)
g.Resources = g.createResources(ctx, regionUrlMapsList)
return nil
}