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 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 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 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 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type AccountFilterType string
// Enum values for AccountFilterType
const (
AccountFilterTypeNone AccountFilterType = "NONE"
AccountFilterTypeIntersection AccountFilterType = "INTERSECTION"
AccountFilterTypeDifference AccountFilterType = "DIFFERENCE"
AccountFilterTypeUnion AccountFilterType = "UNION"
)
// Values returns all known values for AccountFilterType. 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 (AccountFilterType) Values() []AccountFilterType {
return []AccountFilterType{
"NONE",
"INTERSECTION",
"DIFFERENCE",
"UNION",
}
}
type AccountGateStatus string
// Enum values for AccountGateStatus
const (
AccountGateStatusSucceeded AccountGateStatus = "SUCCEEDED"
AccountGateStatusFailed AccountGateStatus = "FAILED"
AccountGateStatusSkipped AccountGateStatus = "SKIPPED"
)
// Values returns all known values for AccountGateStatus. 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 (AccountGateStatus) Values() []AccountGateStatus {
return []AccountGateStatus{
"SUCCEEDED",
"FAILED",
"SKIPPED",
}
}
type CallAs string
// Enum values for CallAs
const (
CallAsSelf CallAs = "SELF"
CallAsDelegatedAdmin CallAs = "DELEGATED_ADMIN"
)
// Values returns all known values for CallAs. 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 (CallAs) Values() []CallAs {
return []CallAs{
"SELF",
"DELEGATED_ADMIN",
}
}
type Capability string
// Enum values for Capability
const (
CapabilityCapabilityIam Capability = "CAPABILITY_IAM"
CapabilityCapabilityNamedIam Capability = "CAPABILITY_NAMED_IAM"
CapabilityCapabilityAutoExpand Capability = "CAPABILITY_AUTO_EXPAND"
)
// Values returns all known values for Capability. 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 (Capability) Values() []Capability {
return []Capability{
"CAPABILITY_IAM",
"CAPABILITY_NAMED_IAM",
"CAPABILITY_AUTO_EXPAND",
}
}
type Category string
// Enum values for Category
const (
CategoryRegistered Category = "REGISTERED"
CategoryActivated Category = "ACTIVATED"
CategoryThirdParty Category = "THIRD_PARTY"
CategoryAwsTypes Category = "AWS_TYPES"
)
// Values returns all known values for Category. 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 (Category) Values() []Category {
return []Category{
"REGISTERED",
"ACTIVATED",
"THIRD_PARTY",
"AWS_TYPES",
}
}
type ChangeAction string
// Enum values for ChangeAction
const (
ChangeActionAdd ChangeAction = "Add"
ChangeActionModify ChangeAction = "Modify"
ChangeActionRemove ChangeAction = "Remove"
ChangeActionImport ChangeAction = "Import"
ChangeActionDynamic ChangeAction = "Dynamic"
)
// Values returns all known values for ChangeAction. 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 (ChangeAction) Values() []ChangeAction {
return []ChangeAction{
"Add",
"Modify",
"Remove",
"Import",
"Dynamic",
}
}
type ChangeSetHooksStatus string
// Enum values for ChangeSetHooksStatus
const (
ChangeSetHooksStatusPlanning ChangeSetHooksStatus = "PLANNING"
ChangeSetHooksStatusPlanned ChangeSetHooksStatus = "PLANNED"
ChangeSetHooksStatusUnavailable ChangeSetHooksStatus = "UNAVAILABLE"
)
// Values returns all known values for ChangeSetHooksStatus. 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 (ChangeSetHooksStatus) Values() []ChangeSetHooksStatus {
return []ChangeSetHooksStatus{
"PLANNING",
"PLANNED",
"UNAVAILABLE",
}
}
type ChangeSetStatus string
// Enum values for ChangeSetStatus
const (
ChangeSetStatusCreatePending ChangeSetStatus = "CREATE_PENDING"
ChangeSetStatusCreateInProgress ChangeSetStatus = "CREATE_IN_PROGRESS"
ChangeSetStatusCreateComplete ChangeSetStatus = "CREATE_COMPLETE"
ChangeSetStatusDeletePending ChangeSetStatus = "DELETE_PENDING"
ChangeSetStatusDeleteInProgress ChangeSetStatus = "DELETE_IN_PROGRESS"
ChangeSetStatusDeleteComplete ChangeSetStatus = "DELETE_COMPLETE"
ChangeSetStatusDeleteFailed ChangeSetStatus = "DELETE_FAILED"
ChangeSetStatusFailed ChangeSetStatus = "FAILED"
)
// Values returns all known values for ChangeSetStatus. 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 (ChangeSetStatus) Values() []ChangeSetStatus {
return []ChangeSetStatus{
"CREATE_PENDING",
"CREATE_IN_PROGRESS",
"CREATE_COMPLETE",
"DELETE_PENDING",
"DELETE_IN_PROGRESS",
"DELETE_COMPLETE",
"DELETE_FAILED",
"FAILED",
}
}
type ChangeSetType string
// Enum values for ChangeSetType
const (
ChangeSetTypeCreate ChangeSetType = "CREATE"
ChangeSetTypeUpdate ChangeSetType = "UPDATE"
ChangeSetTypeImport ChangeSetType = "IMPORT"
)
// Values returns all known values for ChangeSetType. 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 (ChangeSetType) Values() []ChangeSetType {
return []ChangeSetType{
"CREATE",
"UPDATE",
"IMPORT",
}
}
type ChangeSource string
// Enum values for ChangeSource
const (
ChangeSourceResourceReference ChangeSource = "ResourceReference"
ChangeSourceParameterReference ChangeSource = "ParameterReference"
ChangeSourceResourceAttribute ChangeSource = "ResourceAttribute"
ChangeSourceDirectModification ChangeSource = "DirectModification"
ChangeSourceAutomatic ChangeSource = "Automatic"
)
// Values returns all known values for ChangeSource. 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 (ChangeSource) Values() []ChangeSource {
return []ChangeSource{
"ResourceReference",
"ParameterReference",
"ResourceAttribute",
"DirectModification",
"Automatic",
}
}
type ChangeType string
// Enum values for ChangeType
const (
ChangeTypeResource ChangeType = "Resource"
)
// Values returns all known values for ChangeType. 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 (ChangeType) Values() []ChangeType {
return []ChangeType{
"Resource",
}
}
type ConcurrencyMode string
// Enum values for ConcurrencyMode
const (
ConcurrencyModeStrictFailureTolerance ConcurrencyMode = "STRICT_FAILURE_TOLERANCE"
ConcurrencyModeSoftFailureTolerance ConcurrencyMode = "SOFT_FAILURE_TOLERANCE"
)
// Values returns all known values for ConcurrencyMode. 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 (ConcurrencyMode) Values() []ConcurrencyMode {
return []ConcurrencyMode{
"STRICT_FAILURE_TOLERANCE",
"SOFT_FAILURE_TOLERANCE",
}
}
type DeprecatedStatus string
// Enum values for DeprecatedStatus
const (
DeprecatedStatusLive DeprecatedStatus = "LIVE"
DeprecatedStatusDeprecated DeprecatedStatus = "DEPRECATED"
)
// Values returns all known values for DeprecatedStatus. 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 (DeprecatedStatus) Values() []DeprecatedStatus {
return []DeprecatedStatus{
"LIVE",
"DEPRECATED",
}
}
type DifferenceType string
// Enum values for DifferenceType
const (
DifferenceTypeAdd DifferenceType = "ADD"
DifferenceTypeRemove DifferenceType = "REMOVE"
DifferenceTypeNotEqual DifferenceType = "NOT_EQUAL"
)
// Values returns all known values for DifferenceType. 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 (DifferenceType) Values() []DifferenceType {
return []DifferenceType{
"ADD",
"REMOVE",
"NOT_EQUAL",
}
}
type EvaluationType string
// Enum values for EvaluationType
const (
EvaluationTypeStatic EvaluationType = "Static"
EvaluationTypeDynamic EvaluationType = "Dynamic"
)
// Values returns all known values for EvaluationType. 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 (EvaluationType) Values() []EvaluationType {
return []EvaluationType{
"Static",
"Dynamic",
}
}
type ExecutionStatus string
// Enum values for ExecutionStatus
const (
ExecutionStatusUnavailable ExecutionStatus = "UNAVAILABLE"
ExecutionStatusAvailable ExecutionStatus = "AVAILABLE"
ExecutionStatusExecuteInProgress ExecutionStatus = "EXECUTE_IN_PROGRESS"
ExecutionStatusExecuteComplete ExecutionStatus = "EXECUTE_COMPLETE"
ExecutionStatusExecuteFailed ExecutionStatus = "EXECUTE_FAILED"
ExecutionStatusObsolete ExecutionStatus = "OBSOLETE"
)
// Values returns all known values for ExecutionStatus. 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 (ExecutionStatus) Values() []ExecutionStatus {
return []ExecutionStatus{
"UNAVAILABLE",
"AVAILABLE",
"EXECUTE_IN_PROGRESS",
"EXECUTE_COMPLETE",
"EXECUTE_FAILED",
"OBSOLETE",
}
}
type HandlerErrorCode string
// Enum values for HandlerErrorCode
const (
HandlerErrorCodeNotUpdatable HandlerErrorCode = "NotUpdatable"
HandlerErrorCodeInvalidRequest HandlerErrorCode = "InvalidRequest"
HandlerErrorCodeAccessDenied HandlerErrorCode = "AccessDenied"
HandlerErrorCodeInvalidCredentials HandlerErrorCode = "InvalidCredentials"
HandlerErrorCodeAlreadyExists HandlerErrorCode = "AlreadyExists"
HandlerErrorCodeNotFound HandlerErrorCode = "NotFound"
HandlerErrorCodeResourceConflict HandlerErrorCode = "ResourceConflict"
HandlerErrorCodeThrottling HandlerErrorCode = "Throttling"
HandlerErrorCodeServiceLimitExceeded HandlerErrorCode = "ServiceLimitExceeded"
HandlerErrorCodeServiceTimeout HandlerErrorCode = "NotStabilized"
HandlerErrorCodeGeneralServiceException HandlerErrorCode = "GeneralServiceException"
HandlerErrorCodeServiceInternalError HandlerErrorCode = "ServiceInternalError"
HandlerErrorCodeNetworkFailure HandlerErrorCode = "NetworkFailure"
HandlerErrorCodeInternalFailure HandlerErrorCode = "InternalFailure"
HandlerErrorCodeInvalidTypeConfiguration HandlerErrorCode = "InvalidTypeConfiguration"
HandlerErrorCodeHandlerInternalFailure HandlerErrorCode = "HandlerInternalFailure"
HandlerErrorCodeNonCompliant HandlerErrorCode = "NonCompliant"
HandlerErrorCodeUnknown HandlerErrorCode = "Unknown"
HandlerErrorCodeUnsupportedTarget HandlerErrorCode = "UnsupportedTarget"
)
// Values returns all known values for HandlerErrorCode. 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 (HandlerErrorCode) Values() []HandlerErrorCode {
return []HandlerErrorCode{
"NotUpdatable",
"InvalidRequest",
"AccessDenied",
"InvalidCredentials",
"AlreadyExists",
"NotFound",
"ResourceConflict",
"Throttling",
"ServiceLimitExceeded",
"NotStabilized",
"GeneralServiceException",
"ServiceInternalError",
"NetworkFailure",
"InternalFailure",
"InvalidTypeConfiguration",
"HandlerInternalFailure",
"NonCompliant",
"Unknown",
"UnsupportedTarget",
}
}
type HookFailureMode string
// Enum values for HookFailureMode
const (
HookFailureModeFail HookFailureMode = "FAIL"
HookFailureModeWarn HookFailureMode = "WARN"
)
// Values returns all known values for HookFailureMode. 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 (HookFailureMode) Values() []HookFailureMode {
return []HookFailureMode{
"FAIL",
"WARN",
}
}
type HookInvocationPoint string
// Enum values for HookInvocationPoint
const (
HookInvocationPointPreProvision HookInvocationPoint = "PRE_PROVISION"
)
// Values returns all known values for HookInvocationPoint. 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 (HookInvocationPoint) Values() []HookInvocationPoint {
return []HookInvocationPoint{
"PRE_PROVISION",
}
}
type HookStatus string
// Enum values for HookStatus
const (
HookStatusHookInProgress HookStatus = "HOOK_IN_PROGRESS"
HookStatusHookCompleteSucceeded HookStatus = "HOOK_COMPLETE_SUCCEEDED"
HookStatusHookCompleteFailed HookStatus = "HOOK_COMPLETE_FAILED"
HookStatusHookFailed HookStatus = "HOOK_FAILED"
)
// Values returns all known values for HookStatus. 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 (HookStatus) Values() []HookStatus {
return []HookStatus{
"HOOK_IN_PROGRESS",
"HOOK_COMPLETE_SUCCEEDED",
"HOOK_COMPLETE_FAILED",
"HOOK_FAILED",
}
}
type HookTargetType string
// Enum values for HookTargetType
const (
HookTargetTypeResource HookTargetType = "RESOURCE"
)
// Values returns all known values for HookTargetType. 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 (HookTargetType) Values() []HookTargetType {
return []HookTargetType{
"RESOURCE",
}
}
type IdentityProvider string
// Enum values for IdentityProvider
const (
IdentityProviderAwsMarketplace IdentityProvider = "AWS_Marketplace"
IdentityProviderGitHub IdentityProvider = "GitHub"
IdentityProviderBitbucket IdentityProvider = "Bitbucket"
)
// Values returns all known values for IdentityProvider. 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 (IdentityProvider) Values() []IdentityProvider {
return []IdentityProvider{
"AWS_Marketplace",
"GitHub",
"Bitbucket",
}
}
type OnFailure string
// Enum values for OnFailure
const (
OnFailureDoNothing OnFailure = "DO_NOTHING"
OnFailureRollback OnFailure = "ROLLBACK"
OnFailureDelete OnFailure = "DELETE"
)
// Values returns all known values for OnFailure. 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 (OnFailure) Values() []OnFailure {
return []OnFailure{
"DO_NOTHING",
"ROLLBACK",
"DELETE",
}
}
type OnStackFailure string
// Enum values for OnStackFailure
const (
OnStackFailureDoNothing OnStackFailure = "DO_NOTHING"
OnStackFailureRollback OnStackFailure = "ROLLBACK"
OnStackFailureDelete OnStackFailure = "DELETE"
)
// Values returns all known values for OnStackFailure. 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 (OnStackFailure) Values() []OnStackFailure {
return []OnStackFailure{
"DO_NOTHING",
"ROLLBACK",
"DELETE",
}
}
type OperationResultFilterName string
// Enum values for OperationResultFilterName
const (
OperationResultFilterNameOperationResultStatus OperationResultFilterName = "OPERATION_RESULT_STATUS"
)
// Values returns all known values for OperationResultFilterName. 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 (OperationResultFilterName) Values() []OperationResultFilterName {
return []OperationResultFilterName{
"OPERATION_RESULT_STATUS",
}
}
type OperationStatus string
// Enum values for OperationStatus
const (
OperationStatusPending OperationStatus = "PENDING"
OperationStatusInProgress OperationStatus = "IN_PROGRESS"
OperationStatusSuccess OperationStatus = "SUCCESS"
OperationStatusFailed OperationStatus = "FAILED"
)
// Values returns all known values for OperationStatus. 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 (OperationStatus) Values() []OperationStatus {
return []OperationStatus{
"PENDING",
"IN_PROGRESS",
"SUCCESS",
"FAILED",
}
}
type OrganizationStatus string
// Enum values for OrganizationStatus
const (
OrganizationStatusEnabled OrganizationStatus = "ENABLED"
OrganizationStatusDisabled OrganizationStatus = "DISABLED"
OrganizationStatusDisabledPermanently OrganizationStatus = "DISABLED_PERMANENTLY"
)
// Values returns all known values for OrganizationStatus. 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 (OrganizationStatus) Values() []OrganizationStatus {
return []OrganizationStatus{
"ENABLED",
"DISABLED",
"DISABLED_PERMANENTLY",
}
}
type PermissionModels string
// Enum values for PermissionModels
const (
PermissionModelsServiceManaged PermissionModels = "SERVICE_MANAGED"
PermissionModelsSelfManaged PermissionModels = "SELF_MANAGED"
)
// Values returns all known values for PermissionModels. 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 (PermissionModels) Values() []PermissionModels {
return []PermissionModels{
"SERVICE_MANAGED",
"SELF_MANAGED",
}
}
type ProvisioningType string
// Enum values for ProvisioningType
const (
ProvisioningTypeNonProvisionable ProvisioningType = "NON_PROVISIONABLE"
ProvisioningTypeImmutable ProvisioningType = "IMMUTABLE"
ProvisioningTypeFullyMutable ProvisioningType = "FULLY_MUTABLE"
)
// Values returns all known values for ProvisioningType. 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 (ProvisioningType) Values() []ProvisioningType {
return []ProvisioningType{
"NON_PROVISIONABLE",
"IMMUTABLE",
"FULLY_MUTABLE",
}
}
type PublisherStatus string
// Enum values for PublisherStatus
const (
PublisherStatusVerified PublisherStatus = "VERIFIED"
PublisherStatusUnverified PublisherStatus = "UNVERIFIED"
)
// Values returns all known values for PublisherStatus. 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 (PublisherStatus) Values() []PublisherStatus {
return []PublisherStatus{
"VERIFIED",
"UNVERIFIED",
}
}
type RegionConcurrencyType string
// Enum values for RegionConcurrencyType
const (
RegionConcurrencyTypeSequential RegionConcurrencyType = "SEQUENTIAL"
RegionConcurrencyTypeParallel RegionConcurrencyType = "PARALLEL"
)
// Values returns all known values for RegionConcurrencyType. 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 (RegionConcurrencyType) Values() []RegionConcurrencyType {
return []RegionConcurrencyType{
"SEQUENTIAL",
"PARALLEL",
}
}
type RegistrationStatus string
// Enum values for RegistrationStatus
const (
RegistrationStatusComplete RegistrationStatus = "COMPLETE"
RegistrationStatusInProgress RegistrationStatus = "IN_PROGRESS"
RegistrationStatusFailed RegistrationStatus = "FAILED"
)
// Values returns all known values for RegistrationStatus. 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 (RegistrationStatus) Values() []RegistrationStatus {
return []RegistrationStatus{
"COMPLETE",
"IN_PROGRESS",
"FAILED",
}
}
type RegistryType string
// Enum values for RegistryType
const (
RegistryTypeResource RegistryType = "RESOURCE"
RegistryTypeModule RegistryType = "MODULE"
RegistryTypeHook RegistryType = "HOOK"
)
// Values returns all known values for RegistryType. 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 (RegistryType) Values() []RegistryType {
return []RegistryType{
"RESOURCE",
"MODULE",
"HOOK",
}
}
type Replacement string
// Enum values for Replacement
const (
ReplacementTrue Replacement = "True"
ReplacementFalse Replacement = "False"
ReplacementConditional Replacement = "Conditional"
)
// Values returns all known values for Replacement. 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 (Replacement) Values() []Replacement {
return []Replacement{
"True",
"False",
"Conditional",
}
}
type RequiresRecreation string
// Enum values for RequiresRecreation
const (
RequiresRecreationNever RequiresRecreation = "Never"
RequiresRecreationConditionally RequiresRecreation = "Conditionally"
RequiresRecreationAlways RequiresRecreation = "Always"
)
// Values returns all known values for RequiresRecreation. 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 (RequiresRecreation) Values() []RequiresRecreation {
return []RequiresRecreation{
"Never",
"Conditionally",
"Always",
}
}
type ResourceAttribute string
// Enum values for ResourceAttribute
const (
ResourceAttributeProperties ResourceAttribute = "Properties"
ResourceAttributeMetadata ResourceAttribute = "Metadata"
ResourceAttributeCreationPolicy ResourceAttribute = "CreationPolicy"
ResourceAttributeUpdatePolicy ResourceAttribute = "UpdatePolicy"
ResourceAttributeDeletionPolicy ResourceAttribute = "DeletionPolicy"
ResourceAttributeUpdateReplacePolicy ResourceAttribute = "UpdateReplacePolicy"
ResourceAttributeTags ResourceAttribute = "Tags"
)
// Values returns all known values for ResourceAttribute. 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 (ResourceAttribute) Values() []ResourceAttribute {
return []ResourceAttribute{
"Properties",
"Metadata",
"CreationPolicy",
"UpdatePolicy",
"DeletionPolicy",
"UpdateReplacePolicy",
"Tags",
}
}
type ResourceSignalStatus string
// Enum values for ResourceSignalStatus
const (
ResourceSignalStatusSuccess ResourceSignalStatus = "SUCCESS"
ResourceSignalStatusFailure ResourceSignalStatus = "FAILURE"
)
// Values returns all known values for ResourceSignalStatus. 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 (ResourceSignalStatus) Values() []ResourceSignalStatus {
return []ResourceSignalStatus{
"SUCCESS",
"FAILURE",
}
}
type ResourceStatus string
// Enum values for ResourceStatus
const (
ResourceStatusCreateInProgress ResourceStatus = "CREATE_IN_PROGRESS"
ResourceStatusCreateFailed ResourceStatus = "CREATE_FAILED"
ResourceStatusCreateComplete ResourceStatus = "CREATE_COMPLETE"
ResourceStatusDeleteInProgress ResourceStatus = "DELETE_IN_PROGRESS"
ResourceStatusDeleteFailed ResourceStatus = "DELETE_FAILED"
ResourceStatusDeleteComplete ResourceStatus = "DELETE_COMPLETE"
ResourceStatusDeleteSkipped ResourceStatus = "DELETE_SKIPPED"
ResourceStatusUpdateInProgress ResourceStatus = "UPDATE_IN_PROGRESS"
ResourceStatusUpdateFailed ResourceStatus = "UPDATE_FAILED"
ResourceStatusUpdateComplete ResourceStatus = "UPDATE_COMPLETE"
ResourceStatusImportFailed ResourceStatus = "IMPORT_FAILED"
ResourceStatusImportComplete ResourceStatus = "IMPORT_COMPLETE"
ResourceStatusImportInProgress ResourceStatus = "IMPORT_IN_PROGRESS"
ResourceStatusImportRollbackInProgress ResourceStatus = "IMPORT_ROLLBACK_IN_PROGRESS"
ResourceStatusImportRollbackFailed ResourceStatus = "IMPORT_ROLLBACK_FAILED"
ResourceStatusImportRollbackComplete ResourceStatus = "IMPORT_ROLLBACK_COMPLETE"
ResourceStatusUpdateRollbackInProgress ResourceStatus = "UPDATE_ROLLBACK_IN_PROGRESS"
ResourceStatusUpdateRollbackComplete ResourceStatus = "UPDATE_ROLLBACK_COMPLETE"
ResourceStatusUpdateRollbackFailed ResourceStatus = "UPDATE_ROLLBACK_FAILED"
ResourceStatusRollbackInProgress ResourceStatus = "ROLLBACK_IN_PROGRESS"
ResourceStatusRollbackComplete ResourceStatus = "ROLLBACK_COMPLETE"
ResourceStatusRollbackFailed ResourceStatus = "ROLLBACK_FAILED"
)
// 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{
"CREATE_IN_PROGRESS",
"CREATE_FAILED",
"CREATE_COMPLETE",
"DELETE_IN_PROGRESS",
"DELETE_FAILED",
"DELETE_COMPLETE",
"DELETE_SKIPPED",
"UPDATE_IN_PROGRESS",
"UPDATE_FAILED",
"UPDATE_COMPLETE",
"IMPORT_FAILED",
"IMPORT_COMPLETE",
"IMPORT_IN_PROGRESS",
"IMPORT_ROLLBACK_IN_PROGRESS",
"IMPORT_ROLLBACK_FAILED",
"IMPORT_ROLLBACK_COMPLETE",
"UPDATE_ROLLBACK_IN_PROGRESS",
"UPDATE_ROLLBACK_COMPLETE",
"UPDATE_ROLLBACK_FAILED",
"ROLLBACK_IN_PROGRESS",
"ROLLBACK_COMPLETE",
"ROLLBACK_FAILED",
}
}
type StackDriftDetectionStatus string
// Enum values for StackDriftDetectionStatus
const (
StackDriftDetectionStatusDetectionInProgress StackDriftDetectionStatus = "DETECTION_IN_PROGRESS"
StackDriftDetectionStatusDetectionFailed StackDriftDetectionStatus = "DETECTION_FAILED"
StackDriftDetectionStatusDetectionComplete StackDriftDetectionStatus = "DETECTION_COMPLETE"
)
// Values returns all known values for StackDriftDetectionStatus. 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 (StackDriftDetectionStatus) Values() []StackDriftDetectionStatus {
return []StackDriftDetectionStatus{
"DETECTION_IN_PROGRESS",
"DETECTION_FAILED",
"DETECTION_COMPLETE",
}
}
type StackDriftStatus string
// Enum values for StackDriftStatus
const (
StackDriftStatusDrifted StackDriftStatus = "DRIFTED"
StackDriftStatusInSync StackDriftStatus = "IN_SYNC"
StackDriftStatusUnknown StackDriftStatus = "UNKNOWN"
StackDriftStatusNotChecked StackDriftStatus = "NOT_CHECKED"
)
// Values returns all known values for StackDriftStatus. 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 (StackDriftStatus) Values() []StackDriftStatus {
return []StackDriftStatus{
"DRIFTED",
"IN_SYNC",
"UNKNOWN",
"NOT_CHECKED",
}
}
type StackInstanceDetailedStatus string
// Enum values for StackInstanceDetailedStatus
const (
StackInstanceDetailedStatusPending StackInstanceDetailedStatus = "PENDING"
StackInstanceDetailedStatusRunning StackInstanceDetailedStatus = "RUNNING"
StackInstanceDetailedStatusSucceeded StackInstanceDetailedStatus = "SUCCEEDED"
StackInstanceDetailedStatusFailed StackInstanceDetailedStatus = "FAILED"
StackInstanceDetailedStatusCancelled StackInstanceDetailedStatus = "CANCELLED"
StackInstanceDetailedStatusInoperable StackInstanceDetailedStatus = "INOPERABLE"
StackInstanceDetailedStatusSkippedSuspendedAccount StackInstanceDetailedStatus = "SKIPPED_SUSPENDED_ACCOUNT"
)
// Values returns all known values for StackInstanceDetailedStatus. 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 (StackInstanceDetailedStatus) Values() []StackInstanceDetailedStatus {
return []StackInstanceDetailedStatus{
"PENDING",
"RUNNING",
"SUCCEEDED",
"FAILED",
"CANCELLED",
"INOPERABLE",
"SKIPPED_SUSPENDED_ACCOUNT",
}
}
type StackInstanceFilterName string
// Enum values for StackInstanceFilterName
const (
StackInstanceFilterNameDetailedStatus StackInstanceFilterName = "DETAILED_STATUS"
StackInstanceFilterNameLastOperationId StackInstanceFilterName = "LAST_OPERATION_ID"
StackInstanceFilterNameDriftStatus StackInstanceFilterName = "DRIFT_STATUS"
)
// Values returns all known values for StackInstanceFilterName. 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 (StackInstanceFilterName) Values() []StackInstanceFilterName {
return []StackInstanceFilterName{
"DETAILED_STATUS",
"LAST_OPERATION_ID",
"DRIFT_STATUS",
}
}
type StackInstanceStatus string
// Enum values for StackInstanceStatus
const (
StackInstanceStatusCurrent StackInstanceStatus = "CURRENT"
StackInstanceStatusOutdated StackInstanceStatus = "OUTDATED"
StackInstanceStatusInoperable StackInstanceStatus = "INOPERABLE"
)
// Values returns all known values for StackInstanceStatus. 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 (StackInstanceStatus) Values() []StackInstanceStatus {
return []StackInstanceStatus{
"CURRENT",
"OUTDATED",
"INOPERABLE",
}
}
type StackResourceDriftStatus string
// Enum values for StackResourceDriftStatus
const (
StackResourceDriftStatusInSync StackResourceDriftStatus = "IN_SYNC"
StackResourceDriftStatusModified StackResourceDriftStatus = "MODIFIED"
StackResourceDriftStatusDeleted StackResourceDriftStatus = "DELETED"
StackResourceDriftStatusNotChecked StackResourceDriftStatus = "NOT_CHECKED"
)
// Values returns all known values for StackResourceDriftStatus. 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 (StackResourceDriftStatus) Values() []StackResourceDriftStatus {
return []StackResourceDriftStatus{
"IN_SYNC",
"MODIFIED",
"DELETED",
"NOT_CHECKED",
}
}
type StackSetDriftDetectionStatus string
// Enum values for StackSetDriftDetectionStatus
const (
StackSetDriftDetectionStatusCompleted StackSetDriftDetectionStatus = "COMPLETED"
StackSetDriftDetectionStatusFailed StackSetDriftDetectionStatus = "FAILED"
StackSetDriftDetectionStatusPartialSuccess StackSetDriftDetectionStatus = "PARTIAL_SUCCESS"
StackSetDriftDetectionStatusInProgress StackSetDriftDetectionStatus = "IN_PROGRESS"
StackSetDriftDetectionStatusStopped StackSetDriftDetectionStatus = "STOPPED"
)
// Values returns all known values for StackSetDriftDetectionStatus. 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 (StackSetDriftDetectionStatus) Values() []StackSetDriftDetectionStatus {
return []StackSetDriftDetectionStatus{
"COMPLETED",
"FAILED",
"PARTIAL_SUCCESS",
"IN_PROGRESS",
"STOPPED",
}
}
type StackSetDriftStatus string
// Enum values for StackSetDriftStatus
const (
StackSetDriftStatusDrifted StackSetDriftStatus = "DRIFTED"
StackSetDriftStatusInSync StackSetDriftStatus = "IN_SYNC"
StackSetDriftStatusNotChecked StackSetDriftStatus = "NOT_CHECKED"
)
// Values returns all known values for StackSetDriftStatus. 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 (StackSetDriftStatus) Values() []StackSetDriftStatus {
return []StackSetDriftStatus{
"DRIFTED",
"IN_SYNC",
"NOT_CHECKED",
}
}
type StackSetOperationAction string
// Enum values for StackSetOperationAction
const (
StackSetOperationActionCreate StackSetOperationAction = "CREATE"
StackSetOperationActionUpdate StackSetOperationAction = "UPDATE"
StackSetOperationActionDelete StackSetOperationAction = "DELETE"
StackSetOperationActionDetectDrift StackSetOperationAction = "DETECT_DRIFT"
)
// Values returns all known values for StackSetOperationAction. 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 (StackSetOperationAction) Values() []StackSetOperationAction {
return []StackSetOperationAction{
"CREATE",
"UPDATE",
"DELETE",
"DETECT_DRIFT",
}
}
type StackSetOperationResultStatus string
// Enum values for StackSetOperationResultStatus
const (
StackSetOperationResultStatusPending StackSetOperationResultStatus = "PENDING"
StackSetOperationResultStatusRunning StackSetOperationResultStatus = "RUNNING"
StackSetOperationResultStatusSucceeded StackSetOperationResultStatus = "SUCCEEDED"
StackSetOperationResultStatusFailed StackSetOperationResultStatus = "FAILED"
StackSetOperationResultStatusCancelled StackSetOperationResultStatus = "CANCELLED"
)
// Values returns all known values for StackSetOperationResultStatus. 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 (StackSetOperationResultStatus) Values() []StackSetOperationResultStatus {
return []StackSetOperationResultStatus{
"PENDING",
"RUNNING",
"SUCCEEDED",
"FAILED",
"CANCELLED",
}
}
type StackSetOperationStatus string
// Enum values for StackSetOperationStatus
const (
StackSetOperationStatusRunning StackSetOperationStatus = "RUNNING"
StackSetOperationStatusSucceeded StackSetOperationStatus = "SUCCEEDED"
StackSetOperationStatusFailed StackSetOperationStatus = "FAILED"
StackSetOperationStatusStopping StackSetOperationStatus = "STOPPING"
StackSetOperationStatusStopped StackSetOperationStatus = "STOPPED"
StackSetOperationStatusQueued StackSetOperationStatus = "QUEUED"
)
// Values returns all known values for StackSetOperationStatus. 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 (StackSetOperationStatus) Values() []StackSetOperationStatus {
return []StackSetOperationStatus{
"RUNNING",
"SUCCEEDED",
"FAILED",
"STOPPING",
"STOPPED",
"QUEUED",
}
}
type StackSetStatus string
// Enum values for StackSetStatus
const (
StackSetStatusActive StackSetStatus = "ACTIVE"
StackSetStatusDeleted StackSetStatus = "DELETED"
)
// Values returns all known values for StackSetStatus. 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 (StackSetStatus) Values() []StackSetStatus {
return []StackSetStatus{
"ACTIVE",
"DELETED",
}
}
type StackStatus string
// Enum values for StackStatus
const (
StackStatusCreateInProgress StackStatus = "CREATE_IN_PROGRESS"
StackStatusCreateFailed StackStatus = "CREATE_FAILED"
StackStatusCreateComplete StackStatus = "CREATE_COMPLETE"
StackStatusRollbackInProgress StackStatus = "ROLLBACK_IN_PROGRESS"
StackStatusRollbackFailed StackStatus = "ROLLBACK_FAILED"
StackStatusRollbackComplete StackStatus = "ROLLBACK_COMPLETE"
StackStatusDeleteInProgress StackStatus = "DELETE_IN_PROGRESS"
StackStatusDeleteFailed StackStatus = "DELETE_FAILED"
StackStatusDeleteComplete StackStatus = "DELETE_COMPLETE"
StackStatusUpdateInProgress StackStatus = "UPDATE_IN_PROGRESS"
StackStatusUpdateCompleteCleanupInProgress StackStatus = "UPDATE_COMPLETE_CLEANUP_IN_PROGRESS"
StackStatusUpdateComplete StackStatus = "UPDATE_COMPLETE"
StackStatusUpdateFailed StackStatus = "UPDATE_FAILED"
StackStatusUpdateRollbackInProgress StackStatus = "UPDATE_ROLLBACK_IN_PROGRESS"
StackStatusUpdateRollbackFailed StackStatus = "UPDATE_ROLLBACK_FAILED"
StackStatusUpdateRollbackCompleteCleanupInProgress StackStatus = "UPDATE_ROLLBACK_COMPLETE_CLEANUP_IN_PROGRESS"
StackStatusUpdateRollbackComplete StackStatus = "UPDATE_ROLLBACK_COMPLETE"
StackStatusReviewInProgress StackStatus = "REVIEW_IN_PROGRESS"
StackStatusImportInProgress StackStatus = "IMPORT_IN_PROGRESS"
StackStatusImportComplete StackStatus = "IMPORT_COMPLETE"
StackStatusImportRollbackInProgress StackStatus = "IMPORT_ROLLBACK_IN_PROGRESS"
StackStatusImportRollbackFailed StackStatus = "IMPORT_ROLLBACK_FAILED"
StackStatusImportRollbackComplete StackStatus = "IMPORT_ROLLBACK_COMPLETE"
)
// Values returns all known values for StackStatus. 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 (StackStatus) Values() []StackStatus {
return []StackStatus{
"CREATE_IN_PROGRESS",
"CREATE_FAILED",
"CREATE_COMPLETE",
"ROLLBACK_IN_PROGRESS",
"ROLLBACK_FAILED",
"ROLLBACK_COMPLETE",
"DELETE_IN_PROGRESS",
"DELETE_FAILED",
"DELETE_COMPLETE",
"UPDATE_IN_PROGRESS",
"UPDATE_COMPLETE_CLEANUP_IN_PROGRESS",
"UPDATE_COMPLETE",
"UPDATE_FAILED",
"UPDATE_ROLLBACK_IN_PROGRESS",
"UPDATE_ROLLBACK_FAILED",
"UPDATE_ROLLBACK_COMPLETE_CLEANUP_IN_PROGRESS",
"UPDATE_ROLLBACK_COMPLETE",
"REVIEW_IN_PROGRESS",
"IMPORT_IN_PROGRESS",
"IMPORT_COMPLETE",
"IMPORT_ROLLBACK_IN_PROGRESS",
"IMPORT_ROLLBACK_FAILED",
"IMPORT_ROLLBACK_COMPLETE",
}
}
type TemplateStage string
// Enum values for TemplateStage
const (
TemplateStageOriginal TemplateStage = "Original"
TemplateStageProcessed TemplateStage = "Processed"
)
// Values returns all known values for TemplateStage. 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 (TemplateStage) Values() []TemplateStage {
return []TemplateStage{
"Original",
"Processed",
}
}
type ThirdPartyType string
// Enum values for ThirdPartyType
const (
ThirdPartyTypeResource ThirdPartyType = "RESOURCE"
ThirdPartyTypeModule ThirdPartyType = "MODULE"
ThirdPartyTypeHook ThirdPartyType = "HOOK"
)
// Values returns all known values for ThirdPartyType. 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 (ThirdPartyType) Values() []ThirdPartyType {
return []ThirdPartyType{
"RESOURCE",
"MODULE",
"HOOK",
}
}
type TypeTestsStatus string
// Enum values for TypeTestsStatus
const (
TypeTestsStatusPassed TypeTestsStatus = "PASSED"
TypeTestsStatusFailed TypeTestsStatus = "FAILED"
TypeTestsStatusInProgress TypeTestsStatus = "IN_PROGRESS"
TypeTestsStatusNotTested TypeTestsStatus = "NOT_TESTED"
)
// Values returns all known values for TypeTestsStatus. 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 (TypeTestsStatus) Values() []TypeTestsStatus {
return []TypeTestsStatus{
"PASSED",
"FAILED",
"IN_PROGRESS",
"NOT_TESTED",
}
}
type VersionBump string
// Enum values for VersionBump
const (
VersionBumpMajor VersionBump = "MAJOR"
VersionBumpMinor VersionBump = "MINOR"
)
// Values returns all known values for VersionBump. 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 (VersionBump) Values() []VersionBump {
return []VersionBump{
"MAJOR",
"MINOR",
}
}
type Visibility string
// Enum values for Visibility
const (
VisibilityPublic Visibility = "PUBLIC"
VisibilityPrivate Visibility = "PRIVATE"
)
// Values returns all known values for Visibility. 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 (Visibility) Values() []Visibility {
return []Visibility{
"PUBLIC",
"PRIVATE",
}
}
|