@alicloud/apig20240327 1.0.1 → 1.0.2
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 +122 -0
- package/dist/client.js +180 -5
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +217 -0
package/dist/client.d.ts
CHANGED
|
@@ -752,6 +752,19 @@ export declare class ResourceStatistic extends $tea.Model {
|
|
|
752
752
|
[key: string]: any;
|
|
753
753
|
});
|
|
754
754
|
}
|
|
755
|
+
export declare class RouteRulesConflictInfo extends $tea.Model {
|
|
756
|
+
conflicts?: RouteRulesConflictInfoConflicts[];
|
|
757
|
+
domainInfo?: RouteRulesConflictInfoDomainInfo;
|
|
758
|
+
static names(): {
|
|
759
|
+
[key: string]: string;
|
|
760
|
+
};
|
|
761
|
+
static types(): {
|
|
762
|
+
[key: string]: any;
|
|
763
|
+
};
|
|
764
|
+
constructor(map?: {
|
|
765
|
+
[key: string]: any;
|
|
766
|
+
});
|
|
767
|
+
}
|
|
755
768
|
export declare class ServiceHealthCheck extends $tea.Model {
|
|
756
769
|
/**
|
|
757
770
|
* @example
|
|
@@ -2123,6 +2136,7 @@ export declare class GetHttpApiOperationResponse extends $tea.Model {
|
|
|
2123
2136
|
});
|
|
2124
2137
|
}
|
|
2125
2138
|
export declare class ListDomainsRequest extends $tea.Model {
|
|
2139
|
+
gatewayId?: string;
|
|
2126
2140
|
/**
|
|
2127
2141
|
* @example
|
|
2128
2142
|
* test
|
|
@@ -4213,6 +4227,114 @@ export declare class HttpRouteMatchQueryParams extends $tea.Model {
|
|
|
4213
4227
|
[key: string]: any;
|
|
4214
4228
|
});
|
|
4215
4229
|
}
|
|
4230
|
+
export declare class RouteRulesConflictInfoConflictsDetailsConflictingMatchOperationInfo extends $tea.Model {
|
|
4231
|
+
name?: string;
|
|
4232
|
+
operationId?: string;
|
|
4233
|
+
static names(): {
|
|
4234
|
+
[key: string]: string;
|
|
4235
|
+
};
|
|
4236
|
+
static types(): {
|
|
4237
|
+
[key: string]: any;
|
|
4238
|
+
};
|
|
4239
|
+
constructor(map?: {
|
|
4240
|
+
[key: string]: any;
|
|
4241
|
+
});
|
|
4242
|
+
}
|
|
4243
|
+
export declare class RouteRulesConflictInfoConflictsDetailsConflictingMatch extends $tea.Model {
|
|
4244
|
+
match?: HttpRouteMatch;
|
|
4245
|
+
operationInfo?: RouteRulesConflictInfoConflictsDetailsConflictingMatchOperationInfo;
|
|
4246
|
+
static names(): {
|
|
4247
|
+
[key: string]: string;
|
|
4248
|
+
};
|
|
4249
|
+
static types(): {
|
|
4250
|
+
[key: string]: any;
|
|
4251
|
+
};
|
|
4252
|
+
constructor(map?: {
|
|
4253
|
+
[key: string]: any;
|
|
4254
|
+
});
|
|
4255
|
+
}
|
|
4256
|
+
export declare class RouteRulesConflictInfoConflictsDetailsDetectedMatchOperationInfo extends $tea.Model {
|
|
4257
|
+
name?: string;
|
|
4258
|
+
operationId?: string;
|
|
4259
|
+
static names(): {
|
|
4260
|
+
[key: string]: string;
|
|
4261
|
+
};
|
|
4262
|
+
static types(): {
|
|
4263
|
+
[key: string]: any;
|
|
4264
|
+
};
|
|
4265
|
+
constructor(map?: {
|
|
4266
|
+
[key: string]: any;
|
|
4267
|
+
});
|
|
4268
|
+
}
|
|
4269
|
+
export declare class RouteRulesConflictInfoConflictsDetailsDetectedMatch extends $tea.Model {
|
|
4270
|
+
match?: HttpRouteMatch;
|
|
4271
|
+
operationInfo?: RouteRulesConflictInfoConflictsDetailsDetectedMatchOperationInfo;
|
|
4272
|
+
static names(): {
|
|
4273
|
+
[key: string]: string;
|
|
4274
|
+
};
|
|
4275
|
+
static types(): {
|
|
4276
|
+
[key: string]: any;
|
|
4277
|
+
};
|
|
4278
|
+
constructor(map?: {
|
|
4279
|
+
[key: string]: any;
|
|
4280
|
+
});
|
|
4281
|
+
}
|
|
4282
|
+
export declare class RouteRulesConflictInfoConflictsDetails extends $tea.Model {
|
|
4283
|
+
conflictingMatch?: RouteRulesConflictInfoConflictsDetailsConflictingMatch;
|
|
4284
|
+
detectedMatch?: RouteRulesConflictInfoConflictsDetailsDetectedMatch;
|
|
4285
|
+
level?: string;
|
|
4286
|
+
static names(): {
|
|
4287
|
+
[key: string]: string;
|
|
4288
|
+
};
|
|
4289
|
+
static types(): {
|
|
4290
|
+
[key: string]: any;
|
|
4291
|
+
};
|
|
4292
|
+
constructor(map?: {
|
|
4293
|
+
[key: string]: any;
|
|
4294
|
+
});
|
|
4295
|
+
}
|
|
4296
|
+
export declare class RouteRulesConflictInfoConflictsEnvironmentInfo extends $tea.Model {
|
|
4297
|
+
environmentId?: string;
|
|
4298
|
+
name?: string;
|
|
4299
|
+
static names(): {
|
|
4300
|
+
[key: string]: string;
|
|
4301
|
+
};
|
|
4302
|
+
static types(): {
|
|
4303
|
+
[key: string]: any;
|
|
4304
|
+
};
|
|
4305
|
+
constructor(map?: {
|
|
4306
|
+
[key: string]: any;
|
|
4307
|
+
});
|
|
4308
|
+
}
|
|
4309
|
+
export declare class RouteRulesConflictInfoConflicts extends $tea.Model {
|
|
4310
|
+
details?: RouteRulesConflictInfoConflictsDetails[];
|
|
4311
|
+
environmentInfo?: RouteRulesConflictInfoConflictsEnvironmentInfo;
|
|
4312
|
+
resourceId?: string;
|
|
4313
|
+
resourceName?: string;
|
|
4314
|
+
resourceType?: string;
|
|
4315
|
+
static names(): {
|
|
4316
|
+
[key: string]: string;
|
|
4317
|
+
};
|
|
4318
|
+
static types(): {
|
|
4319
|
+
[key: string]: any;
|
|
4320
|
+
};
|
|
4321
|
+
constructor(map?: {
|
|
4322
|
+
[key: string]: any;
|
|
4323
|
+
});
|
|
4324
|
+
}
|
|
4325
|
+
export declare class RouteRulesConflictInfoDomainInfo extends $tea.Model {
|
|
4326
|
+
domainId?: string;
|
|
4327
|
+
name?: string;
|
|
4328
|
+
static names(): {
|
|
4329
|
+
[key: string]: string;
|
|
4330
|
+
};
|
|
4331
|
+
static types(): {
|
|
4332
|
+
[key: string]: any;
|
|
4333
|
+
};
|
|
4334
|
+
constructor(map?: {
|
|
4335
|
+
[key: string]: any;
|
|
4336
|
+
});
|
|
4337
|
+
}
|
|
4216
4338
|
export declare class CreateDomainResponseBodyData extends $tea.Model {
|
|
4217
4339
|
/**
|
|
4218
4340
|
* @example
|
package/dist/client.js
CHANGED
|
@@ -26,11 +26,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
26
26
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
27
27
|
};
|
|
28
28
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
-
exports.
|
|
30
|
-
exports.
|
|
31
|
-
exports.
|
|
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 = void 0;
|
|
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
|
+
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
|
+
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.CreateHttpApiOperationResponseBodyDataOperations = 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.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.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;
|
|
34
34
|
// This file is auto-generated, don't edit it
|
|
35
35
|
/**
|
|
36
36
|
*/
|
|
@@ -835,6 +835,24 @@ class ResourceStatistic extends $tea.Model {
|
|
|
835
835
|
}
|
|
836
836
|
}
|
|
837
837
|
exports.ResourceStatistic = ResourceStatistic;
|
|
838
|
+
class RouteRulesConflictInfo extends $tea.Model {
|
|
839
|
+
static names() {
|
|
840
|
+
return {
|
|
841
|
+
conflicts: 'conflicts',
|
|
842
|
+
domainInfo: 'domainInfo',
|
|
843
|
+
};
|
|
844
|
+
}
|
|
845
|
+
static types() {
|
|
846
|
+
return {
|
|
847
|
+
conflicts: { 'type': 'array', 'itemType': RouteRulesConflictInfoConflicts },
|
|
848
|
+
domainInfo: RouteRulesConflictInfoDomainInfo,
|
|
849
|
+
};
|
|
850
|
+
}
|
|
851
|
+
constructor(map) {
|
|
852
|
+
super(map);
|
|
853
|
+
}
|
|
854
|
+
}
|
|
855
|
+
exports.RouteRulesConflictInfo = RouteRulesConflictInfo;
|
|
838
856
|
class ServiceHealthCheck extends $tea.Model {
|
|
839
857
|
static names() {
|
|
840
858
|
return {
|
|
@@ -2192,6 +2210,7 @@ exports.GetHttpApiOperationResponse = GetHttpApiOperationResponse;
|
|
|
2192
2210
|
class ListDomainsRequest extends $tea.Model {
|
|
2193
2211
|
static names() {
|
|
2194
2212
|
return {
|
|
2213
|
+
gatewayId: 'gatewayId',
|
|
2195
2214
|
nameLike: 'nameLike',
|
|
2196
2215
|
pageNumber: 'pageNumber',
|
|
2197
2216
|
pageSize: 'pageSize',
|
|
@@ -2199,6 +2218,7 @@ class ListDomainsRequest extends $tea.Model {
|
|
|
2199
2218
|
}
|
|
2200
2219
|
static types() {
|
|
2201
2220
|
return {
|
|
2221
|
+
gatewayId: 'string',
|
|
2202
2222
|
nameLike: 'string',
|
|
2203
2223
|
pageNumber: 'number',
|
|
2204
2224
|
pageSize: 'number',
|
|
@@ -4037,6 +4057,158 @@ class HttpRouteMatchQueryParams extends $tea.Model {
|
|
|
4037
4057
|
}
|
|
4038
4058
|
}
|
|
4039
4059
|
exports.HttpRouteMatchQueryParams = HttpRouteMatchQueryParams;
|
|
4060
|
+
class RouteRulesConflictInfoConflictsDetailsConflictingMatchOperationInfo extends $tea.Model {
|
|
4061
|
+
static names() {
|
|
4062
|
+
return {
|
|
4063
|
+
name: 'name',
|
|
4064
|
+
operationId: 'operationId',
|
|
4065
|
+
};
|
|
4066
|
+
}
|
|
4067
|
+
static types() {
|
|
4068
|
+
return {
|
|
4069
|
+
name: 'string',
|
|
4070
|
+
operationId: 'string',
|
|
4071
|
+
};
|
|
4072
|
+
}
|
|
4073
|
+
constructor(map) {
|
|
4074
|
+
super(map);
|
|
4075
|
+
}
|
|
4076
|
+
}
|
|
4077
|
+
exports.RouteRulesConflictInfoConflictsDetailsConflictingMatchOperationInfo = RouteRulesConflictInfoConflictsDetailsConflictingMatchOperationInfo;
|
|
4078
|
+
class RouteRulesConflictInfoConflictsDetailsConflictingMatch extends $tea.Model {
|
|
4079
|
+
static names() {
|
|
4080
|
+
return {
|
|
4081
|
+
match: 'match',
|
|
4082
|
+
operationInfo: 'operationInfo',
|
|
4083
|
+
};
|
|
4084
|
+
}
|
|
4085
|
+
static types() {
|
|
4086
|
+
return {
|
|
4087
|
+
match: HttpRouteMatch,
|
|
4088
|
+
operationInfo: RouteRulesConflictInfoConflictsDetailsConflictingMatchOperationInfo,
|
|
4089
|
+
};
|
|
4090
|
+
}
|
|
4091
|
+
constructor(map) {
|
|
4092
|
+
super(map);
|
|
4093
|
+
}
|
|
4094
|
+
}
|
|
4095
|
+
exports.RouteRulesConflictInfoConflictsDetailsConflictingMatch = RouteRulesConflictInfoConflictsDetailsConflictingMatch;
|
|
4096
|
+
class RouteRulesConflictInfoConflictsDetailsDetectedMatchOperationInfo extends $tea.Model {
|
|
4097
|
+
static names() {
|
|
4098
|
+
return {
|
|
4099
|
+
name: 'name',
|
|
4100
|
+
operationId: 'operationId',
|
|
4101
|
+
};
|
|
4102
|
+
}
|
|
4103
|
+
static types() {
|
|
4104
|
+
return {
|
|
4105
|
+
name: 'string',
|
|
4106
|
+
operationId: 'string',
|
|
4107
|
+
};
|
|
4108
|
+
}
|
|
4109
|
+
constructor(map) {
|
|
4110
|
+
super(map);
|
|
4111
|
+
}
|
|
4112
|
+
}
|
|
4113
|
+
exports.RouteRulesConflictInfoConflictsDetailsDetectedMatchOperationInfo = RouteRulesConflictInfoConflictsDetailsDetectedMatchOperationInfo;
|
|
4114
|
+
class RouteRulesConflictInfoConflictsDetailsDetectedMatch extends $tea.Model {
|
|
4115
|
+
static names() {
|
|
4116
|
+
return {
|
|
4117
|
+
match: 'match',
|
|
4118
|
+
operationInfo: 'operationInfo',
|
|
4119
|
+
};
|
|
4120
|
+
}
|
|
4121
|
+
static types() {
|
|
4122
|
+
return {
|
|
4123
|
+
match: HttpRouteMatch,
|
|
4124
|
+
operationInfo: RouteRulesConflictInfoConflictsDetailsDetectedMatchOperationInfo,
|
|
4125
|
+
};
|
|
4126
|
+
}
|
|
4127
|
+
constructor(map) {
|
|
4128
|
+
super(map);
|
|
4129
|
+
}
|
|
4130
|
+
}
|
|
4131
|
+
exports.RouteRulesConflictInfoConflictsDetailsDetectedMatch = RouteRulesConflictInfoConflictsDetailsDetectedMatch;
|
|
4132
|
+
class RouteRulesConflictInfoConflictsDetails extends $tea.Model {
|
|
4133
|
+
static names() {
|
|
4134
|
+
return {
|
|
4135
|
+
conflictingMatch: 'conflictingMatch',
|
|
4136
|
+
detectedMatch: 'detectedMatch',
|
|
4137
|
+
level: 'level',
|
|
4138
|
+
};
|
|
4139
|
+
}
|
|
4140
|
+
static types() {
|
|
4141
|
+
return {
|
|
4142
|
+
conflictingMatch: RouteRulesConflictInfoConflictsDetailsConflictingMatch,
|
|
4143
|
+
detectedMatch: RouteRulesConflictInfoConflictsDetailsDetectedMatch,
|
|
4144
|
+
level: 'string',
|
|
4145
|
+
};
|
|
4146
|
+
}
|
|
4147
|
+
constructor(map) {
|
|
4148
|
+
super(map);
|
|
4149
|
+
}
|
|
4150
|
+
}
|
|
4151
|
+
exports.RouteRulesConflictInfoConflictsDetails = RouteRulesConflictInfoConflictsDetails;
|
|
4152
|
+
class RouteRulesConflictInfoConflictsEnvironmentInfo extends $tea.Model {
|
|
4153
|
+
static names() {
|
|
4154
|
+
return {
|
|
4155
|
+
environmentId: 'environmentId',
|
|
4156
|
+
name: 'name',
|
|
4157
|
+
};
|
|
4158
|
+
}
|
|
4159
|
+
static types() {
|
|
4160
|
+
return {
|
|
4161
|
+
environmentId: 'string',
|
|
4162
|
+
name: 'string',
|
|
4163
|
+
};
|
|
4164
|
+
}
|
|
4165
|
+
constructor(map) {
|
|
4166
|
+
super(map);
|
|
4167
|
+
}
|
|
4168
|
+
}
|
|
4169
|
+
exports.RouteRulesConflictInfoConflictsEnvironmentInfo = RouteRulesConflictInfoConflictsEnvironmentInfo;
|
|
4170
|
+
class RouteRulesConflictInfoConflicts extends $tea.Model {
|
|
4171
|
+
static names() {
|
|
4172
|
+
return {
|
|
4173
|
+
details: 'details',
|
|
4174
|
+
environmentInfo: 'environmentInfo',
|
|
4175
|
+
resourceId: 'resourceId',
|
|
4176
|
+
resourceName: 'resourceName',
|
|
4177
|
+
resourceType: 'resourceType',
|
|
4178
|
+
};
|
|
4179
|
+
}
|
|
4180
|
+
static types() {
|
|
4181
|
+
return {
|
|
4182
|
+
details: { 'type': 'array', 'itemType': RouteRulesConflictInfoConflictsDetails },
|
|
4183
|
+
environmentInfo: RouteRulesConflictInfoConflictsEnvironmentInfo,
|
|
4184
|
+
resourceId: 'string',
|
|
4185
|
+
resourceName: 'string',
|
|
4186
|
+
resourceType: 'string',
|
|
4187
|
+
};
|
|
4188
|
+
}
|
|
4189
|
+
constructor(map) {
|
|
4190
|
+
super(map);
|
|
4191
|
+
}
|
|
4192
|
+
}
|
|
4193
|
+
exports.RouteRulesConflictInfoConflicts = RouteRulesConflictInfoConflicts;
|
|
4194
|
+
class RouteRulesConflictInfoDomainInfo extends $tea.Model {
|
|
4195
|
+
static names() {
|
|
4196
|
+
return {
|
|
4197
|
+
domainId: 'domainId',
|
|
4198
|
+
name: 'name',
|
|
4199
|
+
};
|
|
4200
|
+
}
|
|
4201
|
+
static types() {
|
|
4202
|
+
return {
|
|
4203
|
+
domainId: 'string',
|
|
4204
|
+
name: 'string',
|
|
4205
|
+
};
|
|
4206
|
+
}
|
|
4207
|
+
constructor(map) {
|
|
4208
|
+
super(map);
|
|
4209
|
+
}
|
|
4210
|
+
}
|
|
4211
|
+
exports.RouteRulesConflictInfoDomainInfo = RouteRulesConflictInfoDomainInfo;
|
|
4040
4212
|
class CreateDomainResponseBodyData extends $tea.Model {
|
|
4041
4213
|
static names() {
|
|
4042
4214
|
return {
|
|
@@ -6144,6 +6316,9 @@ class Client extends openapi_client_1.default {
|
|
|
6144
6316
|
async listDomainsWithOptions(request, headers, runtime) {
|
|
6145
6317
|
tea_util_1.default.validateModel(request);
|
|
6146
6318
|
let query = {};
|
|
6319
|
+
if (!tea_util_1.default.isUnset(request.gatewayId)) {
|
|
6320
|
+
query["gatewayId"] = request.gatewayId;
|
|
6321
|
+
}
|
|
6147
6322
|
if (!tea_util_1.default.isUnset(request.nameLike)) {
|
|
6148
6323
|
query["nameLike"] = request.nameLike;
|
|
6149
6324
|
}
|