@@ -144,6 +144,16 @@ import {
144144 QueryIdempotencyTokenAutoFillCommandInput ,
145145 QueryIdempotencyTokenAutoFillCommandOutput ,
146146} from "./commands/QueryIdempotencyTokenAutoFillCommand" ;
147+ import {
148+ QueryParamsAsStringListMapCommand ,
149+ QueryParamsAsStringListMapCommandInput ,
150+ QueryParamsAsStringListMapCommandOutput ,
151+ } from "./commands/QueryParamsAsStringListMapCommand" ;
152+ import {
153+ QueryPrecedenceCommand ,
154+ QueryPrecedenceCommandInput ,
155+ QueryPrecedenceCommandOutput ,
156+ } from "./commands/QueryPrecedenceCommand" ;
147157import {
148158 RecursiveShapesCommand ,
149159 RecursiveShapesCommandInput ,
@@ -1238,6 +1248,64 @@ export class RestJsonProtocol extends RestJsonProtocolClient {
12381248 }
12391249 }
12401250
1251+ public queryParamsAsStringListMap (
1252+ args : QueryParamsAsStringListMapCommandInput ,
1253+ options ?: __HttpHandlerOptions
1254+ ) : Promise < QueryParamsAsStringListMapCommandOutput > ;
1255+ public queryParamsAsStringListMap (
1256+ args : QueryParamsAsStringListMapCommandInput ,
1257+ cb : ( err : any , data ?: QueryParamsAsStringListMapCommandOutput ) => void
1258+ ) : void ;
1259+ public queryParamsAsStringListMap (
1260+ args : QueryParamsAsStringListMapCommandInput ,
1261+ options : __HttpHandlerOptions ,
1262+ cb : ( err : any , data ?: QueryParamsAsStringListMapCommandOutput ) => void
1263+ ) : void ;
1264+ public queryParamsAsStringListMap (
1265+ args : QueryParamsAsStringListMapCommandInput ,
1266+ optionsOrCb ?: __HttpHandlerOptions | ( ( err : any , data ?: QueryParamsAsStringListMapCommandOutput ) => void ) ,
1267+ cb ?: ( err : any , data ?: QueryParamsAsStringListMapCommandOutput ) => void
1268+ ) : Promise < QueryParamsAsStringListMapCommandOutput > | void {
1269+ const command = new QueryParamsAsStringListMapCommand ( args ) ;
1270+ if ( typeof optionsOrCb === "function" ) {
1271+ this . send ( command , optionsOrCb ) ;
1272+ } else if ( typeof cb === "function" ) {
1273+ if ( typeof optionsOrCb !== "object" ) throw new Error ( `Expect http options but get ${ typeof optionsOrCb } ` ) ;
1274+ this . send ( command , optionsOrCb || { } , cb ) ;
1275+ } else {
1276+ return this . send ( command , optionsOrCb ) ;
1277+ }
1278+ }
1279+
1280+ public queryPrecedence (
1281+ args : QueryPrecedenceCommandInput ,
1282+ options ?: __HttpHandlerOptions
1283+ ) : Promise < QueryPrecedenceCommandOutput > ;
1284+ public queryPrecedence (
1285+ args : QueryPrecedenceCommandInput ,
1286+ cb : ( err : any , data ?: QueryPrecedenceCommandOutput ) => void
1287+ ) : void ;
1288+ public queryPrecedence (
1289+ args : QueryPrecedenceCommandInput ,
1290+ options : __HttpHandlerOptions ,
1291+ cb : ( err : any , data ?: QueryPrecedenceCommandOutput ) => void
1292+ ) : void ;
1293+ public queryPrecedence (
1294+ args : QueryPrecedenceCommandInput ,
1295+ optionsOrCb ?: __HttpHandlerOptions | ( ( err : any , data ?: QueryPrecedenceCommandOutput ) => void ) ,
1296+ cb ?: ( err : any , data ?: QueryPrecedenceCommandOutput ) => void
1297+ ) : Promise < QueryPrecedenceCommandOutput > | void {
1298+ const command = new QueryPrecedenceCommand ( args ) ;
1299+ if ( typeof optionsOrCb === "function" ) {
1300+ this . send ( command , optionsOrCb ) ;
1301+ } else if ( typeof cb === "function" ) {
1302+ if ( typeof optionsOrCb !== "object" ) throw new Error ( `Expect http options but get ${ typeof optionsOrCb } ` ) ;
1303+ this . send ( command , optionsOrCb || { } , cb ) ;
1304+ } else {
1305+ return this . send ( command , optionsOrCb ) ;
1306+ }
1307+ }
1308+
12411309 /**
12421310 * Recursive shapes
12431311 */
0 commit comments