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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type DescriptorContentType string
// Enum values for DescriptorContentType
const (
DescriptorContentTypeTextPlain DescriptorContentType = "text/plain"
)
// Values returns all known values for DescriptorContentType. 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 (DescriptorContentType) Values() []DescriptorContentType {
return []DescriptorContentType{
"text/plain",
}
}
type LcmOperationType string
// Enum values for LcmOperationType
const (
LcmOperationTypeInstantiate LcmOperationType = "INSTANTIATE"
LcmOperationTypeUpdate LcmOperationType = "UPDATE"
LcmOperationTypeTerminate LcmOperationType = "TERMINATE"
)
// Values returns all known values for LcmOperationType. 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 (LcmOperationType) Values() []LcmOperationType {
return []LcmOperationType{
"INSTANTIATE",
"UPDATE",
"TERMINATE",
}
}
type NsdOnboardingState string
// Enum values for NsdOnboardingState
const (
NsdOnboardingStateCreated NsdOnboardingState = "CREATED"
NsdOnboardingStateOnboarded NsdOnboardingState = "ONBOARDED"
NsdOnboardingStateError NsdOnboardingState = "ERROR"
)
// Values returns all known values for NsdOnboardingState. 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 (NsdOnboardingState) Values() []NsdOnboardingState {
return []NsdOnboardingState{
"CREATED",
"ONBOARDED",
"ERROR",
}
}
type NsdOperationalState string
// Enum values for NsdOperationalState
const (
NsdOperationalStateEnabled NsdOperationalState = "ENABLED"
NsdOperationalStateDisabled NsdOperationalState = "DISABLED"
)
// Values returns all known values for NsdOperationalState. 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 (NsdOperationalState) Values() []NsdOperationalState {
return []NsdOperationalState{
"ENABLED",
"DISABLED",
}
}
type NsdUsageState string
// Enum values for NsdUsageState
const (
NsdUsageStateInUse NsdUsageState = "IN_USE"
NsdUsageStateNotInUse NsdUsageState = "NOT_IN_USE"
)
// Values returns all known values for NsdUsageState. 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 (NsdUsageState) Values() []NsdUsageState {
return []NsdUsageState{
"IN_USE",
"NOT_IN_USE",
}
}
type NsLcmOperationState string
// Enum values for NsLcmOperationState
const (
NsLcmOperationStateProcessing NsLcmOperationState = "PROCESSING"
NsLcmOperationStateCompleted NsLcmOperationState = "COMPLETED"
NsLcmOperationStateFailed NsLcmOperationState = "FAILED"
NsLcmOperationStateCancelling NsLcmOperationState = "CANCELLING"
NsLcmOperationStateCancelled NsLcmOperationState = "CANCELLED"
)
// Values returns all known values for NsLcmOperationState. 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 (NsLcmOperationState) Values() []NsLcmOperationState {
return []NsLcmOperationState{
"PROCESSING",
"COMPLETED",
"FAILED",
"CANCELLING",
"CANCELLED",
}
}
type NsState string
// Enum values for NsState
const (
NsStateInstantiated NsState = "INSTANTIATED"
NsStateNotInstantiated NsState = "NOT_INSTANTIATED"
NsStateImpaired NsState = "IMPAIRED"
NsStateStopped NsState = "STOPPED"
NsStateDeleted NsState = "DELETED"
NsStateInstantiateInProgress NsState = "INSTANTIATE_IN_PROGRESS"
NsStateUpdateInProgress NsState = "UPDATE_IN_PROGRESS"
NsStateTerminateInProgress NsState = "TERMINATE_IN_PROGRESS"
)
// Values returns all known values for NsState. 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 (NsState) Values() []NsState {
return []NsState{
"INSTANTIATED",
"NOT_INSTANTIATED",
"IMPAIRED",
"STOPPED",
"DELETED",
"INSTANTIATE_IN_PROGRESS",
"UPDATE_IN_PROGRESS",
"TERMINATE_IN_PROGRESS",
}
}
type OnboardingState string
// Enum values for OnboardingState
const (
OnboardingStateCreated OnboardingState = "CREATED"
OnboardingStateOnboarded OnboardingState = "ONBOARDED"
OnboardingStateError OnboardingState = "ERROR"
)
// Values returns all known values for OnboardingState. 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 (OnboardingState) Values() []OnboardingState {
return []OnboardingState{
"CREATED",
"ONBOARDED",
"ERROR",
}
}
type OperationalState string
// Enum values for OperationalState
const (
OperationalStateEnabled OperationalState = "ENABLED"
OperationalStateDisabled OperationalState = "DISABLED"
)
// Values returns all known values for OperationalState. 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 (OperationalState) Values() []OperationalState {
return []OperationalState{
"ENABLED",
"DISABLED",
}
}
type PackageContentType string
// Enum values for PackageContentType
const (
PackageContentTypeApplicationZip PackageContentType = "application/zip"
)
// Values returns all known values for PackageContentType. 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 (PackageContentType) Values() []PackageContentType {
return []PackageContentType{
"application/zip",
}
}
type TaskStatus string
// Enum values for TaskStatus
const (
TaskStatusScheduled TaskStatus = "SCHEDULED"
TaskStatusStarted TaskStatus = "STARTED"
TaskStatusInProgress TaskStatus = "IN_PROGRESS"
TaskStatusCompleted TaskStatus = "COMPLETED"
TaskStatusError TaskStatus = "ERROR"
TaskStatusSkipped TaskStatus = "SKIPPED"
TaskStatusCancelled TaskStatus = "CANCELLED"
)
// 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{
"SCHEDULED",
"STARTED",
"IN_PROGRESS",
"COMPLETED",
"ERROR",
"SKIPPED",
"CANCELLED",
}
}
type UpdateSolNetworkType string
// Enum values for UpdateSolNetworkType
const (
UpdateSolNetworkTypeModifyVnfInformation UpdateSolNetworkType = "MODIFY_VNF_INFORMATION"
)
// Values returns all known values for UpdateSolNetworkType. 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 (UpdateSolNetworkType) Values() []UpdateSolNetworkType {
return []UpdateSolNetworkType{
"MODIFY_VNF_INFORMATION",
}
}
type UsageState string
// Enum values for UsageState
const (
UsageStateInUse UsageState = "IN_USE"
UsageStateNotInUse UsageState = "NOT_IN_USE"
)
// Values returns all known values for UsageState. 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 (UsageState) Values() []UsageState {
return []UsageState{
"IN_USE",
"NOT_IN_USE",
}
}
type VnfInstantiationState string
// Enum values for VnfInstantiationState
const (
VnfInstantiationStateInstantiated VnfInstantiationState = "INSTANTIATED"
VnfInstantiationStateNotInstantiated VnfInstantiationState = "NOT_INSTANTIATED"
)
// Values returns all known values for VnfInstantiationState. 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 (VnfInstantiationState) Values() []VnfInstantiationState {
return []VnfInstantiationState{
"INSTANTIATED",
"NOT_INSTANTIATED",
}
}
type VnfOperationalState string
// Enum values for VnfOperationalState
const (
VnfOperationalStateStarted VnfOperationalState = "STARTED"
VnfOperationalStateStopped VnfOperationalState = "STOPPED"
)
// Values returns all known values for VnfOperationalState. 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 (VnfOperationalState) Values() []VnfOperationalState {
return []VnfOperationalState{
"STARTED",
"STOPPED",
}
}
|