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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type AcceptRuleBehavior string
// Enum values for AcceptRuleBehavior
const (
AcceptRuleBehaviorAll AcceptRuleBehavior = "ALL"
AcceptRuleBehaviorNone AcceptRuleBehavior = "NONE"
)
// Values returns all known values for AcceptRuleBehavior. 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 (AcceptRuleBehavior) Values() []AcceptRuleBehavior {
return []AcceptRuleBehavior{
"ALL",
"NONE",
}
}
type AuthType string
// Enum values for AuthType
const (
AuthTypeIamIdc AuthType = "IAM_IDC"
AuthTypeDisabled AuthType = "DISABLED"
)
// Values returns all known values for AuthType. 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 (AuthType) Values() []AuthType {
return []AuthType{
"IAM_IDC",
"DISABLED",
}
}
type ChangeAction string
// Enum values for ChangeAction
const (
ChangeActionPublish ChangeAction = "PUBLISH"
ChangeActionUnpublish ChangeAction = "UNPUBLISH"
)
// 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{
"PUBLISH",
"UNPUBLISH",
}
}
type ConfigurableActionTypeAuthorization string
// Enum values for ConfigurableActionTypeAuthorization
const (
ConfigurableActionTypeAuthorizationIam ConfigurableActionTypeAuthorization = "IAM"
ConfigurableActionTypeAuthorizationHttps ConfigurableActionTypeAuthorization = "HTTPS"
)
// Values returns all known values for ConfigurableActionTypeAuthorization. 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 (ConfigurableActionTypeAuthorization) Values() []ConfigurableActionTypeAuthorization {
return []ConfigurableActionTypeAuthorization{
"IAM",
"HTTPS",
}
}
type DataAssetActivityStatus string
// Enum values for DataAssetActivityStatus
const (
DataAssetActivityStatusFailed DataAssetActivityStatus = "FAILED"
DataAssetActivityStatusPublishingFailed DataAssetActivityStatus = "PUBLISHING_FAILED"
DataAssetActivityStatusSucceededCreated DataAssetActivityStatus = "SUCCEEDED_CREATED"
DataAssetActivityStatusSucceededUpdated DataAssetActivityStatus = "SUCCEEDED_UPDATED"
DataAssetActivityStatusSkippedAlreadyImported DataAssetActivityStatus = "SKIPPED_ALREADY_IMPORTED"
DataAssetActivityStatusSkippedArchived DataAssetActivityStatus = "SKIPPED_ARCHIVED"
DataAssetActivityStatusSkippedNoAccess DataAssetActivityStatus = "SKIPPED_NO_ACCESS"
DataAssetActivityStatusUnchanged DataAssetActivityStatus = "UNCHANGED"
)
// Values returns all known values for DataAssetActivityStatus. 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 (DataAssetActivityStatus) Values() []DataAssetActivityStatus {
return []DataAssetActivityStatus{
"FAILED",
"PUBLISHING_FAILED",
"SUCCEEDED_CREATED",
"SUCCEEDED_UPDATED",
"SKIPPED_ALREADY_IMPORTED",
"SKIPPED_ARCHIVED",
"SKIPPED_NO_ACCESS",
"UNCHANGED",
}
}
type DataSourceErrorType string
// Enum values for DataSourceErrorType
const (
DataSourceErrorTypeAccessDeniedException DataSourceErrorType = "ACCESS_DENIED_EXCEPTION"
DataSourceErrorTypeConflictException DataSourceErrorType = "CONFLICT_EXCEPTION"
DataSourceErrorTypeInternalServerException DataSourceErrorType = "INTERNAL_SERVER_EXCEPTION"
DataSourceErrorTypeResourceNotFoundException DataSourceErrorType = "RESOURCE_NOT_FOUND_EXCEPTION"
DataSourceErrorTypeServiceQuotaExceededException DataSourceErrorType = "SERVICE_QUOTA_EXCEEDED_EXCEPTION"
DataSourceErrorTypeThrottlingException DataSourceErrorType = "THROTTLING_EXCEPTION"
DataSourceErrorTypeValidationException DataSourceErrorType = "VALIDATION_EXCEPTION"
)
// Values returns all known values for DataSourceErrorType. 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 (DataSourceErrorType) Values() []DataSourceErrorType {
return []DataSourceErrorType{
"ACCESS_DENIED_EXCEPTION",
"CONFLICT_EXCEPTION",
"INTERNAL_SERVER_EXCEPTION",
"RESOURCE_NOT_FOUND_EXCEPTION",
"SERVICE_QUOTA_EXCEEDED_EXCEPTION",
"THROTTLING_EXCEPTION",
"VALIDATION_EXCEPTION",
}
}
type DataSourceRunStatus string
// Enum values for DataSourceRunStatus
const (
DataSourceRunStatusRequested DataSourceRunStatus = "REQUESTED"
DataSourceRunStatusRunning DataSourceRunStatus = "RUNNING"
DataSourceRunStatusFailed DataSourceRunStatus = "FAILED"
DataSourceRunStatusPartiallySucceeded DataSourceRunStatus = "PARTIALLY_SUCCEEDED"
DataSourceRunStatusSuccess DataSourceRunStatus = "SUCCESS"
)
// Values returns all known values for DataSourceRunStatus. 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 (DataSourceRunStatus) Values() []DataSourceRunStatus {
return []DataSourceRunStatus{
"REQUESTED",
"RUNNING",
"FAILED",
"PARTIALLY_SUCCEEDED",
"SUCCESS",
}
}
type DataSourceRunType string
// Enum values for DataSourceRunType
const (
DataSourceRunTypePrioritized DataSourceRunType = "PRIORITIZED"
DataSourceRunTypeScheduled DataSourceRunType = "SCHEDULED"
)
// Values returns all known values for DataSourceRunType. 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 (DataSourceRunType) Values() []DataSourceRunType {
return []DataSourceRunType{
"PRIORITIZED",
"SCHEDULED",
}
}
type DataSourceStatus string
// Enum values for DataSourceStatus
const (
DataSourceStatusCreating DataSourceStatus = "CREATING"
DataSourceStatusFailedCreation DataSourceStatus = "FAILED_CREATION"
DataSourceStatusReady DataSourceStatus = "READY"
DataSourceStatusUpdating DataSourceStatus = "UPDATING"
DataSourceStatusFailedUpdate DataSourceStatus = "FAILED_UPDATE"
DataSourceStatusRunning DataSourceStatus = "RUNNING"
DataSourceStatusDeleting DataSourceStatus = "DELETING"
DataSourceStatusFailedDeletion DataSourceStatus = "FAILED_DELETION"
)
// Values returns all known values for DataSourceStatus. 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 (DataSourceStatus) Values() []DataSourceStatus {
return []DataSourceStatus{
"CREATING",
"FAILED_CREATION",
"READY",
"UPDATING",
"FAILED_UPDATE",
"RUNNING",
"DELETING",
"FAILED_DELETION",
}
}
type DeploymentStatus string
// Enum values for DeploymentStatus
const (
DeploymentStatusInProgress DeploymentStatus = "IN_PROGRESS"
DeploymentStatusSuccessful DeploymentStatus = "SUCCESSFUL"
DeploymentStatusFailed DeploymentStatus = "FAILED"
DeploymentStatusPendingDeployment DeploymentStatus = "PENDING_DEPLOYMENT"
)
// Values returns all known values for DeploymentStatus. 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 (DeploymentStatus) Values() []DeploymentStatus {
return []DeploymentStatus{
"IN_PROGRESS",
"SUCCESSFUL",
"FAILED",
"PENDING_DEPLOYMENT",
}
}
type DeploymentType string
// Enum values for DeploymentType
const (
DeploymentTypeCreate DeploymentType = "CREATE"
DeploymentTypeUpdate DeploymentType = "UPDATE"
DeploymentTypeDelete DeploymentType = "DELETE"
)
// Values returns all known values for DeploymentType. 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 (DeploymentType) Values() []DeploymentType {
return []DeploymentType{
"CREATE",
"UPDATE",
"DELETE",
}
}
type DomainStatus string
// Enum values for DomainStatus
const (
DomainStatusCreating DomainStatus = "CREATING"
DomainStatusAvailable DomainStatus = "AVAILABLE"
DomainStatusCreationFailed DomainStatus = "CREATION_FAILED"
DomainStatusDeleting DomainStatus = "DELETING"
DomainStatusDeleted DomainStatus = "DELETED"
DomainStatusDeletionFailed DomainStatus = "DELETION_FAILED"
)
// Values returns all known values for DomainStatus. 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 (DomainStatus) Values() []DomainStatus {
return []DomainStatus{
"CREATING",
"AVAILABLE",
"CREATION_FAILED",
"DELETING",
"DELETED",
"DELETION_FAILED",
}
}
type EnableSetting string
// Enum values for EnableSetting
const (
EnableSettingEnabled EnableSetting = "ENABLED"
EnableSettingDisabled EnableSetting = "DISABLED"
)
// Values returns all known values for EnableSetting. 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 (EnableSetting) Values() []EnableSetting {
return []EnableSetting{
"ENABLED",
"DISABLED",
}
}
type EntityType string
// Enum values for EntityType
const (
EntityTypeAsset EntityType = "ASSET"
)
// Values returns all known values for EntityType. 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 (EntityType) Values() []EntityType {
return []EntityType{
"ASSET",
}
}
type EnvironmentStatus string
// Enum values for EnvironmentStatus
const (
EnvironmentStatusActive EnvironmentStatus = "ACTIVE"
EnvironmentStatusCreating EnvironmentStatus = "CREATING"
EnvironmentStatusUpdating EnvironmentStatus = "UPDATING"
EnvironmentStatusDeleting EnvironmentStatus = "DELETING"
EnvironmentStatusCreateFailed EnvironmentStatus = "CREATE_FAILED"
EnvironmentStatusUpdateFailed EnvironmentStatus = "UPDATE_FAILED"
EnvironmentStatusDeleteFailed EnvironmentStatus = "DELETE_FAILED"
EnvironmentStatusValidationFailed EnvironmentStatus = "VALIDATION_FAILED"
EnvironmentStatusSuspended EnvironmentStatus = "SUSPENDED"
EnvironmentStatusDisabled EnvironmentStatus = "DISABLED"
EnvironmentStatusExpired EnvironmentStatus = "EXPIRED"
EnvironmentStatusDeleted EnvironmentStatus = "DELETED"
EnvironmentStatusInaccessible EnvironmentStatus = "INACCESSIBLE"
)
// Values returns all known values for EnvironmentStatus. 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 (EnvironmentStatus) Values() []EnvironmentStatus {
return []EnvironmentStatus{
"ACTIVE",
"CREATING",
"UPDATING",
"DELETING",
"CREATE_FAILED",
"UPDATE_FAILED",
"DELETE_FAILED",
"VALIDATION_FAILED",
"SUSPENDED",
"DISABLED",
"EXPIRED",
"DELETED",
"INACCESSIBLE",
}
}
type FilterExpressionType string
// Enum values for FilterExpressionType
const (
FilterExpressionTypeInclude FilterExpressionType = "INCLUDE"
FilterExpressionTypeExclude FilterExpressionType = "EXCLUDE"
)
// Values returns all known values for FilterExpressionType. 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 (FilterExpressionType) Values() []FilterExpressionType {
return []FilterExpressionType{
"INCLUDE",
"EXCLUDE",
}
}
type FormTypeStatus string
// Enum values for FormTypeStatus
const (
FormTypeStatusEnabled FormTypeStatus = "ENABLED"
FormTypeStatusDisabled FormTypeStatus = "DISABLED"
)
// Values returns all known values for FormTypeStatus. 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 (FormTypeStatus) Values() []FormTypeStatus {
return []FormTypeStatus{
"ENABLED",
"DISABLED",
}
}
type GlossaryStatus string
// Enum values for GlossaryStatus
const (
GlossaryStatusDisabled GlossaryStatus = "DISABLED"
GlossaryStatusEnabled GlossaryStatus = "ENABLED"
)
// Values returns all known values for GlossaryStatus. 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 (GlossaryStatus) Values() []GlossaryStatus {
return []GlossaryStatus{
"DISABLED",
"ENABLED",
}
}
type GlossaryTermStatus string
// Enum values for GlossaryTermStatus
const (
GlossaryTermStatusEnabled GlossaryTermStatus = "ENABLED"
GlossaryTermStatusDisabled GlossaryTermStatus = "DISABLED"
)
// Values returns all known values for GlossaryTermStatus. 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 (GlossaryTermStatus) Values() []GlossaryTermStatus {
return []GlossaryTermStatus{
"ENABLED",
"DISABLED",
}
}
type GroupProfileStatus string
// Enum values for GroupProfileStatus
const (
GroupProfileStatusAssigned GroupProfileStatus = "ASSIGNED"
GroupProfileStatusNotAssigned GroupProfileStatus = "NOT_ASSIGNED"
)
// Values returns all known values for GroupProfileStatus. 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 (GroupProfileStatus) Values() []GroupProfileStatus {
return []GroupProfileStatus{
"ASSIGNED",
"NOT_ASSIGNED",
}
}
type GroupSearchType string
// Enum values for GroupSearchType
const (
GroupSearchTypeSsoGroup GroupSearchType = "SSO_GROUP"
GroupSearchTypeDatazoneSsoGroup GroupSearchType = "DATAZONE_SSO_GROUP"
)
// Values returns all known values for GroupSearchType. 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 (GroupSearchType) Values() []GroupSearchType {
return []GroupSearchType{
"SSO_GROUP",
"DATAZONE_SSO_GROUP",
}
}
type InventorySearchScope string
// Enum values for InventorySearchScope
const (
InventorySearchScopeAsset InventorySearchScope = "ASSET"
InventorySearchScopeGlossary InventorySearchScope = "GLOSSARY"
InventorySearchScopeGlossaryTerm InventorySearchScope = "GLOSSARY_TERM"
)
// Values returns all known values for InventorySearchScope. 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 (InventorySearchScope) Values() []InventorySearchScope {
return []InventorySearchScope{
"ASSET",
"GLOSSARY",
"GLOSSARY_TERM",
}
}
type ListingStatus string
// Enum values for ListingStatus
const (
ListingStatusCreating ListingStatus = "CREATING"
ListingStatusActive ListingStatus = "ACTIVE"
ListingStatusInactive ListingStatus = "INACTIVE"
)
// Values returns all known values for ListingStatus. 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 (ListingStatus) Values() []ListingStatus {
return []ListingStatus{
"CREATING",
"ACTIVE",
"INACTIVE",
}
}
type NotificationResourceType string
// Enum values for NotificationResourceType
const (
NotificationResourceTypeProject NotificationResourceType = "PROJECT"
)
// Values returns all known values for NotificationResourceType. 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 (NotificationResourceType) Values() []NotificationResourceType {
return []NotificationResourceType{
"PROJECT",
}
}
type NotificationRole string
// Enum values for NotificationRole
const (
NotificationRoleProjectOwner NotificationRole = "PROJECT_OWNER"
NotificationRoleProjectContributor NotificationRole = "PROJECT_CONTRIBUTOR"
NotificationRoleProjectViewer NotificationRole = "PROJECT_VIEWER"
NotificationRoleDomainOwner NotificationRole = "DOMAIN_OWNER"
NotificationRoleProjectSubscriber NotificationRole = "PROJECT_SUBSCRIBER"
)
// Values returns all known values for NotificationRole. 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 (NotificationRole) Values() []NotificationRole {
return []NotificationRole{
"PROJECT_OWNER",
"PROJECT_CONTRIBUTOR",
"PROJECT_VIEWER",
"DOMAIN_OWNER",
"PROJECT_SUBSCRIBER",
}
}
type NotificationType string
// Enum values for NotificationType
const (
NotificationTypeTask NotificationType = "TASK"
NotificationTypeEvent NotificationType = "EVENT"
)
// Values returns all known values for NotificationType. 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 (NotificationType) Values() []NotificationType {
return []NotificationType{
"TASK",
"EVENT",
}
}
type RejectRuleBehavior string
// Enum values for RejectRuleBehavior
const (
RejectRuleBehaviorAll RejectRuleBehavior = "ALL"
RejectRuleBehaviorNone RejectRuleBehavior = "NONE"
)
// Values returns all known values for RejectRuleBehavior. 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 (RejectRuleBehavior) Values() []RejectRuleBehavior {
return []RejectRuleBehavior{
"ALL",
"NONE",
}
}
type SearchOutputAdditionalAttribute string
// Enum values for SearchOutputAdditionalAttribute
const (
SearchOutputAdditionalAttributeForms SearchOutputAdditionalAttribute = "FORMS"
)
// Values returns all known values for SearchOutputAdditionalAttribute. 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 (SearchOutputAdditionalAttribute) Values() []SearchOutputAdditionalAttribute {
return []SearchOutputAdditionalAttribute{
"FORMS",
}
}
type SortFieldProject string
// Enum values for SortFieldProject
const (
SortFieldProjectName SortFieldProject = "NAME"
)
// Values returns all known values for SortFieldProject. 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 (SortFieldProject) Values() []SortFieldProject {
return []SortFieldProject{
"NAME",
}
}
type SortKey string
// Enum values for SortKey
const (
SortKeyCreatedAt SortKey = "CREATED_AT"
SortKeyUpdatedAt SortKey = "UPDATED_AT"
)
// Values returns all known values for SortKey. 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 (SortKey) Values() []SortKey {
return []SortKey{
"CREATED_AT",
"UPDATED_AT",
}
}
type SortOrder string
// Enum values for SortOrder
const (
SortOrderAscending SortOrder = "ASCENDING"
SortOrderDescending SortOrder = "DESCENDING"
)
// Values returns all known values for SortOrder. 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 (SortOrder) Values() []SortOrder {
return []SortOrder{
"ASCENDING",
"DESCENDING",
}
}
type SubscriptionGrantOverallStatus string
// Enum values for SubscriptionGrantOverallStatus
const (
SubscriptionGrantOverallStatusPending SubscriptionGrantOverallStatus = "PENDING"
SubscriptionGrantOverallStatusInProgress SubscriptionGrantOverallStatus = "IN_PROGRESS"
SubscriptionGrantOverallStatusGrantFailed SubscriptionGrantOverallStatus = "GRANT_FAILED"
SubscriptionGrantOverallStatusRevokeFailed SubscriptionGrantOverallStatus = "REVOKE_FAILED"
SubscriptionGrantOverallStatusGrantAndRevokeFailed SubscriptionGrantOverallStatus = "GRANT_AND_REVOKE_FAILED"
SubscriptionGrantOverallStatusCompleted SubscriptionGrantOverallStatus = "COMPLETED"
SubscriptionGrantOverallStatusInaccessible SubscriptionGrantOverallStatus = "INACCESSIBLE"
)
// Values returns all known values for SubscriptionGrantOverallStatus. 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 (SubscriptionGrantOverallStatus) Values() []SubscriptionGrantOverallStatus {
return []SubscriptionGrantOverallStatus{
"PENDING",
"IN_PROGRESS",
"GRANT_FAILED",
"REVOKE_FAILED",
"GRANT_AND_REVOKE_FAILED",
"COMPLETED",
"INACCESSIBLE",
}
}
type SubscriptionGrantStatus string
// Enum values for SubscriptionGrantStatus
const (
SubscriptionGrantStatusGrantPending SubscriptionGrantStatus = "GRANT_PENDING"
SubscriptionGrantStatusRevokePending SubscriptionGrantStatus = "REVOKE_PENDING"
SubscriptionGrantStatusGrantInProgress SubscriptionGrantStatus = "GRANT_IN_PROGRESS"
SubscriptionGrantStatusRevokeInProgress SubscriptionGrantStatus = "REVOKE_IN_PROGRESS"
SubscriptionGrantStatusGranted SubscriptionGrantStatus = "GRANTED"
SubscriptionGrantStatusRevoked SubscriptionGrantStatus = "REVOKED"
SubscriptionGrantStatusGrantFailed SubscriptionGrantStatus = "GRANT_FAILED"
SubscriptionGrantStatusRevokeFailed SubscriptionGrantStatus = "REVOKE_FAILED"
)
// Values returns all known values for SubscriptionGrantStatus. 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 (SubscriptionGrantStatus) Values() []SubscriptionGrantStatus {
return []SubscriptionGrantStatus{
"GRANT_PENDING",
"REVOKE_PENDING",
"GRANT_IN_PROGRESS",
"REVOKE_IN_PROGRESS",
"GRANTED",
"REVOKED",
"GRANT_FAILED",
"REVOKE_FAILED",
}
}
type SubscriptionRequestStatus string
// Enum values for SubscriptionRequestStatus
const (
SubscriptionRequestStatusPending SubscriptionRequestStatus = "PENDING"
SubscriptionRequestStatusAccepted SubscriptionRequestStatus = "ACCEPTED"
SubscriptionRequestStatusRejected SubscriptionRequestStatus = "REJECTED"
)
// Values returns all known values for SubscriptionRequestStatus. 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 (SubscriptionRequestStatus) Values() []SubscriptionRequestStatus {
return []SubscriptionRequestStatus{
"PENDING",
"ACCEPTED",
"REJECTED",
}
}
type SubscriptionStatus string
// Enum values for SubscriptionStatus
const (
SubscriptionStatusApproved SubscriptionStatus = "APPROVED"
SubscriptionStatusRevoked SubscriptionStatus = "REVOKED"
SubscriptionStatusCancelled SubscriptionStatus = "CANCELLED"
)
// Values returns all known values for SubscriptionStatus. 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 (SubscriptionStatus) Values() []SubscriptionStatus {
return []SubscriptionStatus{
"APPROVED",
"REVOKED",
"CANCELLED",
}
}
type TaskStatus string
// Enum values for TaskStatus
const (
TaskStatusActive TaskStatus = "ACTIVE"
TaskStatusInactive TaskStatus = "INACTIVE"
)
// Values returns all known values for TaskStatus. 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 (TaskStatus) Values() []TaskStatus {
return []TaskStatus{
"ACTIVE",
"INACTIVE",
}
}
type Timezone string
// Enum values for Timezone
const (
TimezoneUtc Timezone = "UTC"
TimezoneAfricaJohannesburg Timezone = "AFRICA_JOHANNESBURG"
TimezoneAmericaMontreal Timezone = "AMERICA_MONTREAL"
TimezoneAmericaSaoPaulo Timezone = "AMERICA_SAO_PAULO"
TimezoneAsiaBahrain Timezone = "ASIA_BAHRAIN"
TimezoneAsiaBangkok Timezone = "ASIA_BANGKOK"
TimezoneAsiaCalcutta Timezone = "ASIA_CALCUTTA"
TimezoneAsiaDubai Timezone = "ASIA_DUBAI"
TimezoneAsiaHongKong Timezone = "ASIA_HONG_KONG"
TimezoneAsiaJakarta Timezone = "ASIA_JAKARTA"
TimezoneAsiaKualaLumpur Timezone = "ASIA_KUALA_LUMPUR"
TimezoneAsiaSeoul Timezone = "ASIA_SEOUL"
TimezoneAsiaShanghai Timezone = "ASIA_SHANGHAI"
TimezoneAsiaSingapore Timezone = "ASIA_SINGAPORE"
TimezoneAsiaTaipei Timezone = "ASIA_TAIPEI"
TimezoneAsiaTokyo Timezone = "ASIA_TOKYO"
TimezoneAustraliaMelbourne Timezone = "AUSTRALIA_MELBOURNE"
TimezoneAustraliaSydney Timezone = "AUSTRALIA_SYDNEY"
TimezoneCanadaCentral Timezone = "CANADA_CENTRAL"
TimezoneCet Timezone = "CET"
TimezoneCst6cdt Timezone = "CST6CDT"
TimezoneEtcGmt Timezone = "ETC_GMT"
TimezoneEtcGmt0 Timezone = "ETC_GMT0"
TimezoneEtcGmtAdd0 Timezone = "ETC_GMT_ADD_0"
TimezoneEtcGmtAdd1 Timezone = "ETC_GMT_ADD_1"
TimezoneEtcGmtAdd10 Timezone = "ETC_GMT_ADD_10"
TimezoneEtcGmtAdd11 Timezone = "ETC_GMT_ADD_11"
TimezoneEtcGmtAdd12 Timezone = "ETC_GMT_ADD_12"
TimezoneEtcGmtAdd2 Timezone = "ETC_GMT_ADD_2"
TimezoneEtcGmtAdd3 Timezone = "ETC_GMT_ADD_3"
TimezoneEtcGmtAdd4 Timezone = "ETC_GMT_ADD_4"
TimezoneEtcGmtAdd5 Timezone = "ETC_GMT_ADD_5"
TimezoneEtcGmtAdd6 Timezone = "ETC_GMT_ADD_6"
TimezoneEtcGmtAdd7 Timezone = "ETC_GMT_ADD_7"
TimezoneEtcGmtAdd8 Timezone = "ETC_GMT_ADD_8"
TimezoneEtcGmtAdd9 Timezone = "ETC_GMT_ADD_9"
TimezoneEtcGmtNeg0 Timezone = "ETC_GMT_NEG_0"
TimezoneEtcGmtNeg1 Timezone = "ETC_GMT_NEG_1"
TimezoneEtcGmtNeg10 Timezone = "ETC_GMT_NEG_10"
TimezoneEtcGmtNeg11 Timezone = "ETC_GMT_NEG_11"
TimezoneEtcGmtNeg12 Timezone = "ETC_GMT_NEG_12"
TimezoneEtcGmtNeg13 Timezone = "ETC_GMT_NEG_13"
TimezoneEtcGmtNeg14 Timezone = "ETC_GMT_NEG_14"
TimezoneEtcGmtNeg2 Timezone = "ETC_GMT_NEG_2"
TimezoneEtcGmtNeg3 Timezone = "ETC_GMT_NEG_3"
TimezoneEtcGmtNeg4 Timezone = "ETC_GMT_NEG_4"
TimezoneEtcGmtNeg5 Timezone = "ETC_GMT_NEG_5"
TimezoneEtcGmtNeg6 Timezone = "ETC_GMT_NEG_6"
TimezoneEtcGmtNeg7 Timezone = "ETC_GMT_NEG_7"
TimezoneEtcGmtNeg8 Timezone = "ETC_GMT_NEG_8"
TimezoneEtcGmtNeg9 Timezone = "ETC_GMT_NEG_9"
TimezoneEuropeDublin Timezone = "EUROPE_DUBLIN"
TimezoneEuropeLondon Timezone = "EUROPE_LONDON"
TimezoneEuropeParis Timezone = "EUROPE_PARIS"
TimezoneEuropeStockholm Timezone = "EUROPE_STOCKHOLM"
TimezoneEuropeZurich Timezone = "EUROPE_ZURICH"
TimezoneIsrael Timezone = "ISRAEL"
TimezoneMexicoGeneral Timezone = "MEXICO_GENERAL"
TimezoneMst7mdt Timezone = "MST7MDT"
TimezonePacificAuckland Timezone = "PACIFIC_AUCKLAND"
TimezoneUsCentral Timezone = "US_CENTRAL"
TimezoneUsEastern Timezone = "US_EASTERN"
TimezoneUsMountain Timezone = "US_MOUNTAIN"
TimezoneUsPacific Timezone = "US_PACIFIC"
)
// Values returns all known values for Timezone. 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 (Timezone) Values() []Timezone {
return []Timezone{
"UTC",
"AFRICA_JOHANNESBURG",
"AMERICA_MONTREAL",
"AMERICA_SAO_PAULO",
"ASIA_BAHRAIN",
"ASIA_BANGKOK",
"ASIA_CALCUTTA",
"ASIA_DUBAI",
"ASIA_HONG_KONG",
"ASIA_JAKARTA",
"ASIA_KUALA_LUMPUR",
"ASIA_SEOUL",
"ASIA_SHANGHAI",
"ASIA_SINGAPORE",
"ASIA_TAIPEI",
"ASIA_TOKYO",
"AUSTRALIA_MELBOURNE",
"AUSTRALIA_SYDNEY",
"CANADA_CENTRAL",
"CET",
"CST6CDT",
"ETC_GMT",
"ETC_GMT0",
"ETC_GMT_ADD_0",
"ETC_GMT_ADD_1",
"ETC_GMT_ADD_10",
"ETC_GMT_ADD_11",
"ETC_GMT_ADD_12",
"ETC_GMT_ADD_2",
"ETC_GMT_ADD_3",
"ETC_GMT_ADD_4",
"ETC_GMT_ADD_5",
"ETC_GMT_ADD_6",
"ETC_GMT_ADD_7",
"ETC_GMT_ADD_8",
"ETC_GMT_ADD_9",
"ETC_GMT_NEG_0",
"ETC_GMT_NEG_1",
"ETC_GMT_NEG_10",
"ETC_GMT_NEG_11",
"ETC_GMT_NEG_12",
"ETC_GMT_NEG_13",
"ETC_GMT_NEG_14",
"ETC_GMT_NEG_2",
"ETC_GMT_NEG_3",
"ETC_GMT_NEG_4",
"ETC_GMT_NEG_5",
"ETC_GMT_NEG_6",
"ETC_GMT_NEG_7",
"ETC_GMT_NEG_8",
"ETC_GMT_NEG_9",
"EUROPE_DUBLIN",
"EUROPE_LONDON",
"EUROPE_PARIS",
"EUROPE_STOCKHOLM",
"EUROPE_ZURICH",
"ISRAEL",
"MEXICO_GENERAL",
"MST7MDT",
"PACIFIC_AUCKLAND",
"US_CENTRAL",
"US_EASTERN",
"US_MOUNTAIN",
"US_PACIFIC",
}
}
type TypesSearchScope string
// Enum values for TypesSearchScope
const (
TypesSearchScopeAssetType TypesSearchScope = "ASSET_TYPE"
TypesSearchScopeFormType TypesSearchScope = "FORM_TYPE"
)
// Values returns all known values for TypesSearchScope. 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 (TypesSearchScope) Values() []TypesSearchScope {
return []TypesSearchScope{
"ASSET_TYPE",
"FORM_TYPE",
}
}
type UserAssignment string
// Enum values for UserAssignment
const (
UserAssignmentAutomatic UserAssignment = "AUTOMATIC"
UserAssignmentManual UserAssignment = "MANUAL"
)
// Values returns all known values for UserAssignment. 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 (UserAssignment) Values() []UserAssignment {
return []UserAssignment{
"AUTOMATIC",
"MANUAL",
}
}
type UserDesignation string
// Enum values for UserDesignation
const (
UserDesignationProjectOwner UserDesignation = "PROJECT_OWNER"
UserDesignationProjectContributor UserDesignation = "PROJECT_CONTRIBUTOR"
)
// Values returns all known values for UserDesignation. 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 (UserDesignation) Values() []UserDesignation {
return []UserDesignation{
"PROJECT_OWNER",
"PROJECT_CONTRIBUTOR",
}
}
type UserProfileStatus string
// Enum values for UserProfileStatus
const (
UserProfileStatusAssigned UserProfileStatus = "ASSIGNED"
UserProfileStatusNotAssigned UserProfileStatus = "NOT_ASSIGNED"
UserProfileStatusActivated UserProfileStatus = "ACTIVATED"
UserProfileStatusDeactivated UserProfileStatus = "DEACTIVATED"
)
// Values returns all known values for UserProfileStatus. 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 (UserProfileStatus) Values() []UserProfileStatus {
return []UserProfileStatus{
"ASSIGNED",
"NOT_ASSIGNED",
"ACTIVATED",
"DEACTIVATED",
}
}
type UserProfileType string
// Enum values for UserProfileType
const (
UserProfileTypeIam UserProfileType = "IAM"
UserProfileTypeSso UserProfileType = "SSO"
)
// Values returns all known values for UserProfileType. 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 (UserProfileType) Values() []UserProfileType {
return []UserProfileType{
"IAM",
"SSO",
}
}
type UserSearchType string
// Enum values for UserSearchType
const (
UserSearchTypeSsoUser UserSearchType = "SSO_USER"
UserSearchTypeDatazoneUser UserSearchType = "DATAZONE_USER"
UserSearchTypeDatazoneSsoUser UserSearchType = "DATAZONE_SSO_USER"
UserSearchTypeDatazoneIamUser UserSearchType = "DATAZONE_IAM_USER"
)
// Values returns all known values for UserSearchType. 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 (UserSearchType) Values() []UserSearchType {
return []UserSearchType{
"SSO_USER",
"DATAZONE_USER",
"DATAZONE_SSO_USER",
"DATAZONE_IAM_USER",
}
}
type UserType string
// Enum values for UserType
const (
UserTypeIamUser UserType = "IAM_USER"
UserTypeIamRole UserType = "IAM_ROLE"
UserTypeSsoUser UserType = "SSO_USER"
)
// Values returns all known values for UserType. 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 (UserType) Values() []UserType {
return []UserType{
"IAM_USER",
"IAM_ROLE",
"SSO_USER",
}
}
|