@alicloud/apig20240327 1.0.3 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +103 -0
- package/dist/client.js +120 -2
- package/dist/client.js.map +1 -1
- package/package.json +3 -3
- package/src/client.ts +167 -0
package/dist/client.d.ts
CHANGED
|
@@ -3710,6 +3710,27 @@ export declare class HttpApiApiInfoEnvironmentsDnsConfigs extends $tea.Model {
|
|
|
3710
3710
|
[key: string]: any;
|
|
3711
3711
|
});
|
|
3712
3712
|
}
|
|
3713
|
+
export declare class HttpApiApiInfoEnvironmentsGatewayInfo extends $tea.Model {
|
|
3714
|
+
/**
|
|
3715
|
+
* @example
|
|
3716
|
+
* gw-xxx
|
|
3717
|
+
*/
|
|
3718
|
+
gatewayId?: string;
|
|
3719
|
+
/**
|
|
3720
|
+
* @example
|
|
3721
|
+
* test
|
|
3722
|
+
*/
|
|
3723
|
+
name?: string;
|
|
3724
|
+
static names(): {
|
|
3725
|
+
[key: string]: string;
|
|
3726
|
+
};
|
|
3727
|
+
static types(): {
|
|
3728
|
+
[key: string]: any;
|
|
3729
|
+
};
|
|
3730
|
+
constructor(map?: {
|
|
3731
|
+
[key: string]: any;
|
|
3732
|
+
});
|
|
3733
|
+
}
|
|
3713
3734
|
export declare class HttpApiApiInfoEnvironmentsServiceConfigs extends $tea.Model {
|
|
3714
3735
|
/**
|
|
3715
3736
|
* @example
|
|
@@ -3771,6 +3792,11 @@ export declare class HttpApiApiInfoEnvironmentsVipConfigs extends $tea.Model {
|
|
|
3771
3792
|
});
|
|
3772
3793
|
}
|
|
3773
3794
|
export declare class HttpApiApiInfoEnvironments extends $tea.Model {
|
|
3795
|
+
/**
|
|
3796
|
+
* @example
|
|
3797
|
+
* test
|
|
3798
|
+
*/
|
|
3799
|
+
alias?: string;
|
|
3774
3800
|
/**
|
|
3775
3801
|
* @example
|
|
3776
3802
|
* SingleService
|
|
@@ -3782,12 +3808,24 @@ export declare class HttpApiApiInfoEnvironments extends $tea.Model {
|
|
|
3782
3808
|
*/
|
|
3783
3809
|
backendType?: string;
|
|
3784
3810
|
cloudProductConfig?: HttpApiApiInfoEnvironmentsCloudProductConfig;
|
|
3811
|
+
customDomains?: HttpApiDomainInfo[];
|
|
3785
3812
|
dnsConfigs?: HttpApiApiInfoEnvironmentsDnsConfigs[];
|
|
3786
3813
|
/**
|
|
3787
3814
|
* @example
|
|
3788
3815
|
* env-xxx
|
|
3789
3816
|
*/
|
|
3790
3817
|
environmentId?: string;
|
|
3818
|
+
gatewayInfo?: HttpApiApiInfoEnvironmentsGatewayInfo;
|
|
3819
|
+
/**
|
|
3820
|
+
* @example
|
|
3821
|
+
* test
|
|
3822
|
+
*/
|
|
3823
|
+
name?: string;
|
|
3824
|
+
/**
|
|
3825
|
+
* @example
|
|
3826
|
+
* Published
|
|
3827
|
+
*/
|
|
3828
|
+
publishStatus?: string;
|
|
3791
3829
|
serviceConfigs?: HttpApiApiInfoEnvironmentsServiceConfigs[];
|
|
3792
3830
|
vipConfigs?: HttpApiApiInfoEnvironmentsVipConfigs[];
|
|
3793
3831
|
static names(): {
|
|
@@ -5256,6 +5294,67 @@ export declare class ListGatewaysResponseBodyDataItemsLoadBalancers extends $tea
|
|
|
5256
5294
|
[key: string]: any;
|
|
5257
5295
|
});
|
|
5258
5296
|
}
|
|
5297
|
+
export declare class ListGatewaysResponseBodyDataItemsSecurityGroup extends $tea.Model {
|
|
5298
|
+
securityGroupId?: string;
|
|
5299
|
+
static names(): {
|
|
5300
|
+
[key: string]: string;
|
|
5301
|
+
};
|
|
5302
|
+
static types(): {
|
|
5303
|
+
[key: string]: any;
|
|
5304
|
+
};
|
|
5305
|
+
constructor(map?: {
|
|
5306
|
+
[key: string]: any;
|
|
5307
|
+
});
|
|
5308
|
+
}
|
|
5309
|
+
export declare class ListGatewaysResponseBodyDataItemsVSwitch extends $tea.Model {
|
|
5310
|
+
vSwitchId?: string;
|
|
5311
|
+
static names(): {
|
|
5312
|
+
[key: string]: string;
|
|
5313
|
+
};
|
|
5314
|
+
static types(): {
|
|
5315
|
+
[key: string]: any;
|
|
5316
|
+
};
|
|
5317
|
+
constructor(map?: {
|
|
5318
|
+
[key: string]: any;
|
|
5319
|
+
});
|
|
5320
|
+
}
|
|
5321
|
+
export declare class ListGatewaysResponseBodyDataItemsVpc extends $tea.Model {
|
|
5322
|
+
vpcId?: string;
|
|
5323
|
+
static names(): {
|
|
5324
|
+
[key: string]: string;
|
|
5325
|
+
};
|
|
5326
|
+
static types(): {
|
|
5327
|
+
[key: string]: any;
|
|
5328
|
+
};
|
|
5329
|
+
constructor(map?: {
|
|
5330
|
+
[key: string]: any;
|
|
5331
|
+
});
|
|
5332
|
+
}
|
|
5333
|
+
export declare class ListGatewaysResponseBodyDataItemsZonesVSwitch extends $tea.Model {
|
|
5334
|
+
vSwitchId?: string;
|
|
5335
|
+
static names(): {
|
|
5336
|
+
[key: string]: string;
|
|
5337
|
+
};
|
|
5338
|
+
static types(): {
|
|
5339
|
+
[key: string]: any;
|
|
5340
|
+
};
|
|
5341
|
+
constructor(map?: {
|
|
5342
|
+
[key: string]: any;
|
|
5343
|
+
});
|
|
5344
|
+
}
|
|
5345
|
+
export declare class ListGatewaysResponseBodyDataItemsZones extends $tea.Model {
|
|
5346
|
+
vSwitch?: ListGatewaysResponseBodyDataItemsZonesVSwitch;
|
|
5347
|
+
zoneId?: string;
|
|
5348
|
+
static names(): {
|
|
5349
|
+
[key: string]: string;
|
|
5350
|
+
};
|
|
5351
|
+
static types(): {
|
|
5352
|
+
[key: string]: any;
|
|
5353
|
+
};
|
|
5354
|
+
constructor(map?: {
|
|
5355
|
+
[key: string]: any;
|
|
5356
|
+
});
|
|
5357
|
+
}
|
|
5259
5358
|
export declare class ListGatewaysResponseBodyDataItems extends $tea.Model {
|
|
5260
5359
|
/**
|
|
5261
5360
|
* @example
|
|
@@ -5293,6 +5392,7 @@ export declare class ListGatewaysResponseBodyDataItems extends $tea.Model {
|
|
|
5293
5392
|
* 2
|
|
5294
5393
|
*/
|
|
5295
5394
|
replicas?: string;
|
|
5395
|
+
securityGroup?: ListGatewaysResponseBodyDataItemsSecurityGroup;
|
|
5296
5396
|
/**
|
|
5297
5397
|
* @example
|
|
5298
5398
|
* apigw.small.x1
|
|
@@ -5313,11 +5413,14 @@ export declare class ListGatewaysResponseBodyDataItems extends $tea.Model {
|
|
|
5313
5413
|
* 1719386834548
|
|
5314
5414
|
*/
|
|
5315
5415
|
updateTimestamp?: number;
|
|
5416
|
+
vSwitch?: ListGatewaysResponseBodyDataItemsVSwitch;
|
|
5316
5417
|
/**
|
|
5317
5418
|
* @example
|
|
5318
5419
|
* 2.0.2
|
|
5319
5420
|
*/
|
|
5320
5421
|
version?: string;
|
|
5422
|
+
vpc?: ListGatewaysResponseBodyDataItemsVpc;
|
|
5423
|
+
zones?: ListGatewaysResponseBodyDataItemsZones[];
|
|
5321
5424
|
static names(): {
|
|
5322
5425
|
[key: string]: string;
|
|
5323
5426
|
};
|
package/dist/client.js
CHANGED
|
@@ -29,8 +29,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
29
29
|
exports.CreateGatewayRouteResponse = exports.CreateGatewayRouteResponseBody = exports.CreateGatewayRouteRequest = exports.CreateEnvironmentResponse = exports.CreateEnvironmentResponseBody = exports.CreateEnvironmentRequest = exports.CreateDomainResponse = exports.CreateDomainResponseBody = exports.CreateDomainRequest = exports.AddGatewaySecurityGroupRuleResponse = exports.AddGatewaySecurityGroupRuleResponseBody = exports.AddGatewaySecurityGroupRuleRequest = exports.SubDomainInfo = exports.SslCertMetaInfo = exports.ServiceLinkedRole = exports.ServiceHealthCheck = exports.RouteRulesConflictInfo = exports.ResourceStatistic = exports.PolicyInfo = exports.PolicyDetailInfo = exports.PolicyClassInfo = exports.HttpRouteMatch = exports.HttpDubboTranscoder = exports.HttpApiVersionInfo = exports.HttpApiVersionConfig = exports.HttpApiResponseContract = exports.HttpApiRequestContract = exports.HttpApiPublishRevisionInfo = exports.HttpApiParameter = exports.HttpApiOperationInfo = exports.HttpApiOperation = exports.HttpApiMockContract = exports.HttpApiInfoByName = exports.HttpApiDomainInfo = exports.HttpApiBackendMatchConditions = exports.HttpApiBackendMatchCondition = exports.HttpApiApiInfo = exports.GatewayServiceSource = exports.GatewayService = exports.GatewayRouteDomainInfo = exports.GatewayRouteDomainConfig = exports.GatewayRouteBackendConfig = exports.GatewayRouteBackend = exports.GatewayLogConfig = exports.GatewayInfo = exports.EnvironmentInfo = exports.DomainInfo = exports.DashboardFilter = exports.CheckServiceLinkedRoleResult = exports.Attachment = void 0;
|
|
30
30
|
exports.ListDomainsResponse = exports.ListDomainsResponseBody = exports.ListDomainsRequest = exports.GetHttpApiOperationResponse = exports.GetHttpApiOperationResponseBody = exports.GetHttpApiResponse = exports.GetHttpApiResponseBody = exports.GetGatewayServiceResponse = exports.GetGatewayServiceResponseBody = exports.GetGatewayRouteResponse = exports.GetGatewayRouteResponseBody = exports.GetGatewayResponse = exports.GetGatewayResponseBody = exports.GetEnvironmentResponse = exports.GetEnvironmentResponseBody = exports.GetDomainResponse = exports.GetDomainResponseBody = exports.DeleteServiceSourceResponse = exports.DeleteServiceSourceResponseBody = exports.DeleteHttpApiOperationResponse = exports.DeleteHttpApiOperationResponseBody = exports.DeleteHttpApiResponse = exports.DeleteHttpApiResponseBody = exports.DeleteGatewayServiceVersionResponse = exports.DeleteGatewayServiceVersionResponseBody = exports.DeleteGatewayServiceResponse = exports.DeleteGatewayServiceResponseBody = exports.DeleteGatewayRouteResponse = exports.DeleteGatewayRouteResponseBody = exports.DeleteGatewayResponse = exports.DeleteGatewayResponseBody = exports.DeleteEnvironmentResponse = exports.DeleteEnvironmentResponseBody = exports.DeleteDomainResponse = exports.DeleteDomainResponseBody = exports.CreateServiceSourceResponse = exports.CreateServiceSourceResponseBody = exports.CreateServiceSourceRequest = exports.CreateHttpApiOperationResponse = exports.CreateHttpApiOperationResponseBody = exports.CreateHttpApiOperationRequest = exports.CreateHttpApiResponse = exports.CreateHttpApiResponseBody = exports.CreateHttpApiRequest = exports.CreateGatewayServiceVersionResponse = exports.CreateGatewayServiceVersionResponseBody = exports.CreateGatewayServiceVersionRequest = exports.CreateGatewayServiceResponse = exports.CreateGatewayServiceResponseBody = exports.CreateGatewayServiceRequest = void 0;
|
|
31
31
|
exports.UpdateServiceSourceRequest = exports.UpdateHttpApiOperationResponse = exports.UpdateHttpApiOperationResponseBody = exports.UpdateHttpApiOperationRequest = exports.UpdateHttpApiResponse = exports.UpdateHttpApiResponseBody = exports.UpdateHttpApiRequest = exports.UpdateGatewayServiceVersionResponse = exports.UpdateGatewayServiceVersionResponseBody = exports.UpdateGatewayServiceVersionRequest = exports.UpdateGatewayServiceResponse = exports.UpdateGatewayServiceResponseBody = exports.UpdateGatewayServiceRequest = exports.UpdateGatewayRouteResponse = exports.UpdateGatewayRouteResponseBody = exports.UpdateGatewayRouteRequest = exports.UpdateEnvironmentResponse = exports.UpdateEnvironmentResponseBody = exports.UpdateEnvironmentRequest = exports.UpdateDomainResponse = exports.UpdateDomainResponseBody = exports.UpdateDomainRequest = exports.PublishHttpApiResponse = exports.PublishHttpApiResponseBody = exports.PublishHttpApiRequest = exports.PublishGatewayRouteResponse = exports.PublishGatewayRouteResponseBody = exports.OfflineHttpApiResponse = exports.OfflineHttpApiResponseBody = exports.OfflineHttpApiRequest = exports.OfflineGatewayRouteResponse = exports.OfflineGatewayRouteResponseBody = exports.ListHttpApisResponse = exports.ListHttpApisResponseBody = exports.ListHttpApisRequest = exports.ListHttpApiOperationsResponse = exports.ListHttpApiOperationsResponseBody = exports.ListHttpApiOperationsRequest = exports.ListGatewaysResponse = exports.ListGatewaysResponseBody = exports.ListGatewaysRequest = exports.ListGatewayServicesResponse = exports.ListGatewayServicesResponseBody = exports.ListGatewayServicesRequest = exports.ListGatewayRoutesResponse = exports.ListGatewayRoutesResponseBody = exports.ListGatewayRoutesRequest = exports.ListEnvironmentsResponse = exports.ListEnvironmentsResponseBody = exports.ListEnvironmentsRequest = void 0;
|
|
32
|
-
exports.
|
|
33
|
-
exports.UpdateServiceSourceRequestK8sServiceSourceConfig = exports.UpdateServiceSourceRequestK8sServiceSourceConfigIngressConfig = exports.UpdateGatewayServiceVersionRequestLabels = exports.PublishHttpApiRequestEnvironment = exports.PublishHttpApiRequestEnvironmentVipConfigs = exports.PublishHttpApiRequestEnvironmentServiceConfigs = exports.PublishHttpApiRequestEnvironmentDnsConfigs = exports.PublishHttpApiRequestEnvironmentCloudProductConfig = exports.PublishHttpApiRequestEnvironmentCloudProductConfigMseNacosConfigs = exports.PublishHttpApiRequestEnvironmentCloudProductConfigFunctionConfigs = exports.PublishHttpApiRequestEnvironmentCloudProductConfigContainerServiceConfigs = exports.ListHttpApisResponseBodyData = exports.ListHttpApiOperationsResponseBodyData = exports.ListGatewaysResponseBodyData = exports.ListGatewaysResponseBodyDataItems = exports.ListGatewaysResponseBodyDataItemsLoadBalancers = exports.ListGatewaysResponseBodyDataItemsLoadBalancersPorts = exports.ListGatewayServicesResponseBodyData = exports.ListGatewayRoutesResponseBodyData = exports.ListGatewayRoutesResponseBodyDataItems = exports.ListEnvironmentsResponseBodyData = exports.ListDomainsResponseBodyData = exports.GetGatewayRouteResponseBodyData = exports.GetGatewayResponseBodyData = exports.GetGatewayResponseBodyDataZones = exports.GetGatewayResponseBodyDataZonesVSwitch = exports.GetGatewayResponseBodyDataVpc = exports.GetGatewayResponseBodyDataVSwitch = exports.GetGatewayResponseBodyDataSecurityGroup = exports.GetGatewayResponseBodyDataLoadBalancers = exports.GetGatewayResponseBodyDataLoadBalancersPorts = exports.GetGatewayResponseBodyDataEnvironments = exports.GetEnvironmentResponseBodyData = exports.GetDomainResponseBodyData = exports.CreateServiceSourceResponseBodyData = exports.CreateServiceSourceRequestNacosServiceSourceConfig = exports.CreateServiceSourceRequestK8sServiceSourceConfig = exports.CreateServiceSourceRequestK8sServiceSourceConfigIngressConfig = exports.CreateServiceSourceRequestK8sServiceSourceConfigAuthorizeSecurityGroupRules = exports.CreateHttpApiOperationResponseBodyData = void 0;
|
|
32
|
+
exports.CreateHttpApiResponseBodyData = exports.CreateGatewayServiceVersionRequestLabels = exports.CreateGatewayServiceResponseBodyData = exports.CreateGatewayServiceRequestGatewayServiceConfigs = exports.CreateGatewayRouteResponseBodyData = exports.CreateEnvironmentResponseBodyData = exports.CreateDomainResponseBodyData = exports.RouteRulesConflictInfoDomainInfo = exports.RouteRulesConflictInfoConflicts = exports.RouteRulesConflictInfoConflictsEnvironmentInfo = exports.RouteRulesConflictInfoConflictsDetails = exports.RouteRulesConflictInfoConflictsDetailsDetectedMatch = exports.RouteRulesConflictInfoConflictsDetailsDetectedMatchOperationInfo = exports.RouteRulesConflictInfoConflictsDetailsConflictingMatch = exports.RouteRulesConflictInfoConflictsDetailsConflictingMatchOperationInfo = exports.HttpRouteMatchQueryParams = exports.HttpRouteMatchPath = exports.HttpRouteMatchHeaders = exports.HttpDubboTranscoderMothedMapList = exports.HttpDubboTranscoderMothedMapListParamMapsList = exports.HttpApiResponseContractItems = exports.HttpApiRequestContractBody = exports.HttpApiPublishRevisionInfoVipConfigs = exports.HttpApiPublishRevisionInfoServiceConfigs = exports.HttpApiPublishRevisionInfoEnvironmentInfo = exports.HttpApiPublishRevisionInfoEnvironmentInfoGatewayInfo = exports.HttpApiPublishRevisionInfoDnsConfigs = exports.HttpApiPublishRevisionInfoCloudProductConfig = exports.HttpApiPublishRevisionInfoCloudProductConfigMseNacosConfigs = exports.HttpApiPublishRevisionInfoCloudProductConfigFunctionConfigs = exports.HttpApiPublishRevisionInfoCloudProductConfigContainerServiceConfigs = exports.HttpApiApiInfoEnvironments = exports.HttpApiApiInfoEnvironmentsVipConfigs = exports.HttpApiApiInfoEnvironmentsServiceConfigs = exports.HttpApiApiInfoEnvironmentsGatewayInfo = exports.HttpApiApiInfoEnvironmentsDnsConfigs = exports.HttpApiApiInfoEnvironmentsCloudProductConfig = exports.HttpApiApiInfoEnvironmentsCloudProductConfigMseNacosConfigs = exports.HttpApiApiInfoEnvironmentsCloudProductConfigFunctionConfigs = exports.HttpApiApiInfoEnvironmentsCloudProductConfigContainerServiceConfigs = exports.GatewayServiceSourceNacosServiceSourceInfo = exports.GatewayServiceSourceK8sServiceSourceInfo = exports.GatewayServiceSourceK8sServiceSourceInfoIngressConfig = exports.GatewayServicePorts = exports.GatewayRouteDomainInfoDomains = exports.GatewayRouteBackendConfigServices = exports.GatewayRouteBackendServices = exports.GatewayLogConfigSlsConfig = exports.UpdateServiceSourceResponse = exports.UpdateServiceSourceResponseBody = void 0;
|
|
33
|
+
exports.UpdateServiceSourceRequestK8sServiceSourceConfig = exports.UpdateServiceSourceRequestK8sServiceSourceConfigIngressConfig = exports.UpdateGatewayServiceVersionRequestLabels = exports.PublishHttpApiRequestEnvironment = exports.PublishHttpApiRequestEnvironmentVipConfigs = exports.PublishHttpApiRequestEnvironmentServiceConfigs = exports.PublishHttpApiRequestEnvironmentDnsConfigs = exports.PublishHttpApiRequestEnvironmentCloudProductConfig = exports.PublishHttpApiRequestEnvironmentCloudProductConfigMseNacosConfigs = exports.PublishHttpApiRequestEnvironmentCloudProductConfigFunctionConfigs = exports.PublishHttpApiRequestEnvironmentCloudProductConfigContainerServiceConfigs = exports.ListHttpApisResponseBodyData = exports.ListHttpApiOperationsResponseBodyData = exports.ListGatewaysResponseBodyData = exports.ListGatewaysResponseBodyDataItems = exports.ListGatewaysResponseBodyDataItemsZones = exports.ListGatewaysResponseBodyDataItemsZonesVSwitch = exports.ListGatewaysResponseBodyDataItemsVpc = exports.ListGatewaysResponseBodyDataItemsVSwitch = exports.ListGatewaysResponseBodyDataItemsSecurityGroup = exports.ListGatewaysResponseBodyDataItemsLoadBalancers = exports.ListGatewaysResponseBodyDataItemsLoadBalancersPorts = exports.ListGatewayServicesResponseBodyData = exports.ListGatewayRoutesResponseBodyData = exports.ListGatewayRoutesResponseBodyDataItems = exports.ListEnvironmentsResponseBodyData = exports.ListDomainsResponseBodyData = exports.GetGatewayRouteResponseBodyData = exports.GetGatewayResponseBodyData = exports.GetGatewayResponseBodyDataZones = exports.GetGatewayResponseBodyDataZonesVSwitch = exports.GetGatewayResponseBodyDataVpc = exports.GetGatewayResponseBodyDataVSwitch = exports.GetGatewayResponseBodyDataSecurityGroup = exports.GetGatewayResponseBodyDataLoadBalancers = exports.GetGatewayResponseBodyDataLoadBalancersPorts = exports.GetGatewayResponseBodyDataEnvironments = exports.GetEnvironmentResponseBodyData = exports.GetDomainResponseBodyData = exports.CreateServiceSourceResponseBodyData = exports.CreateServiceSourceRequestNacosServiceSourceConfig = exports.CreateServiceSourceRequestK8sServiceSourceConfig = exports.CreateServiceSourceRequestK8sServiceSourceConfigIngressConfig = exports.CreateServiceSourceRequestK8sServiceSourceConfigAuthorizeSecurityGroupRules = exports.CreateHttpApiOperationResponseBodyData = exports.CreateHttpApiOperationResponseBodyDataOperations = void 0;
|
|
34
34
|
// This file is auto-generated, don't edit it
|
|
35
35
|
/**
|
|
36
36
|
*/
|
|
@@ -3631,6 +3631,24 @@ class HttpApiApiInfoEnvironmentsDnsConfigs extends $tea.Model {
|
|
|
3631
3631
|
}
|
|
3632
3632
|
}
|
|
3633
3633
|
exports.HttpApiApiInfoEnvironmentsDnsConfigs = HttpApiApiInfoEnvironmentsDnsConfigs;
|
|
3634
|
+
class HttpApiApiInfoEnvironmentsGatewayInfo extends $tea.Model {
|
|
3635
|
+
static names() {
|
|
3636
|
+
return {
|
|
3637
|
+
gatewayId: 'gatewayId',
|
|
3638
|
+
name: 'name',
|
|
3639
|
+
};
|
|
3640
|
+
}
|
|
3641
|
+
static types() {
|
|
3642
|
+
return {
|
|
3643
|
+
gatewayId: 'string',
|
|
3644
|
+
name: 'string',
|
|
3645
|
+
};
|
|
3646
|
+
}
|
|
3647
|
+
constructor(map) {
|
|
3648
|
+
super(map);
|
|
3649
|
+
}
|
|
3650
|
+
}
|
|
3651
|
+
exports.HttpApiApiInfoEnvironmentsGatewayInfo = HttpApiApiInfoEnvironmentsGatewayInfo;
|
|
3634
3652
|
class HttpApiApiInfoEnvironmentsServiceConfigs extends $tea.Model {
|
|
3635
3653
|
static names() {
|
|
3636
3654
|
return {
|
|
@@ -3682,22 +3700,32 @@ exports.HttpApiApiInfoEnvironmentsVipConfigs = HttpApiApiInfoEnvironmentsVipConf
|
|
|
3682
3700
|
class HttpApiApiInfoEnvironments extends $tea.Model {
|
|
3683
3701
|
static names() {
|
|
3684
3702
|
return {
|
|
3703
|
+
alias: 'alias',
|
|
3685
3704
|
backendScene: 'backendScene',
|
|
3686
3705
|
backendType: 'backendType',
|
|
3687
3706
|
cloudProductConfig: 'cloudProductConfig',
|
|
3707
|
+
customDomains: 'customDomains',
|
|
3688
3708
|
dnsConfigs: 'dnsConfigs',
|
|
3689
3709
|
environmentId: 'environmentId',
|
|
3710
|
+
gatewayInfo: 'gatewayInfo',
|
|
3711
|
+
name: 'name',
|
|
3712
|
+
publishStatus: 'publishStatus',
|
|
3690
3713
|
serviceConfigs: 'serviceConfigs',
|
|
3691
3714
|
vipConfigs: 'vipConfigs',
|
|
3692
3715
|
};
|
|
3693
3716
|
}
|
|
3694
3717
|
static types() {
|
|
3695
3718
|
return {
|
|
3719
|
+
alias: 'string',
|
|
3696
3720
|
backendScene: 'string',
|
|
3697
3721
|
backendType: 'string',
|
|
3698
3722
|
cloudProductConfig: HttpApiApiInfoEnvironmentsCloudProductConfig,
|
|
3723
|
+
customDomains: { 'type': 'array', 'itemType': HttpApiDomainInfo },
|
|
3699
3724
|
dnsConfigs: { 'type': 'array', 'itemType': HttpApiApiInfoEnvironmentsDnsConfigs },
|
|
3700
3725
|
environmentId: 'string',
|
|
3726
|
+
gatewayInfo: HttpApiApiInfoEnvironmentsGatewayInfo,
|
|
3727
|
+
name: 'string',
|
|
3728
|
+
publishStatus: 'string',
|
|
3701
3729
|
serviceConfigs: { 'type': 'array', 'itemType': HttpApiApiInfoEnvironmentsServiceConfigs },
|
|
3702
3730
|
vipConfigs: { 'type': 'array', 'itemType': HttpApiApiInfoEnvironmentsVipConfigs },
|
|
3703
3731
|
};
|
|
@@ -4963,6 +4991,88 @@ class ListGatewaysResponseBodyDataItemsLoadBalancers extends $tea.Model {
|
|
|
4963
4991
|
}
|
|
4964
4992
|
}
|
|
4965
4993
|
exports.ListGatewaysResponseBodyDataItemsLoadBalancers = ListGatewaysResponseBodyDataItemsLoadBalancers;
|
|
4994
|
+
class ListGatewaysResponseBodyDataItemsSecurityGroup extends $tea.Model {
|
|
4995
|
+
static names() {
|
|
4996
|
+
return {
|
|
4997
|
+
securityGroupId: 'securityGroupId',
|
|
4998
|
+
};
|
|
4999
|
+
}
|
|
5000
|
+
static types() {
|
|
5001
|
+
return {
|
|
5002
|
+
securityGroupId: 'string',
|
|
5003
|
+
};
|
|
5004
|
+
}
|
|
5005
|
+
constructor(map) {
|
|
5006
|
+
super(map);
|
|
5007
|
+
}
|
|
5008
|
+
}
|
|
5009
|
+
exports.ListGatewaysResponseBodyDataItemsSecurityGroup = ListGatewaysResponseBodyDataItemsSecurityGroup;
|
|
5010
|
+
class ListGatewaysResponseBodyDataItemsVSwitch extends $tea.Model {
|
|
5011
|
+
static names() {
|
|
5012
|
+
return {
|
|
5013
|
+
vSwitchId: 'vSwitchId',
|
|
5014
|
+
};
|
|
5015
|
+
}
|
|
5016
|
+
static types() {
|
|
5017
|
+
return {
|
|
5018
|
+
vSwitchId: 'string',
|
|
5019
|
+
};
|
|
5020
|
+
}
|
|
5021
|
+
constructor(map) {
|
|
5022
|
+
super(map);
|
|
5023
|
+
}
|
|
5024
|
+
}
|
|
5025
|
+
exports.ListGatewaysResponseBodyDataItemsVSwitch = ListGatewaysResponseBodyDataItemsVSwitch;
|
|
5026
|
+
class ListGatewaysResponseBodyDataItemsVpc extends $tea.Model {
|
|
5027
|
+
static names() {
|
|
5028
|
+
return {
|
|
5029
|
+
vpcId: 'vpcId',
|
|
5030
|
+
};
|
|
5031
|
+
}
|
|
5032
|
+
static types() {
|
|
5033
|
+
return {
|
|
5034
|
+
vpcId: 'string',
|
|
5035
|
+
};
|
|
5036
|
+
}
|
|
5037
|
+
constructor(map) {
|
|
5038
|
+
super(map);
|
|
5039
|
+
}
|
|
5040
|
+
}
|
|
5041
|
+
exports.ListGatewaysResponseBodyDataItemsVpc = ListGatewaysResponseBodyDataItemsVpc;
|
|
5042
|
+
class ListGatewaysResponseBodyDataItemsZonesVSwitch extends $tea.Model {
|
|
5043
|
+
static names() {
|
|
5044
|
+
return {
|
|
5045
|
+
vSwitchId: 'vSwitchId',
|
|
5046
|
+
};
|
|
5047
|
+
}
|
|
5048
|
+
static types() {
|
|
5049
|
+
return {
|
|
5050
|
+
vSwitchId: 'string',
|
|
5051
|
+
};
|
|
5052
|
+
}
|
|
5053
|
+
constructor(map) {
|
|
5054
|
+
super(map);
|
|
5055
|
+
}
|
|
5056
|
+
}
|
|
5057
|
+
exports.ListGatewaysResponseBodyDataItemsZonesVSwitch = ListGatewaysResponseBodyDataItemsZonesVSwitch;
|
|
5058
|
+
class ListGatewaysResponseBodyDataItemsZones extends $tea.Model {
|
|
5059
|
+
static names() {
|
|
5060
|
+
return {
|
|
5061
|
+
vSwitch: 'vSwitch',
|
|
5062
|
+
zoneId: 'zoneId',
|
|
5063
|
+
};
|
|
5064
|
+
}
|
|
5065
|
+
static types() {
|
|
5066
|
+
return {
|
|
5067
|
+
vSwitch: ListGatewaysResponseBodyDataItemsZonesVSwitch,
|
|
5068
|
+
zoneId: 'string',
|
|
5069
|
+
};
|
|
5070
|
+
}
|
|
5071
|
+
constructor(map) {
|
|
5072
|
+
super(map);
|
|
5073
|
+
}
|
|
5074
|
+
}
|
|
5075
|
+
exports.ListGatewaysResponseBodyDataItemsZones = ListGatewaysResponseBodyDataItemsZones;
|
|
4966
5076
|
class ListGatewaysResponseBodyDataItems extends $tea.Model {
|
|
4967
5077
|
static names() {
|
|
4968
5078
|
return {
|
|
@@ -4974,11 +5084,15 @@ class ListGatewaysResponseBodyDataItems extends $tea.Model {
|
|
|
4974
5084
|
loadBalancers: 'loadBalancers',
|
|
4975
5085
|
name: 'name',
|
|
4976
5086
|
replicas: 'replicas',
|
|
5087
|
+
securityGroup: 'securityGroup',
|
|
4977
5088
|
spec: 'spec',
|
|
4978
5089
|
status: 'status',
|
|
4979
5090
|
targetVersion: 'targetVersion',
|
|
4980
5091
|
updateTimestamp: 'updateTimestamp',
|
|
5092
|
+
vSwitch: 'vSwitch',
|
|
4981
5093
|
version: 'version',
|
|
5094
|
+
vpc: 'vpc',
|
|
5095
|
+
zones: 'zones',
|
|
4982
5096
|
};
|
|
4983
5097
|
}
|
|
4984
5098
|
static types() {
|
|
@@ -4991,11 +5105,15 @@ class ListGatewaysResponseBodyDataItems extends $tea.Model {
|
|
|
4991
5105
|
loadBalancers: { 'type': 'array', 'itemType': ListGatewaysResponseBodyDataItemsLoadBalancers },
|
|
4992
5106
|
name: 'string',
|
|
4993
5107
|
replicas: 'string',
|
|
5108
|
+
securityGroup: ListGatewaysResponseBodyDataItemsSecurityGroup,
|
|
4994
5109
|
spec: 'string',
|
|
4995
5110
|
status: 'string',
|
|
4996
5111
|
targetVersion: 'string',
|
|
4997
5112
|
updateTimestamp: 'number',
|
|
5113
|
+
vSwitch: ListGatewaysResponseBodyDataItemsVSwitch,
|
|
4998
5114
|
version: 'string',
|
|
5115
|
+
vpc: ListGatewaysResponseBodyDataItemsVpc,
|
|
5116
|
+
zones: { 'type': 'array', 'itemType': ListGatewaysResponseBodyDataItemsZones },
|
|
4999
5117
|
};
|
|
5000
5118
|
}
|
|
5001
5119
|
constructor(map) {
|