@alicloud/ecs20140526 3.0.8 → 3.0.9
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 +1 -0
- package/dist/client.js +5 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +7 -0
package/dist/client.d.ts
CHANGED
|
@@ -10195,6 +10195,7 @@ export declare class DescribeSecurityGroupsResponse extends $tea.Model {
|
|
|
10195
10195
|
}
|
|
10196
10196
|
export declare class DescribeSendFileResultsRequest extends $tea.Model {
|
|
10197
10197
|
instanceId?: string;
|
|
10198
|
+
invocationStatus?: string;
|
|
10198
10199
|
invokeId?: string;
|
|
10199
10200
|
name?: string;
|
|
10200
10201
|
ownerAccount?: string;
|
package/dist/client.js
CHANGED
|
@@ -14972,6 +14972,7 @@ class DescribeSendFileResultsRequest extends $tea.Model {
|
|
|
14972
14972
|
static names() {
|
|
14973
14973
|
return {
|
|
14974
14974
|
instanceId: 'InstanceId',
|
|
14975
|
+
invocationStatus: 'InvocationStatus',
|
|
14975
14976
|
invokeId: 'InvokeId',
|
|
14976
14977
|
name: 'Name',
|
|
14977
14978
|
ownerAccount: 'OwnerAccount',
|
|
@@ -14988,6 +14989,7 @@ class DescribeSendFileResultsRequest extends $tea.Model {
|
|
|
14988
14989
|
static types() {
|
|
14989
14990
|
return {
|
|
14990
14991
|
instanceId: 'string',
|
|
14992
|
+
invocationStatus: 'string',
|
|
14991
14993
|
invokeId: 'string',
|
|
14992
14994
|
name: 'string',
|
|
14993
14995
|
ownerAccount: 'string',
|
|
@@ -55611,6 +55613,9 @@ class Client extends openapi_client_1.default {
|
|
|
55611
55613
|
if (!tea_util_1.default.isUnset(request.instanceId)) {
|
|
55612
55614
|
query["InstanceId"] = request.instanceId;
|
|
55613
55615
|
}
|
|
55616
|
+
if (!tea_util_1.default.isUnset(request.invocationStatus)) {
|
|
55617
|
+
query["InvocationStatus"] = request.invocationStatus;
|
|
55618
|
+
}
|
|
55614
55619
|
if (!tea_util_1.default.isUnset(request.invokeId)) {
|
|
55615
55620
|
query["InvokeId"] = request.invokeId;
|
|
55616
55621
|
}
|