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 {
73
73
output . apiId = ApiId ;
74
74
75
75
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 || '';
82
82
83
83
if ( endpoint ?. isBase64Encoded && endpoint . isBase64Trigger ) {
84
84
apiInputs . isBase64Trigger = endpoint . isBase64Trigger ;
@@ -201,7 +201,7 @@ export default class ApiEntity {
201
201
202
202
output . apiId = endpoint . apiId ;
203
203
output . created = ! ! created ;
204
- output . internalDomain = apiDetail . InternalDomain || '' ;
204
+ // output.internalDomain = apiDetail.InternalDomain || '';
205
205
console . log ( `Api ${ output . apiId } updated` ) ;
206
206
207
207
output . apiName = apiInputs . apiName ;
Original file line number Diff line number Diff line change @@ -166,7 +166,8 @@ export default class Apigw {
166
166
console . log ( `[TAG] ${ e . message } ` ) ;
167
167
}
168
168
169
- return this . formatApigwOutputs ( outputs ) ;
169
+ // return this.formatApigwOutputs(outputs);
170
+ return outputs ;
170
171
}
171
172
172
173
async remove ( inputs : ApigwRemoveInputs ) {
You can’t perform that action at this time.
0 commit comments