-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathv1_dbrp.go
198 lines (187 loc) · 5.43 KB
/
v1_dbrp.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
package main
import (
v1dbrps "github.com/influxdata/influx-cli/v2/clients/v1_dbrps"
"github.com/influxdata/influx-cli/v2/pkg/cli/middleware"
"github.com/urfave/cli"
)
func newV1DBRPCmd() cli.Command {
return cli.Command{
Name: "dbrp",
Usage: "Commands to manage database and retention policy mappings for v1 APIs",
Before: middleware.NoArgs,
Subcommands: []cli.Command{
newV1DBRPListCmd(),
newV1DBRPCreateCmd(),
newV1DBRPDeleteCmd(),
newV1DBRPUpdateCmd(),
},
}
}
func newV1DBRPListCmd() cli.Command {
var params v1dbrps.ListParams
flags := append(commonFlags(), getOrgFlags(¶ms.OrgParams)...)
return cli.Command{
Name: "list",
Usage: "List database and retention policy mappings",
Description: `List database and retention policy mappings, both standard and virtual.
Virtual DBRP mappings (InfluxDB OSS only) are created automatically using the bucket name.
Virtual mappings are read-only. To modify a virtual DBRP mapping, create a new, explicit DBRP mapping.
For more information, see https://docs.influxdata.com/influxdb/latest/query-data/influxql/dbrp/`,
Aliases: []string{"find", "ls"},
Flags: append(
flags,
&cli.StringFlag{
Name: "bucket-id",
Usage: "Limit results to the matching bucket id",
Destination: ¶ms.BucketID,
},
&cli.StringFlag{
Name: "db",
Usage: "Limit results to the matching database name",
Destination: ¶ms.DB,
},
&cli.BoolFlag{
Name: "default",
Usage: "Limit results to default mappings",
Destination: ¶ms.Default,
},
&cli.StringFlag{
Name: "id",
Usage: "Limit results to a single mapping",
Destination: ¶ms.ID,
},
&cli.StringFlag{
Name: "rp",
Usage: "Limit results to the matching retention policy name",
Destination: ¶ms.RP,
},
),
Before: middleware.WithBeforeFns(withCli(), withApi(true), middleware.NoArgs),
Action: func(ctx *cli.Context) error {
if err := checkOrgFlags(¶ms.OrgParams); err != nil {
return err
}
api := getAPI(ctx)
client := v1dbrps.Client{
CLI: getCLI(ctx),
DBRPsApi: api.DBRPsApi,
}
return client.List(getContext(ctx), ¶ms)
},
}
}
func newV1DBRPCreateCmd() cli.Command {
var params v1dbrps.CreateParams
flags := append(commonFlags(), getOrgFlags(¶ms.OrgParams)...)
return cli.Command{
Name: "create",
Usage: "Create a database and retention policy mapping to an existing bucket",
Flags: append(
flags,
&cli.StringFlag{
Name: "bucket-id",
Usage: "The ID of the bucket to be mapped",
Destination: ¶ms.BucketID,
Required: true,
},
&cli.StringFlag{
Name: "db",
Usage: "The name of the database",
Destination: ¶ms.DB,
Required: true,
},
&cli.BoolFlag{
Name: "default",
Usage: "Identify this retention policy as the default for the database",
Destination: ¶ms.Default,
},
&cli.StringFlag{
Name: "rp",
Usage: "The name of the retention policy",
Destination: ¶ms.RP,
Required: true,
},
),
Before: middleware.WithBeforeFns(withCli(), withApi(true), middleware.NoArgs),
Action: func(ctx *cli.Context) error {
if err := checkOrgFlags(¶ms.OrgParams); err != nil {
return err
}
api := getAPI(ctx)
client := v1dbrps.Client{
CLI: getCLI(ctx),
DBRPsApi: api.DBRPsApi,
OrganizationsApi: api.OrganizationsApi,
}
return client.Create(getContext(ctx), ¶ms)
},
}
}
func newV1DBRPDeleteCmd() cli.Command {
var params v1dbrps.DeleteParams
flags := append(commonFlags(), getOrgFlags(¶ms.OrgParams)...)
return cli.Command{
Name: "delete",
Usage: "Delete a database and retention policy mapping",
Flags: append(
flags,
&cli.StringFlag{
Name: "id",
Usage: "The ID of the mapping to delete",
Destination: ¶ms.ID,
Required: true,
},
),
Before: middleware.WithBeforeFns(withCli(), withApi(true), middleware.NoArgs),
Action: func(ctx *cli.Context) error {
if err := checkOrgFlags(¶ms.OrgParams); err != nil {
return err
}
api := getAPI(ctx)
client := v1dbrps.Client{
CLI: getCLI(ctx),
DBRPsApi: api.DBRPsApi,
}
return client.Delete(getContext(ctx), ¶ms)
},
}
}
func newV1DBRPUpdateCmd() cli.Command {
var params v1dbrps.UpdateParams
flags := append(commonFlags(), getOrgFlags(¶ms.OrgParams)...)
return cli.Command{
Name: "update",
Usage: "Update a database and retention policy mapping",
Flags: append(
flags,
&cli.StringFlag{
Name: "id",
Usage: "The ID of the mapping to update",
Destination: ¶ms.ID,
Required: true,
},
&cli.BoolFlag{
Name: "default",
Usage: "Set this mapping's retention policy as the default for the mapping's database",
Destination: ¶ms.Default,
},
&cli.StringFlag{
Name: "rp",
Usage: "The updated name of the retention policy",
Destination: ¶ms.RP,
},
),
Before: middleware.WithBeforeFns(withCli(), withApi(true), middleware.NoArgs),
Action: func(ctx *cli.Context) error {
if err := checkOrgFlags(¶ms.OrgParams); err != nil {
return err
}
api := getAPI(ctx)
client := v1dbrps.Client{
CLI: getCLI(ctx),
DBRPsApi: api.DBRPsApi,
}
return client.Update(getContext(ctx), ¶ms)
},
}
}