API generation
This commit is contained in:
19
api/requestParams.d.ts
vendored
19
api/requestParams.d.ts
vendored
@ -1365,6 +1365,7 @@ export interface CcrUnfollow extends Generic {
|
||||
|
||||
export interface DataFrameDeleteDataFrameTransform extends Generic {
|
||||
transform_id: string;
|
||||
force?: boolean;
|
||||
}
|
||||
|
||||
export interface DataFrameGetDataFrameTransform extends Generic {
|
||||
@ -1387,6 +1388,7 @@ export interface DataFramePreviewDataFrameTransform<T = any> extends Generic {
|
||||
|
||||
export interface DataFramePutDataFrameTransform<T = any> extends Generic {
|
||||
transform_id: string;
|
||||
defer_validation?: boolean;
|
||||
body: T;
|
||||
}
|
||||
|
||||
@ -2026,6 +2028,23 @@ export interface SecurityPutUser<T = any> extends Generic {
|
||||
body: T;
|
||||
}
|
||||
|
||||
export interface SlmDeleteLifecycle extends Generic {
|
||||
policy?: string;
|
||||
}
|
||||
|
||||
export interface SlmExecuteLifecycle extends Generic {
|
||||
policy_id?: string;
|
||||
}
|
||||
|
||||
export interface SlmGetLifecycle extends Generic {
|
||||
policy_id?: string;
|
||||
}
|
||||
|
||||
export interface SlmPutLifecycle<T = any> extends Generic {
|
||||
policy_id?: string;
|
||||
body?: T;
|
||||
}
|
||||
|
||||
export interface SqlClearCursor<T = any> extends Generic {
|
||||
body: T;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user