forked from opengovern/og-describer-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtable_index_map.go
executable file
·59 lines (55 loc) · 2.17 KB
/
table_index_map.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
package steampipe
import (
"github.com/opengovern/og-describer-linode/pkg/sdk/es"
)
var Map = map[string]string{
"Linode/Account": "linode_account",
"Linode/Database": "linode_database",
"Linode/Domain": "linode_domain",
"Linode/Firewall": "linode_firewall",
"Linode/Image": "linode_image",
"Linode/Kubernetes/Cluster": "linode_kubernetes_cluster",
"Linode/Event": "linode_event",
"Linode/Instance": "linode_instance",
"Linode/Longview/Client": "linode_longview_client",
"Linode/NodeBalancer": "linode_node_balancer",
"Linode/ObjectStorage": "linode_object_storage",
"Linode/StackScript": "linode_stack_script",
"Linode/Vpc": "linode_vpc",
"Linode/Volume": "linode_volume",
"Linode/IPAddress": "linode_ip_address",
}
var DescriptionMap = map[string]interface{}{
"Linode/Account": opengovernance.Account{},
"Linode/Database": opengovernance.Database{},
"Linode/Domain": opengovernance.Domain{},
"Linode/Firewall": opengovernance.Firewall{},
"Linode/Image": opengovernance.Image{},
"Linode/Kubernetes/Cluster": opengovernance.KubernetesCluster{},
"Linode/Event": opengovernance.Event{},
"Linode/Instance": opengovernance.Instance{},
"Linode/Longview/Client": opengovernance.LongViewClient{},
"Linode/NodeBalancer": opengovernance.NodeBalancer{},
"Linode/ObjectStorage": opengovernance.ObjectStorageBucket{},
"Linode/StackScript": opengovernance.StackScript{},
"Linode/Vpc": opengovernance.VPC{},
"Linode/Volume": opengovernance.Volume{},
"Linode/IPAddress": opengovernance.IPAddress{},
}
var ReverseMap = map[string]string{
"linode_account": "Linode/Account",
"linode_database": "Linode/Database",
"linode_domain": "Linode/Domain",
"linode_firewall": "Linode/Firewall",
"linode_image": "Linode/Image",
"linode_kubernetes_cluster": "Linode/Kubernetes/Cluster",
"linode_event": "Linode/Event",
"linode_instance": "Linode/Instance",
"linode_longview_client": "Linode/Longview/Client",
"linode_node_balancer": "Linode/NodeBalancer",
"linode_object_storage": "Linode/ObjectStorage",
"linode_stack_script": "Linode/StackScript",
"linode_vpc": "Linode/Vpc",
"linode_volume": "Linode/Volume",
"linode_ip_address": "Linode/IPAddress",
}