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 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 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 578 579 580 581 582 583 584 585 586 587 588 589 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 646 647 648 649 650 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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type BuildType string
// Enum values for BuildType
const (
BuildTypeUserInitiated BuildType = "USER_INITIATED"
BuildTypeScheduled BuildType = "SCHEDULED"
BuildTypeImport BuildType = "IMPORT"
)
// Values returns all known values for BuildType. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (BuildType) Values() []BuildType {
return []BuildType{
"USER_INITIATED",
"SCHEDULED",
"IMPORT",
}
}
type ComponentFormat string
// Enum values for ComponentFormat
const (
ComponentFormatShell ComponentFormat = "SHELL"
)
// Values returns all known values for ComponentFormat. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (ComponentFormat) Values() []ComponentFormat {
return []ComponentFormat{
"SHELL",
}
}
type ComponentStatus string
// Enum values for ComponentStatus
const (
ComponentStatusDeprecated ComponentStatus = "DEPRECATED"
)
// Values returns all known values for ComponentStatus. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (ComponentStatus) Values() []ComponentStatus {
return []ComponentStatus{
"DEPRECATED",
}
}
type ComponentType string
// Enum values for ComponentType
const (
ComponentTypeBuild ComponentType = "BUILD"
ComponentTypeTest ComponentType = "TEST"
)
// Values returns all known values for ComponentType. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (ComponentType) Values() []ComponentType {
return []ComponentType{
"BUILD",
"TEST",
}
}
type ContainerRepositoryService string
// Enum values for ContainerRepositoryService
const (
ContainerRepositoryServiceEcr ContainerRepositoryService = "ECR"
)
// Values returns all known values for ContainerRepositoryService. Note that this
// can be expanded in the future, and so it is only as up to date as the client.
// The ordering of this slice is not guaranteed to be stable across updates.
func (ContainerRepositoryService) Values() []ContainerRepositoryService {
return []ContainerRepositoryService{
"ECR",
}
}
type ContainerType string
// Enum values for ContainerType
const (
ContainerTypeDocker ContainerType = "DOCKER"
)
// Values returns all known values for ContainerType. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (ContainerType) Values() []ContainerType {
return []ContainerType{
"DOCKER",
}
}
type DiskImageFormat string
// Enum values for DiskImageFormat
const (
DiskImageFormatVmdk DiskImageFormat = "VMDK"
DiskImageFormatRaw DiskImageFormat = "RAW"
DiskImageFormatVhd DiskImageFormat = "VHD"
)
// Values returns all known values for DiskImageFormat. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (DiskImageFormat) Values() []DiskImageFormat {
return []DiskImageFormat{
"VMDK",
"RAW",
"VHD",
}
}
type EbsVolumeType string
// Enum values for EbsVolumeType
const (
EbsVolumeTypeStandard EbsVolumeType = "standard"
EbsVolumeTypeIo1 EbsVolumeType = "io1"
EbsVolumeTypeIo2 EbsVolumeType = "io2"
EbsVolumeTypeGp2 EbsVolumeType = "gp2"
EbsVolumeTypeGp3 EbsVolumeType = "gp3"
EbsVolumeTypeSc1 EbsVolumeType = "sc1"
EbsVolumeTypeSt1 EbsVolumeType = "st1"
)
// Values returns all known values for EbsVolumeType. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (EbsVolumeType) Values() []EbsVolumeType {
return []EbsVolumeType{
"standard",
"io1",
"io2",
"gp2",
"gp3",
"sc1",
"st1",
}
}
type ImageScanStatus string
// Enum values for ImageScanStatus
const (
ImageScanStatusPending ImageScanStatus = "PENDING"
ImageScanStatusScanning ImageScanStatus = "SCANNING"
ImageScanStatusCollecting ImageScanStatus = "COLLECTING"
ImageScanStatusCompleted ImageScanStatus = "COMPLETED"
ImageScanStatusAbandoned ImageScanStatus = "ABANDONED"
ImageScanStatusFailed ImageScanStatus = "FAILED"
ImageScanStatusTimedOut ImageScanStatus = "TIMED_OUT"
)
// Values returns all known values for ImageScanStatus. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (ImageScanStatus) Values() []ImageScanStatus {
return []ImageScanStatus{
"PENDING",
"SCANNING",
"COLLECTING",
"COMPLETED",
"ABANDONED",
"FAILED",
"TIMED_OUT",
}
}
type ImageSource string
// Enum values for ImageSource
const (
ImageSourceAmazonManaged ImageSource = "AMAZON_MANAGED"
ImageSourceAwsMarketplace ImageSource = "AWS_MARKETPLACE"
ImageSourceImported ImageSource = "IMPORTED"
ImageSourceCustom ImageSource = "CUSTOM"
)
// Values returns all known values for ImageSource. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (ImageSource) Values() []ImageSource {
return []ImageSource{
"AMAZON_MANAGED",
"AWS_MARKETPLACE",
"IMPORTED",
"CUSTOM",
}
}
type ImageStatus string
// Enum values for ImageStatus
const (
ImageStatusPending ImageStatus = "PENDING"
ImageStatusCreating ImageStatus = "CREATING"
ImageStatusBuilding ImageStatus = "BUILDING"
ImageStatusTesting ImageStatus = "TESTING"
ImageStatusDistributing ImageStatus = "DISTRIBUTING"
ImageStatusIntegrating ImageStatus = "INTEGRATING"
ImageStatusAvailable ImageStatus = "AVAILABLE"
ImageStatusCancelled ImageStatus = "CANCELLED"
ImageStatusFailed ImageStatus = "FAILED"
ImageStatusDeprecated ImageStatus = "DEPRECATED"
ImageStatusDeleted ImageStatus = "DELETED"
ImageStatusDisabled ImageStatus = "DISABLED"
)
// Values returns all known values for ImageStatus. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (ImageStatus) Values() []ImageStatus {
return []ImageStatus{
"PENDING",
"CREATING",
"BUILDING",
"TESTING",
"DISTRIBUTING",
"INTEGRATING",
"AVAILABLE",
"CANCELLED",
"FAILED",
"DEPRECATED",
"DELETED",
"DISABLED",
}
}
type ImageType string
// Enum values for ImageType
const (
ImageTypeAmi ImageType = "AMI"
ImageTypeDocker ImageType = "DOCKER"
)
// Values returns all known values for ImageType. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (ImageType) Values() []ImageType {
return []ImageType{
"AMI",
"DOCKER",
}
}
type LifecycleExecutionResourceActionName string
// Enum values for LifecycleExecutionResourceActionName
const (
LifecycleExecutionResourceActionNameAvailable LifecycleExecutionResourceActionName = "AVAILABLE"
LifecycleExecutionResourceActionNameDelete LifecycleExecutionResourceActionName = "DELETE"
LifecycleExecutionResourceActionNameDeprecate LifecycleExecutionResourceActionName = "DEPRECATE"
LifecycleExecutionResourceActionNameDisable LifecycleExecutionResourceActionName = "DISABLE"
)
// Values returns all known values for LifecycleExecutionResourceActionName. Note
// that this can be expanded in the future, and so it is only as up to date as the
// client. The ordering of this slice is not guaranteed to be stable across
// updates.
func (LifecycleExecutionResourceActionName) Values() []LifecycleExecutionResourceActionName {
return []LifecycleExecutionResourceActionName{
"AVAILABLE",
"DELETE",
"DEPRECATE",
"DISABLE",
}
}
type LifecycleExecutionResourceStatus string
// Enum values for LifecycleExecutionResourceStatus
const (
LifecycleExecutionResourceStatusFailed LifecycleExecutionResourceStatus = "FAILED"
LifecycleExecutionResourceStatusInProgress LifecycleExecutionResourceStatus = "IN_PROGRESS"
LifecycleExecutionResourceStatusSkipped LifecycleExecutionResourceStatus = "SKIPPED"
LifecycleExecutionResourceStatusSuccess LifecycleExecutionResourceStatus = "SUCCESS"
)
// Values returns all known values for LifecycleExecutionResourceStatus. Note that
// this can be expanded in the future, and so it is only as up to date as the
// client. The ordering of this slice is not guaranteed to be stable across
// updates.
func (LifecycleExecutionResourceStatus) Values() []LifecycleExecutionResourceStatus {
return []LifecycleExecutionResourceStatus{
"FAILED",
"IN_PROGRESS",
"SKIPPED",
"SUCCESS",
}
}
type LifecycleExecutionStatus string
// Enum values for LifecycleExecutionStatus
const (
LifecycleExecutionStatusInProgress LifecycleExecutionStatus = "IN_PROGRESS"
LifecycleExecutionStatusCancelled LifecycleExecutionStatus = "CANCELLED"
LifecycleExecutionStatusCancelling LifecycleExecutionStatus = "CANCELLING"
LifecycleExecutionStatusFailed LifecycleExecutionStatus = "FAILED"
LifecycleExecutionStatusSuccess LifecycleExecutionStatus = "SUCCESS"
)
// Values returns all known values for LifecycleExecutionStatus. Note that this
// can be expanded in the future, and so it is only as up to date as the client.
// The ordering of this slice is not guaranteed to be stable across updates.
func (LifecycleExecutionStatus) Values() []LifecycleExecutionStatus {
return []LifecycleExecutionStatus{
"IN_PROGRESS",
"CANCELLED",
"CANCELLING",
"FAILED",
"SUCCESS",
}
}
type LifecyclePolicyDetailActionType string
// Enum values for LifecyclePolicyDetailActionType
const (
LifecyclePolicyDetailActionTypeDelete LifecyclePolicyDetailActionType = "DELETE"
LifecyclePolicyDetailActionTypeDeprecate LifecyclePolicyDetailActionType = "DEPRECATE"
LifecyclePolicyDetailActionTypeDisable LifecyclePolicyDetailActionType = "DISABLE"
)
// Values returns all known values for LifecyclePolicyDetailActionType. Note that
// this can be expanded in the future, and so it is only as up to date as the
// client. The ordering of this slice is not guaranteed to be stable across
// updates.
func (LifecyclePolicyDetailActionType) Values() []LifecyclePolicyDetailActionType {
return []LifecyclePolicyDetailActionType{
"DELETE",
"DEPRECATE",
"DISABLE",
}
}
type LifecyclePolicyDetailFilterType string
// Enum values for LifecyclePolicyDetailFilterType
const (
LifecyclePolicyDetailFilterTypeAge LifecyclePolicyDetailFilterType = "AGE"
LifecyclePolicyDetailFilterTypeCount LifecyclePolicyDetailFilterType = "COUNT"
)
// Values returns all known values for LifecyclePolicyDetailFilterType. Note that
// this can be expanded in the future, and so it is only as up to date as the
// client. The ordering of this slice is not guaranteed to be stable across
// updates.
func (LifecyclePolicyDetailFilterType) Values() []LifecyclePolicyDetailFilterType {
return []LifecyclePolicyDetailFilterType{
"AGE",
"COUNT",
}
}
type LifecyclePolicyResourceType string
// Enum values for LifecyclePolicyResourceType
const (
LifecyclePolicyResourceTypeAmiImage LifecyclePolicyResourceType = "AMI_IMAGE"
LifecyclePolicyResourceTypeContainerImage LifecyclePolicyResourceType = "CONTAINER_IMAGE"
)
// Values returns all known values for LifecyclePolicyResourceType. Note that this
// can be expanded in the future, and so it is only as up to date as the client.
// The ordering of this slice is not guaranteed to be stable across updates.
func (LifecyclePolicyResourceType) Values() []LifecyclePolicyResourceType {
return []LifecyclePolicyResourceType{
"AMI_IMAGE",
"CONTAINER_IMAGE",
}
}
type LifecyclePolicyStatus string
// Enum values for LifecyclePolicyStatus
const (
LifecyclePolicyStatusDisabled LifecyclePolicyStatus = "DISABLED"
LifecyclePolicyStatusEnabled LifecyclePolicyStatus = "ENABLED"
)
// Values returns all known values for LifecyclePolicyStatus. Note that this can
// be expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (LifecyclePolicyStatus) Values() []LifecyclePolicyStatus {
return []LifecyclePolicyStatus{
"DISABLED",
"ENABLED",
}
}
type LifecyclePolicyTimeUnit string
// Enum values for LifecyclePolicyTimeUnit
const (
LifecyclePolicyTimeUnitDays LifecyclePolicyTimeUnit = "DAYS"
LifecyclePolicyTimeUnitWeeks LifecyclePolicyTimeUnit = "WEEKS"
LifecyclePolicyTimeUnitMonths LifecyclePolicyTimeUnit = "MONTHS"
LifecyclePolicyTimeUnitYears LifecyclePolicyTimeUnit = "YEARS"
)
// Values returns all known values for LifecyclePolicyTimeUnit. Note that this can
// be expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (LifecyclePolicyTimeUnit) Values() []LifecyclePolicyTimeUnit {
return []LifecyclePolicyTimeUnit{
"DAYS",
"WEEKS",
"MONTHS",
"YEARS",
}
}
type OnWorkflowFailure string
// Enum values for OnWorkflowFailure
const (
OnWorkflowFailureContinue OnWorkflowFailure = "CONTINUE"
OnWorkflowFailureAbort OnWorkflowFailure = "ABORT"
)
// Values returns all known values for OnWorkflowFailure. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (OnWorkflowFailure) Values() []OnWorkflowFailure {
return []OnWorkflowFailure{
"CONTINUE",
"ABORT",
}
}
type Ownership string
// Enum values for Ownership
const (
OwnershipSelf Ownership = "Self"
OwnershipShared Ownership = "Shared"
OwnershipAmazon Ownership = "Amazon"
OwnershipThirdparty Ownership = "ThirdParty"
)
// Values returns all known values for Ownership. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (Ownership) Values() []Ownership {
return []Ownership{
"Self",
"Shared",
"Amazon",
"ThirdParty",
}
}
type PipelineExecutionStartCondition string
// Enum values for PipelineExecutionStartCondition
const (
PipelineExecutionStartConditionExpressionMatchOnly PipelineExecutionStartCondition = "EXPRESSION_MATCH_ONLY"
PipelineExecutionStartConditionExpressionMatchAndDependencyUpdatesAvailable PipelineExecutionStartCondition = "EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE"
)
// Values returns all known values for PipelineExecutionStartCondition. Note that
// this can be expanded in the future, and so it is only as up to date as the
// client. The ordering of this slice is not guaranteed to be stable across
// updates.
func (PipelineExecutionStartCondition) Values() []PipelineExecutionStartCondition {
return []PipelineExecutionStartCondition{
"EXPRESSION_MATCH_ONLY",
"EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE",
}
}
type PipelineStatus string
// Enum values for PipelineStatus
const (
PipelineStatusDisabled PipelineStatus = "DISABLED"
PipelineStatusEnabled PipelineStatus = "ENABLED"
)
// Values returns all known values for PipelineStatus. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (PipelineStatus) Values() []PipelineStatus {
return []PipelineStatus{
"DISABLED",
"ENABLED",
}
}
type Platform string
// Enum values for Platform
const (
PlatformWindows Platform = "Windows"
PlatformLinux Platform = "Linux"
)
// Values returns all known values for Platform. Note that this can be expanded in
// the future, and so it is only as up to date as the client. The ordering of this
// slice is not guaranteed to be stable across updates.
func (Platform) Values() []Platform {
return []Platform{
"Windows",
"Linux",
}
}
type ResourceStatus string
// Enum values for ResourceStatus
const (
ResourceStatusAvailable ResourceStatus = "AVAILABLE"
ResourceStatusDeleted ResourceStatus = "DELETED"
ResourceStatusDeprecated ResourceStatus = "DEPRECATED"
ResourceStatusDisabled ResourceStatus = "DISABLED"
)
// Values returns all known values for ResourceStatus. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (ResourceStatus) Values() []ResourceStatus {
return []ResourceStatus{
"AVAILABLE",
"DELETED",
"DEPRECATED",
"DISABLED",
}
}
type WorkflowExecutionStatus string
// Enum values for WorkflowExecutionStatus
const (
WorkflowExecutionStatusPending WorkflowExecutionStatus = "PENDING"
WorkflowExecutionStatusSkipped WorkflowExecutionStatus = "SKIPPED"
WorkflowExecutionStatusRunning WorkflowExecutionStatus = "RUNNING"
WorkflowExecutionStatusCompleted WorkflowExecutionStatus = "COMPLETED"
WorkflowExecutionStatusFailed WorkflowExecutionStatus = "FAILED"
WorkflowExecutionStatusRollbackInProgress WorkflowExecutionStatus = "ROLLBACK_IN_PROGRESS"
WorkflowExecutionStatusRollbackCompleted WorkflowExecutionStatus = "ROLLBACK_COMPLETED"
WorkflowExecutionStatusCancelled WorkflowExecutionStatus = "CANCELLED"
)
// Values returns all known values for WorkflowExecutionStatus. Note that this can
// be expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (WorkflowExecutionStatus) Values() []WorkflowExecutionStatus {
return []WorkflowExecutionStatus{
"PENDING",
"SKIPPED",
"RUNNING",
"COMPLETED",
"FAILED",
"ROLLBACK_IN_PROGRESS",
"ROLLBACK_COMPLETED",
"CANCELLED",
}
}
type WorkflowStatus string
// Enum values for WorkflowStatus
const (
WorkflowStatusDeprecated WorkflowStatus = "DEPRECATED"
)
// Values returns all known values for WorkflowStatus. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (WorkflowStatus) Values() []WorkflowStatus {
return []WorkflowStatus{
"DEPRECATED",
}
}
type WorkflowStepActionType string
// Enum values for WorkflowStepActionType
const (
WorkflowStepActionTypeResume WorkflowStepActionType = "RESUME"
WorkflowStepActionTypeStop WorkflowStepActionType = "STOP"
)
// Values returns all known values for WorkflowStepActionType. Note that this can
// be expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (WorkflowStepActionType) Values() []WorkflowStepActionType {
return []WorkflowStepActionType{
"RESUME",
"STOP",
}
}
type WorkflowStepExecutionRollbackStatus string
// Enum values for WorkflowStepExecutionRollbackStatus
const (
WorkflowStepExecutionRollbackStatusRunning WorkflowStepExecutionRollbackStatus = "RUNNING"
WorkflowStepExecutionRollbackStatusCompleted WorkflowStepExecutionRollbackStatus = "COMPLETED"
WorkflowStepExecutionRollbackStatusSkipped WorkflowStepExecutionRollbackStatus = "SKIPPED"
WorkflowStepExecutionRollbackStatusFailed WorkflowStepExecutionRollbackStatus = "FAILED"
)
// Values returns all known values for WorkflowStepExecutionRollbackStatus. Note
// that this can be expanded in the future, and so it is only as up to date as the
// client. The ordering of this slice is not guaranteed to be stable across
// updates.
func (WorkflowStepExecutionRollbackStatus) Values() []WorkflowStepExecutionRollbackStatus {
return []WorkflowStepExecutionRollbackStatus{
"RUNNING",
"COMPLETED",
"SKIPPED",
"FAILED",
}
}
type WorkflowStepExecutionStatus string
// Enum values for WorkflowStepExecutionStatus
const (
WorkflowStepExecutionStatusPending WorkflowStepExecutionStatus = "PENDING"
WorkflowStepExecutionStatusSkipped WorkflowStepExecutionStatus = "SKIPPED"
WorkflowStepExecutionStatusRunning WorkflowStepExecutionStatus = "RUNNING"
WorkflowStepExecutionStatusCompleted WorkflowStepExecutionStatus = "COMPLETED"
WorkflowStepExecutionStatusFailed WorkflowStepExecutionStatus = "FAILED"
WorkflowStepExecutionStatusCancelled WorkflowStepExecutionStatus = "CANCELLED"
)
// Values returns all known values for WorkflowStepExecutionStatus. Note that this
// can be expanded in the future, and so it is only as up to date as the client.
// The ordering of this slice is not guaranteed to be stable across updates.
func (WorkflowStepExecutionStatus) Values() []WorkflowStepExecutionStatus {
return []WorkflowStepExecutionStatus{
"PENDING",
"SKIPPED",
"RUNNING",
"COMPLETED",
"FAILED",
"CANCELLED",
}
}
type WorkflowType string
// Enum values for WorkflowType
const (
WorkflowTypeBuild WorkflowType = "BUILD"
WorkflowTypeTest WorkflowType = "TEST"
WorkflowTypeDistribution WorkflowType = "DISTRIBUTION"
)
// Values returns all known values for WorkflowType. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (WorkflowType) Values() []WorkflowType {
return []WorkflowType{
"BUILD",
"TEST",
"DISTRIBUTION",
}
}
|