@alicloud/sae20190506 1.25.4 → 1.26.0
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 +483 -0
- package/dist/client.js +575 -22
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +838 -0
package/dist/client.d.ts
CHANGED
|
@@ -1021,6 +1021,68 @@ export declare class HostAlias extends $tea.Model {
|
|
|
1021
1021
|
[key: string]: any;
|
|
1022
1022
|
});
|
|
1023
1023
|
}
|
|
1024
|
+
export declare class HttpApiRoute extends $tea.Model {
|
|
1025
|
+
/**
|
|
1026
|
+
* @example
|
|
1027
|
+
* intranet/internet
|
|
1028
|
+
*/
|
|
1029
|
+
addressType?: string;
|
|
1030
|
+
/**
|
|
1031
|
+
* @example
|
|
1032
|
+
* Deploying/NotDeployed/Undeploying/Deployed
|
|
1033
|
+
*/
|
|
1034
|
+
deployStatus?: string;
|
|
1035
|
+
/**
|
|
1036
|
+
* @example
|
|
1037
|
+
* Single/Multiple/VersionOriented
|
|
1038
|
+
*/
|
|
1039
|
+
destinationType?: string;
|
|
1040
|
+
domains?: HttpApiRouteDomains[];
|
|
1041
|
+
environmentId?: string;
|
|
1042
|
+
gatewayId?: string;
|
|
1043
|
+
httpApiId?: string;
|
|
1044
|
+
/**
|
|
1045
|
+
* @example
|
|
1046
|
+
* Http
|
|
1047
|
+
*/
|
|
1048
|
+
httpApiName?: string;
|
|
1049
|
+
/**
|
|
1050
|
+
* @example
|
|
1051
|
+
* Http
|
|
1052
|
+
*/
|
|
1053
|
+
httpApiType?: string;
|
|
1054
|
+
/**
|
|
1055
|
+
* @example
|
|
1056
|
+
* 1
|
|
1057
|
+
*/
|
|
1058
|
+
ingressId?: number;
|
|
1059
|
+
nacosInstanceId?: string;
|
|
1060
|
+
/**
|
|
1061
|
+
* @example
|
|
1062
|
+
* test
|
|
1063
|
+
*/
|
|
1064
|
+
nacosNamespaceId?: string;
|
|
1065
|
+
name?: string;
|
|
1066
|
+
namespaceId?: string;
|
|
1067
|
+
policies?: HttpApiRoutePolicies;
|
|
1068
|
+
predicates?: HttpApiRoutePredicates;
|
|
1069
|
+
routeId?: string;
|
|
1070
|
+
services?: HttpApiRouteServices[];
|
|
1071
|
+
/**
|
|
1072
|
+
* @example
|
|
1073
|
+
* SAE_NACOS/SAE_K8S_SERVICE/MSE_NACOS
|
|
1074
|
+
*/
|
|
1075
|
+
sourceType?: string;
|
|
1076
|
+
static names(): {
|
|
1077
|
+
[key: string]: string;
|
|
1078
|
+
};
|
|
1079
|
+
static types(): {
|
|
1080
|
+
[key: string]: any;
|
|
1081
|
+
};
|
|
1082
|
+
constructor(map?: {
|
|
1083
|
+
[key: string]: any;
|
|
1084
|
+
});
|
|
1085
|
+
}
|
|
1024
1086
|
export declare class ImageConfig extends $tea.Model {
|
|
1025
1087
|
accelerationType?: string;
|
|
1026
1088
|
image?: string;
|
|
@@ -1780,6 +1842,12 @@ export declare class PriceEstimateFeature extends $tea.Model {
|
|
|
1780
1842
|
export declare class PriceEstimateOutput extends $tea.Model {
|
|
1781
1843
|
apps?: PriceEstimateOutputApps[];
|
|
1782
1844
|
items?: PriceEstimateOutputItems[];
|
|
1845
|
+
postPayItems?: PriceEstimateOutputPostPayItems[];
|
|
1846
|
+
/**
|
|
1847
|
+
* @example
|
|
1848
|
+
* 235.66
|
|
1849
|
+
*/
|
|
1850
|
+
postPayTotalPrice?: number;
|
|
1783
1851
|
/**
|
|
1784
1852
|
* @example
|
|
1785
1853
|
* 235.66
|
|
@@ -2068,6 +2136,26 @@ export declare class ScaleConfig extends $tea.Model {
|
|
|
2068
2136
|
[key: string]: any;
|
|
2069
2137
|
});
|
|
2070
2138
|
}
|
|
2139
|
+
export declare class SidecarContainerConfig extends $tea.Model {
|
|
2140
|
+
command?: string;
|
|
2141
|
+
commandArgs?: string;
|
|
2142
|
+
configMapMountDesc?: string;
|
|
2143
|
+
cpu?: number;
|
|
2144
|
+
emptyDirDesc?: string;
|
|
2145
|
+
envs?: string;
|
|
2146
|
+
imageUrl?: string;
|
|
2147
|
+
memory?: number;
|
|
2148
|
+
name?: string;
|
|
2149
|
+
static names(): {
|
|
2150
|
+
[key: string]: string;
|
|
2151
|
+
};
|
|
2152
|
+
static types(): {
|
|
2153
|
+
[key: string]: any;
|
|
2154
|
+
};
|
|
2155
|
+
constructor(map?: {
|
|
2156
|
+
[key: string]: any;
|
|
2157
|
+
});
|
|
2158
|
+
}
|
|
2071
2159
|
export declare class SourceCodeAccount extends $tea.Model {
|
|
2072
2160
|
avatarUrl?: string;
|
|
2073
2161
|
id?: string;
|
|
@@ -3942,6 +4030,7 @@ export declare class CreateApplicationRequest extends $tea.Model {
|
|
|
3942
4030
|
* KSAK****
|
|
3943
4031
|
*/
|
|
3944
4032
|
nasId?: string;
|
|
4033
|
+
oidcRoleName?: string;
|
|
3945
4034
|
/**
|
|
3946
4035
|
* @remarks
|
|
3947
4036
|
* xxxxxx
|
|
@@ -4076,6 +4165,7 @@ export declare class CreateApplicationRequest extends $tea.Model {
|
|
|
4076
4165
|
*/
|
|
4077
4166
|
replicas?: number;
|
|
4078
4167
|
saeVersion?: string;
|
|
4168
|
+
secretMountDesc?: string;
|
|
4079
4169
|
/**
|
|
4080
4170
|
* @remarks
|
|
4081
4171
|
* sg-wz969ngg2e49q5i4\\*\\*\\*\\*
|
|
@@ -7330,6 +7420,7 @@ export declare class DeployApplicationRequest extends $tea.Model {
|
|
|
7330
7420
|
* 10d3b4****
|
|
7331
7421
|
*/
|
|
7332
7422
|
nasId?: string;
|
|
7423
|
+
oidcRoleName?: string;
|
|
7333
7424
|
/**
|
|
7334
7425
|
* @remarks
|
|
7335
7426
|
* The AccessKey ID that is used to read data from and write data to Object Storage Service (OSS) buckets.
|
|
@@ -7475,6 +7566,7 @@ export declare class DeployApplicationRequest extends $tea.Model {
|
|
|
7475
7566
|
* 1
|
|
7476
7567
|
*/
|
|
7477
7568
|
replicas?: number;
|
|
7569
|
+
secretMountDesc?: string;
|
|
7478
7570
|
/**
|
|
7479
7571
|
* @example
|
|
7480
7572
|
* sg-wz969ngg2e49q5i4****
|
|
@@ -12198,6 +12290,87 @@ export declare class GetWarningEventMetricResponse extends $tea.Model {
|
|
|
12198
12290
|
[key: string]: any;
|
|
12199
12291
|
});
|
|
12200
12292
|
}
|
|
12293
|
+
export declare class GetWebshellTokenRequest extends $tea.Model {
|
|
12294
|
+
/**
|
|
12295
|
+
* @remarks
|
|
12296
|
+
* This parameter is required.
|
|
12297
|
+
*
|
|
12298
|
+
* @example
|
|
12299
|
+
* 017f39b8-dfa4-4e16-a84b-1dcee4b1****
|
|
12300
|
+
*/
|
|
12301
|
+
appId?: string;
|
|
12302
|
+
/**
|
|
12303
|
+
* @remarks
|
|
12304
|
+
* This parameter is required.
|
|
12305
|
+
*
|
|
12306
|
+
* @example
|
|
12307
|
+
* hello-podsdfsdfsdfsdf
|
|
12308
|
+
*/
|
|
12309
|
+
podName?: string;
|
|
12310
|
+
static names(): {
|
|
12311
|
+
[key: string]: string;
|
|
12312
|
+
};
|
|
12313
|
+
static types(): {
|
|
12314
|
+
[key: string]: any;
|
|
12315
|
+
};
|
|
12316
|
+
constructor(map?: {
|
|
12317
|
+
[key: string]: any;
|
|
12318
|
+
});
|
|
12319
|
+
}
|
|
12320
|
+
export declare class GetWebshellTokenResponseBody extends $tea.Model {
|
|
12321
|
+
/**
|
|
12322
|
+
* @example
|
|
12323
|
+
* 200
|
|
12324
|
+
*/
|
|
12325
|
+
code?: string;
|
|
12326
|
+
data?: GetWebshellTokenResponseBodyData;
|
|
12327
|
+
errorCode?: string;
|
|
12328
|
+
/**
|
|
12329
|
+
* @example
|
|
12330
|
+
* success
|
|
12331
|
+
*/
|
|
12332
|
+
message?: string;
|
|
12333
|
+
/**
|
|
12334
|
+
* @example
|
|
12335
|
+
* 91F93257-7A4A-4BD3-9A7E-2F6EAE6D****
|
|
12336
|
+
*/
|
|
12337
|
+
requestId?: string;
|
|
12338
|
+
/**
|
|
12339
|
+
* @example
|
|
12340
|
+
* true
|
|
12341
|
+
*/
|
|
12342
|
+
success?: boolean;
|
|
12343
|
+
/**
|
|
12344
|
+
* @example
|
|
12345
|
+
* 0a98a02315955564772843261e****
|
|
12346
|
+
*/
|
|
12347
|
+
traceId?: string;
|
|
12348
|
+
static names(): {
|
|
12349
|
+
[key: string]: string;
|
|
12350
|
+
};
|
|
12351
|
+
static types(): {
|
|
12352
|
+
[key: string]: any;
|
|
12353
|
+
};
|
|
12354
|
+
constructor(map?: {
|
|
12355
|
+
[key: string]: any;
|
|
12356
|
+
});
|
|
12357
|
+
}
|
|
12358
|
+
export declare class GetWebshellTokenResponse extends $tea.Model {
|
|
12359
|
+
headers?: {
|
|
12360
|
+
[key: string]: string;
|
|
12361
|
+
};
|
|
12362
|
+
statusCode?: number;
|
|
12363
|
+
body?: GetWebshellTokenResponseBody;
|
|
12364
|
+
static names(): {
|
|
12365
|
+
[key: string]: string;
|
|
12366
|
+
};
|
|
12367
|
+
static types(): {
|
|
12368
|
+
[key: string]: any;
|
|
12369
|
+
};
|
|
12370
|
+
constructor(map?: {
|
|
12371
|
+
[key: string]: any;
|
|
12372
|
+
});
|
|
12373
|
+
}
|
|
12201
12374
|
export declare class ListAppEventsRequest extends $tea.Model {
|
|
12202
12375
|
/**
|
|
12203
12376
|
* @remarks
|
|
@@ -18950,6 +19123,195 @@ export declare class BuildPipelineRunTriggerConfig extends $tea.Model {
|
|
|
18950
19123
|
[key: string]: any;
|
|
18951
19124
|
});
|
|
18952
19125
|
}
|
|
19126
|
+
export declare class HttpApiRouteDomains extends $tea.Model {
|
|
19127
|
+
domainId?: string;
|
|
19128
|
+
domainName?: string;
|
|
19129
|
+
static names(): {
|
|
19130
|
+
[key: string]: string;
|
|
19131
|
+
};
|
|
19132
|
+
static types(): {
|
|
19133
|
+
[key: string]: any;
|
|
19134
|
+
};
|
|
19135
|
+
constructor(map?: {
|
|
19136
|
+
[key: string]: any;
|
|
19137
|
+
});
|
|
19138
|
+
}
|
|
19139
|
+
export declare class HttpApiRoutePoliciesFallbackDestinations extends $tea.Model {
|
|
19140
|
+
appId?: string;
|
|
19141
|
+
appName?: string;
|
|
19142
|
+
serviceId?: string;
|
|
19143
|
+
serviceName?: string;
|
|
19144
|
+
servicePort?: number;
|
|
19145
|
+
serviceProtocol?: string;
|
|
19146
|
+
static names(): {
|
|
19147
|
+
[key: string]: string;
|
|
19148
|
+
};
|
|
19149
|
+
static types(): {
|
|
19150
|
+
[key: string]: any;
|
|
19151
|
+
};
|
|
19152
|
+
constructor(map?: {
|
|
19153
|
+
[key: string]: any;
|
|
19154
|
+
});
|
|
19155
|
+
}
|
|
19156
|
+
export declare class HttpApiRoutePoliciesFallback extends $tea.Model {
|
|
19157
|
+
destinations?: HttpApiRoutePoliciesFallbackDestinations[];
|
|
19158
|
+
enable?: boolean;
|
|
19159
|
+
static names(): {
|
|
19160
|
+
[key: string]: string;
|
|
19161
|
+
};
|
|
19162
|
+
static types(): {
|
|
19163
|
+
[key: string]: any;
|
|
19164
|
+
};
|
|
19165
|
+
constructor(map?: {
|
|
19166
|
+
[key: string]: any;
|
|
19167
|
+
});
|
|
19168
|
+
}
|
|
19169
|
+
export declare class HttpApiRoutePoliciesRetry extends $tea.Model {
|
|
19170
|
+
attempts?: number;
|
|
19171
|
+
/**
|
|
19172
|
+
* @example
|
|
19173
|
+
* true/false
|
|
19174
|
+
*/
|
|
19175
|
+
enable?: boolean;
|
|
19176
|
+
httpCodes?: string[];
|
|
19177
|
+
retryOn?: string[];
|
|
19178
|
+
static names(): {
|
|
19179
|
+
[key: string]: string;
|
|
19180
|
+
};
|
|
19181
|
+
static types(): {
|
|
19182
|
+
[key: string]: any;
|
|
19183
|
+
};
|
|
19184
|
+
constructor(map?: {
|
|
19185
|
+
[key: string]: any;
|
|
19186
|
+
});
|
|
19187
|
+
}
|
|
19188
|
+
export declare class HttpApiRoutePoliciesTimeout extends $tea.Model {
|
|
19189
|
+
enable?: boolean;
|
|
19190
|
+
/**
|
|
19191
|
+
* @example
|
|
19192
|
+
* s
|
|
19193
|
+
*/
|
|
19194
|
+
timeUnit?: string;
|
|
19195
|
+
unitNum?: number;
|
|
19196
|
+
static names(): {
|
|
19197
|
+
[key: string]: string;
|
|
19198
|
+
};
|
|
19199
|
+
static types(): {
|
|
19200
|
+
[key: string]: any;
|
|
19201
|
+
};
|
|
19202
|
+
constructor(map?: {
|
|
19203
|
+
[key: string]: any;
|
|
19204
|
+
});
|
|
19205
|
+
}
|
|
19206
|
+
export declare class HttpApiRoutePolicies extends $tea.Model {
|
|
19207
|
+
fallback?: HttpApiRoutePoliciesFallback;
|
|
19208
|
+
retry?: HttpApiRoutePoliciesRetry;
|
|
19209
|
+
timeout?: HttpApiRoutePoliciesTimeout;
|
|
19210
|
+
static names(): {
|
|
19211
|
+
[key: string]: string;
|
|
19212
|
+
};
|
|
19213
|
+
static types(): {
|
|
19214
|
+
[key: string]: any;
|
|
19215
|
+
};
|
|
19216
|
+
constructor(map?: {
|
|
19217
|
+
[key: string]: any;
|
|
19218
|
+
});
|
|
19219
|
+
}
|
|
19220
|
+
export declare class HttpApiRoutePredicatesHeaderPredicates extends $tea.Model {
|
|
19221
|
+
name?: string;
|
|
19222
|
+
/**
|
|
19223
|
+
* @example
|
|
19224
|
+
* Prefix/Exact/Regex
|
|
19225
|
+
*/
|
|
19226
|
+
type?: string;
|
|
19227
|
+
value?: string;
|
|
19228
|
+
static names(): {
|
|
19229
|
+
[key: string]: string;
|
|
19230
|
+
};
|
|
19231
|
+
static types(): {
|
|
19232
|
+
[key: string]: any;
|
|
19233
|
+
};
|
|
19234
|
+
constructor(map?: {
|
|
19235
|
+
[key: string]: any;
|
|
19236
|
+
});
|
|
19237
|
+
}
|
|
19238
|
+
export declare class HttpApiRoutePredicatesPathPredicates extends $tea.Model {
|
|
19239
|
+
ignoreCase?: boolean;
|
|
19240
|
+
path?: string;
|
|
19241
|
+
/**
|
|
19242
|
+
* @example
|
|
19243
|
+
* Prefix/Exact/Regex
|
|
19244
|
+
*/
|
|
19245
|
+
type?: string;
|
|
19246
|
+
static names(): {
|
|
19247
|
+
[key: string]: string;
|
|
19248
|
+
};
|
|
19249
|
+
static types(): {
|
|
19250
|
+
[key: string]: any;
|
|
19251
|
+
};
|
|
19252
|
+
constructor(map?: {
|
|
19253
|
+
[key: string]: any;
|
|
19254
|
+
});
|
|
19255
|
+
}
|
|
19256
|
+
export declare class HttpApiRoutePredicatesQueryPredicates extends $tea.Model {
|
|
19257
|
+
name?: string;
|
|
19258
|
+
/**
|
|
19259
|
+
* @example
|
|
19260
|
+
* Prefix/Exact/Regex
|
|
19261
|
+
*/
|
|
19262
|
+
type?: string;
|
|
19263
|
+
value?: string;
|
|
19264
|
+
static names(): {
|
|
19265
|
+
[key: string]: string;
|
|
19266
|
+
};
|
|
19267
|
+
static types(): {
|
|
19268
|
+
[key: string]: any;
|
|
19269
|
+
};
|
|
19270
|
+
constructor(map?: {
|
|
19271
|
+
[key: string]: any;
|
|
19272
|
+
});
|
|
19273
|
+
}
|
|
19274
|
+
export declare class HttpApiRoutePredicates extends $tea.Model {
|
|
19275
|
+
headerPredicates?: HttpApiRoutePredicatesHeaderPredicates[];
|
|
19276
|
+
methodPredicates?: string[];
|
|
19277
|
+
pathPredicates?: HttpApiRoutePredicatesPathPredicates;
|
|
19278
|
+
queryPredicates?: HttpApiRoutePredicatesQueryPredicates[];
|
|
19279
|
+
static names(): {
|
|
19280
|
+
[key: string]: string;
|
|
19281
|
+
};
|
|
19282
|
+
static types(): {
|
|
19283
|
+
[key: string]: any;
|
|
19284
|
+
};
|
|
19285
|
+
constructor(map?: {
|
|
19286
|
+
[key: string]: any;
|
|
19287
|
+
});
|
|
19288
|
+
}
|
|
19289
|
+
export declare class HttpApiRouteServices extends $tea.Model {
|
|
19290
|
+
appId?: string;
|
|
19291
|
+
appName?: string;
|
|
19292
|
+
serviceId?: string;
|
|
19293
|
+
serviceName?: string;
|
|
19294
|
+
servicePort?: number;
|
|
19295
|
+
/**
|
|
19296
|
+
* @example
|
|
19297
|
+
* HTTP
|
|
19298
|
+
*/
|
|
19299
|
+
serviceProtocol?: string;
|
|
19300
|
+
/**
|
|
19301
|
+
* @example
|
|
19302
|
+
* 90
|
|
19303
|
+
*/
|
|
19304
|
+
serviceWeight?: number;
|
|
19305
|
+
static names(): {
|
|
19306
|
+
[key: string]: string;
|
|
19307
|
+
};
|
|
19308
|
+
static types(): {
|
|
19309
|
+
[key: string]: any;
|
|
19310
|
+
};
|
|
19311
|
+
constructor(map?: {
|
|
19312
|
+
[key: string]: any;
|
|
19313
|
+
});
|
|
19314
|
+
}
|
|
18953
19315
|
export declare class PriceEstimateOutputAppsUsages extends $tea.Model {
|
|
18954
19316
|
/**
|
|
18955
19317
|
* @example
|
|
@@ -19068,6 +19430,80 @@ export declare class PriceEstimateOutputItems extends $tea.Model {
|
|
|
19068
19430
|
[key: string]: any;
|
|
19069
19431
|
});
|
|
19070
19432
|
}
|
|
19433
|
+
export declare class PriceEstimateOutputPostPayItemsSteps extends $tea.Model {
|
|
19434
|
+
/**
|
|
19435
|
+
* @example
|
|
19436
|
+
* 0
|
|
19437
|
+
*/
|
|
19438
|
+
begin?: number;
|
|
19439
|
+
/**
|
|
19440
|
+
* @example
|
|
19441
|
+
* 10000
|
|
19442
|
+
*/
|
|
19443
|
+
end?: number;
|
|
19444
|
+
/**
|
|
19445
|
+
* @example
|
|
19446
|
+
* 0.0001
|
|
19447
|
+
*/
|
|
19448
|
+
price?: number;
|
|
19449
|
+
regionIds?: string[];
|
|
19450
|
+
/**
|
|
19451
|
+
* @example
|
|
19452
|
+
* 核*秒
|
|
19453
|
+
*/
|
|
19454
|
+
unit?: string;
|
|
19455
|
+
static names(): {
|
|
19456
|
+
[key: string]: string;
|
|
19457
|
+
};
|
|
19458
|
+
static types(): {
|
|
19459
|
+
[key: string]: any;
|
|
19460
|
+
};
|
|
19461
|
+
constructor(map?: {
|
|
19462
|
+
[key: string]: any;
|
|
19463
|
+
});
|
|
19464
|
+
}
|
|
19465
|
+
export declare class PriceEstimateOutputPostPayItems extends $tea.Model {
|
|
19466
|
+
/**
|
|
19467
|
+
* @example
|
|
19468
|
+
* 3600.00
|
|
19469
|
+
*/
|
|
19470
|
+
amount?: number;
|
|
19471
|
+
/**
|
|
19472
|
+
* @example
|
|
19473
|
+
* 1
|
|
19474
|
+
*/
|
|
19475
|
+
count?: number;
|
|
19476
|
+
/**
|
|
19477
|
+
* @example
|
|
19478
|
+
* p_micro_service_cpu
|
|
19479
|
+
*/
|
|
19480
|
+
id?: string;
|
|
19481
|
+
/**
|
|
19482
|
+
* @example
|
|
19483
|
+
* 1.00
|
|
19484
|
+
*/
|
|
19485
|
+
price?: number;
|
|
19486
|
+
steps?: PriceEstimateOutputPostPayItemsSteps[];
|
|
19487
|
+
/**
|
|
19488
|
+
* @example
|
|
19489
|
+
* pack/post
|
|
19490
|
+
*/
|
|
19491
|
+
type?: string;
|
|
19492
|
+
/**
|
|
19493
|
+
* @example
|
|
19494
|
+
* 核*秒
|
|
19495
|
+
*/
|
|
19496
|
+
unit?: string;
|
|
19497
|
+
static names(): {
|
|
19498
|
+
[key: string]: string;
|
|
19499
|
+
};
|
|
19500
|
+
static types(): {
|
|
19501
|
+
[key: string]: any;
|
|
19502
|
+
};
|
|
19503
|
+
constructor(map?: {
|
|
19504
|
+
[key: string]: any;
|
|
19505
|
+
});
|
|
19506
|
+
}
|
|
19071
19507
|
export declare class ProbeProbeHandlerHttpGetHttpHeaders extends $tea.Model {
|
|
19072
19508
|
name?: string;
|
|
19073
19509
|
value?: string;
|
|
@@ -20107,6 +20543,21 @@ export declare class DescribeApplicationConfigResponseBodyDataOssMountDescs exte
|
|
|
20107
20543
|
[key: string]: any;
|
|
20108
20544
|
});
|
|
20109
20545
|
}
|
|
20546
|
+
export declare class DescribeApplicationConfigResponseBodyDataSecretMountDesc extends $tea.Model {
|
|
20547
|
+
key?: string;
|
|
20548
|
+
mountPath?: string;
|
|
20549
|
+
secretId?: number;
|
|
20550
|
+
secretName?: string;
|
|
20551
|
+
static names(): {
|
|
20552
|
+
[key: string]: string;
|
|
20553
|
+
};
|
|
20554
|
+
static types(): {
|
|
20555
|
+
[key: string]: any;
|
|
20556
|
+
};
|
|
20557
|
+
constructor(map?: {
|
|
20558
|
+
[key: string]: any;
|
|
20559
|
+
});
|
|
20560
|
+
}
|
|
20110
20561
|
export declare class DescribeApplicationConfigResponseBodyDataTags extends $tea.Model {
|
|
20111
20562
|
/**
|
|
20112
20563
|
* @remarks
|
|
@@ -20501,6 +20952,7 @@ export declare class DescribeApplicationConfigResponseBodyData extends $tea.Mode
|
|
|
20501
20952
|
* AKSN89**
|
|
20502
20953
|
*/
|
|
20503
20954
|
nasId?: string;
|
|
20955
|
+
oidcRoleName?: string;
|
|
20504
20956
|
/**
|
|
20505
20957
|
* @remarks
|
|
20506
20958
|
* The AccessKey ID that is used to read data from and write data to Object Storage Service (OSS) buckets.
|
|
@@ -20663,6 +21115,7 @@ export declare class DescribeApplicationConfigResponseBodyData extends $tea.Mode
|
|
|
20663
21115
|
* 2
|
|
20664
21116
|
*/
|
|
20665
21117
|
replicas?: number;
|
|
21118
|
+
secretMountDesc?: DescribeApplicationConfigResponseBodyDataSecretMountDesc[];
|
|
20666
21119
|
/**
|
|
20667
21120
|
* @remarks
|
|
20668
21121
|
* The ID of the security group.
|
|
@@ -26145,6 +26598,22 @@ export declare class GetWarningEventMetricResponseBodyData extends $tea.Model {
|
|
|
26145
26598
|
[key: string]: any;
|
|
26146
26599
|
});
|
|
26147
26600
|
}
|
|
26601
|
+
export declare class GetWebshellTokenResponseBodyData extends $tea.Model {
|
|
26602
|
+
/**
|
|
26603
|
+
* @example
|
|
26604
|
+
* zWWpvRj_5pzof4hfo7-hGynM8oGMmO_7
|
|
26605
|
+
*/
|
|
26606
|
+
token?: string;
|
|
26607
|
+
static names(): {
|
|
26608
|
+
[key: string]: string;
|
|
26609
|
+
};
|
|
26610
|
+
static types(): {
|
|
26611
|
+
[key: string]: any;
|
|
26612
|
+
};
|
|
26613
|
+
constructor(map?: {
|
|
26614
|
+
[key: string]: any;
|
|
26615
|
+
});
|
|
26616
|
+
}
|
|
26148
26617
|
export declare class ListAppEventsResponseBodyDataAppEventEntity extends $tea.Model {
|
|
26149
26618
|
/**
|
|
26150
26619
|
* @remarks
|
|
@@ -30277,6 +30746,20 @@ export default class Client extends OpenApi {
|
|
|
30277
30746
|
* @returns GetWarningEventMetricResponse
|
|
30278
30747
|
*/
|
|
30279
30748
|
getWarningEventMetric(request: GetWarningEventMetricRequest): Promise<GetWarningEventMetricResponse>;
|
|
30749
|
+
/**
|
|
30750
|
+
* @param request - GetWebshellTokenRequest
|
|
30751
|
+
* @param headers - map
|
|
30752
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
30753
|
+
* @returns GetWebshellTokenResponse
|
|
30754
|
+
*/
|
|
30755
|
+
getWebshellTokenWithOptions(request: GetWebshellTokenRequest, headers: {
|
|
30756
|
+
[key: string]: string;
|
|
30757
|
+
}, runtime: $Util.RuntimeOptions): Promise<GetWebshellTokenResponse>;
|
|
30758
|
+
/**
|
|
30759
|
+
* @param request - GetWebshellTokenRequest
|
|
30760
|
+
* @returns GetWebshellTokenResponse
|
|
30761
|
+
*/
|
|
30762
|
+
getWebshellToken(request: GetWebshellTokenRequest): Promise<GetWebshellTokenResponse>;
|
|
30280
30763
|
/**
|
|
30281
30764
|
* Queries the events that occurred in an application.
|
|
30282
30765
|
*
|