// Code generated by smithy-go-codegen DO NOT EDIT.

package types

type CodeGenerationStatus string

// Enum values for CodeGenerationStatus
const (
	CodeGenerationStatusCreateInProgress CodeGenerationStatus = "CREATE_IN_PROGRESS"
	CodeGenerationStatusCreateComplete   CodeGenerationStatus = "CREATE_COMPLETE"
	CodeGenerationStatusCreateFailed     CodeGenerationStatus = "CREATE_FAILED"
)

// Values returns all known values for CodeGenerationStatus. 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 (CodeGenerationStatus) Values() []CodeGenerationStatus {
	return []CodeGenerationStatus{
		"CREATE_IN_PROGRESS",
		"CREATE_COMPLETE",
		"CREATE_FAILED",
	}
}

type DiscovererState string

// Enum values for DiscovererState
const (
	DiscovererStateStarted DiscovererState = "STARTED"
	DiscovererStateStopped DiscovererState = "STOPPED"
)

// Values returns all known values for DiscovererState. 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 (DiscovererState) Values() []DiscovererState {
	return []DiscovererState{
		"STARTED",
		"STOPPED",
	}
}

type Type string

// Enum values for Type
const (
	TypeOpenApi3         Type = "OpenApi3"
	TypeJSONSchemaDraft4 Type = "JSONSchemaDraft4"
)

// Values returns all known values for Type. 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 (Type) Values() []Type {
	return []Type{
		"OpenApi3",
		"JSONSchemaDraft4",
	}
}