forked from harness/harness-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
types.go
427 lines (372 loc) · 12.4 KB
/
types.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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
package main
type EntityType string
type ImportType string
type StoreType int64
const (
UNDEFINED StoreType = iota
INLINE
REMOTE
)
type Filter struct {
Type ImportType `json:"importType"`
AppId string `json:"appId"`
TriggerIds []string `json:"triggerIds"`
WorkflowIds []string `json:"workflowIds"`
PipelineIds []string `json:"pipelineIds"`
Ids []string `json:"ids"`
ServiceIds []string `json:"serviceIds"`
EnvironmentIds []string `json:"environmentIds"`
}
type DestinationDetails struct {
AccountIdentifier string `json:"accountIdentifier"`
AuthToken string `json:"authToken"`
ProjectIdentifier string `json:"projectIdentifier"`
OrgIdentifier string `json:"orgIdentifier"`
}
type EntityDefaults struct {
Scope string `json:"scope"`
WorkflowAsPipeline bool `json:"workflowAsPipeline"`
}
type Defaults struct {
SecretManagerTemplate EntityDefaults `json:"SECRET_MANAGER_TEMPLATE"`
SecretManager EntityDefaults `json:"SECRET_MANAGER"`
Secret EntityDefaults `json:"SECRET"`
Connector EntityDefaults `json:"CONNECTOR"`
Workflow EntityDefaults `json:"WORKFLOW"`
Template EntityDefaults `json:"TEMPLATE"`
}
type Inputs struct {
Defaults Defaults `json:"defaults"`
}
type OrgDetails struct {
Identifier string `json:"identifier"`
Name string `json:"name"`
Description string `json:"description"`
}
type ProjectDetails struct {
OrgIdentifier string `json:"orgIdentifier"`
Identifier string `json:"identifier"`
Name string `json:"name"`
Color string `json:"color"`
Modules []string `json:"modules"`
Description string `json:"description"`
}
type BulkProjectResult struct {
AppName string `json:"appName"`
AppId string `json:"appId"`
ProjectIdentifier string `json:"projectIdentifier"`
ProjectName string `json:"projectName"`
Error UpgradeError `json:"error"`
}
type BulkCreateBody struct {
Org string `json:"orgIdentifier"`
IdentifierCaseFormat string `json:"identifierCaseFormat"`
}
type ProjectBody struct {
Project ProjectDetails `json:"project"`
}
type ProjectListBody struct {
Projects []ProjectBody `json:"content"`
}
type OrgListBody struct {
Organisations []OrgResponse `json:"content"`
}
type OrgResponse struct {
Org OrgBody `json:"organizationResponse"`
}
type OrgBody struct {
Org OrgDetails `json:"organization"`
}
type RequestBody struct {
DestinationDetails DestinationDetails `json:"destinationDetails"`
EntityType EntityType `json:"entityType"`
Filter Filter `json:"filter"`
Inputs Inputs `json:"inputs"`
IdentifierCaseFormat string `json:"identifierCaseFormat"`
}
type CurrentGenEntity struct {
Id string `json:"id"`
Name string `json:"name"`
Type string `json:"type"`
AppId string `json:"appId"`
}
type SkipDetail struct {
Entity CurrentGenEntity `json:"cgBasicInfo"`
Reason string `json:"reason"`
}
type UpgradeError struct {
Message string `json:"message"`
Entity CurrentGenEntity `json:"entity"`
}
type MigrationStats struct {
SuccessfullyMigrated int64 `json:"successfullyMigrated"`
AlreadyMigrated int64 `json:"alreadyMigrated"`
}
type Resource struct {
RequestId string `json:"requestId"`
Stats map[string]MigrationStats `json:"stats"`
Errors []UpgradeError `json:"errors"`
Status string `json:"status"`
ResponsePayload interface{} `json:"responsePayload"`
}
type ResponseBody struct {
Code interface{} `json:"code"`
Message string `json:"message"`
Status string `json:"status"`
Data interface{} `json:"data"`
Resource interface{} `json:"resource"`
Messages []ResponseMessages `json:"responseMessages"`
}
type ResponseMessages struct {
Code string `json:"code"`
Level string `json:"level"`
Message string `json:"message"`
Exception interface{} `json:"exception"`
FailureTypes interface{} `json:"failureTypes"`
}
type SaveSummary struct {
Stats map[string]MigrationStats `json:"stats"`
Errors []UpgradeError `json:"errors"`
SkipDetails []SkipDetail `json:"skipDetails"`
SkippedExpressionsList []SkippedExpressionDetail `json:"skippedExpressions"`
}
type SkippedExpressionDetail struct {
EntityType string `json:"entityType"`
Identifier string `json:"identifier"`
OrgIdentifier string `json:"orgIdentifier"`
ProjectIdentifier string `json:"projectIdentifier"`
Expressions []string `json:"expressions"`
}
type SummaryResponse struct {
Summary map[string]EntitySummary `json:"summary"`
}
type SummaryDetails struct {
Count int64 `json:"count"`
Status string `json:"status"`
}
type EntitySummary struct {
Name string `json:"name"`
Count int64 `json:"count"`
TypeSummary map[string]int64 `json:"typeSummary"`
TypesSummary map[string]SummaryDetails `json:"typesSummary"`
StepTypeSummary map[string]int64 `json:"stepTypeSummary"`
StepsSummary map[string]SummaryDetails `json:"stepsSummary"`
KindSummary map[string]int64 `json:"kindSummary"`
StoreSummary map[string]int64 `json:"storeSummary"`
DeploymentTypeSummary map[string]int64 `json:"deploymentTypeSummary"`
DeploymentsSummary map[string]SummaryDetails `json:"deploymentsSummary"`
ArtifactsSummary map[string]SummaryDetails `json:"artifactsSummary"`
CloudProviderTypeSummary map[string]int64 `json:"cloudProviderTypeSummary"`
Expressions []string `json:"expressions"`
}
type BaseEntityDetail struct {
Id string `json:"id"`
Name string `json:"name"`
}
type ProjectCSV struct {
AppName string `json:"appName"`
ProjectName string `json:"projectName"`
ProjectIdentifier string `json:"projectIdentifier"`
OrgIdentifier string `json:"orgIdentifier"`
}
type SecretStore struct {
ApiKey string `json:"apiKey"`
AccountId string `json:"accountId"`
BaseURL string `json:"baseUrl"`
}
type SecretSpec struct {
Value string `json:"value,omitempty"`
SecretManagerIdentifier string `json:"secretManagerIdentifier"`
ValueType string `json:"valueType"`
}
type Secret struct {
Type string `json:"type"`
Name string `json:"name"`
Identifier string `json:"identifier"`
Description string `json:"description,omitempty"`
Tags struct {
} `json:"tags,omitempty"`
OrgIdentifier string `json:"orgIdentifier,omitempty"`
ProjectIdentifier string `json:"projectIdentifier,omitempty"`
Spec interface{} `json:"spec"`
}
type HarnessSecret struct {
Secret `json:"secret"`
}
type HarnessService struct {
Identifier string `json:"identifier"`
Name string `json:"name"`
ProjectIdentifier string `json:"projectIdentifier,omitempty"`
OrgIdentifier string `json:"orgIdentifier,omitempty"`
Description string `json:"description,omitempty"`
Tags struct {
} `json:"tags,omitempty"`
Yaml string `json:"yaml"`
}
// GitOpsRepository structs
type GitOpsRepository struct {
Repo `json:"repo"`
}
type GitOpsCluster struct {
Identifier string `json:"identifier"`
ProjectIdentifier string `json:"projectIdentifier"`
OrgIdentifier string `json:"orgIdentifier"`
Description string `json:"description"`
Type string `json:"type,omitempty"`
Cluster `json:"cluster"`
}
type GitOpsClusterWithUpdatedFields struct {
Cluster `json:"cluster"`
UpdatedFields []string `json:"updatedFields"`
}
type Cluster struct {
Name string `json:"name"`
Server string `json:"server"`
Config `json:"config"`
}
type Config struct {
ClusterConnectionType string `json:"clusterConnectionType"`
}
type Repo struct {
Repo string `json:"repo"`
Type string `json:"type"`
Name string `json:"name"`
Project string `json:"project,omitempty"`
ConnectionType string `json:"connectionType"`
GithubType string `json:"githubType,omitempty"`
InheritedCreds bool `json:"inheritedCreds,omitempty"`
}
type RepoWithUpdateMask struct {
Repo `json:"repo"`
UpdateMask struct {
Paths []string `json:"paths"`
} `json:"updateMask"`
}
type UpdateMask struct {
Paths []string `json:"Paths"`
}
// GitOpsApplication structs
type GitOpsApplication struct {
Application `json:"application"`
}
type Application struct {
Metadata `json:"metadata"`
Spec `json:"spec"`
}
type Spec struct {
Source `json:"source"`
Destination `json:"destination"`
}
type Metadata struct {
Name string `json:"name"`
Namespace string `json:"namespace"`
ClusterName string `json:"clusterName"`
Labels `json:"labels"`
Annotations interface{}
}
type Labels struct {
Envref string `json:"harness.io/envRef"`
Serviceref string `json:"harness.io/serviceRef"`
}
type Source struct {
RepoURL string `json:"repoURL"`
Path string `json:"path"`
TargetRevision string `json:"targetRevision"`
}
type Destination struct {
Server string `json:"server"`
Namespace string `json:"namespace"`
}
type HarnessEnvironment struct {
Identifier string `json:"identifier"`
Name string `json:"name"`
ProjectIdentifier string `json:"projectIdentifier,omitempty"`
OrgIdentifier string `json:"orgIdentifier,omitempty"`
Description string `json:"description,omitempty"`
Tags struct {
} `json:"tags,omitempty"`
Color string `json:"color,omitempty"`
Type string `json:"type,omitempty"`
Yaml string `json:"yaml"`
}
type HarnessInfra struct {
Identifier string `json:"identifier"`
Name string `json:"name"`
ProjectIdentifier string `json:"projectIdentifier,omitempty"`
OrgIdentifier string `json:"orgIdentifier,omitempty"`
Description string `json:"description,omitempty"`
Tags struct {
} `json:"tags,omitempty"`
Yaml string `json:"yaml"`
}
type HarnessPipeline struct {
Identifier string `json:"identifier"`
Name string `json:"name"`
ProjectIdentifier string `json:"projectIdentifier,omitempty"`
OrgIdentifier string `json:"orgIdentifier,omitempty"`
Description string `json:"description,omitempty"`
Tags struct {
} `json:"tags,omitempty"`
//Branch string `json:"branch,omitempty"`
RepoIdentifier string `json:"repoIdentifier,omitempty"`
RootFolder string `json:"rootFolder,omitempty"`
FilePath string `json:"filePath,omitempty"`
BaseBranch string `json:"baseBranch,omitempty"`
ConnectorRef string `json:"connectorRef,omitempty"`
RepoName string `json:"repoName,omitempty"`
StoreType StoreType `json:"storeType"`
Yaml string `json:"yaml"`
}
const (
SecretText string = "SecretText"
SecretFile = "SecretFile"
SSHKey = "SSHKey"
WinRM = "WinRmCredentials"
)
const (
SShSecretType string = "SSH"
)
const (
NTLM string = "NTLM"
)
type SSHSecretType struct {
Auth SecretAuth `json:"auth"`
Port int `json:"port"`
}
type WinRMSecretType struct {
Auth WinRMSecretAuth `json:"auth"`
Port int `json:"port"`
Parameters []string `json:"parameters,omitempty"`
}
type SecretAuth struct {
Type string `json:"type"`
Spec SSHSecretSpec `json:"spec"`
}
type WinRMSecretAuth struct {
Type string `json:"type"`
Spec WinRMSecretSpec `json:"spec"`
}
type WinRMSecretSpec struct {
Username string `json:"username"`
Password string `json:"password"`
Domain string `json:"domain"`
UseNoProfile bool `json:"useNoProfile"`
UseSSL bool `json:"useSSL"`
SkipCertChecks bool `json:"skipCertChecks"`
}
type SSHSecretSpec struct {
CredentialType string `json:"credentialType"`
Spec SShSecretSubSpec `json:"spec"`
}
type SShSecretSubSpec struct {
UserName string `json:"userName"`
Key string `json:"key"`
}
type SSHWINRMSecretData struct {
Username string
Key string
Port int
Password string
Domain string
AuthType string
}