@alicloud/sophonsoar20220728 1.0.2 → 2.0.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 +658 -30
- package/dist/client.js +1228 -585
- package/dist/client.js.map +1 -1
- package/package.json +6 -6
- package/src/client.ts +678 -36
package/dist/client.d.ts
CHANGED
|
@@ -94,6 +94,7 @@ export declare class CreatePlaybookRequest extends $tea.Model {
|
|
|
94
94
|
description?: string;
|
|
95
95
|
displayName?: string;
|
|
96
96
|
lang?: string;
|
|
97
|
+
taskflowType?: string;
|
|
97
98
|
static names(): {
|
|
98
99
|
[key: string]: string;
|
|
99
100
|
};
|
|
@@ -1072,10 +1073,12 @@ export declare class DescribePlaybooksRequest extends $tea.Model {
|
|
|
1072
1073
|
endMillis?: number;
|
|
1073
1074
|
lang?: string;
|
|
1074
1075
|
name?: string;
|
|
1076
|
+
order?: string;
|
|
1075
1077
|
ownType?: string;
|
|
1076
1078
|
pageNumber?: string;
|
|
1077
1079
|
pageSize?: string;
|
|
1078
1080
|
playbookUuid?: string;
|
|
1081
|
+
sort?: string;
|
|
1079
1082
|
startMillis?: number;
|
|
1080
1083
|
static names(): {
|
|
1081
1084
|
[key: string]: string;
|
|
@@ -2250,6 +2253,7 @@ export declare class DescribeComponentPlaybookResponseBodyPlaybooks extends $tea
|
|
|
2250
2253
|
export declare class DescribeDistinctReleasesResponseBodyRecords extends $tea.Model {
|
|
2251
2254
|
description?: string;
|
|
2252
2255
|
taskflowMd5?: string;
|
|
2256
|
+
taskflowType?: string;
|
|
2253
2257
|
static names(): {
|
|
2254
2258
|
[key: string]: string;
|
|
2255
2259
|
};
|
|
@@ -2468,6 +2472,7 @@ export declare class DescribePlaybooksResponseBodyPlaybooks extends $tea.Model {
|
|
|
2468
2472
|
active?: number;
|
|
2469
2473
|
displayName?: string;
|
|
2470
2474
|
gmtCreate?: number;
|
|
2475
|
+
gmtModified?: string;
|
|
2471
2476
|
lastRuntime?: number;
|
|
2472
2477
|
ownType?: string;
|
|
2473
2478
|
playbookUuid?: string;
|
|
@@ -2529,6 +2534,9 @@ export declare class DescribeProcessTasksResponseBodyProcessTasks extends $tea.M
|
|
|
2529
2534
|
creator?: string;
|
|
2530
2535
|
entityName?: string;
|
|
2531
2536
|
entityType?: string;
|
|
2537
|
+
errCode?: string;
|
|
2538
|
+
errMsg?: string;
|
|
2539
|
+
errTip?: string;
|
|
2532
2540
|
gmtCreateMillis?: number;
|
|
2533
2541
|
gmtModifiedMillis?: number;
|
|
2534
2542
|
inputParams?: string;
|
|
@@ -2542,9 +2550,6 @@ export declare class DescribeProcessTasksResponseBodyProcessTasks extends $tea.M
|
|
|
2542
2550
|
taskId?: string;
|
|
2543
2551
|
taskStatus?: number;
|
|
2544
2552
|
yunCode?: string;
|
|
2545
|
-
errCode?: string;
|
|
2546
|
-
errMsg?: string;
|
|
2547
|
-
errTip?: string;
|
|
2548
2553
|
static names(): {
|
|
2549
2554
|
[key: string]: string;
|
|
2550
2555
|
};
|
|
@@ -2718,143 +2723,766 @@ export default class Client extends OpenApi {
|
|
|
2718
2723
|
getEndpoint(productId: string, regionId: string, endpointRule: string, network: string, suffix: string, endpointMap: {
|
|
2719
2724
|
[key: string]: string;
|
|
2720
2725
|
}, endpoint: string): string;
|
|
2726
|
+
/**
|
|
2727
|
+
* @summary Modifies the statuses of playbooks at a time.
|
|
2728
|
+
*
|
|
2729
|
+
* @param request BatchModifyInstanceStatusRequest
|
|
2730
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2731
|
+
* @return BatchModifyInstanceStatusResponse
|
|
2732
|
+
*/
|
|
2721
2733
|
batchModifyInstanceStatusWithOptions(request: BatchModifyInstanceStatusRequest, runtime: $Util.RuntimeOptions): Promise<BatchModifyInstanceStatusResponse>;
|
|
2734
|
+
/**
|
|
2735
|
+
* @summary Modifies the statuses of playbooks at a time.
|
|
2736
|
+
*
|
|
2737
|
+
* @param request BatchModifyInstanceStatusRequest
|
|
2738
|
+
* @return BatchModifyInstanceStatusResponse
|
|
2739
|
+
*/
|
|
2722
2740
|
batchModifyInstanceStatus(request: BatchModifyInstanceStatusRequest): Promise<BatchModifyInstanceStatusResponse>;
|
|
2741
|
+
/**
|
|
2742
|
+
* @summary Compares configurations between two versions of a published playbook.
|
|
2743
|
+
*
|
|
2744
|
+
* @param request ComparePlaybooksRequest
|
|
2745
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2746
|
+
* @return ComparePlaybooksResponse
|
|
2747
|
+
*/
|
|
2723
2748
|
comparePlaybooksWithOptions(request: ComparePlaybooksRequest, runtime: $Util.RuntimeOptions): Promise<ComparePlaybooksResponse>;
|
|
2749
|
+
/**
|
|
2750
|
+
* @summary Compares configurations between two versions of a published playbook.
|
|
2751
|
+
*
|
|
2752
|
+
* @param request ComparePlaybooksRequest
|
|
2753
|
+
* @return ComparePlaybooksResponse
|
|
2754
|
+
*/
|
|
2724
2755
|
comparePlaybooks(request: ComparePlaybooksRequest): Promise<ComparePlaybooksResponse>;
|
|
2756
|
+
/**
|
|
2757
|
+
* @summary Creates a playbook.
|
|
2758
|
+
*
|
|
2759
|
+
* @param request CreatePlaybookRequest
|
|
2760
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2761
|
+
* @return CreatePlaybookResponse
|
|
2762
|
+
*/
|
|
2725
2763
|
createPlaybookWithOptions(request: CreatePlaybookRequest, runtime: $Util.RuntimeOptions): Promise<CreatePlaybookResponse>;
|
|
2764
|
+
/**
|
|
2765
|
+
* @summary Creates a playbook.
|
|
2766
|
+
*
|
|
2767
|
+
* @param request CreatePlaybookRequest
|
|
2768
|
+
* @return CreatePlaybookResponse
|
|
2769
|
+
*/
|
|
2726
2770
|
createPlaybook(request: CreatePlaybookRequest): Promise<CreatePlaybookResponse>;
|
|
2771
|
+
/**
|
|
2772
|
+
* @summary Debugs a playbook.
|
|
2773
|
+
*
|
|
2774
|
+
* @param request DebugPlaybookRequest
|
|
2775
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2776
|
+
* @return DebugPlaybookResponse
|
|
2777
|
+
*/
|
|
2727
2778
|
debugPlaybookWithOptions(request: DebugPlaybookRequest, runtime: $Util.RuntimeOptions): Promise<DebugPlaybookResponse>;
|
|
2779
|
+
/**
|
|
2780
|
+
* @summary Debugs a playbook.
|
|
2781
|
+
*
|
|
2782
|
+
* @param request DebugPlaybookRequest
|
|
2783
|
+
* @return DebugPlaybookResponse
|
|
2784
|
+
*/
|
|
2728
2785
|
debugPlaybook(request: DebugPlaybookRequest): Promise<DebugPlaybookResponse>;
|
|
2786
|
+
/**
|
|
2787
|
+
* @summary Deletes the assets in a component.
|
|
2788
|
+
*
|
|
2789
|
+
* @param request DeleteComponentAssetRequest
|
|
2790
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2791
|
+
* @return DeleteComponentAssetResponse
|
|
2792
|
+
*/
|
|
2729
2793
|
deleteComponentAssetWithOptions(request: DeleteComponentAssetRequest, runtime: $Util.RuntimeOptions): Promise<DeleteComponentAssetResponse>;
|
|
2794
|
+
/**
|
|
2795
|
+
* @summary Deletes the assets in a component.
|
|
2796
|
+
*
|
|
2797
|
+
* @param request DeleteComponentAssetRequest
|
|
2798
|
+
* @return DeleteComponentAssetResponse
|
|
2799
|
+
*/
|
|
2730
2800
|
deleteComponentAsset(request: DeleteComponentAssetRequest): Promise<DeleteComponentAssetResponse>;
|
|
2801
|
+
/**
|
|
2802
|
+
* @summary Deletes a custom playbook.
|
|
2803
|
+
*
|
|
2804
|
+
* @param request DeletePlaybookRequest
|
|
2805
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2806
|
+
* @return DeletePlaybookResponse
|
|
2807
|
+
*/
|
|
2731
2808
|
deletePlaybookWithOptions(request: DeletePlaybookRequest, runtime: $Util.RuntimeOptions): Promise<DeletePlaybookResponse>;
|
|
2809
|
+
/**
|
|
2810
|
+
* @summary Deletes a custom playbook.
|
|
2811
|
+
*
|
|
2812
|
+
* @param request DeletePlaybookRequest
|
|
2813
|
+
* @return DeletePlaybookResponse
|
|
2814
|
+
*/
|
|
2732
2815
|
deletePlaybook(request: DeletePlaybookRequest): Promise<DeletePlaybookResponse>;
|
|
2816
|
+
/**
|
|
2817
|
+
* @summary Queries the API operations of the cloud service.
|
|
2818
|
+
*
|
|
2819
|
+
* @param request DescribeApiListRequest
|
|
2820
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2821
|
+
* @return DescribeApiListResponse
|
|
2822
|
+
*/
|
|
2733
2823
|
describeApiListWithOptions(request: DescribeApiListRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApiListResponse>;
|
|
2824
|
+
/**
|
|
2825
|
+
* @summary Queries the API operations of the cloud service.
|
|
2826
|
+
*
|
|
2827
|
+
* @param request DescribeApiListRequest
|
|
2828
|
+
* @return DescribeApiListResponse
|
|
2829
|
+
*/
|
|
2734
2830
|
describeApiList(request: DescribeApiListRequest): Promise<DescribeApiListResponse>;
|
|
2831
|
+
/**
|
|
2832
|
+
* @summary Queries the metadata of assets in a component. The metadata of an asset refers to the fields that describe the asset.
|
|
2833
|
+
*
|
|
2834
|
+
* @param request DescribeComponentAssetFormRequest
|
|
2835
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2836
|
+
* @return DescribeComponentAssetFormResponse
|
|
2837
|
+
*/
|
|
2735
2838
|
describeComponentAssetFormWithOptions(request: DescribeComponentAssetFormRequest, runtime: $Util.RuntimeOptions): Promise<DescribeComponentAssetFormResponse>;
|
|
2839
|
+
/**
|
|
2840
|
+
* @summary Queries the metadata of assets in a component. The metadata of an asset refers to the fields that describe the asset.
|
|
2841
|
+
*
|
|
2842
|
+
* @param request DescribeComponentAssetFormRequest
|
|
2843
|
+
* @return DescribeComponentAssetFormResponse
|
|
2844
|
+
*/
|
|
2736
2845
|
describeComponentAssetForm(request: DescribeComponentAssetFormRequest): Promise<DescribeComponentAssetFormResponse>;
|
|
2846
|
+
/**
|
|
2847
|
+
* @summary Queries a list of assets in a component.
|
|
2848
|
+
*
|
|
2849
|
+
* @param request DescribeComponentAssetsRequest
|
|
2850
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2851
|
+
* @return DescribeComponentAssetsResponse
|
|
2852
|
+
*/
|
|
2737
2853
|
describeComponentAssetsWithOptions(request: DescribeComponentAssetsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeComponentAssetsResponse>;
|
|
2854
|
+
/**
|
|
2855
|
+
* @summary Queries a list of assets in a component.
|
|
2856
|
+
*
|
|
2857
|
+
* @param request DescribeComponentAssetsRequest
|
|
2858
|
+
* @return DescribeComponentAssetsResponse
|
|
2859
|
+
*/
|
|
2738
2860
|
describeComponentAssets(request: DescribeComponentAssetsRequest): Promise<DescribeComponentAssetsResponse>;
|
|
2861
|
+
/**
|
|
2862
|
+
* @summary Queries a list of common components that are available.
|
|
2863
|
+
*
|
|
2864
|
+
* @param request DescribeComponentListRequest
|
|
2865
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2866
|
+
* @return DescribeComponentListResponse
|
|
2867
|
+
*/
|
|
2739
2868
|
describeComponentListWithOptions(request: DescribeComponentListRequest, runtime: $Util.RuntimeOptions): Promise<DescribeComponentListResponse>;
|
|
2869
|
+
/**
|
|
2870
|
+
* @summary Queries a list of common components that are available.
|
|
2871
|
+
*
|
|
2872
|
+
* @param request DescribeComponentListRequest
|
|
2873
|
+
* @return DescribeComponentListResponse
|
|
2874
|
+
*/
|
|
2740
2875
|
describeComponentList(request: DescribeComponentListRequest): Promise<DescribeComponentListResponse>;
|
|
2876
|
+
/**
|
|
2877
|
+
* @summary Queries a list of predefined components that are available.
|
|
2878
|
+
*
|
|
2879
|
+
* @param request DescribeComponentPlaybookRequest
|
|
2880
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2881
|
+
* @return DescribeComponentPlaybookResponse
|
|
2882
|
+
*/
|
|
2741
2883
|
describeComponentPlaybookWithOptions(request: DescribeComponentPlaybookRequest, runtime: $Util.RuntimeOptions): Promise<DescribeComponentPlaybookResponse>;
|
|
2884
|
+
/**
|
|
2885
|
+
* @summary Queries a list of predefined components that are available.
|
|
2886
|
+
*
|
|
2887
|
+
* @param request DescribeComponentPlaybookRequest
|
|
2888
|
+
* @return DescribeComponentPlaybookResponse
|
|
2889
|
+
*/
|
|
2742
2890
|
describeComponentPlaybook(request: DescribeComponentPlaybookRequest): Promise<DescribeComponentPlaybookResponse>;
|
|
2891
|
+
/**
|
|
2892
|
+
* @summary Queries the JavaScript file of a component. The component uses the returned JavaScript file for page rendering.
|
|
2893
|
+
*
|
|
2894
|
+
* @param request DescribeComponentsJsRequest
|
|
2895
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2896
|
+
* @return DescribeComponentsJsResponse
|
|
2897
|
+
*/
|
|
2743
2898
|
describeComponentsJsWithOptions(request: DescribeComponentsJsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeComponentsJsResponse>;
|
|
2899
|
+
/**
|
|
2900
|
+
* @summary Queries the JavaScript file of a component. The component uses the returned JavaScript file for page rendering.
|
|
2901
|
+
*
|
|
2902
|
+
* @param request DescribeComponentsJsRequest
|
|
2903
|
+
* @return DescribeComponentsJsResponse
|
|
2904
|
+
*/
|
|
2744
2905
|
describeComponentsJs(request: DescribeComponentsJsRequest): Promise<DescribeComponentsJsResponse>;
|
|
2906
|
+
/**
|
|
2907
|
+
* @summary Queries the information about the published versions of a playbook after deduplication.
|
|
2908
|
+
*
|
|
2909
|
+
* @param request DescribeDistinctReleasesRequest
|
|
2910
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2911
|
+
* @return DescribeDistinctReleasesResponse
|
|
2912
|
+
*/
|
|
2745
2913
|
describeDistinctReleasesWithOptions(request: DescribeDistinctReleasesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDistinctReleasesResponse>;
|
|
2914
|
+
/**
|
|
2915
|
+
* @summary Queries the information about the published versions of a playbook after deduplication.
|
|
2916
|
+
*
|
|
2917
|
+
* @param request DescribeDistinctReleasesRequest
|
|
2918
|
+
* @return DescribeDistinctReleasesResponse
|
|
2919
|
+
*/
|
|
2746
2920
|
describeDistinctReleases(request: DescribeDistinctReleasesRequest): Promise<DescribeDistinctReleasesResponse>;
|
|
2921
|
+
/**
|
|
2922
|
+
* @summary Queries enumeration items that are required by a cloud service.
|
|
2923
|
+
*
|
|
2924
|
+
* @param request DescribeEnumItemsRequest
|
|
2925
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2926
|
+
* @return DescribeEnumItemsResponse
|
|
2927
|
+
*/
|
|
2747
2928
|
describeEnumItemsWithOptions(request: DescribeEnumItemsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeEnumItemsResponse>;
|
|
2929
|
+
/**
|
|
2930
|
+
* @summary Queries enumeration items that are required by a cloud service.
|
|
2931
|
+
*
|
|
2932
|
+
* @param request DescribeEnumItemsRequest
|
|
2933
|
+
* @return DescribeEnumItemsResponse
|
|
2934
|
+
*/
|
|
2748
2935
|
describeEnumItems(request: DescribeEnumItemsRequest): Promise<DescribeEnumItemsResponse>;
|
|
2936
|
+
/**
|
|
2937
|
+
* @summary Queries the playbooks that are available for an automatic response plan.
|
|
2938
|
+
*
|
|
2939
|
+
* @param request DescribeExecutePlaybooksRequest
|
|
2940
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2941
|
+
* @return DescribeExecutePlaybooksResponse
|
|
2942
|
+
*/
|
|
2749
2943
|
describeExecutePlaybooksWithOptions(request: DescribeExecutePlaybooksRequest, runtime: $Util.RuntimeOptions): Promise<DescribeExecutePlaybooksResponse>;
|
|
2944
|
+
/**
|
|
2945
|
+
* @summary Queries the playbooks that are available for an automatic response plan.
|
|
2946
|
+
*
|
|
2947
|
+
* @param request DescribeExecutePlaybooksRequest
|
|
2948
|
+
* @return DescribeExecutePlaybooksResponse
|
|
2949
|
+
*/
|
|
2750
2950
|
describeExecutePlaybooks(request: DescribeExecutePlaybooksRequest): Promise<DescribeExecutePlaybooksResponse>;
|
|
2951
|
+
/**
|
|
2952
|
+
* @summary Queries the global configuration information about a cloud service.
|
|
2953
|
+
*
|
|
2954
|
+
* @param request DescribeFieldRequest
|
|
2955
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2956
|
+
* @return DescribeFieldResponse
|
|
2957
|
+
*/
|
|
2751
2958
|
describeFieldWithOptions(request: DescribeFieldRequest, runtime: $Util.RuntimeOptions): Promise<DescribeFieldResponse>;
|
|
2959
|
+
/**
|
|
2960
|
+
* @summary Queries the global configuration information about a cloud service.
|
|
2961
|
+
*
|
|
2962
|
+
* @param request DescribeFieldRequest
|
|
2963
|
+
* @return DescribeFieldResponse
|
|
2964
|
+
*/
|
|
2752
2965
|
describeField(request: DescribeFieldRequest): Promise<DescribeFieldResponse>;
|
|
2966
|
+
/**
|
|
2967
|
+
* @summary Queries the output structure information of each node in a playbook based on the most recent running record of the playbook.
|
|
2968
|
+
*
|
|
2969
|
+
* @param request DescribeLatestRecordSchemaRequest
|
|
2970
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2971
|
+
* @return DescribeLatestRecordSchemaResponse
|
|
2972
|
+
*/
|
|
2753
2973
|
describeLatestRecordSchemaWithOptions(request: DescribeLatestRecordSchemaRequest, runtime: $Util.RuntimeOptions): Promise<DescribeLatestRecordSchemaResponse>;
|
|
2974
|
+
/**
|
|
2975
|
+
* @summary Queries the output structure information of each node in a playbook based on the most recent running record of the playbook.
|
|
2976
|
+
*
|
|
2977
|
+
* @param request DescribeLatestRecordSchemaRequest
|
|
2978
|
+
* @return DescribeLatestRecordSchemaResponse
|
|
2979
|
+
*/
|
|
2754
2980
|
describeLatestRecordSchema(request: DescribeLatestRecordSchemaRequest): Promise<DescribeLatestRecordSchemaResponse>;
|
|
2981
|
+
/**
|
|
2982
|
+
* @summary Queries recommended dynamic input parameters of a component for playbook orchestration.
|
|
2983
|
+
*
|
|
2984
|
+
* @param request DescribeNodeParamTagsRequest
|
|
2985
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2986
|
+
* @return DescribeNodeParamTagsResponse
|
|
2987
|
+
*/
|
|
2755
2988
|
describeNodeParamTagsWithOptions(request: DescribeNodeParamTagsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeNodeParamTagsResponse>;
|
|
2989
|
+
/**
|
|
2990
|
+
* @summary Queries recommended dynamic input parameters of a component for playbook orchestration.
|
|
2991
|
+
*
|
|
2992
|
+
* @param request DescribeNodeParamTagsRequest
|
|
2993
|
+
* @return DescribeNodeParamTagsResponse
|
|
2994
|
+
*/
|
|
2756
2995
|
describeNodeParamTags(request: DescribeNodeParamTagsRequest): Promise<DescribeNodeParamTagsResponse>;
|
|
2996
|
+
/**
|
|
2997
|
+
* @summary Queries the nodes that reference the same node in a playbook.
|
|
2998
|
+
*
|
|
2999
|
+
* @param request DescribeNodeUsedInfosRequest
|
|
3000
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3001
|
+
* @return DescribeNodeUsedInfosResponse
|
|
3002
|
+
*/
|
|
2757
3003
|
describeNodeUsedInfosWithOptions(request: DescribeNodeUsedInfosRequest, runtime: $Util.RuntimeOptions): Promise<DescribeNodeUsedInfosResponse>;
|
|
3004
|
+
/**
|
|
3005
|
+
* @summary Queries the nodes that reference the same node in a playbook.
|
|
3006
|
+
*
|
|
3007
|
+
* @param request DescribeNodeUsedInfosRequest
|
|
3008
|
+
* @return DescribeNodeUsedInfosResponse
|
|
3009
|
+
*/
|
|
2758
3010
|
describeNodeUsedInfos(request: DescribeNodeUsedInfosRequest): Promise<DescribeNodeUsedInfosResponse>;
|
|
3011
|
+
/**
|
|
3012
|
+
* @summary Queries the XML configuration of a playbook.
|
|
3013
|
+
*
|
|
3014
|
+
* @param request DescribePlaybookRequest
|
|
3015
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3016
|
+
* @return DescribePlaybookResponse
|
|
3017
|
+
*/
|
|
2759
3018
|
describePlaybookWithOptions(request: DescribePlaybookRequest, runtime: $Util.RuntimeOptions): Promise<DescribePlaybookResponse>;
|
|
3019
|
+
/**
|
|
3020
|
+
* @summary Queries the XML configuration of a playbook.
|
|
3021
|
+
*
|
|
3022
|
+
* @param request DescribePlaybookRequest
|
|
3023
|
+
* @return DescribePlaybookResponse
|
|
3024
|
+
*/
|
|
2760
3025
|
describePlaybook(request: DescribePlaybookRequest): Promise<DescribePlaybookResponse>;
|
|
3026
|
+
/**
|
|
3027
|
+
* @summary Queries the input and output parameter configurations of a playbook.
|
|
3028
|
+
*
|
|
3029
|
+
* @param request DescribePlaybookInputOutputRequest
|
|
3030
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3031
|
+
* @return DescribePlaybookInputOutputResponse
|
|
3032
|
+
*/
|
|
2761
3033
|
describePlaybookInputOutputWithOptions(request: DescribePlaybookInputOutputRequest, runtime: $Util.RuntimeOptions): Promise<DescribePlaybookInputOutputResponse>;
|
|
3034
|
+
/**
|
|
3035
|
+
* @summary Queries the input and output parameter configurations of a playbook.
|
|
3036
|
+
*
|
|
3037
|
+
* @param request DescribePlaybookInputOutputRequest
|
|
3038
|
+
* @return DescribePlaybookInputOutputResponse
|
|
3039
|
+
*/
|
|
2762
3040
|
describePlaybookInputOutput(request: DescribePlaybookInputOutputRequest): Promise<DescribePlaybookInputOutputResponse>;
|
|
3041
|
+
/**
|
|
3042
|
+
* @summary Queries the metrics of a playbook. The metrics include the playbook name, playbook description, the number of times that the playbook is run, and the failure rate of the playbook.
|
|
3043
|
+
*
|
|
3044
|
+
* @param request DescribePlaybookMetricsRequest
|
|
3045
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3046
|
+
* @return DescribePlaybookMetricsResponse
|
|
3047
|
+
*/
|
|
2763
3048
|
describePlaybookMetricsWithOptions(request: DescribePlaybookMetricsRequest, runtime: $Util.RuntimeOptions): Promise<DescribePlaybookMetricsResponse>;
|
|
3049
|
+
/**
|
|
3050
|
+
* @summary Queries the metrics of a playbook. The metrics include the playbook name, playbook description, the number of times that the playbook is run, and the failure rate of the playbook.
|
|
3051
|
+
*
|
|
3052
|
+
* @param request DescribePlaybookMetricsRequest
|
|
3053
|
+
* @return DescribePlaybookMetricsResponse
|
|
3054
|
+
*/
|
|
2764
3055
|
describePlaybookMetrics(request: DescribePlaybookMetricsRequest): Promise<DescribePlaybookMetricsResponse>;
|
|
3056
|
+
/**
|
|
3057
|
+
* @summary Queries the historical output data of a component node.
|
|
3058
|
+
*
|
|
3059
|
+
* @param request DescribePlaybookNodesOutputRequest
|
|
3060
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3061
|
+
* @return DescribePlaybookNodesOutputResponse
|
|
3062
|
+
*/
|
|
2765
3063
|
describePlaybookNodesOutputWithOptions(request: DescribePlaybookNodesOutputRequest, runtime: $Util.RuntimeOptions): Promise<DescribePlaybookNodesOutputResponse>;
|
|
3064
|
+
/**
|
|
3065
|
+
* @summary Queries the historical output data of a component node.
|
|
3066
|
+
*
|
|
3067
|
+
* @param request DescribePlaybookNodesOutputRequest
|
|
3068
|
+
* @return DescribePlaybookNodesOutputResponse
|
|
3069
|
+
*/
|
|
2766
3070
|
describePlaybookNodesOutput(request: DescribePlaybookNodesOutputRequest): Promise<DescribePlaybookNodesOutputResponse>;
|
|
3071
|
+
/**
|
|
3072
|
+
* @summary Queries the statistics of Security Orchestration Automation Response (SOAR), such as the numbers of created and enabled playbooks.
|
|
3073
|
+
*
|
|
3074
|
+
* @param request DescribePlaybookNumberMetricsRequest
|
|
3075
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3076
|
+
* @return DescribePlaybookNumberMetricsResponse
|
|
3077
|
+
*/
|
|
2767
3078
|
describePlaybookNumberMetricsWithOptions(request: DescribePlaybookNumberMetricsRequest, runtime: $Util.RuntimeOptions): Promise<DescribePlaybookNumberMetricsResponse>;
|
|
3079
|
+
/**
|
|
3080
|
+
* @summary Queries the statistics of Security Orchestration Automation Response (SOAR), such as the numbers of created and enabled playbooks.
|
|
3081
|
+
*
|
|
3082
|
+
* @param request DescribePlaybookNumberMetricsRequest
|
|
3083
|
+
* @return DescribePlaybookNumberMetricsResponse
|
|
3084
|
+
*/
|
|
2768
3085
|
describePlaybookNumberMetrics(request: DescribePlaybookNumberMetricsRequest): Promise<DescribePlaybookNumberMetricsResponse>;
|
|
3086
|
+
/**
|
|
3087
|
+
* @summary Queries the information about the published versions of a playbook.
|
|
3088
|
+
*
|
|
3089
|
+
* @param request DescribePlaybookReleasesRequest
|
|
3090
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3091
|
+
* @return DescribePlaybookReleasesResponse
|
|
3092
|
+
*/
|
|
2769
3093
|
describePlaybookReleasesWithOptions(request: DescribePlaybookReleasesRequest, runtime: $Util.RuntimeOptions): Promise<DescribePlaybookReleasesResponse>;
|
|
3094
|
+
/**
|
|
3095
|
+
* @summary Queries the information about the published versions of a playbook.
|
|
3096
|
+
*
|
|
3097
|
+
* @param request DescribePlaybookReleasesRequest
|
|
3098
|
+
* @return DescribePlaybookReleasesResponse
|
|
3099
|
+
*/
|
|
2770
3100
|
describePlaybookReleases(request: DescribePlaybookReleasesRequest): Promise<DescribePlaybookReleasesResponse>;
|
|
3101
|
+
/**
|
|
3102
|
+
* @summary Queries playbooks.
|
|
3103
|
+
*
|
|
3104
|
+
* @param request DescribePlaybooksRequest
|
|
3105
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3106
|
+
* @return DescribePlaybooksResponse
|
|
3107
|
+
*/
|
|
2771
3108
|
describePlaybooksWithOptions(request: DescribePlaybooksRequest, runtime: $Util.RuntimeOptions): Promise<DescribePlaybooksResponse>;
|
|
3109
|
+
/**
|
|
3110
|
+
* @summary Queries playbooks.
|
|
3111
|
+
*
|
|
3112
|
+
* @param request DescribePlaybooksRequest
|
|
3113
|
+
* @return DescribePlaybooksResponse
|
|
3114
|
+
*/
|
|
2772
3115
|
describePlaybooks(request: DescribePlaybooksRequest): Promise<DescribePlaybooksResponse>;
|
|
3116
|
+
/**
|
|
3117
|
+
* @summary Queries the details of an API operation.
|
|
3118
|
+
*
|
|
3119
|
+
* @param request DescribePopApiRequest
|
|
3120
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3121
|
+
* @return DescribePopApiResponse
|
|
3122
|
+
*/
|
|
2773
3123
|
describePopApiWithOptions(request: DescribePopApiRequest, runtime: $Util.RuntimeOptions): Promise<DescribePopApiResponse>;
|
|
3124
|
+
/**
|
|
3125
|
+
* @summary Queries the details of an API operation.
|
|
3126
|
+
*
|
|
3127
|
+
* @param request DescribePopApiRequest
|
|
3128
|
+
* @return DescribePopApiResponse
|
|
3129
|
+
*/
|
|
2774
3130
|
describePopApi(request: DescribePopApiRequest): Promise<DescribePopApiResponse>;
|
|
3131
|
+
/**
|
|
3132
|
+
* @summary Queries a list of API operations for an Alibaba Cloud service.
|
|
3133
|
+
*
|
|
3134
|
+
* @param request DescribePopApiItemListRequest
|
|
3135
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3136
|
+
* @return DescribePopApiItemListResponse
|
|
3137
|
+
*/
|
|
2775
3138
|
describePopApiItemListWithOptions(request: DescribePopApiItemListRequest, runtime: $Util.RuntimeOptions): Promise<DescribePopApiItemListResponse>;
|
|
3139
|
+
/**
|
|
3140
|
+
* @summary Queries a list of API operations for an Alibaba Cloud service.
|
|
3141
|
+
*
|
|
3142
|
+
* @param request DescribePopApiItemListRequest
|
|
3143
|
+
* @return DescribePopApiItemListResponse
|
|
3144
|
+
*/
|
|
2776
3145
|
describePopApiItemList(request: DescribePopApiItemListRequest): Promise<DescribePopApiItemListResponse>;
|
|
3146
|
+
/**
|
|
3147
|
+
* @summary Queries the version information of API operations for an Alibaba Cloud service.
|
|
3148
|
+
*
|
|
3149
|
+
* @param request DescribePopApiVersionListRequest
|
|
3150
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3151
|
+
* @return DescribePopApiVersionListResponse
|
|
3152
|
+
*/
|
|
2777
3153
|
describePopApiVersionListWithOptions(request: DescribePopApiVersionListRequest, runtime: $Util.RuntimeOptions): Promise<DescribePopApiVersionListResponse>;
|
|
3154
|
+
/**
|
|
3155
|
+
* @summary Queries the version information of API operations for an Alibaba Cloud service.
|
|
3156
|
+
*
|
|
3157
|
+
* @param request DescribePopApiVersionListRequest
|
|
3158
|
+
* @return DescribePopApiVersionListResponse
|
|
3159
|
+
*/
|
|
2778
3160
|
describePopApiVersionList(request: DescribePopApiVersionListRequest): Promise<DescribePopApiVersionListResponse>;
|
|
3161
|
+
/**
|
|
3162
|
+
* @summary Queries the information about handling tasks. When you use Security Orchestration Automation Response (SOAR) to handle events, handling tasks are generated in the handling center.
|
|
3163
|
+
*
|
|
3164
|
+
* @param request DescribeProcessTasksRequest
|
|
3165
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3166
|
+
* @return DescribeProcessTasksResponse
|
|
3167
|
+
*/
|
|
2779
3168
|
describeProcessTasksWithOptions(request: DescribeProcessTasksRequest, runtime: $Util.RuntimeOptions): Promise<DescribeProcessTasksResponse>;
|
|
3169
|
+
/**
|
|
3170
|
+
* @summary Queries the information about handling tasks. When you use Security Orchestration Automation Response (SOAR) to handle events, handling tasks are generated in the handling center.
|
|
3171
|
+
*
|
|
3172
|
+
* @param request DescribeProcessTasksRequest
|
|
3173
|
+
* @return DescribeProcessTasksResponse
|
|
3174
|
+
*/
|
|
2780
3175
|
describeProcessTasks(request: DescribeProcessTasksRequest): Promise<DescribeProcessTasksResponse>;
|
|
3176
|
+
/**
|
|
3177
|
+
* @summary Queries the data that is returned when a component initiates an action in a playbook task.
|
|
3178
|
+
*
|
|
3179
|
+
* @param request DescribeSoarRecordActionOutputListRequest
|
|
3180
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3181
|
+
* @return DescribeSoarRecordActionOutputListResponse
|
|
3182
|
+
*/
|
|
2781
3183
|
describeSoarRecordActionOutputListWithOptions(request: DescribeSoarRecordActionOutputListRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSoarRecordActionOutputListResponse>;
|
|
3184
|
+
/**
|
|
3185
|
+
* @summary Queries the data that is returned when a component initiates an action in a playbook task.
|
|
3186
|
+
*
|
|
3187
|
+
* @param request DescribeSoarRecordActionOutputListRequest
|
|
3188
|
+
* @return DescribeSoarRecordActionOutputListResponse
|
|
3189
|
+
*/
|
|
2782
3190
|
describeSoarRecordActionOutputList(request: DescribeSoarRecordActionOutputListRequest): Promise<DescribeSoarRecordActionOutputListResponse>;
|
|
3191
|
+
/**
|
|
3192
|
+
* @summary Queries the input and output data of a component action. You can call this operation after a playbook is run.
|
|
3193
|
+
*
|
|
3194
|
+
* @param request DescribeSoarRecordInOutputRequest
|
|
3195
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3196
|
+
* @return DescribeSoarRecordInOutputResponse
|
|
3197
|
+
*/
|
|
2783
3198
|
describeSoarRecordInOutputWithOptions(request: DescribeSoarRecordInOutputRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSoarRecordInOutputResponse>;
|
|
3199
|
+
/**
|
|
3200
|
+
* @summary Queries the input and output data of a component action. You can call this operation after a playbook is run.
|
|
3201
|
+
*
|
|
3202
|
+
* @param request DescribeSoarRecordInOutputRequest
|
|
3203
|
+
* @return DescribeSoarRecordInOutputResponse
|
|
3204
|
+
*/
|
|
2784
3205
|
describeSoarRecordInOutput(request: DescribeSoarRecordInOutputRequest): Promise<DescribeSoarRecordInOutputResponse>;
|
|
3206
|
+
/**
|
|
3207
|
+
* @summary Queries the execution records of a playbook.
|
|
3208
|
+
*
|
|
3209
|
+
* @param request DescribeSoarRecordsRequest
|
|
3210
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3211
|
+
* @return DescribeSoarRecordsResponse
|
|
3212
|
+
*/
|
|
2785
3213
|
describeSoarRecordsWithOptions(request: DescribeSoarRecordsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSoarRecordsResponse>;
|
|
3214
|
+
/**
|
|
3215
|
+
* @summary Queries the execution records of a playbook.
|
|
3216
|
+
*
|
|
3217
|
+
* @param request DescribeSoarRecordsRequest
|
|
3218
|
+
* @return DescribeSoarRecordsResponse
|
|
3219
|
+
*/
|
|
2786
3220
|
describeSoarRecords(request: DescribeSoarRecordsRequest): Promise<DescribeSoarRecordsResponse>;
|
|
3221
|
+
/**
|
|
3222
|
+
* @summary Queries the execution records of a component during the running of a playbook.
|
|
3223
|
+
*
|
|
3224
|
+
* @param request DescribeSoarTaskAndActionsRequest
|
|
3225
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3226
|
+
* @return DescribeSoarTaskAndActionsResponse
|
|
3227
|
+
*/
|
|
2787
3228
|
describeSoarTaskAndActionsWithOptions(request: DescribeSoarTaskAndActionsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSoarTaskAndActionsResponse>;
|
|
3229
|
+
/**
|
|
3230
|
+
* @summary Queries the execution records of a component during the running of a playbook.
|
|
3231
|
+
*
|
|
3232
|
+
* @param request DescribeSoarTaskAndActionsRequest
|
|
3233
|
+
* @return DescribeSoarTaskAndActionsResponse
|
|
3234
|
+
*/
|
|
2788
3235
|
describeSoarTaskAndActions(request: DescribeSoarTaskAndActionsRequest): Promise<DescribeSoarTaskAndActionsResponse>;
|
|
3236
|
+
/**
|
|
3237
|
+
* @summary Queries the commands that can be run to obtain objects.
|
|
3238
|
+
*
|
|
3239
|
+
* @param request DescribeSophonCommandsRequest
|
|
3240
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3241
|
+
* @return DescribeSophonCommandsResponse
|
|
3242
|
+
*/
|
|
2789
3243
|
describeSophonCommandsWithOptions(request: DescribeSophonCommandsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSophonCommandsResponse>;
|
|
3244
|
+
/**
|
|
3245
|
+
* @summary Queries the commands that can be run to obtain objects.
|
|
3246
|
+
*
|
|
3247
|
+
* @param request DescribeSophonCommandsRequest
|
|
3248
|
+
* @return DescribeSophonCommandsResponse
|
|
3249
|
+
*/
|
|
2790
3250
|
describeSophonCommands(request: DescribeSophonCommandsRequest): Promise<DescribeSophonCommandsResponse>;
|
|
3251
|
+
/**
|
|
3252
|
+
* @summary Queries the operational logs of a Python3 script by using the UUID that is returned when the script is run. The UUID is specified by requestUuid.
|
|
3253
|
+
*
|
|
3254
|
+
* @param request DescriberPython3ScriptLogsRequest
|
|
3255
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3256
|
+
* @return DescriberPython3ScriptLogsResponse
|
|
3257
|
+
*/
|
|
2791
3258
|
describerPython3ScriptLogsWithOptions(request: DescriberPython3ScriptLogsRequest, runtime: $Util.RuntimeOptions): Promise<DescriberPython3ScriptLogsResponse>;
|
|
3259
|
+
/**
|
|
3260
|
+
* @summary Queries the operational logs of a Python3 script by using the UUID that is returned when the script is run. The UUID is specified by requestUuid.
|
|
3261
|
+
*
|
|
3262
|
+
* @param request DescriberPython3ScriptLogsRequest
|
|
3263
|
+
* @return DescriberPython3ScriptLogsResponse
|
|
3264
|
+
*/
|
|
2792
3265
|
describerPython3ScriptLogs(request: DescriberPython3ScriptLogsRequest): Promise<DescriberPython3ScriptLogsResponse>;
|
|
3266
|
+
/**
|
|
3267
|
+
* @summary Modifies the information about the asset that is configured for a component.
|
|
3268
|
+
*
|
|
3269
|
+
* @param request ModifyComponentAssetRequest
|
|
3270
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3271
|
+
* @return ModifyComponentAssetResponse
|
|
3272
|
+
*/
|
|
2793
3273
|
modifyComponentAssetWithOptions(request: ModifyComponentAssetRequest, runtime: $Util.RuntimeOptions): Promise<ModifyComponentAssetResponse>;
|
|
3274
|
+
/**
|
|
3275
|
+
* @summary Modifies the information about the asset that is configured for a component.
|
|
3276
|
+
*
|
|
3277
|
+
* @param request ModifyComponentAssetRequest
|
|
3278
|
+
* @return ModifyComponentAssetResponse
|
|
3279
|
+
*/
|
|
2794
3280
|
modifyComponentAsset(request: ModifyComponentAssetRequest): Promise<ModifyComponentAssetResponse>;
|
|
3281
|
+
/**
|
|
3282
|
+
* @summary Modifies the configuration of a playbook.
|
|
3283
|
+
*
|
|
3284
|
+
* @param request ModifyPlaybookRequest
|
|
3285
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3286
|
+
* @return ModifyPlaybookResponse
|
|
3287
|
+
*/
|
|
2795
3288
|
modifyPlaybookWithOptions(request: ModifyPlaybookRequest, runtime: $Util.RuntimeOptions): Promise<ModifyPlaybookResponse>;
|
|
3289
|
+
/**
|
|
3290
|
+
* @summary Modifies the configuration of a playbook.
|
|
3291
|
+
*
|
|
3292
|
+
* @param request ModifyPlaybookRequest
|
|
3293
|
+
* @return ModifyPlaybookResponse
|
|
3294
|
+
*/
|
|
2796
3295
|
modifyPlaybook(request: ModifyPlaybookRequest): Promise<ModifyPlaybookResponse>;
|
|
3296
|
+
/**
|
|
3297
|
+
* @summary Modifies the input and output parameters of a playbook.
|
|
3298
|
+
*
|
|
3299
|
+
* @param request ModifyPlaybookInputOutputRequest
|
|
3300
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3301
|
+
* @return ModifyPlaybookInputOutputResponse
|
|
3302
|
+
*/
|
|
2797
3303
|
modifyPlaybookInputOutputWithOptions(request: ModifyPlaybookInputOutputRequest, runtime: $Util.RuntimeOptions): Promise<ModifyPlaybookInputOutputResponse>;
|
|
3304
|
+
/**
|
|
3305
|
+
* @summary Modifies the input and output parameters of a playbook.
|
|
3306
|
+
*
|
|
3307
|
+
* @param request ModifyPlaybookInputOutputRequest
|
|
3308
|
+
* @return ModifyPlaybookInputOutputResponse
|
|
3309
|
+
*/
|
|
2798
3310
|
modifyPlaybookInputOutput(request: ModifyPlaybookInputOutputRequest): Promise<ModifyPlaybookInputOutputResponse>;
|
|
3311
|
+
/**
|
|
3312
|
+
* @summary Modifies the status of a playbook.
|
|
3313
|
+
*
|
|
3314
|
+
* @param request ModifyPlaybookInstanceStatusRequest
|
|
3315
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3316
|
+
* @return ModifyPlaybookInstanceStatusResponse
|
|
3317
|
+
*/
|
|
2799
3318
|
modifyPlaybookInstanceStatusWithOptions(request: ModifyPlaybookInstanceStatusRequest, runtime: $Util.RuntimeOptions): Promise<ModifyPlaybookInstanceStatusResponse>;
|
|
3319
|
+
/**
|
|
3320
|
+
* @summary Modifies the status of a playbook.
|
|
3321
|
+
*
|
|
3322
|
+
* @param request ModifyPlaybookInstanceStatusRequest
|
|
3323
|
+
* @return ModifyPlaybookInstanceStatusResponse
|
|
3324
|
+
*/
|
|
2800
3325
|
modifyPlaybookInstanceStatus(request: ModifyPlaybookInstanceStatusRequest): Promise<ModifyPlaybookInstanceStatusResponse>;
|
|
3326
|
+
/**
|
|
3327
|
+
* @summary Publishes the playbook. After the playbook is published, the playbook runs based on the new logic.
|
|
3328
|
+
*
|
|
3329
|
+
* @param request PublishPlaybookRequest
|
|
3330
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3331
|
+
* @return PublishPlaybookResponse
|
|
3332
|
+
*/
|
|
2801
3333
|
publishPlaybookWithOptions(request: PublishPlaybookRequest, runtime: $Util.RuntimeOptions): Promise<PublishPlaybookResponse>;
|
|
3334
|
+
/**
|
|
3335
|
+
* @summary Publishes the playbook. After the playbook is published, the playbook runs based on the new logic.
|
|
3336
|
+
*
|
|
3337
|
+
* @param request PublishPlaybookRequest
|
|
3338
|
+
* @return PublishPlaybookResponse
|
|
3339
|
+
*/
|
|
2802
3340
|
publishPlaybook(request: PublishPlaybookRequest): Promise<PublishPlaybookResponse>;
|
|
3341
|
+
/**
|
|
3342
|
+
* @summary Queries all playbooks at a time.
|
|
3343
|
+
*
|
|
3344
|
+
* @param request QueryTreeDataRequest
|
|
3345
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3346
|
+
* @return QueryTreeDataResponse
|
|
3347
|
+
*/
|
|
2803
3348
|
queryTreeDataWithOptions(request: QueryTreeDataRequest, runtime: $Util.RuntimeOptions): Promise<QueryTreeDataResponse>;
|
|
3349
|
+
/**
|
|
3350
|
+
* @summary Queries all playbooks at a time.
|
|
3351
|
+
*
|
|
3352
|
+
* @param request QueryTreeDataRequest
|
|
3353
|
+
* @return QueryTreeDataResponse
|
|
3354
|
+
*/
|
|
2804
3355
|
queryTreeData(request: QueryTreeDataRequest): Promise<QueryTreeDataResponse>;
|
|
3356
|
+
/**
|
|
3357
|
+
* @summary Changes the name of a node in a playbook. You can call this operation during playbook orchestration. After the name of the node is changed, the reference path of the node also changes.
|
|
3358
|
+
*
|
|
3359
|
+
* @param request RenamePlaybookNodeRequest
|
|
3360
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3361
|
+
* @return RenamePlaybookNodeResponse
|
|
3362
|
+
*/
|
|
2805
3363
|
renamePlaybookNodeWithOptions(request: RenamePlaybookNodeRequest, runtime: $Util.RuntimeOptions): Promise<RenamePlaybookNodeResponse>;
|
|
3364
|
+
/**
|
|
3365
|
+
* @summary Changes the name of a node in a playbook. You can call this operation during playbook orchestration. After the name of the node is changed, the reference path of the node also changes.
|
|
3366
|
+
*
|
|
3367
|
+
* @param request RenamePlaybookNodeRequest
|
|
3368
|
+
* @return RenamePlaybookNodeResponse
|
|
3369
|
+
*/
|
|
2806
3370
|
renamePlaybookNode(request: RenamePlaybookNodeRequest): Promise<RenamePlaybookNodeResponse>;
|
|
3371
|
+
/**
|
|
3372
|
+
* @summary Rolls back a playbook to a specific version. You can determine whether to publish the new playbook version during the rollback.
|
|
3373
|
+
*
|
|
3374
|
+
* @param request RevertPlaybookReleaseRequest
|
|
3375
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3376
|
+
* @return RevertPlaybookReleaseResponse
|
|
3377
|
+
*/
|
|
2807
3378
|
revertPlaybookReleaseWithOptions(request: RevertPlaybookReleaseRequest, runtime: $Util.RuntimeOptions): Promise<RevertPlaybookReleaseResponse>;
|
|
3379
|
+
/**
|
|
3380
|
+
* @summary Rolls back a playbook to a specific version. You can determine whether to publish the new playbook version during the rollback.
|
|
3381
|
+
*
|
|
3382
|
+
* @param request RevertPlaybookReleaseRequest
|
|
3383
|
+
* @return RevertPlaybookReleaseResponse
|
|
3384
|
+
*/
|
|
2808
3385
|
revertPlaybookRelease(request: RevertPlaybookReleaseRequest): Promise<RevertPlaybookReleaseResponse>;
|
|
2809
3386
|
/**
|
|
2810
|
-
|
|
2811
|
-
|
|
2812
|
-
|
|
2813
|
-
|
|
2814
|
-
|
|
3387
|
+
* @summary Submits and runs a Python3 script. You can call this operation only for data processing.
|
|
3388
|
+
*
|
|
3389
|
+
* @description Before you call this operation, make sure that you understand the billing method and pricing of Security Orchestration Automation Response (SOAR). For more information, see [Pricing](https://www.aliyun.com/price/product#/sas/detail/sas).
|
|
3390
|
+
*
|
|
3391
|
+
* @param request RunPython3ScriptRequest
|
|
3392
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3393
|
+
* @return RunPython3ScriptResponse
|
|
2815
3394
|
*/
|
|
2816
3395
|
runPython3ScriptWithOptions(request: RunPython3ScriptRequest, runtime: $Util.RuntimeOptions): Promise<RunPython3ScriptResponse>;
|
|
2817
3396
|
/**
|
|
2818
|
-
|
|
2819
|
-
|
|
2820
|
-
|
|
2821
|
-
|
|
3397
|
+
* @summary Submits and runs a Python3 script. You can call this operation only for data processing.
|
|
3398
|
+
*
|
|
3399
|
+
* @description Before you call this operation, make sure that you understand the billing method and pricing of Security Orchestration Automation Response (SOAR). For more information, see [Pricing](https://www.aliyun.com/price/product#/sas/detail/sas).
|
|
3400
|
+
*
|
|
3401
|
+
* @param request RunPython3ScriptRequest
|
|
3402
|
+
* @return RunPython3ScriptResponse
|
|
2822
3403
|
*/
|
|
2823
3404
|
runPython3Script(request: RunPython3ScriptRequest): Promise<RunPython3ScriptResponse>;
|
|
2824
3405
|
/**
|
|
2825
|
-
|
|
2826
|
-
|
|
2827
|
-
|
|
2828
|
-
|
|
2829
|
-
|
|
3406
|
+
* @summary Triggers an enabled custom playbook or a predefined playbook.
|
|
3407
|
+
*
|
|
3408
|
+
* @description Before you call this operation, make sure that you understand the billing methods and pricing of Security Orchestration Automation Response (SOAR). For more information, see [Pricing](https://www.aliyun.com/price/product#/sas/detail/sas).
|
|
3409
|
+
*
|
|
3410
|
+
* @param request TriggerPlaybookRequest
|
|
3411
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3412
|
+
* @return TriggerPlaybookResponse
|
|
2830
3413
|
*/
|
|
2831
3414
|
triggerPlaybookWithOptions(request: TriggerPlaybookRequest, runtime: $Util.RuntimeOptions): Promise<TriggerPlaybookResponse>;
|
|
2832
3415
|
/**
|
|
2833
|
-
|
|
2834
|
-
|
|
2835
|
-
|
|
2836
|
-
|
|
3416
|
+
* @summary Triggers an enabled custom playbook or a predefined playbook.
|
|
3417
|
+
*
|
|
3418
|
+
* @description Before you call this operation, make sure that you understand the billing methods and pricing of Security Orchestration Automation Response (SOAR). For more information, see [Pricing](https://www.aliyun.com/price/product#/sas/detail/sas).
|
|
3419
|
+
*
|
|
3420
|
+
* @param request TriggerPlaybookRequest
|
|
3421
|
+
* @return TriggerPlaybookResponse
|
|
2837
3422
|
*/
|
|
2838
3423
|
triggerPlaybook(request: TriggerPlaybookRequest): Promise<TriggerPlaybookResponse>;
|
|
3424
|
+
/**
|
|
3425
|
+
* @summary Performs an action on a handling task that is generated by the handling center when an event is handled by using Security Orchestration Automation Response (SOAR). For example, you can call this operation to cancel blocking or isolation, or retry blocking.
|
|
3426
|
+
*
|
|
3427
|
+
* @param request TriggerProcessTaskRequest
|
|
3428
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3429
|
+
* @return TriggerProcessTaskResponse
|
|
3430
|
+
*/
|
|
2839
3431
|
triggerProcessTaskWithOptions(request: TriggerProcessTaskRequest, runtime: $Util.RuntimeOptions): Promise<TriggerProcessTaskResponse>;
|
|
3432
|
+
/**
|
|
3433
|
+
* @summary Performs an action on a handling task that is generated by the handling center when an event is handled by using Security Orchestration Automation Response (SOAR). For example, you can call this operation to cancel blocking or isolation, or retry blocking.
|
|
3434
|
+
*
|
|
3435
|
+
* @param request TriggerProcessTaskRequest
|
|
3436
|
+
* @return TriggerProcessTaskResponse
|
|
3437
|
+
*/
|
|
2840
3438
|
triggerProcessTask(request: TriggerProcessTaskRequest): Promise<TriggerProcessTaskResponse>;
|
|
2841
3439
|
/**
|
|
2842
|
-
|
|
2843
|
-
|
|
2844
|
-
|
|
2845
|
-
|
|
2846
|
-
|
|
3440
|
+
* @summary Triggers a playbook or a command.
|
|
3441
|
+
*
|
|
3442
|
+
* @description Before you call this operation, make sure that you understand the billing methods and pricing of Security Orchestration Automation Response (SOAR). For more information, see [Pricing](https://www.aliyun.com/price/product#/sas/detail/sas).
|
|
3443
|
+
*
|
|
3444
|
+
* @param request TriggerSophonPlaybookRequest
|
|
3445
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3446
|
+
* @return TriggerSophonPlaybookResponse
|
|
2847
3447
|
*/
|
|
2848
3448
|
triggerSophonPlaybookWithOptions(request: TriggerSophonPlaybookRequest, runtime: $Util.RuntimeOptions): Promise<TriggerSophonPlaybookResponse>;
|
|
2849
3449
|
/**
|
|
2850
|
-
|
|
2851
|
-
|
|
2852
|
-
|
|
2853
|
-
|
|
3450
|
+
* @summary Triggers a playbook or a command.
|
|
3451
|
+
*
|
|
3452
|
+
* @description Before you call this operation, make sure that you understand the billing methods and pricing of Security Orchestration Automation Response (SOAR). For more information, see [Pricing](https://www.aliyun.com/price/product#/sas/detail/sas).
|
|
3453
|
+
*
|
|
3454
|
+
* @param request TriggerSophonPlaybookRequest
|
|
3455
|
+
* @return TriggerSophonPlaybookResponse
|
|
2854
3456
|
*/
|
|
2855
3457
|
triggerSophonPlaybook(request: TriggerSophonPlaybookRequest): Promise<TriggerSophonPlaybookResponse>;
|
|
3458
|
+
/**
|
|
3459
|
+
* @summary Checks whether the configuration of the playbook is correct and whether the logic of the orchestration is reasonable.
|
|
3460
|
+
*
|
|
3461
|
+
* @param request VerifyPlaybookRequest
|
|
3462
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3463
|
+
* @return VerifyPlaybookResponse
|
|
3464
|
+
*/
|
|
2856
3465
|
verifyPlaybookWithOptions(request: VerifyPlaybookRequest, runtime: $Util.RuntimeOptions): Promise<VerifyPlaybookResponse>;
|
|
3466
|
+
/**
|
|
3467
|
+
* @summary Checks whether the configuration of the playbook is correct and whether the logic of the orchestration is reasonable.
|
|
3468
|
+
*
|
|
3469
|
+
* @param request VerifyPlaybookRequest
|
|
3470
|
+
* @return VerifyPlaybookResponse
|
|
3471
|
+
*/
|
|
2857
3472
|
verifyPlaybook(request: VerifyPlaybookRequest): Promise<VerifyPlaybookResponse>;
|
|
3473
|
+
/**
|
|
3474
|
+
* @summary Checks whether the syntax of a Python code snippet is correct.
|
|
3475
|
+
*
|
|
3476
|
+
* @param request VerifyPythonFileRequest
|
|
3477
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3478
|
+
* @return VerifyPythonFileResponse
|
|
3479
|
+
*/
|
|
2858
3480
|
verifyPythonFileWithOptions(request: VerifyPythonFileRequest, runtime: $Util.RuntimeOptions): Promise<VerifyPythonFileResponse>;
|
|
3481
|
+
/**
|
|
3482
|
+
* @summary Checks whether the syntax of a Python code snippet is correct.
|
|
3483
|
+
*
|
|
3484
|
+
* @param request VerifyPythonFileRequest
|
|
3485
|
+
* @return VerifyPythonFileResponse
|
|
3486
|
+
*/
|
|
2859
3487
|
verifyPythonFile(request: VerifyPythonFileRequest): Promise<VerifyPythonFileResponse>;
|
|
2860
3488
|
}
|