@@ -6,27 +6,27 @@ module ShapeService
66 # This module contains a schema composed of shapes used by the client.
77 module Schema
88
9- BigDecimal = Smithy ::Schema ::Shapes ::BigDecimalShape . new ( id : 'smithy.ruby.tests#BigDecimal' , traits : { "smithy.ruby.tests#shape" => { } } )
10- BigInteger = Smithy ::Schema ::Shapes ::IntegerShape . new ( id : 'smithy.ruby.tests#BigInteger' , traits : { "smithy.ruby.tests#shape" => { } } )
11- Blob = Smithy ::Schema ::Shapes ::BlobShape . new ( id : 'smithy.ruby.tests#Blob' , traits : { "smithy.ruby.tests#shape" => { } } )
12- Boolean = Smithy ::Schema ::Shapes ::BooleanShape . new ( id : 'smithy.ruby.tests#Boolean' , traits : { "smithy.ruby.tests#shape" => { } } )
13- Byte = Smithy ::Schema ::Shapes ::IntegerShape . new ( id : 'smithy.ruby.tests#Byte' , traits : { "smithy.ruby.tests#shape" => { } } )
14- Document = Smithy ::Schema ::Shapes ::DocumentShape . new ( id : 'smithy.ruby.tests#Document' , traits : { "smithy.ruby.tests#shape" => { } } )
15- Double = Smithy ::Schema ::Shapes ::FloatShape . new ( id : 'smithy.ruby.tests#Double' , traits : { "smithy.ruby.tests#shape" => { } } )
16- Enum = Smithy ::Schema ::Shapes ::EnumShape . new ( id : 'smithy.ruby.tests#Enum' , traits : { "smithy.ruby.tests#shape" => { } } )
17- Float = Smithy ::Schema ::Shapes ::FloatShape . new ( id : 'smithy.ruby.tests#Float' , traits : { "smithy.ruby.tests#shape" => { } } )
18- IntEnum = Smithy ::Schema ::Shapes ::IntEnumShape . new ( id : 'smithy.ruby.tests#IntEnum' , traits : { "smithy.ruby.tests#shape" => { } } )
19- Integer = Smithy ::Schema ::Shapes ::IntegerShape . new ( id : 'smithy.ruby.tests#Integer' , traits : { "smithy.ruby.tests#shape" => { } } )
20- List = Smithy ::Schema ::Shapes ::ListShape . new ( id : 'smithy.ruby.tests#List' , traits : { "smithy.ruby.tests#shape" => { } } )
21- Long = Smithy ::Schema ::Shapes ::IntegerShape . new ( id : 'smithy.ruby.tests#Long' , traits : { "smithy.ruby.tests#shape" => { } } )
22- Map = Smithy ::Schema ::Shapes ::MapShape . new ( id : 'smithy.ruby.tests#Map' , traits : { "smithy.ruby.tests#shape" => { } } )
23- OperationInput = Smithy ::Schema ::Shapes ::StructureShape . new ( id : 'smithy.ruby.tests#OperationInput' )
24- OperationOutput = Smithy ::Schema ::Shapes ::StructureShape . new ( id : 'smithy.ruby.tests#OperationOutput' )
25- Short = Smithy ::Schema ::Shapes ::IntegerShape . new ( id : 'smithy.ruby.tests#Short' , traits : { "smithy.ruby.tests#shape" => { } } )
26- String = Smithy ::Schema ::Shapes ::StringShape . new ( id : 'smithy.ruby.tests#String' , traits : { "smithy.ruby.tests#shape" => { } } )
27- Structure = Smithy ::Schema ::Shapes ::StructureShape . new ( id : 'smithy.ruby.tests#Structure' , traits : { "smithy.ruby.tests#shape" => { } } )
28- Timestamp = Smithy ::Schema ::Shapes ::TimestampShape . new ( id : 'smithy.ruby.tests#Timestamp' , traits : { "smithy.ruby.tests#shape" => { } } )
29- Union = Smithy ::Schema ::Shapes ::UnionShape . new ( id : 'smithy.ruby.tests#Union' , traits : { "smithy.ruby.tests#shape" => { } } )
9+ BigDecimal = Smithy ::Schema ::Shapes ::BigDecimalShape . new ( id : 'smithy.ruby.tests#BigDecimal' , name : 'BigDecimal' , traits : { "smithy.ruby.tests#shape" => { } } )
10+ BigInteger = Smithy ::Schema ::Shapes ::IntegerShape . new ( id : 'smithy.ruby.tests#BigInteger' , name : 'BigInteger' , traits : { "smithy.ruby.tests#shape" => { } } )
11+ Blob = Smithy ::Schema ::Shapes ::BlobShape . new ( id : 'smithy.ruby.tests#Blob' , name : 'Blob' , traits : { "smithy.ruby.tests#shape" => { } } )
12+ Boolean = Smithy ::Schema ::Shapes ::BooleanShape . new ( id : 'smithy.ruby.tests#Boolean' , name : 'Boolean' , traits : { "smithy.ruby.tests#shape" => { } } )
13+ Byte = Smithy ::Schema ::Shapes ::IntegerShape . new ( id : 'smithy.ruby.tests#Byte' , name : 'Byte' , traits : { "smithy.ruby.tests#shape" => { } } )
14+ Document = Smithy ::Schema ::Shapes ::DocumentShape . new ( id : 'smithy.ruby.tests#Document' , name : 'Document' , traits : { "smithy.ruby.tests#shape" => { } } )
15+ Double = Smithy ::Schema ::Shapes ::FloatShape . new ( id : 'smithy.ruby.tests#Double' , name : 'Double' , traits : { "smithy.ruby.tests#shape" => { } } )
16+ Enum = Smithy ::Schema ::Shapes ::EnumShape . new ( id : 'smithy.ruby.tests#Enum' , name : 'Enum' , traits : { "smithy.ruby.tests#shape" => { } } )
17+ Float = Smithy ::Schema ::Shapes ::FloatShape . new ( id : 'smithy.ruby.tests#Float' , name : 'Float' , traits : { "smithy.ruby.tests#shape" => { } } )
18+ IntEnum = Smithy ::Schema ::Shapes ::IntEnumShape . new ( id : 'smithy.ruby.tests#IntEnum' , name : 'IntEnum' , traits : { "smithy.ruby.tests#shape" => { } } )
19+ Integer = Smithy ::Schema ::Shapes ::IntegerShape . new ( id : 'smithy.ruby.tests#Integer' , name : 'Integer' , traits : { "smithy.ruby.tests#shape" => { } } )
20+ List = Smithy ::Schema ::Shapes ::ListShape . new ( id : 'smithy.ruby.tests#List' , name : 'List' , traits : { "smithy.ruby.tests#shape" => { } } )
21+ Long = Smithy ::Schema ::Shapes ::IntegerShape . new ( id : 'smithy.ruby.tests#Long' , name : 'Long' , traits : { "smithy.ruby.tests#shape" => { } } )
22+ Map = Smithy ::Schema ::Shapes ::MapShape . new ( id : 'smithy.ruby.tests#Map' , name : 'Map' , traits : { "smithy.ruby.tests#shape" => { } } )
23+ OperationInput = Smithy ::Schema ::Shapes ::StructureShape . new ( id : 'smithy.ruby.tests#OperationInput' , name : 'OperationInput' )
24+ OperationOutput = Smithy ::Schema ::Shapes ::StructureShape . new ( id : 'smithy.ruby.tests#OperationOutput' , name : 'OperationOutput' )
25+ Short = Smithy ::Schema ::Shapes ::IntegerShape . new ( id : 'smithy.ruby.tests#Short' , name : 'Short' , traits : { "smithy.ruby.tests#shape" => { } } )
26+ String = Smithy ::Schema ::Shapes ::StringShape . new ( id : 'smithy.ruby.tests#String' , name : 'String' , traits : { "smithy.ruby.tests#shape" => { } } )
27+ Structure = Smithy ::Schema ::Shapes ::StructureShape . new ( id : 'smithy.ruby.tests#Structure' , name : 'Structure' , traits : { "smithy.ruby.tests#shape" => { } } )
28+ Timestamp = Smithy ::Schema ::Shapes ::TimestampShape . new ( id : 'smithy.ruby.tests#Timestamp' , name : 'Timestamp' , traits : { "smithy.ruby.tests#shape" => { } } )
29+ Union = Smithy ::Schema ::Shapes ::UnionShape . new ( id : 'smithy.ruby.tests#Union' , name : 'Union' , traits : { "smithy.ruby.tests#shape" => { } } )
3030
3131 Enum . add_member ( :foo , Smithy ::Schema ::Shapes ::ShapeRef . new ( shape : Smithy ::Schema ::Shapes ::Prelude ::Unit , member_name : 'FOO' , traits : { "smithy.api#enumValue" => "bar" } ) )
3232 IntEnum . add_member ( :baz , Smithy ::Schema ::Shapes ::ShapeRef . new ( shape : Smithy ::Schema ::Shapes ::Prelude ::Unit , member_name : 'BAZ' , traits : { "smithy.api#enumValue" => 1 } ) )
0 commit comments