json.go 34.4 KB
Newer Older
S
sunzhu 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/*

 Copyright 2019 The KubeSphere 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.

*/
package devops

Z
Zhuxiaoyang 已提交
20
// GetPipeline & SearchPipelines
S
sunzhu 已提交
21
type Pipeline struct {
Z
Zhuxiaoyang 已提交
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
	Class string `json:"_class"`
	Links struct {
		Self struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"self"`
		Scm struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"scm"`
		Branches struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"branches"`
		Actions struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"actions"`
		Runs struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"runs"`
		Trends struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"trends"`
		Queue struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"queue"`
	} `json:"_links"`
	Actions         []interface{} `json:"actions"`
	Disabled        interface{}   `json:"disabled"`
	DisplayName     string        `json:"displayName"`
	FullDisplayName string        `json:"fullDisplayName"`
	FullName        string        `json:"fullName"`
	Name            string        `json:"name"`
	Organization    string        `json:"organization"`
	Parameters      interface{}   `json:"parameters"`
	Permissions     struct {
		Create    bool `json:"create"`
		Configure bool `json:"configure"`
		Read      bool `json:"read"`
		Start     bool `json:"start"`
		Stop      bool `json:"stop"`
	} `json:"permissions"`
	EstimatedDurationInMillis      int           `json:"estimatedDurationInMillis"`
	NumberOfFolders                int           `json:"numberOfFolders"`
	NumberOfPipelines              int           `json:"numberOfPipelines"`
	PipelineFolderNames            []interface{} `json:"pipelineFolderNames"`
	WeatherScore                   int           `json:"weatherScore"`
	BranchNames                    []string      `json:"branchNames"`
	NumberOfFailingBranches        int           `json:"numberOfFailingBranches"`
	NumberOfFailingPullRequests    int           `json:"numberOfFailingPullRequests"`
	NumberOfSuccessfulBranches     int           `json:"numberOfSuccessfulBranches"`
	NumberOfSuccessfulPullRequests int           `json:"numberOfSuccessfulPullRequests"`
	ScmSource                      struct {
		Class  string      `json:"_class"`
		APIURL interface{} `json:"apiUrl"`
		ID     string      `json:"id"`
	} `json:"scmSource"`
	TotalNumberOfBranches     int `json:"totalNumberOfBranches"`
	TotalNumberOfPullRequests int `json:"totalNumberOfPullRequests"`
S
sunzhu 已提交
85
}
Z
Zhuxiaoyang 已提交
86

Z
Zhuxiaoyang 已提交
87 88
// GetPipeBranchRun & SearchPipelineRuns
type PipeBranchRun struct {
Z
Zhuxiaoyang 已提交
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
	Class string `json:"_class"`
	Links struct {
		PrevRun struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"prevRun"`
		Parent struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"parent"`
		Tests struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"tests"`
		Nodes struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"nodes"`
		Log struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"log"`
		Self struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"self"`
		BlueTestSummary struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"blueTestSummary"`
		Actions struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"actions"`
		Steps struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"steps"`
		Artifacts struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"artifacts"`
		NextRun struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"nextRun"`
	} `json:"_links"`
	Actions          []interface{} `json:"actions"`
	ArtifactsZipFile interface{}   `json:"artifactsZipFile"`
	CauseOfBlockage  interface{}   `json:"causeOfBlockage"`
	Causes           []struct {
		Class            string `json:"_class"`
		ShortDescription string `json:"shortDescription"`
		UserID           string `json:"userId"`
		UserName         string `json:"userName"`
	} `json:"causes"`
	ChangeSet                 []interface{} `json:"changeSet"`
	Description               interface{}   `json:"description"`
	DurationInMillis          int           `json:"durationInMillis"`
	EnQueueTime               string        `json:"enQueueTime"`
	EndTime                   string        `json:"endTime"`
	EstimatedDurationInMillis int           `json:"estimatedDurationInMillis"`
	ID                        string        `json:"id"`
	Name                      interface{}   `json:"name"`
	Organization              string        `json:"organization"`
	Pipeline                  string        `json:"pipeline"`
	Replayable                bool          `json:"replayable"`
	Result                    string        `json:"result"`
	RunSummary                string        `json:"runSummary"`
	StartTime                 string        `json:"startTime"`
	State                     string        `json:"state"`
	Type                      string        `json:"type"`
	Branch                    struct {
		IsPrimary bool          `json:"isPrimary"`
		Issues    []interface{} `json:"issues"`
		URL       string        `json:"url"`
	} `json:"branch"`
	CommitID    string      `json:"commitId"`
	CommitURL   interface{} `json:"commitUrl"`
	PullRequest interface{} `json:"pullRequest"`
S
sunzhu 已提交
169
}
Z
Zhuxiaoyang 已提交
170

Z
Zhuxiaoyang 已提交
171 172
// GetBranchPipeRunNodes
type BranchPipeRunNodes struct {
Z
Zhuxiaoyang 已提交
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
	Class string `json:"_class"`
	Links struct {
		Self struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"self"`
		Actions struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"actions"`
		Steps struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"steps"`
	} `json:"_links"`
	Actions            []interface{} `json:"actions"`
	DisplayDescription interface{}   `json:"displayDescription"`
	DisplayName        string        `json:"displayName"`
	DurationInMillis   int           `json:"durationInMillis"`
	ID                 string        `json:"id"`
	Input              interface{}   `json:"input"`
	Result             string        `json:"result"`
	StartTime          string        `json:"startTime"`
	State              string        `json:"state"`
	Type               string        `json:"type"`
	CauseOfBlockage    interface{}   `json:"causeOfBlockage"`
	Edges              []struct {
		Class string `json:"_class"`
		ID    string `json:"id"`
		Type  string `json:"type"`
	} `json:"edges"`
	FirstParent interface{} `json:"firstParent"`
	Restartable bool        `json:"restartable"`
	Steps       []struct {
		Class string `json:"_class"`
		Links struct {
			Self struct {
				Class string `json:"_class"`
				Href  string `json:"href"`
			} `json:"self"`
			Actions struct {
				Class string `json:"_class"`
				Href  string `json:"href"`
			} `json:"actions"`
		} `json:"_links"`
		Actions []struct {
			Class string `json:"_class"`
			Links struct {
				Self struct {
					Class string `json:"_class"`
					Href  string `json:"href"`
				} `json:"self"`
			} `json:"_links"`
			URLName string `json:"urlName"`
		} `json:"actions"`
		DisplayDescription interface{} `json:"displayDescription"`
		DisplayName        string      `json:"displayName"`
		DurationInMillis   int         `json:"durationInMillis"`
		ID                 string      `json:"id"`
		Input              interface{} `json:"input"`
		Result             string      `json:"result"`
		StartTime          string      `json:"startTime"`
		State              string      `json:"state"`
		Type               string      `json:"type"`
	} `json:"steps"`
S
sunzhu 已提交
238
}
Z
Zhuxiaoyang 已提交
239 240 241 242

// Validate
type Validates struct {
	CredentialID string `json:"credentialId,omitempty"`
S
sunzhu 已提交
243
}
Z
Zhuxiaoyang 已提交
244 245 246

// GetSCMOrg
type SCMOrg struct {
S
sunzhu 已提交
247
	Class string `json:"_class"`
Z
Zhuxiaoyang 已提交
248 249 250 251 252 253 254 255 256 257 258 259 260
	Links struct {
		Repositories struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"repositories"`
		Self struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"self"`
	} `json:"_links"`
	Avatar                      string `json:"avatar"`
	JenkinsOrganizationPipeline bool   `json:"jenkinsOrganizationPipeline"`
	Name                        string `json:"name"`
S
sunzhu 已提交
261
}
Z
Zhuxiaoyang 已提交
262 263 264

// GetOrgRepo
type OrgRepo struct {
S
sunzhu 已提交
265
	Class string `json:"_class"`
Z
Zhuxiaoyang 已提交
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
	Links struct {
		Self struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"self"`
	} `json:"_links"`
	Repositories struct {
		Class string `json:"_class"`
		Links struct {
			Self struct {
				Class string `json:"_class"`
				Href  string `json:"href"`
			} `json:"self"`
		} `json:"_links"`
		Items []struct {
			Class string `json:"_class"`
			Links struct {
				Self struct {
					Class string `json:"_class"`
					Href  string `json:"href"`
				} `json:"self"`
			} `json:"_links"`
			DefaultBranch string `json:"defaultBranch"`
			Description   string `json:"description"`
			Name          string `json:"name"`
			Permissions   struct {
				Admin bool `json:"admin"`
				Push  bool `json:"push"`
				Pull  bool `json:"pull"`
			} `json:"permissions"`
			Private  bool   `json:"private"`
			FullName string `json:"fullName"`
		} `json:"items"`
		LastPage interface{} `json:"lastPage"`
		NextPage interface{} `json:"nextPage"`
		PageSize int         `json:"pageSize"`
	} `json:"repositories"`
S
sunzhu 已提交
303
}
Z
Zhuxiaoyang 已提交
304 305 306

// StopPipeline
type StopPipe struct {
S
sunzhu 已提交
307
	Class string `json:"_class"`
Z
Zhuxiaoyang 已提交
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
	Links struct {
		Parent struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"parent"`
		Tests struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"tests"`
		Nodes struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"nodes"`
		Log struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"log"`
		Self struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"self"`
		BlueTestSummary struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"blueTestSummary"`
		Actions struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"actions"`
		Steps struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"steps"`
		Artifacts struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"artifacts"`
	} `json:"_links"`
	Actions          []interface{} `json:"actions"`
	ArtifactsZipFile interface{}   `json:"artifactsZipFile"`
	CauseOfBlockage  interface{}   `json:"causeOfBlockage"`
	Causes           []struct {
		Class            string `json:"_class"`
		ShortDescription string `json:"shortDescription"`
	} `json:"causes"`
	ChangeSet                 []interface{} `json:"changeSet"`
	Description               interface{}   `json:"description"`
	DurationInMillis          int           `json:"durationInMillis"`
	EnQueueTime               string        `json:"enQueueTime"`
	EndTime                   string        `json:"endTime"`
	EstimatedDurationInMillis int           `json:"estimatedDurationInMillis"`
	ID                        string        `json:"id"`
	Name                      interface{}   `json:"name"`
	Organization              string        `json:"organization"`
	Pipeline                  string        `json:"pipeline"`
	Replayable                bool          `json:"replayable"`
	Result                    string        `json:"result"`
	RunSummary                string        `json:"runSummary"`
	StartTime                 string        `json:"startTime"`
	State                     string        `json:"state"`
	Type                      string        `json:"type"`
	Branch                    struct {
		IsPrimary bool          `json:"isPrimary"`
		Issues    []interface{} `json:"issues"`
		URL       string        `json:"url"`
	} `json:"branch"`
	CommitID    string      `json:"commitId"`
	CommitURL   interface{} `json:"commitUrl"`
	PullRequest interface{} `json:"pullRequest"`
S
sunzhu 已提交
377
}
Z
Zhuxiaoyang 已提交
378 379 380

// ReplayPipeline
type ReplayPipe struct {
S
sunzhu 已提交
381
	Class string `json:"_class"`
Z
Zhuxiaoyang 已提交
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 428 429 430 431 432 433 434 435 436 437
	Links struct {
		Parent struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"parent"`
		Tests struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"tests"`
		Log struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"log"`
		Self struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"self"`
		BlueTestSummary struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"blueTestSummary"`
		Actions struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"actions"`
		Artifacts struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"artifacts"`
	} `json:"_links"`
	Actions          []interface{} `json:"actions"`
	ArtifactsZipFile interface{}   `json:"artifactsZipFile"`
	CauseOfBlockage  string        `json:"causeOfBlockage"`
	Causes           []struct {
		Class            string `json:"_class"`
		ShortDescription string `json:"shortDescription"`
		UserID           string `json:"userId,omitempty"`
		UserName         string `json:"userName,omitempty"`
	} `json:"causes"`
	ChangeSet                 []interface{} `json:"changeSet"`
	Description               interface{}   `json:"description"`
	DurationInMillis          interface{}   `json:"durationInMillis"`
	EnQueueTime               interface{}   `json:"enQueueTime"`
	EndTime                   interface{}   `json:"endTime"`
	EstimatedDurationInMillis interface{}   `json:"estimatedDurationInMillis"`
	ID                        string        `json:"id"`
	Name                      interface{}   `json:"name"`
	Organization              string        `json:"organization"`
	Pipeline                  string        `json:"pipeline"`
	Replayable                bool          `json:"replayable"`
	Result                    string        `json:"result"`
	RunSummary                interface{}   `json:"runSummary"`
	StartTime                 interface{}   `json:"startTime"`
	State                     string        `json:"state"`
	Type                      string        `json:"type"`
	QueueID                   string        `json:"queueId"`
S
sunzhu 已提交
438
}
Z
Zhuxiaoyang 已提交
439 440 441

// GetArtifacts
type Artifacts struct {
S
sunzhu 已提交
442
	Class string `json:"_class"`
Z
Zhuxiaoyang 已提交
443 444 445 446 447 448 449 450 451 452 453 454
	Links struct {
		Self struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"self"`
	} `json:"_links"`
	Downloadable bool   `json:"downloadable"`
	ID           string `json:"id"`
	Name         string `json:"name"`
	Path         string `json:"path"`
	Size         int    `json:"size"`
	URL          string `json:"url"` // The url for Download artifacts
S
sunzhu 已提交
455
}
Z
Zhuxiaoyang 已提交
456 457 458

// GetPipeBranch
type PipeBranch struct {
S
sunzhu 已提交
459
	Class string `json:"_class"`
Z
Zhuxiaoyang 已提交
460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577
	Links struct {
		Self struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"self"`
		Scm struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"scm"`
		Actions struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"actions"`
		Runs struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"runs"`
		Trends struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"trends"`
		Queue struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"queue"`
	} `json:"_links"`
	Actions                   []interface{} `json:"actions"`
	Disabled                  bool          `json:"disabled"`
	DisplayName               string        `json:"displayName"`
	EstimatedDurationInMillis int           `json:"estimatedDurationInMillis"`
	FullDisplayName           string        `json:"fullDisplayName"`
	FullName                  string        `json:"fullName"`
	LatestRun                 struct {
		Class string `json:"_class"`
		Links struct {
			PrevRun struct {
				Class string `json:"_class"`
				Href  string `json:"href"`
			} `json:"prevRun"`
			Parent struct {
				Class string `json:"_class"`
				Href  string `json:"href"`
			} `json:"parent"`
			Tests struct {
				Class string `json:"_class"`
				Href  string `json:"href"`
			} `json:"tests"`
			Log struct {
				Class string `json:"_class"`
				Href  string `json:"href"`
			} `json:"log"`
			Self struct {
				Class string `json:"_class"`
				Href  string `json:"href"`
			} `json:"self"`
			BlueTestSummary struct {
				Class string `json:"_class"`
				Href  string `json:"href"`
			} `json:"blueTestSummary"`
			Actions struct {
				Class string `json:"_class"`
				Href  string `json:"href"`
			} `json:"actions"`
			Artifacts struct {
				Class string `json:"_class"`
				Href  string `json:"href"`
			} `json:"artifacts"`
		} `json:"_links"`
		Actions          []interface{} `json:"actions"`
		ArtifactsZipFile string        `json:"artifactsZipFile"`
		CauseOfBlockage  interface{}   `json:"causeOfBlockage"`
		Causes           []struct {
			Class            string `json:"_class"`
			ShortDescription string `json:"shortDescription"`
		} `json:"causes"`
		ChangeSet                 []interface{} `json:"changeSet"`
		Description               interface{}   `json:"description"`
		DurationInMillis          int           `json:"durationInMillis"`
		EnQueueTime               string        `json:"enQueueTime"`
		EndTime                   string        `json:"endTime"`
		EstimatedDurationInMillis int           `json:"estimatedDurationInMillis"`
		ID                        string        `json:"id"`
		Name                      interface{}   `json:"name"`
		Organization              string        `json:"organization"`
		Pipeline                  string        `json:"pipeline"`
		Replayable                bool          `json:"replayable"`
		Result                    string        `json:"result"`
		RunSummary                string        `json:"runSummary"`
		StartTime                 string        `json:"startTime"`
		State                     string        `json:"state"`
		Type                      string        `json:"type"`
	} `json:"latestRun"`
	Name         string `json:"name"`
	Organization string `json:"organization"`
	Parameters   []struct {
		Class                 string `json:"_class"`
		DefaultParameterValue struct {
			Class string `json:"_class"`
			Name  string `json:"name"`
			Value string `json:"value"`
		} `json:"defaultParameterValue"`
		Description string `json:"description"`
		Name        string `json:"name"`
		Type        string `json:"type"`
	} `json:"parameters"`
	Permissions struct {
		Create    bool `json:"create"`
		Configure bool `json:"configure"`
		Read      bool `json:"read"`
		Start     bool `json:"start"`
		Stop      bool `json:"stop"`
	} `json:"permissions"`
	WeatherScore int `json:"weatherScore"`
	Branch       struct {
		IsPrimary bool          `json:"isPrimary"`
		Issues    []interface{} `json:"issues"`
		URL       string        `json:"url"`
	} `json:"branch"`
S
sunzhu 已提交
578
}
Z
Zhuxiaoyang 已提交
579 580 581 582 583 584 585 586 587 588

// RunPipeline
type RunPayload struct {
	Parameters []struct {
		Name  string `json:"name"`
		Value string `json:"value"`
	} `json:"parameters"`
}

type QueuedBlueRun struct {
S
sunzhu 已提交
589
	Class string `json:"_class"`
Z
Zhuxiaoyang 已提交
590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645
	Links struct {
		Parent struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"parent"`
		Tests struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"tests"`
		Log struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"log"`
		Self struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"self"`
		BlueTestSummary struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"blueTestSummary"`
		Actions struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"actions"`
		Artifacts struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"artifacts"`
	} `json:"_links"`
	Actions          []interface{} `json:"actions"`
	ArtifactsZipFile interface{}   `json:"artifactsZipFile"`
	CauseOfBlockage  string        `json:"causeOfBlockage"`
	Causes           []struct {
		Class            string `json:"_class"`
		ShortDescription string `json:"shortDescription"`
		UserID           string `json:"userId"`
		UserName         string `json:"userName"`
	} `json:"causes"`
	ChangeSet                 []interface{} `json:"changeSet"`
	Description               interface{}   `json:"description"`
	DurationInMillis          interface{}   `json:"durationInMillis"`
	EnQueueTime               interface{}   `json:"enQueueTime"`
	EndTime                   interface{}   `json:"endTime"`
	EstimatedDurationInMillis interface{}   `json:"estimatedDurationInMillis"`
	ID                        string        `json:"id"`
	Name                      interface{}   `json:"name"`
	Organization              string        `json:"organization"`
	Pipeline                  string        `json:"pipeline"`
	Replayable                bool          `json:"replayable"`
	Result                    string        `json:"result"`
	RunSummary                interface{}   `json:"runSummary"`
	StartTime                 interface{}   `json:"startTime"`
	State                     string        `json:"state"`
	Type                      string        `json:"type"`
	QueueID                   string        `json:"queueId"`
S
sunzhu 已提交
646
}
Z
Zhuxiaoyang 已提交
647 648 649

// GetNodeStatus
type NodeStatus []struct {
S
sunzhu 已提交
650
	Class string `json:"_class"`
Z
Zhuxiaoyang 已提交
651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714
	Links struct {
		Self struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"self"`
		Actions struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"actions"`
		Steps struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"steps"`
	} `json:"_links"`
	Actions            []interface{} `json:"actions"`
	DisplayDescription interface{}   `json:"displayDescription"`
	DisplayName        string        `json:"displayName"`
	DurationInMillis   int           `json:"durationInMillis"`
	ID                 string        `json:"id"`
	Input              interface{}   `json:"input"`
	Result             string        `json:"result"`
	StartTime          string        `json:"startTime"`
	State              string        `json:"state"`
	Type               string        `json:"type"`
	CauseOfBlockage    interface{}   `json:"causeOfBlockage"`
	Edges              []struct {
		Class string `json:"_class"`
		ID    string `json:"id"`
		Type  string `json:"type"`
	} `json:"edges"`
	FirstParent interface{} `json:"firstParent"`
	Restartable bool        `json:"restartable"`
	Steps       []struct {
		Class string `json:"_class"`
		Links struct {
			Self struct {
				Class string `json:"_class"`
				Href  string `json:"href"`
			} `json:"self"`
			Actions struct {
				Class string `json:"_class"`
				Href  string `json:"href"`
			} `json:"actions"`
		} `json:"_links"`
		Actions []struct {
			Class string `json:"_class"`
			Links struct {
				Self struct {
					Class string `json:"_class"`
					Href  string `json:"href"`
				} `json:"self"`
			} `json:"_links"`
			URLName string `json:"urlName"`
		} `json:"actions"`
		DisplayDescription interface{} `json:"displayDescription"`
		DisplayName        string      `json:"displayName"`
		DurationInMillis   int         `json:"durationInMillis"`
		ID                 string      `json:"id"`
		Input              interface{} `json:"input"`
		Result             string      `json:"result"`
		StartTime          string      `json:"startTime"`
		State              string      `json:"state"`
		Type               string      `json:"type"`
	} `json:"steps"`
S
sunzhu 已提交
715
}
Z
Zhuxiaoyang 已提交
716 717 718

// CheckPipeline
type CheckPlayload struct {
Z
Zhuxiaoyang 已提交
719
	ID         string `json:"id,omitempty"`
Z
Zhuxiaoyang 已提交
720
	Parameters []struct {
Z
Zhuxiaoyang 已提交
721 722 723 724
		Name  string `json:"name,omitempty"`
		Value string `json:"value,omitempty"`
	} `json:"parameters,omitempty"`
	Abort bool `json:"abort,omitempty"`
S
sunzhu 已提交
725
}
Z
Zhuxiaoyang 已提交
726 727 728 729 730 731

// Getcrumb
type Crumb struct {
	Class             string `json:"_class"`
	Crumb             string `json:"crumb"`
	CrumbRequestField string `json:"crumbRequestField"`
S
sunzhu 已提交
732
}
Z
Zhuxiaoyang 已提交
733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058

// CheckScriptCompile
type CheckScript struct {
	Column  int    `json:"column"`
	Line    int    `json:"line"`
	Message string `json:"message"`
	Status  string `json:"status"`
}

// CheckCron
type CheckCronRes struct {
	Result  string `json:"result"`
	Message string `json:"message"`
}

// GetPipelineRun
type PipelineRun struct {
	Class string `json:"_class"`
	Links struct {
		PrevRun struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"prevRun"`
		Parent struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"parent"`
		Tests struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"tests"`
		Nodes struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"nodes"`
		Log struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"log"`
		Self struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"self"`
		BlueTestSummary struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"blueTestSummary"`
		Actions struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"actions"`
		Steps struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"steps"`
		Artifacts struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"artifacts"`
	} `json:"_links"`
	Actions          []interface{} `json:"actions"`
	ArtifactsZipFile interface{}   `json:"artifactsZipFile"`
	CauseOfBlockage  interface{}   `json:"causeOfBlockage"`
	Causes           []struct {
		Class            string `json:"_class"`
		ShortDescription string `json:"shortDescription"`
		UserID           string `json:"userId"`
		UserName         string `json:"userName"`
	} `json:"causes"`
	ChangeSet                 []interface{} `json:"changeSet"`
	Description               interface{}   `json:"description"`
	DurationInMillis          int           `json:"durationInMillis"`
	EnQueueTime               string        `json:"enQueueTime"`
	EndTime                   string        `json:"endTime"`
	EstimatedDurationInMillis int           `json:"estimatedDurationInMillis"`
	ID                        string        `json:"id"`
	Name                      interface{}   `json:"name"`
	Organization              string        `json:"organization"`
	Pipeline                  string        `json:"pipeline"`
	Replayable                bool          `json:"replayable"`
	Result                    string        `json:"result"`
	RunSummary                string        `json:"runSummary"`
	StartTime                 string        `json:"startTime"`
	State                     string        `json:"state"`
	Type                      string        `json:"type"`
	Branch                    interface{}   `json:"branch"`
	CommitID                  interface{}   `json:"commitId"`
	CommitURL                 interface{}   `json:"commitUrl"`
	PullRequest               interface{}   `json:"pullRequest"`
}

// GetBranchPipeRun
type BranchPipe struct {
	Class string `json:"_class"`
	Links struct {
		Self struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"self"`
		Scm struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"scm"`
		Actions struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"actions"`
		Runs struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"runs"`
		Trends struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"trends"`
		Queue struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"queue"`
	} `json:"_links"`
	Actions                   []interface{} `json:"actions"`
	Disabled                  bool          `json:"disabled"`
	DisplayName               string        `json:"displayName"`
	EstimatedDurationInMillis int           `json:"estimatedDurationInMillis"`
	FullDisplayName           string        `json:"fullDisplayName"`
	FullName                  string        `json:"fullName"`
	LatestRun                 struct {
		Class string `json:"_class"`
		Links struct {
			PrevRun struct {
				Class string `json:"_class"`
				Href  string `json:"href"`
			} `json:"prevRun"`
			Parent struct {
				Class string `json:"_class"`
				Href  string `json:"href"`
			} `json:"parent"`
			Tests struct {
				Class string `json:"_class"`
				Href  string `json:"href"`
			} `json:"tests"`
			Log struct {
				Class string `json:"_class"`
				Href  string `json:"href"`
			} `json:"log"`
			Self struct {
				Class string `json:"_class"`
				Href  string `json:"href"`
			} `json:"self"`
			BlueTestSummary struct {
				Class string `json:"_class"`
				Href  string `json:"href"`
			} `json:"blueTestSummary"`
			Actions struct {
				Class string `json:"_class"`
				Href  string `json:"href"`
			} `json:"actions"`
			Artifacts struct {
				Class string `json:"_class"`
				Href  string `json:"href"`
			} `json:"artifacts"`
		} `json:"_links"`
		Actions          []interface{} `json:"actions"`
		ArtifactsZipFile string        `json:"artifactsZipFile"`
		CauseOfBlockage  interface{}   `json:"causeOfBlockage"`
		Causes           []struct {
			Class            string `json:"_class"`
			ShortDescription string `json:"shortDescription"`
			UserID           string `json:"userId"`
			UserName         string `json:"userName"`
		} `json:"causes"`
		ChangeSet                 []interface{} `json:"changeSet"`
		Description               interface{}   `json:"description"`
		DurationInMillis          int           `json:"durationInMillis"`
		EnQueueTime               string        `json:"enQueueTime"`
		EndTime                   string        `json:"endTime"`
		EstimatedDurationInMillis int           `json:"estimatedDurationInMillis"`
		ID                        string        `json:"id"`
		Name                      interface{}   `json:"name"`
		Organization              string        `json:"organization"`
		Pipeline                  string        `json:"pipeline"`
		Replayable                bool          `json:"replayable"`
		Result                    string        `json:"result"`
		RunSummary                string        `json:"runSummary"`
		StartTime                 string        `json:"startTime"`
		State                     string        `json:"state"`
		Type                      string        `json:"type"`
	} `json:"latestRun"`
	Name         string `json:"name"`
	Organization string `json:"organization"`
	Parameters   []struct {
		Class                 string `json:"_class"`
		DefaultParameterValue struct {
			Class string `json:"_class"`
			Name  string `json:"name"`
			Value string `json:"value"`
		} `json:"defaultParameterValue"`
		Description string `json:"description"`
		Name        string `json:"name"`
		Type        string `json:"type"`
	} `json:"parameters"`
	Permissions struct {
		Create    bool `json:"create"`
		Configure bool `json:"configure"`
		Read      bool `json:"read"`
		Start     bool `json:"start"`
		Stop      bool `json:"stop"`
	} `json:"permissions"`
	WeatherScore int `json:"weatherScore"`
	Branch       struct {
		IsPrimary bool          `json:"isPrimary"`
		Issues    []interface{} `json:"issues"`
		URL       string        `json:"url"`
	} `json:"branch"`
}

// GetPipeRunNodes
type PipeRunNodes []struct {
	Class string `json:"_class"`
	Links struct {
		Self struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"self"`
		Actions struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"actions"`
		Steps struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"steps"`
	} `json:"_links"`
	Actions            []interface{} `json:"actions"`
	DisplayDescription interface{}   `json:"displayDescription"`
	DisplayName        string        `json:"displayName"`
	DurationInMillis   int           `json:"durationInMillis"`
	ID                 string        `json:"id"`
	Input              interface{}   `json:"input"`
	Result             string        `json:"result"`
	StartTime          string        `json:"startTime"`
	State              string        `json:"state"`
	Type               string        `json:"type"`
	CauseOfBlockage    interface{}   `json:"causeOfBlockage"`
	Edges              []interface{} `json:"edges"`
	FirstParent        interface{}   `json:"firstParent"`
	Restartable        bool          `json:"restartable"`
}

// GetNodeSteps
type NodeSteps []struct {
	Class string `json:"_class"`
	Links struct {
		Self struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"self"`
		Actions struct {
			Class string `json:"_class"`
			Href  string `json:"href"`
		} `json:"actions"`
	} `json:"_links"`
	Actions []struct {
		Class string `json:"_class"`
		Links struct {
			Self struct {
				Class string `json:"_class"`
				Href  string `json:"href"`
			} `json:"self"`
		} `json:"_links"`
		URLName string `json:"urlName"`
	} `json:"actions"`
	DisplayDescription string      `json:"displayDescription"`
	DisplayName        string      `json:"displayName"`
	DurationInMillis   int         `json:"durationInMillis"`
	ID                 string      `json:"id"`
	Input              interface{} `json:"input"`
	Result             string      `json:"result"`
	StartTime          string      `json:"startTime"`
	State              string      `json:"state"`
	Type               string      `json:"type"`
}

// ToJenkinsfile requests
type ReqJson struct {
	Json string `json:"json"`
}

// ToJenkinsfile response
type ResJenkinsfile struct {
	Status string `json:"status,omitempty"`
	Data   struct {
		Result      string `json:"result,omitempty"`
		Jenkinsfile string `json:"jenkinsfile,omitempty"`
		Errors      []struct {
			Location []string `json:"location,omitempty"`
			Error    string   `json:"error,omitempty"`
		} `json:"errors,omitempty"`
	} `json:"data,omitempty"`
}

type ReqJenkinsfile struct {
	Jenkinsfile string `json:"jenkinsfile"`
}

type ResJson struct {
	Status string `json:"status,omitempty"`
	Data   struct {
		Result string `json:"result,omitempty"`
		JSON   struct {
			Pipeline struct {
				Stages []interface{} `json:"stages,omitempty"`
				Agent  struct {
					Type      string `json:"type,omitempty"`
					Arguments []struct {
						Key   string `json:"key,omitempty"`
						Value struct {
							IsLiteral bool   `json:"isLiteral,omitempty"`
							Value     string `json:"value,omitempty"`
						} `json:"value,omitempty"`
					} `json:"arguments,omitempty"`
				} `json:"agent,omitempty"`
			} `json:"pipeline,omitempty"`
		} `json:"json,omitempty"`
	} `json:"data,omitempty"`
}