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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type BlockerStatus string
// Enum values for BlockerStatus
const (
BlockerStatusActive BlockerStatus = "ACTIVE"
BlockerStatusResolved BlockerStatus = "RESOLVED"
)
// Values returns all known values for BlockerStatus. 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 (BlockerStatus) Values() []BlockerStatus {
return []BlockerStatus{
"ACTIVE",
"RESOLVED",
}
}
type BlockerType string
// Enum values for BlockerType
const (
BlockerTypeAutomated BlockerType = "AUTOMATED"
)
// Values returns all known values for BlockerType. 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 (BlockerType) Values() []BlockerType {
return []BlockerType{
"AUTOMATED",
}
}
type ConnectionStatus string
// Enum values for ConnectionStatus
const (
ConnectionStatusPending ConnectionStatus = "PENDING"
ConnectionStatusAvailable ConnectionStatus = "AVAILABLE"
ConnectionStatusError ConnectionStatus = "ERROR"
)
// Values returns all known values for ConnectionStatus. 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 (ConnectionStatus) Values() []ConnectionStatus {
return []ConnectionStatus{
"PENDING",
"AVAILABLE",
"ERROR",
}
}
type ProviderType string
// Enum values for ProviderType
const (
ProviderTypeBitbucket ProviderType = "Bitbucket"
ProviderTypeGithub ProviderType = "GitHub"
ProviderTypeGithubEnterpriseServer ProviderType = "GitHubEnterpriseServer"
ProviderTypeGitlab ProviderType = "GitLab"
ProviderTypeGitlabSelfManaged ProviderType = "GitLabSelfManaged"
)
// Values returns all known values for ProviderType. 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 (ProviderType) Values() []ProviderType {
return []ProviderType{
"Bitbucket",
"GitHub",
"GitHubEnterpriseServer",
"GitLab",
"GitLabSelfManaged",
}
}
type RepositorySyncStatus string
// Enum values for RepositorySyncStatus
const (
RepositorySyncStatusFailed RepositorySyncStatus = "FAILED"
RepositorySyncStatusInitiated RepositorySyncStatus = "INITIATED"
RepositorySyncStatusInProgress RepositorySyncStatus = "IN_PROGRESS"
RepositorySyncStatusSucceeded RepositorySyncStatus = "SUCCEEDED"
RepositorySyncStatusQueued RepositorySyncStatus = "QUEUED"
)
// Values returns all known values for RepositorySyncStatus. 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 (RepositorySyncStatus) Values() []RepositorySyncStatus {
return []RepositorySyncStatus{
"FAILED",
"INITIATED",
"IN_PROGRESS",
"SUCCEEDED",
"QUEUED",
}
}
type ResourceSyncStatus string
// Enum values for ResourceSyncStatus
const (
ResourceSyncStatusFailed ResourceSyncStatus = "FAILED"
ResourceSyncStatusInitiated ResourceSyncStatus = "INITIATED"
ResourceSyncStatusInProgress ResourceSyncStatus = "IN_PROGRESS"
ResourceSyncStatusSucceeded ResourceSyncStatus = "SUCCEEDED"
)
// Values returns all known values for ResourceSyncStatus. 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 (ResourceSyncStatus) Values() []ResourceSyncStatus {
return []ResourceSyncStatus{
"FAILED",
"INITIATED",
"IN_PROGRESS",
"SUCCEEDED",
}
}
type SyncConfigurationType string
// Enum values for SyncConfigurationType
const (
SyncConfigurationTypeCfnStackSync SyncConfigurationType = "CFN_STACK_SYNC"
)
// Values returns all known values for SyncConfigurationType. 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 (SyncConfigurationType) Values() []SyncConfigurationType {
return []SyncConfigurationType{
"CFN_STACK_SYNC",
}
}
|