Class OperationShape
- java.lang.Object
- 
- software.amazon.smithy.model.shapes.Shape
- 
- software.amazon.smithy.model.shapes.OperationShape
 
 
- 
- All Implemented Interfaces:
- java.lang.Comparable<Shape>,- FromSourceLocation,- ToShapeId,- Tagged,- ToSmithyBuilder<OperationShape>
 
 public final class OperationShape extends Shape implements ToSmithyBuilder<OperationShape> Represents an API operation.
- 
- 
Nested Class SummaryNested Classes Modifier and Type Class Description static classOperationShape.BuilderBuilder used to create aOperationShape.
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description <R> Raccept(ShapeVisitor<R> visitor)Dispatches the shape to the appropriateShapeVisitormethod.java.util.Optional<OperationShape>asOperationShape()static OperationShape.Builderbuilder()booleanequals(java.lang.Object other)java.util.List<ShapeId>getErrors()Gets a list of the error shape IDs bound directly to the operation that can be encountered.java.util.List<ShapeId>getErrors(ServiceShape service)Gets a list of the error shape IDs the operation can encounter, including any common errors of a service.java.util.Optional<ShapeId>getInput()Gets the optional shape ID of the input of the operation.ShapeIdgetInputShape()Gets the input of the operation.java.util.List<ShapeId>getIntroducedErrors()Gets the errors introduced by the shape and not inherited from mixins.java.util.Optional<ShapeId>getOutput()Gets the optional shape ID of the output of the operation.ShapeIdgetOutputShape()Gets the output of the operation.ShapeTypegetType()Gets the type of the shape.OperationShape.BuildertoBuilder()Take this object and create a builder that contains all of the current property values of this object.- 
Methods inherited from class software.amazon.smithy.model.shapes.ShapeasBigDecimalShape, asBigIntegerShape, asBlobShape, asBooleanShape, asByteShape, asDocumentShape, asDoubleShape, asEnumShape, asFloatShape, asIntegerShape, asIntEnumShape, asListShape, asLongShape, asMapShape, asMemberShape, asResourceShape, asServiceShape, asSetShape, asShortShape, asStringShape, asStructureShape, asTimestampShape, asUnionShape, compareTo, expectTrait, findMemberTrait, findTrait, findTrait, getAllMembers, getAllTraits, getId, getIntroducedTraits, getMember, getMemberNames, getMemberTrait, getMixins, getRequiredMembers, getSourceLocation, getTags, getTrait, hashCode, hasTrait, hasTrait, hasTrait, isBigDecimalShape, isBigIntegerShape, isBlobShape, isBooleanShape, isByteShape, isDocumentShape, isDoubleShape, isEnumShape, isFloatShape, isIntegerShape, isIntEnumShape, isListShape, isLongShape, isMapShape, isMemberShape, isOperationShape, isResourceShape, isServiceShape, isSetShape, isShortShape, isStringShape, isStructureShape, isTimestampShape, isUnionShape, members, shapeToBuilder, toShapeId, toString, validateMemberShapeIds, validateMixins
 
- 
 
- 
- 
- 
Method Detail- 
builderpublic static OperationShape.Builder builder() 
 - 
toBuilderpublic OperationShape.Builder toBuilder() Description copied from interface:ToSmithyBuilderTake this object and create a builder that contains all of the current property values of this object.- Specified by:
- toBuilderin interface- ToSmithyBuilder<OperationShape>
- Returns:
- a builder for type T
 
 - 
acceptpublic <R> R accept(ShapeVisitor<R> visitor) Description copied from class:ShapeDispatches the shape to the appropriateShapeVisitormethod.
 - 
asOperationShapepublic java.util.Optional<OperationShape> asOperationShape() - Overrides:
- asOperationShapein class- Shape
- Returns:
- Optionally returns the shape as an OperationShape.
 
 - 
getInputpublic java.util.Optional<ShapeId> getInput() Gets the optional shape ID of the input of the operation. For backward compatibility, if the input targets smithy.api#Unit, then an empty optional is returned.- Returns:
- Returns the optional shape ID.
 
 - 
getOutputpublic java.util.Optional<ShapeId> getOutput() Gets the optional shape ID of the output of the operation. For backward compatibility, if the output targets smithy.api#Unit, then an empty optional is returned.- Returns:
- Returns the optional shape ID.
 
 - 
getInputShapepublic ShapeId getInputShape() Gets the input of the operation.All operations have input, and they default to target smithy.api#Unit.- Returns:
- Returns the non-nullable input.
 
 - 
getOutputShapepublic ShapeId getOutputShape() Gets the output of the operation.All operations have output, and they default to target smithy.api#Unit.- Returns:
- Returns the non-nullable output.
 
 - 
getErrorspublic java.util.List<ShapeId> getErrors() Gets a list of the error shape IDs bound directly to the operation that can be encountered. This DOES NOT include errors that are common to a service. Operations can be bound to multiple services, so common service errors cannot be returned by this method. Use getErrors(ServiceShape)orOperationIndex.getErrors(ToShapeId, ToShapeId)to get all of the errors an operation can encounter when used within a service.Each returned ShapeIdmust resolve to aStructureShapethat is targeted by an error trait; however, this is only guaranteed after a model is validated.- Returns:
- Returns the errors.
- See Also:
- getErrors(ServiceShape),- OperationIndex.getErrors(ToShapeId, ToShapeId)
 
 - 
getIntroducedErrorspublic java.util.List<ShapeId> getIntroducedErrors() Gets the errors introduced by the shape and not inherited from mixins.- Returns:
- Returns the introduced errors.
 
 - 
getErrorspublic java.util.List<ShapeId> getErrors(ServiceShape service) Gets a list of the error shape IDs the operation can encounter, including any common errors of a service. No validation is performed here to ensure that the operation is actually bound to the given service shape. - Returns:
- Returns the errors.
- See Also:
- OperationIndex.getErrors(ToShapeId, ToShapeId)
 
 
- 
 
-