forked from digitalocean/doctl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
args.go
258 lines (247 loc) · 10.4 KB
/
args.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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
/*
Copyright 2018 The Doctl Authors All rights reserved.
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.
*/
package doctl
const (
// ArgAccessToken is the access token to be used for the operations
ArgAccessToken = "access-token"
// ArgContext is the name of the auth context to use
ArgContext = "context"
// ArgActionID is an action id argument.
ArgActionID = "action-id"
// ArgActionAfter is an action after argument.
ArgActionAfter = "after"
// ArgActionBefore is an action before argument.
ArgActionBefore = "before"
// ArgActionResourceType is an action resource type argument.
ArgActionResourceType = "resource-type"
// ArgActionRegion is an action region argument.
ArgActionRegion = "region"
// ArgActionStatus is an action status argument.
ArgActionStatus = "status"
// ArgActionType is an action type argument.
ArgActionType = "action-type"
// ArgClusterName is a cluster name argument.
ArgClusterName = "cluster-name"
// ArgClusterVersionSlug is a cluster version argument.
ArgClusterVersionSlug = "version"
// ArgClusterNodePool are a cluster's node pools arguments.
ArgClusterNodePool = "node-pool"
// ArgClusterUpdateKubeconfig updates the local kubeconfig.
ArgClusterUpdateKubeconfig = "update-kubeconfig"
// ArgNodePoolName is a cluster's node pool name argument.
ArgNodePoolName = "name"
// ArgNodePoolCount is a cluster's node pool count argument.
ArgNodePoolCount = "count"
// ArgNodePoolNodeIDs is a cluster's node pool nodes argument.
ArgNodePoolNodeIDs = "node-ids"
// ArgMaintenanceWindow is a cluster's maintenance window argument
ArgMaintenanceWindow = "maintenance-window"
// ArgAutoUpdate is a cluster's auto-upgrade argument.
ArgAutoUpgrade = "auto-upgrade"
// ArgCommandWait is a wait for a resource to be created argument.
ArgCommandWait = "wait"
// ArgSetCurrentContext is a flag to set the new kubeconfig context as current.
ArgSetCurrentContext = "set-current-context"
// ArgDropletID is a droplet id argument.
ArgDropletID = "droplet-id"
// ArgDropletIDs is a list of droplet IDs.
ArgDropletIDs = "droplet-ids"
// ArgKernelID is a ekrnel id argument.
ArgKernelID = "kernel-id"
// ArgImage is an image argument.
ArgImage = "image"
// ArgImageID is an image id argument.
ArgImageID = "image-id"
// ArgImagePublic is a public image argument.
ArgImagePublic = "public"
// ArgImageSlug is an image slug argment.
ArgImageSlug = "image-slug"
// ArgIPAddress is an IP address argument.
ArgIPAddress = "ip-address"
// ArgDropletName is a droplet name argument.
ArgDropletName = "droplet-name"
// ArgResizeDisk is a resize disk argument.
ArgResizeDisk = "resize-disk"
// ArgSnapshotName is a snapshot name argument.
ArgSnapshotName = "snapshot-name"
// ArgSnapshotDesc is the description for volume snapshot.
ArgSnapshotDesc = "snapshot-desc"
// ArgResourceType is the resource type for snapshot.
ArgResourceType = "resource"
// ArgBackups is an enable backups argument.
ArgBackups = "enable-backups"
// ArgIPv6 is an enable IPv6 argument.
ArgIPv6 = "enable-ipv6"
// ArgPrivateNetworking is an enable private networking argument.
ArgPrivateNetworking = "enable-private-networking"
// ArgMonitoring is an enable monitoring argument.
ArgMonitoring = "enable-monitoring"
// ArgRecordData is a record data argument.
ArgRecordData = "record-data"
// ArgRecordID is a record id argument.
ArgRecordID = "record-id"
// ArgRecordName is a record name argument.
ArgRecordName = "record-name"
// ArgRecordPort is a record port argument.
ArgRecordPort = "record-port"
// ArgRecordPriority is a record priority argument.
ArgRecordPriority = "record-priority"
// ArgRecordType is a record type argument.
ArgRecordType = "record-type"
// ArgRecordTTL is a record ttl argument.
ArgRecordTTL = "record-ttl"
// ArgRecordWeight is a record weight argument.
ArgRecordWeight = "record-weight"
// ArgRecordFlags is a record flags argument.
ArgRecordFlags = "record-flags"
// ArgRecordTag is a record tag argument.
ArgRecordTag = "record-tag"
// ArgRegionSlug is a region slug argument.
ArgRegionSlug = "region"
// ArgSizeSlug is a size slug argument.
ArgSizeSlug = "size"
// ArgsSSHKeyPath is a ssh argument.
ArgsSSHKeyPath = "ssh-key-path"
// ArgSSHKeys is a ssh key argument.
ArgSSHKeys = "ssh-keys"
// ArgsSSHPort is a ssh argument.
ArgsSSHPort = "ssh-port"
// ArgsSSHAgentForwarding is a ssh argument.
ArgsSSHAgentForwarding = "ssh-agent-forwarding"
// ArgsSSHPrivateIP is a ssh argument.
ArgsSSHPrivateIP = "ssh-private-ip"
// ArgSSHCommand is a ssh argument.
ArgSSHCommand = "ssh-command"
// ArgUserData is a user data argument.
ArgUserData = "user-data"
// ArgUserDataFile is a user data file location argument.
ArgUserDataFile = "user-data-file"
// ArgImageName name is an image name argument.
ArgImageName = "image-name"
// ArgKey is a key argument.
ArgKey = "key"
// ArgKeyName is a key name argument.
ArgKeyName = "key-name"
// ArgKeyPublicKey is a public key argument.
ArgKeyPublicKey = "public-key"
// ArgKeyPublicKeyFile is a public key file argument.
ArgKeyPublicKeyFile = "public-key-file"
// ArgSSHUser is a SSH user argument.
ArgSSHUser = "ssh-user"
// ArgFormat is columns to include in output argment.
ArgFormat = "format"
// ArgNoHeader hides the output header.
ArgNoHeader = "no-header"
// ArgPollTime is how long before the next poll argument.
ArgPollTime = "poll-timeout"
// ArgTagName is a tag name
// NOTE: ArgTagName will be deprecated once existing uses have been migrated
// to use `--tag` (ArgTag). ArgTagName should not be used on new calls.
ArgTagName = "tag-name"
// ArgTagNames is a slice of possible tag names
// NOTE: ArgTagNames will be deprecated once existing uses have been migrated
// to use `--tag` (ArgTag). ArgTagNames should not be used on new calls.
ArgTagNames = "tag-names"
// ArgTag specifies tag. --tag can be repeated or multiple tags can be , separated.
ArgTag = "tag"
//ArgTemplate is template format
ArgTemplate = "template"
// ArgVersion is the version of the command to use
ArgVersion = "version"
// ArgVerbose enables verbose output
ArgVerbose = "verbose"
// ArgOutput is an output type argument.
ArgOutput = "output"
// ArgVolumeSize is the size of a volume.
ArgVolumeSize = "size"
// ArgVolumeDesc is the description of a volume.
ArgVolumeDesc = "desc"
// ArgVolumeRegion is the region of a volume.
ArgVolumeRegion = "region"
// ArgVolumeSnapshot is the snapshot from which to create a volume.
ArgVolumeSnapshot = "snapshot"
// ArgVolumeFilesystemType is the filesystem type for a volume.
ArgVolumeFilesystemType = "fs-type"
// ArgVolumeFilesystemLabel is the filesystem label for a volume.
ArgVolumeFilesystemLabel = "fs-label"
// ArgVolumeList is the IDs of many volumes.
ArgVolumeList = "volumes"
// ArgCDNTTL is a cdn ttl argument
ArgCDNTTL = "ttl"
// ArgCDNDomain is a cdn custom domain argument
ArgCDNDomain = "domain"
// ArgCDNCertificateID is a certificate id to use with a custom domain
ArgCDNCertificateID = "certificate-id"
// ArgCDNFiles is a cdn files argument
ArgCDNFiles = "files"
// ArgCertificateName is a name of the certificate.
ArgCertificateName = "name"
// ArgCertificateDNSNames is a list of DNS names.
ArgCertificateDNSNames = "dns-names"
// ArgPrivateKeyPath is a path to a private key for the certificate.
ArgPrivateKeyPath = "private-key-path"
// ArgLeafCertificatePath is a path to a certificate leaf.
ArgLeafCertificatePath = "leaf-certificate-path"
// ArgCertificateChainPath is a path to a certificate chain.
ArgCertificateChainPath = "certificate-chain-path"
// ArgCertificateType is a certificate type.
ArgCertificateType = "type"
// ArgLoadBalancerName is a name of the load balancer.
ArgLoadBalancerName = "name"
// ArgLoadBalancerAlgorithm is a load balancing algorithm.
ArgLoadBalancerAlgorithm = "algorithm"
// ArgRedirectHttpToHttps is a flag that indicates whether HTTP requests to the load balancer on port 80 should be redirected to HTTPS on port 443.
ArgRedirectHttpToHttps = "redirect-http-to-https"
// ArgStickySessions is a list of sticky sessions settings for the load balancer.
ArgStickySessions = "sticky-sessions"
// ArgHealthCheck is a list of health check settings for the load balancer.
ArgHealthCheck = "health-check"
// ArgForwardingRules is a list of forwarding rules for the load balancer.
ArgForwardingRules = "forwarding-rules"
// ArgFirewallName is a name of the firewall.
ArgFirewallName = "name"
// ArgInboundRules is a list of inbound rules for the firewall.
ArgInboundRules = "inbound-rules"
// ArgOutboundRules is a list of outbound rules for the firewall.
ArgOutboundRules = "outbound-rules"
// ArgProjectName is the name of a project.
ArgProjectName = "name"
// ArgProjectDescription is the description of a project.
ArgProjectDescription = "description"
// ArgProjectPurpose is the purpose of a project.
ArgProjectPurpose = "purpose"
// ArgProjectEnvironment is the environment of a project. Should be one of 'Development', 'Staging', 'Production'.
ArgProjectEnvironment = "environment"
// ArgProjectIsDefault is used to change the default project.
ArgProjectIsDefault = "is_default"
// ArgProjectResource is a flag for your resource URNs
ArgProjectResource = "resource"
// ArgDatabaseEngine is a flag for specifying which database engine to use
ArgDatabaseEngine = "engine"
// ArgDatabaseNumNodes is the number of nodes in the database cluster
ArgDatabaseNumNodes = "num-nodes"
// ArgDatabaseMaintenanceDay is the new day for the maintenance window
ArgDatabaseMaintenanceDay = "day"
// ArgDatabaseMaintenanceHour is the new hour for the maintenance window
ArgDatabaseMaintenanceHour = "hour"
// ArgDatabasePoolUserName is the name of user for use with connection pool
ArgDatabasePoolUserName = "user"
// ArgDatabasePoolDBName is the database for use with connection pool
ArgDatabasePoolDBName = "db"
// ArgDatabasePoolSize is the flag for connection pool size
ArgDatabasePoolSize = "size"
// ArgDatabasePoolMode is the flag for connection pool mode
ArgDatabasePoolMode = "mode"
// ArgForce forces confirmation on actions
ArgForce = "force"
)