Class ServiceShape
java.lang.Object
software.amazon.smithy.model.shapes.Shape
software.amazon.smithy.model.shapes.EntityShape
software.amazon.smithy.model.shapes.ServiceShape
- All Implemented Interfaces:
Comparable<Shape>
,FromSourceLocation
,ToShapeId
,Tagged
,ToSmithyBuilder<ServiceShape>
Represents a
service
shape.-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescription<R> R
accept
(ShapeVisitor<R> visitor) Dispatches the shape to the appropriateShapeVisitor
method.static ServiceShape.Builder
builder()
boolean
getContextualName
(ToShapeId shape) Gets the contextual name of a shape within the closure.Gets a list of the common errors that can be encountered by every operation in the service.Gets the list of common errors introduced by the shape and not inherited from mixins.Gets the rename map introduced by the shape and not inherited from mixins.Gets the version of the service introduced by the shape and not inherited from mixins.getType()
Gets the type of the shape.Get the version of the service.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.EntityShape
getAllOperations, getIntroducedOperations, getIntroducedResources, getOperations, getResources
Methods inherited from class software.amazon.smithy.model.shapes.Shape
asBigDecimalShape, asBigIntegerShape, asBlobShape, asBooleanShape, asByteShape, asDocumentShape, asDoubleShape, asEnumShape, asFloatShape, asIntegerShape, asIntEnumShape, asListShape, asLongShape, asMapShape, asMemberShape, asOperationShape, asResourceShape, 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 Details
-
builder
-
toBuilder
Description copied from interface:ToSmithyBuilder
Take this object and create a builder that contains all of the current property values of this object.- Specified by:
toBuilder
in interfaceToSmithyBuilder<ServiceShape>
- Returns:
- a builder for type T
-
accept
Description copied from class:Shape
Dispatches the shape to the appropriateShapeVisitor
method. -
asServiceShape
- Overrides:
asServiceShape
in classShape
- Returns:
- Optionally returns the shape as a
ServiceShape
.
-
equals
- Overrides:
equals
in classEntityShape
-
getType
Description copied from class:Shape
Gets the type of the shape. -
getVersion
Get the version of the service. An empty string is returned if the version is undefined.- Returns:
- The version of the service.
-
getIntroducedVersion
Gets the version of the service introduced by the shape and not inherited from mixins. An empty string is returned if the version is undefined.- Returns:
- The introduced version of the service.
-
getRename
- Returns:
- The rename map of the service.
-
getIntroducedRename
Gets the rename map introduced by the shape and not inherited from mixins.- Returns:
- The introduced rename map of the service.
-
getErrors
Gets a list of the common errors that can be encountered by every operation in the service.
Each returned
ShapeId
must resolve to aStructureShape
that is targeted by an error trait; however, this is only guaranteed after a model is validated.- Returns:
- Returns the errors.
-
getIntroducedErrors
Gets the list of common errors introduced by the shape and not inherited from mixins. These errors can be encountered by every operation in the service. Each returnedShapeId
must resolve to aStructureShape
that is targeted by an error trait; however, this is only guaranteed after a model is validated.- Returns:
- Returns the introduced service errors.
-
getContextualName
Gets the contextual name of a shape within the closure.If there is a rename property entry for the given shape ID, then the renamed shape name is returned. Otherwise, the name part of the given shape ID is returned, regardless of if the shape exists in the closure of the service.
This is a mirror of
ShapeId.getName(ServiceShape)
that serves to make this functionality more discoverable.- Parameters:
shape
- Shape to get the contextual name of.- Returns:
- Returns the contextual name of the shape within the service.
-