File tree Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -73,12 +73,12 @@ export default class ApiEntity {
7373 output . apiId = ApiId ;
7474
7575 console . log ( `API ${ ApiId } created` ) ;
76- const apiDetail : ApiDetail = await this . request ( {
77- Action : 'DescribeApi' ,
78- serviceId : serviceId ,
79- apiId : output . apiId ,
80- } ) ;
81- output . internalDomain = apiDetail . InternalDomain || '' ;
76+ // const apiDetail: ApiDetail = await this.request({
77+ // Action: 'DescribeApi',
78+ // serviceId: serviceId,
79+ // apiId: output.apiId,
80+ // });
81+ // output.internalDomain = apiDetail.InternalDomain || '';
8282
8383 if ( endpoint ?. isBase64Encoded && endpoint . isBase64Trigger ) {
8484 apiInputs . isBase64Trigger = endpoint . isBase64Trigger ;
@@ -201,7 +201,7 @@ export default class ApiEntity {
201201
202202 output . apiId = endpoint . apiId ;
203203 output . created = ! ! created ;
204- output . internalDomain = apiDetail . InternalDomain || '' ;
204+ // output.internalDomain = apiDetail.InternalDomain || '';
205205 console . log ( `Api ${ output . apiId } updated` ) ;
206206
207207 output . apiName = apiInputs . apiName ;
Original file line number Diff line number Diff line change @@ -166,7 +166,8 @@ export default class Apigw {
166166 console . log ( `[TAG] ${ e . message } ` ) ;
167167 }
168168
169- return this . formatApigwOutputs ( outputs ) ;
169+ // return this.formatApigwOutputs(outputs);
170+ return outputs ;
170171 }
171172
172173 async remove ( inputs : ApigwRemoveInputs ) {
You can’t perform that action at this time.
0 commit comments