File tree Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ export class YandexCloudInfo implements ServerlessPlugin {
101
101
102
102
if ( existingApiGateway ?. id ) {
103
103
log . notice (
104
- `API Gateway "${ existingApiGateway . name } " deployed with url "https://${ existingApiGateway . id } .apigw.yandexcloud.net /"` ,
104
+ `API Gateway "${ existingApiGateway . name } " deployed with url "https://${ existingApiGateway . domain } /"` ,
105
105
) ;
106
106
} else {
107
107
log . warning ( `API Gateway "${ existingApiGateway . name } " not deployed` ) ;
Original file line number Diff line number Diff line change @@ -535,6 +535,7 @@ export class YandexCloudProvider implements ServerlessPlugin {
535
535
return {
536
536
name : apiGateway . name ,
537
537
id : apiGateway . id ,
538
+ domain : apiGateway . domain ,
538
539
domains : apiGateway . attachedDomains ,
539
540
openapiSpec : specResponse . openapiSpec ,
540
541
} ;
Original file line number Diff line number Diff line change @@ -325,6 +325,7 @@ export interface AttachedDomain {
325
325
326
326
export interface ApiGatewayInfo {
327
327
id ?: string ;
328
+ domain ?: string ;
328
329
name : string ;
329
330
domains ?: AttachedDomain [ ] ;
330
331
openapiSpec ?: string ;
You can’t perform that action at this time.
0 commit comments