@crowdstrike/foundry-js 0.19.0 → 0.20.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/abstraction/api-integration.d.ts +4 -4
- package/dist/abstraction/cloud-function.d.ts +1 -0
- package/dist/apis/alerts/index.d.ts +10 -20
- package/dist/apis/customobjects/index.d.ts +2 -4
- package/dist/apis/detects/index.d.ts +6 -12
- package/dist/apis/devices/index.d.ts +16 -32
- package/dist/apis/faas-gateway/index.d.ts +9 -2
- package/dist/apis/fwmgr/index.d.ts +14 -28
- package/dist/apis/incidents/index.d.ts +5 -10
- package/dist/apis/loggingapi/index.d.ts +3 -6
- package/dist/apis/plugins/index.d.ts +8 -4
- package/dist/apis/public-api.d.ts +1 -1
- package/dist/apis/remote-response/index.d.ts +3 -6
- package/dist/apis/user-management/index.d.ts +1 -2
- package/dist/apis/workflows/index.d.ts +2 -4
- package/dist/index.js +29 -8
- package/package.json +26 -26
- package/dist/index.js.map +0 -1
|
@@ -7,11 +7,11 @@ interface ApiIntegrationDefinition {
|
|
|
7
7
|
interface ExecuteParameters {
|
|
8
8
|
request?: {
|
|
9
9
|
params?: {
|
|
10
|
-
path?: Record<
|
|
11
|
-
query?: Record<
|
|
12
|
-
header?: Record<
|
|
10
|
+
path?: Record<string, unknown>;
|
|
11
|
+
query?: Record<string, unknown>;
|
|
12
|
+
header?: Record<string, unknown>;
|
|
13
13
|
};
|
|
14
|
-
json?: Record<
|
|
14
|
+
json?: Record<string, unknown> | Record<string, unknown>[];
|
|
15
15
|
};
|
|
16
16
|
}
|
|
17
17
|
export declare class ApiIntegration<DATA extends LocalData = LocalData> {
|
|
@@ -51,8 +51,7 @@ export interface GetQueriesAlertsV2RequestMessage extends BaseApiRequestMessage<
|
|
|
51
51
|
}
|
|
52
52
|
export type PatchCombinedAlertsV2QueryParams = BaseUrlParams;
|
|
53
53
|
export type PatchCombinedAlertsV2ApiResponse = ApiResponsePayload;
|
|
54
|
-
export
|
|
55
|
-
}
|
|
54
|
+
export type PatchCombinedAlertsV2PostData = Record<string, never>;
|
|
56
55
|
export type PatchCombinedAlertsV2ResponseMessage = BaseApiResponseMessage<PatchCombinedAlertsV2ApiResponse>;
|
|
57
56
|
export interface PatchCombinedAlertsV2RequestMessage extends BaseApiRequestMessage<PatchCombinedAlertsV2QueryParams, PatchCombinedAlertsV2PostData> {
|
|
58
57
|
api: AlertsRequestApi;
|
|
@@ -63,8 +62,7 @@ export interface PatchCombinedAlertsV3QueryParams extends BaseUrlParams {
|
|
|
63
62
|
includeHidden?: QueryParam;
|
|
64
63
|
}
|
|
65
64
|
export type PatchCombinedAlertsV3ApiResponse = ApiResponsePayload;
|
|
66
|
-
export
|
|
67
|
-
}
|
|
65
|
+
export type PatchCombinedAlertsV3PostData = Record<string, never>;
|
|
68
66
|
export type PatchCombinedAlertsV3ResponseMessage = BaseApiResponseMessage<PatchCombinedAlertsV3ApiResponse>;
|
|
69
67
|
export interface PatchCombinedAlertsV3RequestMessage extends BaseApiRequestMessage<PatchCombinedAlertsV3QueryParams, PatchCombinedAlertsV3PostData> {
|
|
70
68
|
api: AlertsRequestApi;
|
|
@@ -72,8 +70,7 @@ export interface PatchCombinedAlertsV3RequestMessage extends BaseApiRequestMessa
|
|
|
72
70
|
}
|
|
73
71
|
export type PatchEntitiesAlertsV2QueryParams = BaseUrlParams;
|
|
74
72
|
export type PatchEntitiesAlertsV2ApiResponse = ApiResponsePayload;
|
|
75
|
-
export
|
|
76
|
-
}
|
|
73
|
+
export type PatchEntitiesAlertsV2PostData = Record<string, never>;
|
|
77
74
|
export type PatchEntitiesAlertsV2ResponseMessage = BaseApiResponseMessage<PatchEntitiesAlertsV2ApiResponse>;
|
|
78
75
|
export interface PatchEntitiesAlertsV2RequestMessage extends BaseApiRequestMessage<PatchEntitiesAlertsV2QueryParams, PatchEntitiesAlertsV2PostData> {
|
|
79
76
|
api: AlertsRequestApi;
|
|
@@ -83,8 +80,7 @@ export interface PatchEntitiesAlertsV3QueryParams extends BaseUrlParams {
|
|
|
83
80
|
msspRouteCid?: QueryParam;
|
|
84
81
|
}
|
|
85
82
|
export type PatchEntitiesAlertsV3ApiResponse = ApiResponsePayload;
|
|
86
|
-
export
|
|
87
|
-
}
|
|
83
|
+
export type PatchEntitiesAlertsV3PostData = Record<string, never>;
|
|
88
84
|
export type PatchEntitiesAlertsV3ResponseMessage = BaseApiResponseMessage<PatchEntitiesAlertsV3ApiResponse>;
|
|
89
85
|
export interface PatchEntitiesAlertsV3RequestMessage extends BaseApiRequestMessage<PatchEntitiesAlertsV3QueryParams, PatchEntitiesAlertsV3PostData> {
|
|
90
86
|
api: AlertsRequestApi;
|
|
@@ -94,8 +90,7 @@ export interface PatchEntitiesSuppressedDevicesV1QueryParams extends BaseUrlPara
|
|
|
94
90
|
ids?: QueryParam;
|
|
95
91
|
}
|
|
96
92
|
export type PatchEntitiesSuppressedDevicesV1ApiResponse = ApiResponsePayload;
|
|
97
|
-
export
|
|
98
|
-
}
|
|
93
|
+
export type PatchEntitiesSuppressedDevicesV1PostData = Record<string, never>;
|
|
99
94
|
export type PatchEntitiesSuppressedDevicesV1ResponseMessage = BaseApiResponseMessage<PatchEntitiesSuppressedDevicesV1ApiResponse>;
|
|
100
95
|
export interface PatchEntitiesSuppressedDevicesV1RequestMessage extends BaseApiRequestMessage<PatchEntitiesSuppressedDevicesV1QueryParams, PatchEntitiesSuppressedDevicesV1PostData> {
|
|
101
96
|
api: AlertsRequestApi;
|
|
@@ -120,8 +115,7 @@ export interface PostAggregatesAlertsV1QueryParams extends BaseUrlParams {
|
|
|
120
115
|
type?: QueryParam;
|
|
121
116
|
}
|
|
122
117
|
export type PostAggregatesAlertsV1ApiResponse = ApiResponsePayload;
|
|
123
|
-
export
|
|
124
|
-
}
|
|
118
|
+
export type PostAggregatesAlertsV1PostData = Record<string, never>;
|
|
125
119
|
export type PostAggregatesAlertsV1ResponseMessage = BaseApiResponseMessage<PostAggregatesAlertsV1ApiResponse>;
|
|
126
120
|
export interface PostAggregatesAlertsV1RequestMessage extends BaseApiRequestMessage<PostAggregatesAlertsV1QueryParams, PostAggregatesAlertsV1PostData> {
|
|
127
121
|
api: AlertsRequestApi;
|
|
@@ -148,8 +142,7 @@ export interface PostAggregatesAlertsV2QueryParams extends BaseUrlParams {
|
|
|
148
142
|
includeHidden?: QueryParam;
|
|
149
143
|
}
|
|
150
144
|
export type PostAggregatesAlertsV2ApiResponse = ApiResponsePayload;
|
|
151
|
-
export
|
|
152
|
-
}
|
|
145
|
+
export type PostAggregatesAlertsV2PostData = Record<string, never>;
|
|
153
146
|
export type PostAggregatesAlertsV2ResponseMessage = BaseApiResponseMessage<PostAggregatesAlertsV2ApiResponse>;
|
|
154
147
|
export interface PostAggregatesAlertsV2RequestMessage extends BaseApiRequestMessage<PostAggregatesAlertsV2QueryParams, PostAggregatesAlertsV2PostData> {
|
|
155
148
|
api: AlertsRequestApi;
|
|
@@ -159,8 +152,7 @@ export interface PostEntitiesAlertsV1QueryParams extends BaseUrlParams {
|
|
|
159
152
|
ids?: QueryParam;
|
|
160
153
|
}
|
|
161
154
|
export type PostEntitiesAlertsV1ApiResponse = ApiResponsePayload;
|
|
162
|
-
export
|
|
163
|
-
}
|
|
155
|
+
export type PostEntitiesAlertsV1PostData = Record<string, never>;
|
|
164
156
|
export type PostEntitiesAlertsV1ResponseMessage = BaseApiResponseMessage<PostEntitiesAlertsV1ApiResponse>;
|
|
165
157
|
export interface PostEntitiesAlertsV1RequestMessage extends BaseApiRequestMessage<PostEntitiesAlertsV1QueryParams, PostEntitiesAlertsV1PostData> {
|
|
166
158
|
api: AlertsRequestApi;
|
|
@@ -170,8 +162,7 @@ export interface PostEntitiesAlertsV2QueryParams extends BaseUrlParams {
|
|
|
170
162
|
compositeIds?: QueryParam;
|
|
171
163
|
}
|
|
172
164
|
export type PostEntitiesAlertsV2ApiResponse = ApiResponsePayload;
|
|
173
|
-
export
|
|
174
|
-
}
|
|
165
|
+
export type PostEntitiesAlertsV2PostData = Record<string, never>;
|
|
175
166
|
export type PostEntitiesAlertsV2ResponseMessage = BaseApiResponseMessage<PostEntitiesAlertsV2ApiResponse>;
|
|
176
167
|
export interface PostEntitiesAlertsV2RequestMessage extends BaseApiRequestMessage<PostEntitiesAlertsV2QueryParams, PostEntitiesAlertsV2PostData> {
|
|
177
168
|
api: AlertsRequestApi;
|
|
@@ -179,8 +170,7 @@ export interface PostEntitiesAlertsV2RequestMessage extends BaseApiRequestMessag
|
|
|
179
170
|
}
|
|
180
171
|
export type PostEntitiesSuppressedDevicesV1QueryParams = BaseUrlParams;
|
|
181
172
|
export type PostEntitiesSuppressedDevicesV1ApiResponse = ApiResponsePayload;
|
|
182
|
-
export
|
|
183
|
-
}
|
|
173
|
+
export type PostEntitiesSuppressedDevicesV1PostData = Record<string, never>;
|
|
184
174
|
export type PostEntitiesSuppressedDevicesV1ResponseMessage = BaseApiResponseMessage<PostEntitiesSuppressedDevicesV1ApiResponse>;
|
|
185
175
|
export interface PostEntitiesSuppressedDevicesV1RequestMessage extends BaseApiRequestMessage<PostEntitiesSuppressedDevicesV1QueryParams, PostEntitiesSuppressedDevicesV1PostData> {
|
|
186
176
|
api: AlertsRequestApi;
|
|
@@ -62,8 +62,7 @@ export interface PostV1CollectionsCollectionNameObjectsQueryParams extends BaseU
|
|
|
62
62
|
sort?: QueryParam;
|
|
63
63
|
}
|
|
64
64
|
export type PostV1CollectionsCollectionNameObjectsApiResponse = ApiResponsePayload;
|
|
65
|
-
export
|
|
66
|
-
}
|
|
65
|
+
export type PostV1CollectionsCollectionNameObjectsPostData = Record<string, never>;
|
|
67
66
|
export type PostV1CollectionsCollectionNameObjectsResponseMessage = BaseApiResponseMessage<PostV1CollectionsCollectionNameObjectsApiResponse>;
|
|
68
67
|
export interface PostV1CollectionsCollectionNameObjectsRequestMessage extends BaseApiRequestMessage<PostV1CollectionsCollectionNameObjectsQueryParams, PostV1CollectionsCollectionNameObjectsPostData> {
|
|
69
68
|
api: CustomobjectsRequestApi;
|
|
@@ -71,8 +70,7 @@ export interface PostV1CollectionsCollectionNameObjectsRequestMessage extends Ba
|
|
|
71
70
|
}
|
|
72
71
|
export type PutV1CollectionsCollectionNameObjectsObjectKeyQueryParams = BaseUrlParams;
|
|
73
72
|
export type PutV1CollectionsCollectionNameObjectsObjectKeyApiResponse = ApiResponsePayload;
|
|
74
|
-
export
|
|
75
|
-
}
|
|
73
|
+
export type PutV1CollectionsCollectionNameObjectsObjectKeyPostData = Record<string, never>;
|
|
76
74
|
export type PutV1CollectionsCollectionNameObjectsObjectKeyResponseMessage = BaseApiResponseMessage<PutV1CollectionsCollectionNameObjectsObjectKeyApiResponse>;
|
|
77
75
|
export interface PutV1CollectionsCollectionNameObjectsObjectKeyRequestMessage extends BaseApiRequestMessage<PutV1CollectionsCollectionNameObjectsObjectKeyQueryParams, PutV1CollectionsCollectionNameObjectsObjectKeyPostData> {
|
|
78
76
|
api: CustomobjectsRequestApi;
|
|
@@ -23,8 +23,7 @@ export interface GetEntitiesSuppressedDevicesV1RequestMessage extends BaseApiReq
|
|
|
23
23
|
}
|
|
24
24
|
export type PatchEntitiesDetectsV2QueryParams = BaseUrlParams;
|
|
25
25
|
export type PatchEntitiesDetectsV2ApiResponse = ApiResponsePayload;
|
|
26
|
-
export
|
|
27
|
-
}
|
|
26
|
+
export type PatchEntitiesDetectsV2PostData = Record<string, never>;
|
|
28
27
|
export type PatchEntitiesDetectsV2ResponseMessage = BaseApiResponseMessage<PatchEntitiesDetectsV2ApiResponse>;
|
|
29
28
|
export interface PatchEntitiesDetectsV2RequestMessage extends BaseApiRequestMessage<PatchEntitiesDetectsV2QueryParams, PatchEntitiesDetectsV2PostData> {
|
|
30
29
|
api: DetectsRequestApi;
|
|
@@ -32,8 +31,7 @@ export interface PatchEntitiesDetectsV2RequestMessage extends BaseApiRequestMess
|
|
|
32
31
|
}
|
|
33
32
|
export type PatchQueriesDetectsV1QueryParams = BaseUrlParams;
|
|
34
33
|
export type PatchQueriesDetectsV1ApiResponse = ApiResponsePayload;
|
|
35
|
-
export
|
|
36
|
-
}
|
|
34
|
+
export type PatchQueriesDetectsV1PostData = Record<string, never>;
|
|
37
35
|
export type PatchQueriesDetectsV1ResponseMessage = BaseApiResponseMessage<PatchQueriesDetectsV1ApiResponse>;
|
|
38
36
|
export interface PatchQueriesDetectsV1RequestMessage extends BaseApiRequestMessage<PatchQueriesDetectsV1QueryParams, PatchQueriesDetectsV1PostData> {
|
|
39
37
|
api: DetectsRequestApi;
|
|
@@ -41,8 +39,7 @@ export interface PatchQueriesDetectsV1RequestMessage extends BaseApiRequestMessa
|
|
|
41
39
|
}
|
|
42
40
|
export type PatchQueriesDetectsV2QueryParams = BaseUrlParams;
|
|
43
41
|
export type PatchQueriesDetectsV2ApiResponse = ApiResponsePayload;
|
|
44
|
-
export
|
|
45
|
-
}
|
|
42
|
+
export type PatchQueriesDetectsV2PostData = Record<string, never>;
|
|
46
43
|
export type PatchQueriesDetectsV2ResponseMessage = BaseApiResponseMessage<PatchQueriesDetectsV2ApiResponse>;
|
|
47
44
|
export interface PatchQueriesDetectsV2RequestMessage extends BaseApiRequestMessage<PatchQueriesDetectsV2QueryParams, PatchQueriesDetectsV2PostData> {
|
|
48
45
|
api: DetectsRequestApi;
|
|
@@ -50,8 +47,7 @@ export interface PatchQueriesDetectsV2RequestMessage extends BaseApiRequestMessa
|
|
|
50
47
|
}
|
|
51
48
|
export type PostAggregatesDetectsGetV1QueryParams = BaseUrlParams;
|
|
52
49
|
export type PostAggregatesDetectsGetV1ApiResponse = ApiResponsePayload;
|
|
53
|
-
export
|
|
54
|
-
}
|
|
50
|
+
export type PostAggregatesDetectsGetV1PostData = Record<string, never>;
|
|
55
51
|
export type PostAggregatesDetectsGetV1ResponseMessage = BaseApiResponseMessage<PostAggregatesDetectsGetV1ApiResponse>;
|
|
56
52
|
export interface PostAggregatesDetectsGetV1RequestMessage extends BaseApiRequestMessage<PostAggregatesDetectsGetV1QueryParams, PostAggregatesDetectsGetV1PostData> {
|
|
57
53
|
api: DetectsRequestApi;
|
|
@@ -59,8 +55,7 @@ export interface PostAggregatesDetectsGetV1RequestMessage extends BaseApiRequest
|
|
|
59
55
|
}
|
|
60
56
|
export type PostEntitiesSummariesGetV1QueryParams = BaseUrlParams;
|
|
61
57
|
export type PostEntitiesSummariesGetV1ApiResponse = ApiResponsePayload;
|
|
62
|
-
export
|
|
63
|
-
}
|
|
58
|
+
export type PostEntitiesSummariesGetV1PostData = Record<string, never>;
|
|
64
59
|
export type PostEntitiesSummariesGetV1ResponseMessage = BaseApiResponseMessage<PostEntitiesSummariesGetV1ApiResponse>;
|
|
65
60
|
export interface PostEntitiesSummariesGetV1RequestMessage extends BaseApiRequestMessage<PostEntitiesSummariesGetV1QueryParams, PostEntitiesSummariesGetV1PostData> {
|
|
66
61
|
api: DetectsRequestApi;
|
|
@@ -70,8 +65,7 @@ export interface PostEntitiesSuppressedDevicesV1QueryParams extends BaseUrlParam
|
|
|
70
65
|
ids?: QueryParam;
|
|
71
66
|
}
|
|
72
67
|
export type PostEntitiesSuppressedDevicesV1ApiResponse = ApiResponsePayload;
|
|
73
|
-
export
|
|
74
|
-
}
|
|
68
|
+
export type PostEntitiesSuppressedDevicesV1PostData = Record<string, never>;
|
|
75
69
|
export type PostEntitiesSuppressedDevicesV1ResponseMessage = BaseApiResponseMessage<PostEntitiesSuppressedDevicesV1ApiResponse>;
|
|
76
70
|
export interface PostEntitiesSuppressedDevicesV1RequestMessage extends BaseApiRequestMessage<PostEntitiesSuppressedDevicesV1QueryParams, PostEntitiesSuppressedDevicesV1PostData> {
|
|
77
71
|
api: DetectsRequestApi;
|
|
@@ -171,8 +171,7 @@ export interface GetQueriesGroupsV1RequestMessage extends BaseApiRequestMessage<
|
|
|
171
171
|
}
|
|
172
172
|
export type PatchEntitiesDevicesTagsV2QueryParams = BaseUrlParams;
|
|
173
173
|
export type PatchEntitiesDevicesTagsV2ApiResponse = ApiResponsePayload;
|
|
174
|
-
export
|
|
175
|
-
}
|
|
174
|
+
export type PatchEntitiesDevicesTagsV2PostData = Record<string, never>;
|
|
176
175
|
export type PatchEntitiesDevicesTagsV2ResponseMessage = BaseApiResponseMessage<PatchEntitiesDevicesTagsV2ApiResponse>;
|
|
177
176
|
export interface PatchEntitiesDevicesTagsV2RequestMessage extends BaseApiRequestMessage<PatchEntitiesDevicesTagsV2QueryParams, PatchEntitiesDevicesTagsV2PostData> {
|
|
178
177
|
api: DevicesRequestApi;
|
|
@@ -182,8 +181,7 @@ export interface PatchEntitiesDevicesV1QueryParams extends BaseUrlParams {
|
|
|
182
181
|
ids: QueryParam;
|
|
183
182
|
}
|
|
184
183
|
export type PatchEntitiesDevicesV1ApiResponse = ApiResponsePayload;
|
|
185
|
-
export
|
|
186
|
-
}
|
|
184
|
+
export type PatchEntitiesDevicesV1PostData = Record<string, never>;
|
|
187
185
|
export type PatchEntitiesDevicesV1ResponseMessage = BaseApiResponseMessage<PatchEntitiesDevicesV1ApiResponse>;
|
|
188
186
|
export interface PatchEntitiesDevicesV1RequestMessage extends BaseApiRequestMessage<PatchEntitiesDevicesV1QueryParams, PatchEntitiesDevicesV1PostData> {
|
|
189
187
|
api: DevicesRequestApi;
|
|
@@ -191,8 +189,7 @@ export interface PatchEntitiesDevicesV1RequestMessage extends BaseApiRequestMess
|
|
|
191
189
|
}
|
|
192
190
|
export type PatchEntitiesGroupsV1QueryParams = BaseUrlParams;
|
|
193
191
|
export type PatchEntitiesGroupsV1ApiResponse = ApiResponsePayload;
|
|
194
|
-
export
|
|
195
|
-
}
|
|
192
|
+
export type PatchEntitiesGroupsV1PostData = Record<string, never>;
|
|
196
193
|
export type PatchEntitiesGroupsV1ResponseMessage = BaseApiResponseMessage<PatchEntitiesGroupsV1ApiResponse>;
|
|
197
194
|
export interface PatchEntitiesGroupsV1RequestMessage extends BaseApiRequestMessage<PatchEntitiesGroupsV1QueryParams, PatchEntitiesGroupsV1PostData> {
|
|
198
195
|
api: DevicesRequestApi;
|
|
@@ -202,8 +199,7 @@ export interface PostAggregatesDevicesGetV1QueryParams extends BaseUrlParams {
|
|
|
202
199
|
groupId?: QueryParam;
|
|
203
200
|
}
|
|
204
201
|
export type PostAggregatesDevicesGetV1ApiResponse = ApiResponsePayload;
|
|
205
|
-
export
|
|
206
|
-
}
|
|
202
|
+
export type PostAggregatesDevicesGetV1PostData = Record<string, never>;
|
|
207
203
|
export type PostAggregatesDevicesGetV1ResponseMessage = BaseApiResponseMessage<PostAggregatesDevicesGetV1ApiResponse>;
|
|
208
204
|
export interface PostAggregatesDevicesGetV1RequestMessage extends BaseApiRequestMessage<PostAggregatesDevicesGetV1QueryParams, PostAggregatesDevicesGetV1PostData> {
|
|
209
205
|
api: DevicesRequestApi;
|
|
@@ -213,8 +209,7 @@ export interface PostAggregatesFgaHostsGetV1QueryParams extends BaseUrlParams {
|
|
|
213
209
|
groupId?: QueryParam;
|
|
214
210
|
}
|
|
215
211
|
export type PostAggregatesFgaHostsGetV1ApiResponse = ApiResponsePayload;
|
|
216
|
-
export
|
|
217
|
-
}
|
|
212
|
+
export type PostAggregatesFgaHostsGetV1PostData = Record<string, never>;
|
|
218
213
|
export type PostAggregatesFgaHostsGetV1ResponseMessage = BaseApiResponseMessage<PostAggregatesFgaHostsGetV1ApiResponse>;
|
|
219
214
|
export interface PostAggregatesFgaHostsGetV1RequestMessage extends BaseApiRequestMessage<PostAggregatesFgaHostsGetV1QueryParams, PostAggregatesFgaHostsGetV1PostData> {
|
|
220
215
|
api: DevicesRequestApi;
|
|
@@ -222,8 +217,7 @@ export interface PostAggregatesFgaHostsGetV1RequestMessage extends BaseApiReques
|
|
|
222
217
|
}
|
|
223
218
|
export type PostCombinedDevicesLoginHistoryV1QueryParams = BaseUrlParams;
|
|
224
219
|
export type PostCombinedDevicesLoginHistoryV1ApiResponse = ApiResponsePayload;
|
|
225
|
-
export
|
|
226
|
-
}
|
|
220
|
+
export type PostCombinedDevicesLoginHistoryV1PostData = Record<string, never>;
|
|
227
221
|
export type PostCombinedDevicesLoginHistoryV1ResponseMessage = BaseApiResponseMessage<PostCombinedDevicesLoginHistoryV1ApiResponse>;
|
|
228
222
|
export interface PostCombinedDevicesLoginHistoryV1RequestMessage extends BaseApiRequestMessage<PostCombinedDevicesLoginHistoryV1QueryParams, PostCombinedDevicesLoginHistoryV1PostData> {
|
|
229
223
|
api: DevicesRequestApi;
|
|
@@ -231,8 +225,7 @@ export interface PostCombinedDevicesLoginHistoryV1RequestMessage extends BaseApi
|
|
|
231
225
|
}
|
|
232
226
|
export type PostCombinedFgaHostsLoginHistoryV1QueryParams = BaseUrlParams;
|
|
233
227
|
export type PostCombinedFgaHostsLoginHistoryV1ApiResponse = ApiResponsePayload;
|
|
234
|
-
export
|
|
235
|
-
}
|
|
228
|
+
export type PostCombinedFgaHostsLoginHistoryV1PostData = Record<string, never>;
|
|
236
229
|
export type PostCombinedFgaHostsLoginHistoryV1ResponseMessage = BaseApiResponseMessage<PostCombinedFgaHostsLoginHistoryV1ApiResponse>;
|
|
237
230
|
export interface PostCombinedFgaHostsLoginHistoryV1RequestMessage extends BaseApiRequestMessage<PostCombinedFgaHostsLoginHistoryV1QueryParams, PostCombinedFgaHostsLoginHistoryV1PostData> {
|
|
238
231
|
api: DevicesRequestApi;
|
|
@@ -242,8 +235,7 @@ export interface PostEntitiesDevicesActionsV4QueryParams extends BaseUrlParams {
|
|
|
242
235
|
actionName?: QueryParam;
|
|
243
236
|
}
|
|
244
237
|
export type PostEntitiesDevicesActionsV4ApiResponse = ApiResponsePayload;
|
|
245
|
-
export
|
|
246
|
-
}
|
|
238
|
+
export type PostEntitiesDevicesActionsV4PostData = Record<string, never>;
|
|
247
239
|
export type PostEntitiesDevicesActionsV4ResponseMessage = BaseApiResponseMessage<PostEntitiesDevicesActionsV4ApiResponse>;
|
|
248
240
|
export interface PostEntitiesDevicesActionsV4RequestMessage extends BaseApiRequestMessage<PostEntitiesDevicesActionsV4QueryParams, PostEntitiesDevicesActionsV4PostData> {
|
|
249
241
|
api: DevicesRequestApi;
|
|
@@ -253,8 +245,7 @@ export interface PostEntitiesDevicesHiddenActionsV4QueryParams extends BaseUrlPa
|
|
|
253
245
|
actionName?: QueryParam;
|
|
254
246
|
}
|
|
255
247
|
export type PostEntitiesDevicesHiddenActionsV4ApiResponse = ApiResponsePayload;
|
|
256
|
-
export
|
|
257
|
-
}
|
|
248
|
+
export type PostEntitiesDevicesHiddenActionsV4PostData = Record<string, never>;
|
|
258
249
|
export type PostEntitiesDevicesHiddenActionsV4ResponseMessage = BaseApiResponseMessage<PostEntitiesDevicesHiddenActionsV4ApiResponse>;
|
|
259
250
|
export interface PostEntitiesDevicesHiddenActionsV4RequestMessage extends BaseApiRequestMessage<PostEntitiesDevicesHiddenActionsV4QueryParams, PostEntitiesDevicesHiddenActionsV4PostData> {
|
|
260
251
|
api: DevicesRequestApi;
|
|
@@ -262,8 +253,7 @@ export interface PostEntitiesDevicesHiddenActionsV4RequestMessage extends BaseAp
|
|
|
262
253
|
}
|
|
263
254
|
export type PostEntitiesDevicesReportsV1QueryParams = BaseUrlParams;
|
|
264
255
|
export type PostEntitiesDevicesReportsV1ApiResponse = ApiResponsePayload;
|
|
265
|
-
export
|
|
266
|
-
}
|
|
256
|
+
export type PostEntitiesDevicesReportsV1PostData = Record<string, never>;
|
|
267
257
|
export type PostEntitiesDevicesReportsV1ResponseMessage = BaseApiResponseMessage<PostEntitiesDevicesReportsV1ApiResponse>;
|
|
268
258
|
export interface PostEntitiesDevicesReportsV1RequestMessage extends BaseApiRequestMessage<PostEntitiesDevicesReportsV1QueryParams, PostEntitiesDevicesReportsV1PostData> {
|
|
269
259
|
api: DevicesRequestApi;
|
|
@@ -273,8 +263,7 @@ export interface PostEntitiesDevicesV1QueryParams extends BaseUrlParams {
|
|
|
273
263
|
ids: QueryParam;
|
|
274
264
|
}
|
|
275
265
|
export type PostEntitiesDevicesV1ApiResponse = ApiResponsePayload;
|
|
276
|
-
export
|
|
277
|
-
}
|
|
266
|
+
export type PostEntitiesDevicesV1PostData = Record<string, never>;
|
|
278
267
|
export type PostEntitiesDevicesV1ResponseMessage = BaseApiResponseMessage<PostEntitiesDevicesV1ApiResponse>;
|
|
279
268
|
export interface PostEntitiesDevicesV1RequestMessage extends BaseApiRequestMessage<PostEntitiesDevicesV1QueryParams, PostEntitiesDevicesV1PostData> {
|
|
280
269
|
api: DevicesRequestApi;
|
|
@@ -282,8 +271,7 @@ export interface PostEntitiesDevicesV1RequestMessage extends BaseApiRequestMessa
|
|
|
282
271
|
}
|
|
283
272
|
export type PostEntitiesDevicesV2QueryParams = BaseUrlParams;
|
|
284
273
|
export type PostEntitiesDevicesV2ApiResponse = ApiResponsePayload;
|
|
285
|
-
export
|
|
286
|
-
}
|
|
274
|
+
export type PostEntitiesDevicesV2PostData = Record<string, never>;
|
|
287
275
|
export type PostEntitiesDevicesV2ResponseMessage = BaseApiResponseMessage<PostEntitiesDevicesV2ApiResponse>;
|
|
288
276
|
export interface PostEntitiesDevicesV2RequestMessage extends BaseApiRequestMessage<PostEntitiesDevicesV2QueryParams, PostEntitiesDevicesV2PostData> {
|
|
289
277
|
api: DevicesRequestApi;
|
|
@@ -291,8 +279,7 @@ export interface PostEntitiesDevicesV2RequestMessage extends BaseApiRequestMessa
|
|
|
291
279
|
}
|
|
292
280
|
export type PostEntitiesFgaHostsReportsV1QueryParams = BaseUrlParams;
|
|
293
281
|
export type PostEntitiesFgaHostsReportsV1ApiResponse = ApiResponsePayload;
|
|
294
|
-
export
|
|
295
|
-
}
|
|
282
|
+
export type PostEntitiesFgaHostsReportsV1PostData = Record<string, never>;
|
|
296
283
|
export type PostEntitiesFgaHostsReportsV1ResponseMessage = BaseApiResponseMessage<PostEntitiesFgaHostsReportsV1ApiResponse>;
|
|
297
284
|
export interface PostEntitiesFgaHostsReportsV1RequestMessage extends BaseApiRequestMessage<PostEntitiesFgaHostsReportsV1QueryParams, PostEntitiesFgaHostsReportsV1PostData> {
|
|
298
285
|
api: DevicesRequestApi;
|
|
@@ -300,8 +287,7 @@ export interface PostEntitiesFgaHostsReportsV1RequestMessage extends BaseApiRequ
|
|
|
300
287
|
}
|
|
301
288
|
export type PostEntitiesFgaHostsV1QueryParams = BaseUrlParams;
|
|
302
289
|
export type PostEntitiesFgaHostsV1ApiResponse = ApiResponsePayload;
|
|
303
|
-
export
|
|
304
|
-
}
|
|
290
|
+
export type PostEntitiesFgaHostsV1PostData = Record<string, never>;
|
|
305
291
|
export type PostEntitiesFgaHostsV1ResponseMessage = BaseApiResponseMessage<PostEntitiesFgaHostsV1ApiResponse>;
|
|
306
292
|
export interface PostEntitiesFgaHostsV1RequestMessage extends BaseApiRequestMessage<PostEntitiesFgaHostsV1QueryParams, PostEntitiesFgaHostsV1PostData> {
|
|
307
293
|
api: DevicesRequestApi;
|
|
@@ -313,8 +299,7 @@ export interface PostEntitiesGroupActionsV1QueryParams extends BaseUrlParams {
|
|
|
313
299
|
disableHostnameCheck?: QueryParam;
|
|
314
300
|
}
|
|
315
301
|
export type PostEntitiesGroupActionsV1ApiResponse = ApiResponsePayload;
|
|
316
|
-
export
|
|
317
|
-
}
|
|
302
|
+
export type PostEntitiesGroupActionsV1PostData = Record<string, never>;
|
|
318
303
|
export type PostEntitiesGroupActionsV1ResponseMessage = BaseApiResponseMessage<PostEntitiesGroupActionsV1ApiResponse>;
|
|
319
304
|
export interface PostEntitiesGroupActionsV1RequestMessage extends BaseApiRequestMessage<PostEntitiesGroupActionsV1QueryParams, PostEntitiesGroupActionsV1PostData> {
|
|
320
305
|
api: DevicesRequestApi;
|
|
@@ -322,8 +307,7 @@ export interface PostEntitiesGroupActionsV1RequestMessage extends BaseApiRequest
|
|
|
322
307
|
}
|
|
323
308
|
export type PostEntitiesGroupsV1QueryParams = BaseUrlParams;
|
|
324
309
|
export type PostEntitiesGroupsV1ApiResponse = ApiResponsePayload;
|
|
325
|
-
export
|
|
326
|
-
}
|
|
310
|
+
export type PostEntitiesGroupsV1PostData = Record<string, never>;
|
|
327
311
|
export type PostEntitiesGroupsV1ResponseMessage = BaseApiResponseMessage<PostEntitiesGroupsV1ApiResponse>;
|
|
328
312
|
export interface PostEntitiesGroupsV1RequestMessage extends BaseApiRequestMessage<PostEntitiesGroupsV1QueryParams, PostEntitiesGroupsV1PostData> {
|
|
329
313
|
api: DevicesRequestApi;
|
|
@@ -23,8 +23,15 @@ export interface GetEntitiesExecutionV1RequestMessage extends BaseApiRequestMess
|
|
|
23
23
|
}
|
|
24
24
|
export type PostEntitiesExecutionV1QueryParams = BaseUrlParams;
|
|
25
25
|
export type PostEntitiesExecutionV1ApiResponse = ApiResponsePayload;
|
|
26
|
-
export
|
|
27
|
-
|
|
26
|
+
export type PostEntitiesExecutionV1PostData = {
|
|
27
|
+
payload?: {
|
|
28
|
+
path?: string;
|
|
29
|
+
method?: string;
|
|
30
|
+
body?: Record<string, unknown>;
|
|
31
|
+
params?: Record<string, unknown>;
|
|
32
|
+
};
|
|
33
|
+
[key: string]: unknown;
|
|
34
|
+
};
|
|
28
35
|
export type PostEntitiesExecutionV1ResponseMessage = BaseApiResponseMessage<PostEntitiesExecutionV1ApiResponse>;
|
|
29
36
|
export interface PostEntitiesExecutionV1RequestMessage extends BaseApiRequestMessage<PostEntitiesExecutionV1QueryParams, PostEntitiesExecutionV1PostData> {
|
|
30
37
|
api: FaasGatewayRequestApi;
|
|
@@ -226,8 +226,7 @@ export interface PatchEntitiesNetworkLocationsV1QueryParams extends BaseUrlParam
|
|
|
226
226
|
comment?: QueryParam;
|
|
227
227
|
}
|
|
228
228
|
export type PatchEntitiesNetworkLocationsV1ApiResponse = ApiResponsePayload;
|
|
229
|
-
export
|
|
230
|
-
}
|
|
229
|
+
export type PatchEntitiesNetworkLocationsV1PostData = Record<string, never>;
|
|
231
230
|
export type PatchEntitiesNetworkLocationsV1ResponseMessage = BaseApiResponseMessage<PatchEntitiesNetworkLocationsV1ApiResponse>;
|
|
232
231
|
export interface PatchEntitiesNetworkLocationsV1RequestMessage extends BaseApiRequestMessage<PatchEntitiesNetworkLocationsV1QueryParams, PatchEntitiesNetworkLocationsV1PostData> {
|
|
233
232
|
api: FwmgrRequestApi;
|
|
@@ -237,8 +236,7 @@ export interface PatchEntitiesRuleGroupsV1QueryParams extends BaseUrlParams {
|
|
|
237
236
|
comment?: QueryParam;
|
|
238
237
|
}
|
|
239
238
|
export type PatchEntitiesRuleGroupsV1ApiResponse = ApiResponsePayload;
|
|
240
|
-
export
|
|
241
|
-
}
|
|
239
|
+
export type PatchEntitiesRuleGroupsV1PostData = Record<string, never>;
|
|
242
240
|
export type PatchEntitiesRuleGroupsV1ResponseMessage = BaseApiResponseMessage<PatchEntitiesRuleGroupsV1ApiResponse>;
|
|
243
241
|
export interface PatchEntitiesRuleGroupsV1RequestMessage extends BaseApiRequestMessage<PatchEntitiesRuleGroupsV1QueryParams, PatchEntitiesRuleGroupsV1PostData> {
|
|
244
242
|
api: FwmgrRequestApi;
|
|
@@ -246,8 +244,7 @@ export interface PatchEntitiesRuleGroupsV1RequestMessage extends BaseApiRequestM
|
|
|
246
244
|
}
|
|
247
245
|
export type PostAggregatesEventsGetV1QueryParams = BaseUrlParams;
|
|
248
246
|
export type PostAggregatesEventsGetV1ApiResponse = ApiResponsePayload;
|
|
249
|
-
export
|
|
250
|
-
}
|
|
247
|
+
export type PostAggregatesEventsGetV1PostData = Record<string, never>;
|
|
251
248
|
export type PostAggregatesEventsGetV1ResponseMessage = BaseApiResponseMessage<PostAggregatesEventsGetV1ApiResponse>;
|
|
252
249
|
export interface PostAggregatesEventsGetV1RequestMessage extends BaseApiRequestMessage<PostAggregatesEventsGetV1QueryParams, PostAggregatesEventsGetV1PostData> {
|
|
253
250
|
api: FwmgrRequestApi;
|
|
@@ -255,8 +252,7 @@ export interface PostAggregatesEventsGetV1RequestMessage extends BaseApiRequestM
|
|
|
255
252
|
}
|
|
256
253
|
export type PostAggregatesPolicyRulesGetV1QueryParams = BaseUrlParams;
|
|
257
254
|
export type PostAggregatesPolicyRulesGetV1ApiResponse = ApiResponsePayload;
|
|
258
|
-
export
|
|
259
|
-
}
|
|
255
|
+
export type PostAggregatesPolicyRulesGetV1PostData = Record<string, never>;
|
|
260
256
|
export type PostAggregatesPolicyRulesGetV1ResponseMessage = BaseApiResponseMessage<PostAggregatesPolicyRulesGetV1ApiResponse>;
|
|
261
257
|
export interface PostAggregatesPolicyRulesGetV1RequestMessage extends BaseApiRequestMessage<PostAggregatesPolicyRulesGetV1QueryParams, PostAggregatesPolicyRulesGetV1PostData> {
|
|
262
258
|
api: FwmgrRequestApi;
|
|
@@ -264,8 +260,7 @@ export interface PostAggregatesPolicyRulesGetV1RequestMessage extends BaseApiReq
|
|
|
264
260
|
}
|
|
265
261
|
export type PostAggregatesRuleGroupsGetV1QueryParams = BaseUrlParams;
|
|
266
262
|
export type PostAggregatesRuleGroupsGetV1ApiResponse = ApiResponsePayload;
|
|
267
|
-
export
|
|
268
|
-
}
|
|
263
|
+
export type PostAggregatesRuleGroupsGetV1PostData = Record<string, never>;
|
|
269
264
|
export type PostAggregatesRuleGroupsGetV1ResponseMessage = BaseApiResponseMessage<PostAggregatesRuleGroupsGetV1ApiResponse>;
|
|
270
265
|
export interface PostAggregatesRuleGroupsGetV1RequestMessage extends BaseApiRequestMessage<PostAggregatesRuleGroupsGetV1QueryParams, PostAggregatesRuleGroupsGetV1PostData> {
|
|
271
266
|
api: FwmgrRequestApi;
|
|
@@ -273,8 +268,7 @@ export interface PostAggregatesRuleGroupsGetV1RequestMessage extends BaseApiRequ
|
|
|
273
268
|
}
|
|
274
269
|
export type PostAggregatesRulesGetV1QueryParams = BaseUrlParams;
|
|
275
270
|
export type PostAggregatesRulesGetV1ApiResponse = ApiResponsePayload;
|
|
276
|
-
export
|
|
277
|
-
}
|
|
271
|
+
export type PostAggregatesRulesGetV1PostData = Record<string, never>;
|
|
278
272
|
export type PostAggregatesRulesGetV1ResponseMessage = BaseApiResponseMessage<PostAggregatesRulesGetV1ApiResponse>;
|
|
279
273
|
export interface PostAggregatesRulesGetV1RequestMessage extends BaseApiRequestMessage<PostAggregatesRulesGetV1QueryParams, PostAggregatesRulesGetV1PostData> {
|
|
280
274
|
api: FwmgrRequestApi;
|
|
@@ -282,8 +276,7 @@ export interface PostAggregatesRulesGetV1RequestMessage extends BaseApiRequestMe
|
|
|
282
276
|
}
|
|
283
277
|
export type PostEntitiesNetworkLocationsMetadataV1QueryParams = BaseUrlParams;
|
|
284
278
|
export type PostEntitiesNetworkLocationsMetadataV1ApiResponse = ApiResponsePayload;
|
|
285
|
-
export
|
|
286
|
-
}
|
|
279
|
+
export type PostEntitiesNetworkLocationsMetadataV1PostData = Record<string, never>;
|
|
287
280
|
export type PostEntitiesNetworkLocationsMetadataV1ResponseMessage = BaseApiResponseMessage<PostEntitiesNetworkLocationsMetadataV1ApiResponse>;
|
|
288
281
|
export interface PostEntitiesNetworkLocationsMetadataV1RequestMessage extends BaseApiRequestMessage<PostEntitiesNetworkLocationsMetadataV1QueryParams, PostEntitiesNetworkLocationsMetadataV1PostData> {
|
|
289
282
|
api: FwmgrRequestApi;
|
|
@@ -291,8 +284,7 @@ export interface PostEntitiesNetworkLocationsMetadataV1RequestMessage extends Ba
|
|
|
291
284
|
}
|
|
292
285
|
export type PostEntitiesNetworkLocationsPrecedenceV1QueryParams = BaseUrlParams;
|
|
293
286
|
export type PostEntitiesNetworkLocationsPrecedenceV1ApiResponse = ApiResponsePayload;
|
|
294
|
-
export
|
|
295
|
-
}
|
|
287
|
+
export type PostEntitiesNetworkLocationsPrecedenceV1PostData = Record<string, never>;
|
|
296
288
|
export type PostEntitiesNetworkLocationsPrecedenceV1ResponseMessage = BaseApiResponseMessage<PostEntitiesNetworkLocationsPrecedenceV1ApiResponse>;
|
|
297
289
|
export interface PostEntitiesNetworkLocationsPrecedenceV1RequestMessage extends BaseApiRequestMessage<PostEntitiesNetworkLocationsPrecedenceV1QueryParams, PostEntitiesNetworkLocationsPrecedenceV1PostData> {
|
|
298
290
|
api: FwmgrRequestApi;
|
|
@@ -304,8 +296,7 @@ export interface PostEntitiesNetworkLocationsV1QueryParams extends BaseUrlParams
|
|
|
304
296
|
addFwRules?: QueryParam;
|
|
305
297
|
}
|
|
306
298
|
export type PostEntitiesNetworkLocationsV1ApiResponse = ApiResponsePayload;
|
|
307
|
-
export
|
|
308
|
-
}
|
|
299
|
+
export type PostEntitiesNetworkLocationsV1PostData = Record<string, never>;
|
|
309
300
|
export type PostEntitiesNetworkLocationsV1ResponseMessage = BaseApiResponseMessage<PostEntitiesNetworkLocationsV1ApiResponse>;
|
|
310
301
|
export interface PostEntitiesNetworkLocationsV1RequestMessage extends BaseApiRequestMessage<PostEntitiesNetworkLocationsV1QueryParams, PostEntitiesNetworkLocationsV1PostData> {
|
|
311
302
|
api: FwmgrRequestApi;
|
|
@@ -313,8 +304,7 @@ export interface PostEntitiesNetworkLocationsV1RequestMessage extends BaseApiReq
|
|
|
313
304
|
}
|
|
314
305
|
export type PostEntitiesOntologyV1QueryParams = BaseUrlParams;
|
|
315
306
|
export type PostEntitiesOntologyV1ApiResponse = ApiResponsePayload;
|
|
316
|
-
export
|
|
317
|
-
}
|
|
307
|
+
export type PostEntitiesOntologyV1PostData = Record<string, never>;
|
|
318
308
|
export type PostEntitiesOntologyV1ResponseMessage = BaseApiResponseMessage<PostEntitiesOntologyV1ApiResponse>;
|
|
319
309
|
export interface PostEntitiesOntologyV1RequestMessage extends BaseApiRequestMessage<PostEntitiesOntologyV1QueryParams, PostEntitiesOntologyV1PostData> {
|
|
320
310
|
api: FwmgrRequestApi;
|
|
@@ -325,8 +315,7 @@ export interface PostEntitiesRuleGroupsV1QueryParams extends BaseUrlParams {
|
|
|
325
315
|
library?: QueryParam;
|
|
326
316
|
}
|
|
327
317
|
export type PostEntitiesRuleGroupsV1ApiResponse = ApiResponsePayload;
|
|
328
|
-
export
|
|
329
|
-
}
|
|
318
|
+
export type PostEntitiesRuleGroupsV1PostData = Record<string, never>;
|
|
330
319
|
export type PostEntitiesRuleGroupsV1ResponseMessage = BaseApiResponseMessage<PostEntitiesRuleGroupsV1ApiResponse>;
|
|
331
320
|
export interface PostEntitiesRuleGroupsV1RequestMessage extends BaseApiRequestMessage<PostEntitiesRuleGroupsV1QueryParams, PostEntitiesRuleGroupsV1PostData> {
|
|
332
321
|
api: FwmgrRequestApi;
|
|
@@ -334,8 +323,7 @@ export interface PostEntitiesRuleGroupsV1RequestMessage extends BaseApiRequestMe
|
|
|
334
323
|
}
|
|
335
324
|
export type PostEntitiesRulesValidateFilepathV1QueryParams = BaseUrlParams;
|
|
336
325
|
export type PostEntitiesRulesValidateFilepathV1ApiResponse = ApiResponsePayload;
|
|
337
|
-
export
|
|
338
|
-
}
|
|
326
|
+
export type PostEntitiesRulesValidateFilepathV1PostData = Record<string, never>;
|
|
339
327
|
export type PostEntitiesRulesValidateFilepathV1ResponseMessage = BaseApiResponseMessage<PostEntitiesRulesValidateFilepathV1ApiResponse>;
|
|
340
328
|
export interface PostEntitiesRulesValidateFilepathV1RequestMessage extends BaseApiRequestMessage<PostEntitiesRulesValidateFilepathV1QueryParams, PostEntitiesRulesValidateFilepathV1PostData> {
|
|
341
329
|
api: FwmgrRequestApi;
|
|
@@ -345,8 +333,7 @@ export interface PutEntitiesNetworkLocationsV1QueryParams extends BaseUrlParams
|
|
|
345
333
|
comment?: QueryParam;
|
|
346
334
|
}
|
|
347
335
|
export type PutEntitiesNetworkLocationsV1ApiResponse = ApiResponsePayload;
|
|
348
|
-
export
|
|
349
|
-
}
|
|
336
|
+
export type PutEntitiesNetworkLocationsV1PostData = Record<string, never>;
|
|
350
337
|
export type PutEntitiesNetworkLocationsV1ResponseMessage = BaseApiResponseMessage<PutEntitiesNetworkLocationsV1ApiResponse>;
|
|
351
338
|
export interface PutEntitiesNetworkLocationsV1RequestMessage extends BaseApiRequestMessage<PutEntitiesNetworkLocationsV1QueryParams, PutEntitiesNetworkLocationsV1PostData> {
|
|
352
339
|
api: FwmgrRequestApi;
|
|
@@ -357,8 +344,7 @@ export interface PutEntitiesPoliciesV2QueryParams extends BaseUrlParams {
|
|
|
357
344
|
cloneId?: QueryParam;
|
|
358
345
|
}
|
|
359
346
|
export type PutEntitiesPoliciesV2ApiResponse = ApiResponsePayload;
|
|
360
|
-
export
|
|
361
|
-
}
|
|
347
|
+
export type PutEntitiesPoliciesV2PostData = Record<string, never>;
|
|
362
348
|
export type PutEntitiesPoliciesV2ResponseMessage = BaseApiResponseMessage<PutEntitiesPoliciesV2ApiResponse>;
|
|
363
349
|
export interface PutEntitiesPoliciesV2RequestMessage extends BaseApiRequestMessage<PutEntitiesPoliciesV2QueryParams, PutEntitiesPoliciesV2PostData> {
|
|
364
350
|
api: FwmgrRequestApi;
|
|
@@ -50,8 +50,7 @@ export interface GetQueriesIncidentsV1RequestMessage extends BaseApiRequestMessa
|
|
|
50
50
|
}
|
|
51
51
|
export type PostAggregatesBehaviorsGetV1QueryParams = BaseUrlParams;
|
|
52
52
|
export type PostAggregatesBehaviorsGetV1ApiResponse = ApiResponsePayload;
|
|
53
|
-
export
|
|
54
|
-
}
|
|
53
|
+
export type PostAggregatesBehaviorsGetV1PostData = Record<string, never>;
|
|
55
54
|
export type PostAggregatesBehaviorsGetV1ResponseMessage = BaseApiResponseMessage<PostAggregatesBehaviorsGetV1ApiResponse>;
|
|
56
55
|
export interface PostAggregatesBehaviorsGetV1RequestMessage extends BaseApiRequestMessage<PostAggregatesBehaviorsGetV1QueryParams, PostAggregatesBehaviorsGetV1PostData> {
|
|
57
56
|
api: IncidentsRequestApi;
|
|
@@ -59,8 +58,7 @@ export interface PostAggregatesBehaviorsGetV1RequestMessage extends BaseApiReque
|
|
|
59
58
|
}
|
|
60
59
|
export type PostAggregatesIncidentsGetV1QueryParams = BaseUrlParams;
|
|
61
60
|
export type PostAggregatesIncidentsGetV1ApiResponse = ApiResponsePayload;
|
|
62
|
-
export
|
|
63
|
-
}
|
|
61
|
+
export type PostAggregatesIncidentsGetV1PostData = Record<string, never>;
|
|
64
62
|
export type PostAggregatesIncidentsGetV1ResponseMessage = BaseApiResponseMessage<PostAggregatesIncidentsGetV1ApiResponse>;
|
|
65
63
|
export interface PostAggregatesIncidentsGetV1RequestMessage extends BaseApiRequestMessage<PostAggregatesIncidentsGetV1QueryParams, PostAggregatesIncidentsGetV1PostData> {
|
|
66
64
|
api: IncidentsRequestApi;
|
|
@@ -68,8 +66,7 @@ export interface PostAggregatesIncidentsGetV1RequestMessage extends BaseApiReque
|
|
|
68
66
|
}
|
|
69
67
|
export type PostEntitiesBehaviorsGetV1QueryParams = BaseUrlParams;
|
|
70
68
|
export type PostEntitiesBehaviorsGetV1ApiResponse = ApiResponsePayload;
|
|
71
|
-
export
|
|
72
|
-
}
|
|
69
|
+
export type PostEntitiesBehaviorsGetV1PostData = Record<string, never>;
|
|
73
70
|
export type PostEntitiesBehaviorsGetV1ResponseMessage = BaseApiResponseMessage<PostEntitiesBehaviorsGetV1ApiResponse>;
|
|
74
71
|
export interface PostEntitiesBehaviorsGetV1RequestMessage extends BaseApiRequestMessage<PostEntitiesBehaviorsGetV1QueryParams, PostEntitiesBehaviorsGetV1PostData> {
|
|
75
72
|
api: IncidentsRequestApi;
|
|
@@ -79,8 +76,7 @@ export interface PostEntitiesIncidentActionsV1QueryParams extends BaseUrlParams
|
|
|
79
76
|
note?: QueryParam;
|
|
80
77
|
}
|
|
81
78
|
export type PostEntitiesIncidentActionsV1ApiResponse = ApiResponsePayload;
|
|
82
|
-
export
|
|
83
|
-
}
|
|
79
|
+
export type PostEntitiesIncidentActionsV1PostData = Record<string, never>;
|
|
84
80
|
export type PostEntitiesIncidentActionsV1ResponseMessage = BaseApiResponseMessage<PostEntitiesIncidentActionsV1ApiResponse>;
|
|
85
81
|
export interface PostEntitiesIncidentActionsV1RequestMessage extends BaseApiRequestMessage<PostEntitiesIncidentActionsV1QueryParams, PostEntitiesIncidentActionsV1PostData> {
|
|
86
82
|
api: IncidentsRequestApi;
|
|
@@ -88,8 +84,7 @@ export interface PostEntitiesIncidentActionsV1RequestMessage extends BaseApiRequ
|
|
|
88
84
|
}
|
|
89
85
|
export type PostEntitiesIncidentsGetV1QueryParams = BaseUrlParams;
|
|
90
86
|
export type PostEntitiesIncidentsGetV1ApiResponse = ApiResponsePayload;
|
|
91
|
-
export
|
|
92
|
-
}
|
|
87
|
+
export type PostEntitiesIncidentsGetV1PostData = Record<string, never>;
|
|
93
88
|
export type PostEntitiesIncidentsGetV1ResponseMessage = BaseApiResponseMessage<PostEntitiesIncidentsGetV1ApiResponse>;
|
|
94
89
|
export interface PostEntitiesIncidentsGetV1RequestMessage extends BaseApiRequestMessage<PostEntitiesIncidentsGetV1QueryParams, PostEntitiesIncidentsGetV1PostData> {
|
|
95
90
|
api: IncidentsRequestApi;
|
|
@@ -39,8 +39,7 @@ export interface PostEntitiesSavedSearchesDynamicExecuteV1QueryParams extends Ba
|
|
|
39
39
|
includeTestData?: QueryParam;
|
|
40
40
|
}
|
|
41
41
|
export type PostEntitiesSavedSearchesDynamicExecuteV1ApiResponse = ApiResponsePayload;
|
|
42
|
-
export
|
|
43
|
-
}
|
|
42
|
+
export type PostEntitiesSavedSearchesDynamicExecuteV1PostData = Record<string, never>;
|
|
44
43
|
export type PostEntitiesSavedSearchesDynamicExecuteV1ResponseMessage = BaseApiResponseMessage<PostEntitiesSavedSearchesDynamicExecuteV1ApiResponse>;
|
|
45
44
|
export interface PostEntitiesSavedSearchesDynamicExecuteV1RequestMessage extends BaseApiRequestMessage<PostEntitiesSavedSearchesDynamicExecuteV1QueryParams, PostEntitiesSavedSearchesDynamicExecuteV1PostData> {
|
|
46
45
|
api: LoggingapiRequestApi;
|
|
@@ -54,8 +53,7 @@ export interface PostEntitiesSavedSearchesExecuteV1QueryParams extends BaseUrlPa
|
|
|
54
53
|
detailed?: QueryParam;
|
|
55
54
|
}
|
|
56
55
|
export type PostEntitiesSavedSearchesExecuteV1ApiResponse = ApiResponsePayload;
|
|
57
|
-
export
|
|
58
|
-
}
|
|
56
|
+
export type PostEntitiesSavedSearchesExecuteV1PostData = Record<string, never>;
|
|
59
57
|
export type PostEntitiesSavedSearchesExecuteV1ResponseMessage = BaseApiResponseMessage<PostEntitiesSavedSearchesExecuteV1ApiResponse>;
|
|
60
58
|
export interface PostEntitiesSavedSearchesExecuteV1RequestMessage extends BaseApiRequestMessage<PostEntitiesSavedSearchesExecuteV1QueryParams, PostEntitiesSavedSearchesExecuteV1PostData> {
|
|
61
59
|
api: LoggingapiRequestApi;
|
|
@@ -63,8 +61,7 @@ export interface PostEntitiesSavedSearchesExecuteV1RequestMessage extends BaseAp
|
|
|
63
61
|
}
|
|
64
62
|
export type PostEntitiesSavedSearchesIngestV1QueryParams = BaseUrlParams;
|
|
65
63
|
export type PostEntitiesSavedSearchesIngestV1ApiResponse = ApiResponsePayload;
|
|
66
|
-
export
|
|
67
|
-
}
|
|
64
|
+
export type PostEntitiesSavedSearchesIngestV1PostData = Record<string, never>;
|
|
68
65
|
export type PostEntitiesSavedSearchesIngestV1ResponseMessage = BaseApiResponseMessage<PostEntitiesSavedSearchesIngestV1ApiResponse>;
|
|
69
66
|
export interface PostEntitiesSavedSearchesIngestV1RequestMessage extends BaseApiRequestMessage<PostEntitiesSavedSearchesIngestV1QueryParams, PostEntitiesSavedSearchesIngestV1PostData> {
|
|
70
67
|
api: LoggingapiRequestApi;
|
|
@@ -33,8 +33,7 @@ export interface GetEntitiesDefinitionsV1RequestMessage extends BaseApiRequestMe
|
|
|
33
33
|
}
|
|
34
34
|
export type PostEntitiesExecuteDraftV1QueryParams = BaseUrlParams;
|
|
35
35
|
export type PostEntitiesExecuteDraftV1ApiResponse = ApiResponsePayload;
|
|
36
|
-
export
|
|
37
|
-
}
|
|
36
|
+
export type PostEntitiesExecuteDraftV1PostData = Record<string, never>;
|
|
38
37
|
export type PostEntitiesExecuteDraftV1ResponseMessage = BaseApiResponseMessage<PostEntitiesExecuteDraftV1ApiResponse>;
|
|
39
38
|
export interface PostEntitiesExecuteDraftV1RequestMessage extends BaseApiRequestMessage<PostEntitiesExecuteDraftV1QueryParams, PostEntitiesExecuteDraftV1PostData> {
|
|
40
39
|
api: PluginsRequestApi;
|
|
@@ -42,8 +41,13 @@ export interface PostEntitiesExecuteDraftV1RequestMessage extends BaseApiRequest
|
|
|
42
41
|
}
|
|
43
42
|
export type PostEntitiesExecuteV1QueryParams = BaseUrlParams;
|
|
44
43
|
export type PostEntitiesExecuteV1ApiResponse = ApiResponsePayload;
|
|
45
|
-
export
|
|
46
|
-
|
|
44
|
+
export type PostEntitiesExecuteV1PostData = {
|
|
45
|
+
resources?: Array<{
|
|
46
|
+
definition_id?: string;
|
|
47
|
+
operation_id?: string;
|
|
48
|
+
request?: Record<string, unknown>;
|
|
49
|
+
}>;
|
|
50
|
+
};
|
|
47
51
|
export type PostEntitiesExecuteV1ResponseMessage = BaseApiResponseMessage<PostEntitiesExecuteV1ApiResponse>;
|
|
48
52
|
export interface PostEntitiesExecuteV1RequestMessage extends BaseApiRequestMessage<PostEntitiesExecuteV1QueryParams, PostEntitiesExecuteV1PostData> {
|
|
49
53
|
api: PluginsRequestApi;
|
|
@@ -26,7 +26,7 @@ import { WorkflowsApiBridge } from './workflows';
|
|
|
26
26
|
import type FalconApi from '../api';
|
|
27
27
|
export default class FalconPublicApis {
|
|
28
28
|
private api;
|
|
29
|
-
constructor(api: FalconApi
|
|
29
|
+
constructor(api: FalconApi);
|
|
30
30
|
get alerts(): AlertsApiBridge;
|
|
31
31
|
get detects(): DetectsApiBridge;
|
|
32
32
|
get devices(): DevicesApiBridge;
|