@alicloud/dataworks-public20200518 4.3.10 → 4.3.11

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 CHANGED
@@ -9592,6 +9592,7 @@ export declare class SubmitFileRequest extends $tea.Model {
9592
9592
  fileId?: number;
9593
9593
  projectId?: number;
9594
9594
  projectIdentifier?: string;
9595
+ skipAllDeployFileExtensions?: boolean;
9595
9596
  static names(): {
9596
9597
  [key: string]: string;
9597
9598
  };
package/dist/client.js CHANGED
@@ -13460,6 +13460,7 @@ class SubmitFileRequest extends $tea.Model {
13460
13460
  fileId: 'FileId',
13461
13461
  projectId: 'ProjectId',
13462
13462
  projectIdentifier: 'ProjectIdentifier',
13463
+ skipAllDeployFileExtensions: 'SkipAllDeployFileExtensions',
13463
13464
  };
13464
13465
  }
13465
13466
  static types() {
@@ -13468,6 +13469,7 @@ class SubmitFileRequest extends $tea.Model {
13468
13469
  fileId: 'number',
13469
13470
  projectId: 'number',
13470
13471
  projectIdentifier: 'string',
13472
+ skipAllDeployFileExtensions: 'boolean',
13471
13473
  };
13472
13474
  }
13473
13475
  }
@@ -31466,6 +31468,9 @@ class Client extends openapi_client_1.default {
31466
31468
  if (!tea_util_1.default.isUnset(request.projectIdentifier)) {
31467
31469
  body["ProjectIdentifier"] = request.projectIdentifier;
31468
31470
  }
31471
+ if (!tea_util_1.default.isUnset(request.skipAllDeployFileExtensions)) {
31472
+ body["SkipAllDeployFileExtensions"] = request.skipAllDeployFileExtensions;
31473
+ }
31469
31474
  let req = new $OpenApi.OpenApiRequest({
31470
31475
  body: openapi_util_1.default.parseToMap(body),
31471
31476
  });