@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alicloud/ecs20140526",
3
- "version": "3.0.8",
3
+ "version": "3.0.9",
4
4
  "description": "",
5
5
  "main": "dist/client.js",
6
6
  "scripts": {
package/src/client.ts CHANGED
@@ -19519,6 +19519,7 @@ export class DescribeSecurityGroupsResponse extends $tea.Model {
19519
19519
 
19520
19520
  export class DescribeSendFileResultsRequest extends $tea.Model {
19521
19521
  instanceId?: string;
19522
+ invocationStatus?: string;
19522
19523
  invokeId?: string;
19523
19524
  name?: string;
19524
19525
  ownerAccount?: string;
@@ -19533,6 +19534,7 @@ export class DescribeSendFileResultsRequest extends $tea.Model {
19533
19534
  static names(): { [key: string]: string } {
19534
19535
  return {
19535
19536
  instanceId: 'InstanceId',
19537
+ invocationStatus: 'InvocationStatus',
19536
19538
  invokeId: 'InvokeId',
19537
19539
  name: 'Name',
19538
19540
  ownerAccount: 'OwnerAccount',
@@ -19550,6 +19552,7 @@ export class DescribeSendFileResultsRequest extends $tea.Model {
19550
19552
  static types(): { [key: string]: any } {
19551
19553
  return {
19552
19554
  instanceId: 'string',
19555
+ invocationStatus: 'string',
19553
19556
  invokeId: 'string',
19554
19557
  name: 'string',
19555
19558
  ownerAccount: 'string',
@@ -70191,6 +70194,10 @@ export default class Client extends OpenApi {
70191
70194
  query["InstanceId"] = request.instanceId;
70192
70195
  }
70193
70196
 
70197
+ if (!Util.isUnset(request.invocationStatus)) {
70198
+ query["InvocationStatus"] = request.invocationStatus;
70199
+ }
70200
+
70194
70201
  if (!Util.isUnset(request.invokeId)) {
70195
70202
  query["InvokeId"] = request.invokeId;
70196
70203
  }