@alicloud/sddp20190103 1.3.0 → 1.4.1

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
@@ -3356,6 +3356,63 @@ export declare class DescribeEventsResponse extends $tea.Model {
3356
3356
  [key: string]: any;
3357
3357
  });
3358
3358
  }
3359
+ export declare class DescribeIdentifyTaskStatusRequest extends $tea.Model {
3360
+ /**
3361
+ * @remarks
3362
+ * This parameter is required.
3363
+ *
3364
+ * @example
3365
+ * 268
3366
+ */
3367
+ id?: number;
3368
+ /**
3369
+ * @example
3370
+ * zh_cn
3371
+ */
3372
+ lang?: string;
3373
+ static names(): {
3374
+ [key: string]: string;
3375
+ };
3376
+ static types(): {
3377
+ [key: string]: any;
3378
+ };
3379
+ constructor(map?: {
3380
+ [key: string]: any;
3381
+ });
3382
+ }
3383
+ export declare class DescribeIdentifyTaskStatusResponseBody extends $tea.Model {
3384
+ content?: DescribeIdentifyTaskStatusResponseBodyContent;
3385
+ /**
3386
+ * @example
3387
+ * 71064826-726F-4ADA-B879-05D8055476FB
3388
+ */
3389
+ requestId?: string;
3390
+ static names(): {
3391
+ [key: string]: string;
3392
+ };
3393
+ static types(): {
3394
+ [key: string]: any;
3395
+ };
3396
+ constructor(map?: {
3397
+ [key: string]: any;
3398
+ });
3399
+ }
3400
+ export declare class DescribeIdentifyTaskStatusResponse extends $tea.Model {
3401
+ headers?: {
3402
+ [key: string]: string;
3403
+ };
3404
+ statusCode?: number;
3405
+ body?: DescribeIdentifyTaskStatusResponseBody;
3406
+ static names(): {
3407
+ [key: string]: string;
3408
+ };
3409
+ static types(): {
3410
+ [key: string]: any;
3411
+ };
3412
+ constructor(map?: {
3413
+ [key: string]: any;
3414
+ });
3415
+ }
3359
3416
  export declare class DescribeInstanceSourcesRequest extends $tea.Model {
3360
3417
  /**
3361
3418
  * @remarks
@@ -4405,6 +4462,7 @@ export declare class DescribeRulesRequest extends $tea.Model {
4405
4462
  * 1
4406
4463
  */
4407
4464
  contentCategory?: number;
4465
+ cooperationChannel?: string;
4408
4466
  /**
4409
4467
  * @remarks
4410
4468
  * The page number of the page to return.
@@ -4534,6 +4592,7 @@ export declare class DescribeRulesRequest extends $tea.Model {
4534
4592
  * 1
4535
4593
  */
4536
4594
  ruleType?: number;
4595
+ simplify?: boolean;
4537
4596
  /**
4538
4597
  * @remarks
4539
4598
  * The status of the sensitive data detection rule. Valid values:
@@ -9327,6 +9386,18 @@ export declare class DescribeEventsResponseBodyItems extends $tea.Model {
9327
9386
  [key: string]: any;
9328
9387
  });
9329
9388
  }
9389
+ export declare class DescribeIdentifyTaskStatusResponseBodyContent extends $tea.Model {
9390
+ status?: number;
9391
+ static names(): {
9392
+ [key: string]: string;
9393
+ };
9394
+ static types(): {
9395
+ [key: string]: any;
9396
+ };
9397
+ constructor(map?: {
9398
+ [key: string]: any;
9399
+ });
9400
+ }
9330
9401
  export declare class DescribeInstanceSourcesResponseBodyItems extends $tea.Model {
9331
9402
  /**
9332
9403
  * @remarks
@@ -9649,6 +9720,7 @@ export declare class DescribeInstancesResponseBodyItems extends $tea.Model {
9649
9720
  * 1637622793000
9650
9721
  */
9651
9722
  lastFinishTime?: number;
9723
+ memberAliUid?: string;
9652
9724
  /**
9653
9725
  * @remarks
9654
9726
  * A list of tags.
@@ -10008,22 +10080,28 @@ export declare class DescribeOssObjectDetailV2ResponseBodyOssObjectDetail extend
10008
10080
  * Excel file
10009
10081
  */
10010
10082
  categoryName?: string;
10083
+ fileCategoryName?: string;
10084
+ id?: string;
10085
+ modelTagIds?: string;
10011
10086
  /**
10012
10087
  * @example
10013
10088
  * obj_id
10014
10089
  */
10015
10090
  name?: string;
10091
+ objectAcl?: string;
10016
10092
  /**
10017
10093
  * @example
10018
10094
  * cn-zhangjiakou
10019
10095
  */
10020
10096
  regionId?: string;
10097
+ riskLevelId?: number;
10021
10098
  /**
10022
10099
  * @example
10023
10100
  * S1
10024
10101
  */
10025
10102
  riskLevelName?: string;
10026
10103
  ruleList?: DescribeOssObjectDetailV2ResponseBodyOssObjectDetailRuleList[];
10104
+ size?: number;
10027
10105
  static names(): {
10028
10106
  [key: string]: string;
10029
10107
  };
@@ -11653,6 +11731,21 @@ export default class Client extends OpenApi {
11653
11731
  * @returns DescribeEventsResponse
11654
11732
  */
11655
11733
  describeEvents(request: DescribeEventsRequest): Promise<DescribeEventsResponse>;
11734
+ /**
11735
+ * 查询识别任务状态
11736
+ *
11737
+ * @param request - DescribeIdentifyTaskStatusRequest
11738
+ * @param runtime - runtime options for this request RuntimeOptions
11739
+ * @returns DescribeIdentifyTaskStatusResponse
11740
+ */
11741
+ describeIdentifyTaskStatusWithOptions(request: DescribeIdentifyTaskStatusRequest, runtime: $Util.RuntimeOptions): Promise<DescribeIdentifyTaskStatusResponse>;
11742
+ /**
11743
+ * 查询识别任务状态
11744
+ *
11745
+ * @param request - DescribeIdentifyTaskStatusRequest
11746
+ * @returns DescribeIdentifyTaskStatusResponse
11747
+ */
11748
+ describeIdentifyTaskStatus(request: DescribeIdentifyTaskStatusRequest): Promise<DescribeIdentifyTaskStatusResponse>;
11656
11749
  /**
11657
11750
  * Queries a list of data assets.
11658
11751
  *