File tree Expand file tree Collapse file tree 2 files changed +16
-2
lines changed
client-api-gateway/models Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -2040,7 +2040,14 @@ export namespace Deployment {
2040
2040
acc : any ,
2041
2041
[ key , value ] : [ string , { [ key : string ] : MethodSnapshot } ]
2042
2042
) => {
2043
- acc [ key ] = value ;
2043
+ ( acc [ key ] = Object . entries ( value ) . reduce (
2044
+ ( acc : any , [ key , value ] : [ string , MethodSnapshot ] ) => {
2045
+ acc [ key ] = MethodSnapshot . filterSensitiveLog ( value ) ;
2046
+ return acc ;
2047
+ } ,
2048
+ { }
2049
+ ) ) ,
2050
+ { } ;
2044
2051
return acc ;
2045
2052
} ,
2046
2053
{ }
Original file line number Diff line number Diff line change @@ -10260,7 +10260,14 @@ export namespace SendUsersMessageResponse {
10260
10260
acc : any ,
10261
10261
[ key , value ] : [ string , { [ key : string ] : EndpointMessageResult } ]
10262
10262
) => {
10263
- acc [ key ] = value ;
10263
+ ( acc [ key ] = Object . entries ( value ) . reduce (
10264
+ ( acc : any , [ key , value ] : [ string , EndpointMessageResult ] ) => {
10265
+ acc [ key ] = EndpointMessageResult . filterSensitiveLog ( value ) ;
10266
+ return acc ;
10267
+ } ,
10268
+ { }
10269
+ ) ) ,
10270
+ { } ;
10264
10271
return acc ;
10265
10272
} ,
10266
10273
{ }
You can’t perform that action at this time.
0 commit comments