smithy.api.OptionalAuth.scala Maven / Gradle / Ivy
package smithy.api
import smithy4s.Hints
import smithy4s.Schema
import smithy4s.ShapeId
import smithy4s.ShapeTag
import smithy4s.schema.Schema.constant
/** Indicates that an operation can be called without authentication. */
final case class OptionalAuth()
object OptionalAuth extends ShapeTag.Companion[OptionalAuth] {
val id: ShapeId = ShapeId("smithy.api", "optionalAuth")
val hints: Hints = Hints(
smithy.api.Documentation("Indicates that an operation can be called without authentication."),
smithy.api.Trait(selector = Some("operation"), structurallyExclusive = None, conflicts = None, breakingChanges = Some(List(smithy.api.TraitDiffRule(change = smithy.api.TraitChangeType.REMOVE.widen, severity = smithy.api.Severity.ERROR.widen, path = None, message = None)))),
).lazily
implicit val schema: Schema[OptionalAuth] = constant(OptionalAuth()).withId(id).addHints(hints)
}