You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* The client token that is used to ensure the idempotence of the request.
2896
+
*
2897
+
* You can use the client to generate the token, but you must make sure that the token is unique among different requests. The token can contain only ASCII characters.
2898
+
*
2899
+
* > If you do not specify this parameter, the system automatically uses the **request ID** as the **client token**. The **request ID** may be different for each request.
2900
+
*
2882
2901
* @example
2883
2902
* 02fb3da4-130e-11e9-8e44-00****
2884
2903
*/
2885
2904
clientToken?: string;
2886
2905
/**
2906
+
* @remarks
2907
+
* Specifies whether to perform only a dry run, without performing the actual request. Valid values:
2908
+
*
2909
+
* * **true**: performs only a dry run.
2910
+
* * **false** (default): performs a dry run and performs the actual request.
2911
+
*
2887
2912
* @example
2888
2913
* false
2889
2914
*/
2890
2915
dryRun?: boolean;
2891
2916
/**
2892
2917
* @remarks
2918
+
* The ECR ID.
2919
+
*
2893
2920
* This parameter is required.
2894
2921
*
2895
2922
* @example
@@ -2898,6 +2925,8 @@ export class DeactivateFlowLogRequest extends $dara.Model {
2898
2925
ecrId?: string;
2899
2926
/**
2900
2927
* @remarks
2928
+
* The ID of the flow log.
2929
+
*
2901
2930
* This parameter is required.
2902
2931
*
2903
2932
* @example
@@ -2933,41 +2962,70 @@ export class DeactivateFlowLogRequest extends $dara.Model {
* The response code. The status code 200 indicates that the request was successful. Other status codes indicate that the request failed. For more information, see Error codes.
2975
+
*
2941
2976
* @example
2942
2977
* 200
2943
2978
*/
2944
2979
code?: string;
2945
2980
/**
2981
+
* @remarks
2982
+
* The dynamic error code.
2983
+
*
2946
2984
* @example
2947
2985
* IllegalParamFormat.EcrId
2948
2986
*/
2949
2987
dynamicCode?: string;
2950
2988
/**
2989
+
* @remarks
2990
+
* The dynamic part in the error message. This parameter is used to replace the `%s` variable in **ErrMessage**.
2991
+
*
2992
+
* > For example, if the value of **ErrMessage** is **The Value of Input Parameter %s is not valid** and the value of **DynamicMessage** is **DtsJobId**, the request parameter **DtsJobId** is invalid.
2993
+
*
2951
2994
* @example
2952
2995
* The param format of EcrId **** is illegal.
2953
2996
*/
2954
2997
dynamicMessage?: string;
2955
2998
/**
2999
+
* @remarks
3000
+
* The HTTP status code.
3001
+
*
2956
3002
* @example
2957
3003
* 200
2958
3004
*/
2959
3005
httpStatusCode?: number;
2960
3006
/**
3007
+
* @remarks
3008
+
* The returned message.
3009
+
*
2961
3010
* @example
2962
3011
* OK
2963
3012
*/
2964
3013
message?: string;
2965
3014
/**
3015
+
* @remarks
3016
+
* The request ID.
3017
+
*
2966
3018
* @example
2967
3019
* 6FABF516-FED3-5697-BDA2-B18C5D9A****
2968
3020
*/
2969
3021
requestId?: string;
2970
3022
/**
3023
+
* @remarks
3024
+
* Indicates whether the request was successful. Valid values:
0 commit comments