@crowdstrike/foundry-js 0.18.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.
@@ -7,11 +7,11 @@ interface ApiIntegrationDefinition {
7
7
  interface ExecuteParameters {
8
8
  request?: {
9
9
  params?: {
10
- path?: Record<any, unknown>;
11
- query?: Record<any, unknown>;
12
- header?: Record<any, unknown>;
10
+ path?: Record<string, unknown>;
11
+ query?: Record<string, unknown>;
12
+ header?: Record<string, unknown>;
13
13
  };
14
- json?: Record<any, unknown> | Record<any, unknown>[];
14
+ json?: Record<string, unknown> | Record<string, unknown>[];
15
15
  };
16
16
  }
17
17
  export declare class ApiIntegration<DATA extends LocalData = LocalData> {
@@ -3,6 +3,7 @@ import type { CloudFunctionDefinition, LocalData } from '../types';
3
3
  interface Params {
4
4
  header?: Record<string, string[]>;
5
5
  query?: Record<string, string[]>;
6
+ [key: string]: unknown;
6
7
  }
7
8
  interface PostParameters {
8
9
  path: string;
@@ -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 interface PatchCombinedAlertsV2PostData {
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 interface PatchCombinedAlertsV3PostData {
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 interface PatchEntitiesAlertsV2PostData {
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 interface PatchEntitiesAlertsV3PostData {
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 interface PatchEntitiesSuppressedDevicesV1PostData {
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 interface PostAggregatesAlertsV1PostData {
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 interface PostAggregatesAlertsV2PostData {
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 interface PostEntitiesAlertsV1PostData {
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 interface PostEntitiesAlertsV2PostData {
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 interface PostEntitiesSuppressedDevicesV1PostData {
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;
@@ -5,4 +5,4 @@
5
5
  * DO NOT EDIT DIRECTLY
6
6
  *
7
7
  **/
8
- export type ApiIdentifier = 'alerts' | 'detects' | 'devices' | 'fwmgr' | 'incidents' | 'mitre' | 'plugins' | 'remoteResponse' | 'userManagement' | 'workflows' | 'customobjects' | 'faasGateway' | 'loggingapi';
8
+ export type ApiIdentifier = 'alerts' | 'detects' | 'devices' | 'fwmgr' | 'incidents' | 'mitre' | 'plugins' | 'remoteResponse' | 'userManagement' | 'workflows' | 'cloudSecurityAssets' | 'cloudregistration' | 'containerSecurity' | 'cspmRegistration' | 'customobjects' | 'faasGateway' | 'loggingapi' | 'registryAssessment';
@@ -0,0 +1,31 @@
1
+ /**
2
+ *
3
+ * This file is autogenerated.
4
+ *
5
+ * DO NOT EDIT DIRECTLY
6
+ *
7
+ **/
8
+ import type { Bridge } from '../../bridge';
9
+ import type { ApiResponsePayload, BaseApiRequestMessage, BaseApiResponseMessage, BaseUrlParams } from '../../types';
10
+ export type CloudSecurityAssetsRequestApi = 'cloudSecurityAssets';
11
+ export type CommonApiResponseMessage = BaseApiResponseMessage<ApiResponsePayload>;
12
+ export interface CommonApiRequestMessage extends BaseApiRequestMessage<BaseUrlParams, unknown> {
13
+ api: CloudSecurityAssetsRequestApi;
14
+ }
15
+ export interface GetAggregatesResourcesCountByManagedByV1QueryParams extends BaseUrlParams {
16
+ filter?: string;
17
+ }
18
+ export type GetAggregatesResourcesCountByManagedByV1ApiResponse = ApiResponsePayload;
19
+ export type GetAggregatesResourcesCountByManagedByV1ResponseMessage = BaseApiResponseMessage<GetAggregatesResourcesCountByManagedByV1ApiResponse>;
20
+ export interface GetAggregatesResourcesCountByManagedByV1RequestMessage extends BaseApiRequestMessage<GetAggregatesResourcesCountByManagedByV1QueryParams> {
21
+ api: CloudSecurityAssetsRequestApi;
22
+ method: 'getAggregatesResourcesCountByManagedByV1';
23
+ }
24
+ export type CloudSecurityAssetsApiRequestMessage = GetAggregatesResourcesCountByManagedByV1RequestMessage;
25
+ export type CloudSecurityAssetsApiResponseMessage = GetAggregatesResourcesCountByManagedByV1ResponseMessage;
26
+ export declare class CloudSecurityAssetsApiBridge {
27
+ private bridge;
28
+ constructor(bridge: Bridge);
29
+ getBridge(): Bridge<import("../../types").LocalData>;
30
+ getAggregatesResourcesCountByManagedByV1(urlParams?: GetAggregatesResourcesCountByManagedByV1QueryParams): Promise<GetAggregatesResourcesCountByManagedByV1ApiResponse>;
31
+ }
@@ -0,0 +1,39 @@
1
+ /**
2
+ *
3
+ * This file is autogenerated.
4
+ *
5
+ * DO NOT EDIT DIRECTLY
6
+ *
7
+ **/
8
+ import type { Bridge } from '../../bridge';
9
+ import type { ApiResponsePayload, BaseApiRequestMessage, BaseApiResponseMessage, BaseUrlParams, QueryParam } from '../../types';
10
+ export type CloudregistrationRequestApi = 'cloudregistration';
11
+ export type CommonApiResponseMessage = BaseApiResponseMessage<ApiResponsePayload>;
12
+ export interface CommonApiRequestMessage extends BaseApiRequestMessage<BaseUrlParams, unknown> {
13
+ api: CloudregistrationRequestApi;
14
+ }
15
+ export interface GetCloudSecurityRegistrationAwsCombinedAccountsV1QueryParams extends BaseUrlParams {
16
+ filter?: string;
17
+ sort?: QueryParam;
18
+ nextToken?: QueryParam;
19
+ limit?: QueryParam;
20
+ offset?: QueryParam;
21
+ ids?: QueryParam;
22
+ organizationIds?: QueryParam;
23
+ status?: QueryParam;
24
+ updateUrls?: QueryParam;
25
+ }
26
+ export type GetCloudSecurityRegistrationAwsCombinedAccountsV1ApiResponse = ApiResponsePayload;
27
+ export type GetCloudSecurityRegistrationAwsCombinedAccountsV1ResponseMessage = BaseApiResponseMessage<GetCloudSecurityRegistrationAwsCombinedAccountsV1ApiResponse>;
28
+ export interface GetCloudSecurityRegistrationAwsCombinedAccountsV1RequestMessage extends BaseApiRequestMessage<GetCloudSecurityRegistrationAwsCombinedAccountsV1QueryParams> {
29
+ api: CloudregistrationRequestApi;
30
+ method: 'getCloudSecurityRegistrationAwsCombinedAccountsV1';
31
+ }
32
+ export type CloudregistrationApiRequestMessage = GetCloudSecurityRegistrationAwsCombinedAccountsV1RequestMessage;
33
+ export type CloudregistrationApiResponseMessage = GetCloudSecurityRegistrationAwsCombinedAccountsV1ResponseMessage;
34
+ export declare class CloudregistrationApiBridge {
35
+ private bridge;
36
+ constructor(bridge: Bridge);
37
+ getBridge(): Bridge<import("../../types").LocalData>;
38
+ getCloudSecurityRegistrationAwsCombinedAccountsV1(urlParams?: GetCloudSecurityRegistrationAwsCombinedAccountsV1QueryParams): Promise<GetCloudSecurityRegistrationAwsCombinedAccountsV1ApiResponse>;
39
+ }
@@ -0,0 +1,118 @@
1
+ /**
2
+ *
3
+ * This file is autogenerated.
4
+ *
5
+ * DO NOT EDIT DIRECTLY
6
+ *
7
+ **/
8
+ import type { Bridge } from '../../bridge';
9
+ import type { ApiResponsePayload, BaseApiRequestMessage, BaseApiResponseMessage, BaseUrlParams, QueryParam } from '../../types';
10
+ export type ContainerSecurityRequestApi = 'containerSecurity';
11
+ export type CommonApiResponseMessage = BaseApiResponseMessage<ApiResponsePayload>;
12
+ export interface CommonApiRequestMessage extends BaseApiRequestMessage<BaseUrlParams, unknown> {
13
+ api: ContainerSecurityRequestApi;
14
+ }
15
+ export interface GetAggregatesClustersCountV1QueryParams extends BaseUrlParams {
16
+ filter?: string;
17
+ }
18
+ export type GetAggregatesClustersCountV1ApiResponse = ApiResponsePayload;
19
+ export type GetAggregatesClustersCountV1ResponseMessage = BaseApiResponseMessage<GetAggregatesClustersCountV1ApiResponse>;
20
+ export interface GetAggregatesClustersCountV1RequestMessage extends BaseApiRequestMessage<GetAggregatesClustersCountV1QueryParams> {
21
+ api: ContainerSecurityRequestApi;
22
+ method: 'getAggregatesClustersCountV1';
23
+ }
24
+ export interface GetAggregatesContainersCountV1QueryParams extends BaseUrlParams {
25
+ filter?: string;
26
+ }
27
+ export type GetAggregatesContainersCountV1ApiResponse = ApiResponsePayload;
28
+ export type GetAggregatesContainersCountV1ResponseMessage = BaseApiResponseMessage<GetAggregatesContainersCountV1ApiResponse>;
29
+ export interface GetAggregatesContainersCountV1RequestMessage extends BaseApiRequestMessage<GetAggregatesContainersCountV1QueryParams> {
30
+ api: ContainerSecurityRequestApi;
31
+ method: 'getAggregatesContainersCountV1';
32
+ }
33
+ export interface GetAggregatesContainersGroupByManagedV1QueryParams extends BaseUrlParams {
34
+ filter?: string;
35
+ limit?: QueryParam;
36
+ offset?: QueryParam;
37
+ }
38
+ export type GetAggregatesContainersGroupByManagedV1ApiResponse = ApiResponsePayload;
39
+ export type GetAggregatesContainersGroupByManagedV1ResponseMessage = BaseApiResponseMessage<GetAggregatesContainersGroupByManagedV1ApiResponse>;
40
+ export interface GetAggregatesContainersGroupByManagedV1RequestMessage extends BaseApiRequestMessage<GetAggregatesContainersGroupByManagedV1QueryParams> {
41
+ api: ContainerSecurityRequestApi;
42
+ method: 'getAggregatesContainersGroupByManagedV1';
43
+ }
44
+ export interface GetAggregatesContainersSensorCoverageV1QueryParams extends BaseUrlParams {
45
+ filter?: string;
46
+ limit?: QueryParam;
47
+ offset?: QueryParam;
48
+ }
49
+ export type GetAggregatesContainersSensorCoverageV1ApiResponse = ApiResponsePayload;
50
+ export type GetAggregatesContainersSensorCoverageV1ResponseMessage = BaseApiResponseMessage<GetAggregatesContainersSensorCoverageV1ApiResponse>;
51
+ export interface GetAggregatesContainersSensorCoverageV1RequestMessage extends BaseApiRequestMessage<GetAggregatesContainersSensorCoverageV1QueryParams> {
52
+ api: ContainerSecurityRequestApi;
53
+ method: 'getAggregatesContainersSensorCoverageV1';
54
+ }
55
+ export interface GetAggregatesImagesCountByStateV1QueryParams extends BaseUrlParams {
56
+ filter?: string;
57
+ }
58
+ export type GetAggregatesImagesCountByStateV1ApiResponse = ApiResponsePayload;
59
+ export type GetAggregatesImagesCountByStateV1ResponseMessage = BaseApiResponseMessage<GetAggregatesImagesCountByStateV1ApiResponse>;
60
+ export interface GetAggregatesImagesCountByStateV1RequestMessage extends BaseApiRequestMessage<GetAggregatesImagesCountByStateV1QueryParams> {
61
+ api: ContainerSecurityRequestApi;
62
+ method: 'getAggregatesImagesCountByStateV1';
63
+ }
64
+ export interface GetAggregatesNodesCountV1QueryParams extends BaseUrlParams {
65
+ filter?: string;
66
+ }
67
+ export type GetAggregatesNodesCountV1ApiResponse = ApiResponsePayload;
68
+ export type GetAggregatesNodesCountV1ResponseMessage = BaseApiResponseMessage<GetAggregatesNodesCountV1ApiResponse>;
69
+ export interface GetAggregatesNodesCountV1RequestMessage extends BaseApiRequestMessage<GetAggregatesNodesCountV1QueryParams> {
70
+ api: ContainerSecurityRequestApi;
71
+ method: 'getAggregatesNodesCountV1';
72
+ }
73
+ export interface GetAggregatesPodsCountV1QueryParams extends BaseUrlParams {
74
+ filter?: string;
75
+ }
76
+ export type GetAggregatesPodsCountV1ApiResponse = ApiResponsePayload;
77
+ export type GetAggregatesPodsCountV1ResponseMessage = BaseApiResponseMessage<GetAggregatesPodsCountV1ApiResponse>;
78
+ export interface GetAggregatesPodsCountV1RequestMessage extends BaseApiRequestMessage<GetAggregatesPodsCountV1QueryParams> {
79
+ api: ContainerSecurityRequestApi;
80
+ method: 'getAggregatesPodsCountV1';
81
+ }
82
+ export interface GetAggregatesUnidentifiedContainersCountV1QueryParams extends BaseUrlParams {
83
+ filter?: string;
84
+ }
85
+ export type GetAggregatesUnidentifiedContainersCountV1ApiResponse = ApiResponsePayload;
86
+ export type GetAggregatesUnidentifiedContainersCountV1ResponseMessage = BaseApiResponseMessage<GetAggregatesUnidentifiedContainersCountV1ApiResponse>;
87
+ export interface GetAggregatesUnidentifiedContainersCountV1RequestMessage extends BaseApiRequestMessage<GetAggregatesUnidentifiedContainersCountV1QueryParams> {
88
+ api: ContainerSecurityRequestApi;
89
+ method: 'getAggregatesUnidentifiedContainersCountV1';
90
+ }
91
+ export interface GetCombinedClustersV1QueryParams extends BaseUrlParams {
92
+ filter?: string;
93
+ limit?: QueryParam;
94
+ offset?: QueryParam;
95
+ sort?: QueryParam;
96
+ }
97
+ export type GetCombinedClustersV1ApiResponse = ApiResponsePayload;
98
+ export type GetCombinedClustersV1ResponseMessage = BaseApiResponseMessage<GetCombinedClustersV1ApiResponse>;
99
+ export interface GetCombinedClustersV1RequestMessage extends BaseApiRequestMessage<GetCombinedClustersV1QueryParams> {
100
+ api: ContainerSecurityRequestApi;
101
+ method: 'getCombinedClustersV1';
102
+ }
103
+ export type ContainerSecurityApiRequestMessage = GetAggregatesClustersCountV1RequestMessage | GetAggregatesContainersCountV1RequestMessage | GetAggregatesContainersGroupByManagedV1RequestMessage | GetAggregatesContainersSensorCoverageV1RequestMessage | GetAggregatesImagesCountByStateV1RequestMessage | GetAggregatesNodesCountV1RequestMessage | GetAggregatesPodsCountV1RequestMessage | GetAggregatesUnidentifiedContainersCountV1RequestMessage | GetCombinedClustersV1RequestMessage;
104
+ export type ContainerSecurityApiResponseMessage = GetAggregatesClustersCountV1ResponseMessage | GetAggregatesContainersCountV1ResponseMessage | GetAggregatesContainersGroupByManagedV1ResponseMessage | GetAggregatesContainersSensorCoverageV1ResponseMessage | GetAggregatesImagesCountByStateV1ResponseMessage | GetAggregatesNodesCountV1ResponseMessage | GetAggregatesPodsCountV1ResponseMessage | GetAggregatesUnidentifiedContainersCountV1ResponseMessage | GetCombinedClustersV1ResponseMessage;
105
+ export declare class ContainerSecurityApiBridge {
106
+ private bridge;
107
+ constructor(bridge: Bridge);
108
+ getBridge(): Bridge<import("../../types").LocalData>;
109
+ getAggregatesClustersCountV1(urlParams?: GetAggregatesClustersCountV1QueryParams): Promise<GetAggregatesClustersCountV1ApiResponse>;
110
+ getAggregatesContainersCountV1(urlParams?: GetAggregatesContainersCountV1QueryParams): Promise<GetAggregatesContainersCountV1ApiResponse>;
111
+ getAggregatesContainersGroupByManagedV1(urlParams?: GetAggregatesContainersGroupByManagedV1QueryParams): Promise<GetAggregatesContainersGroupByManagedV1ApiResponse>;
112
+ getAggregatesContainersSensorCoverageV1(urlParams?: GetAggregatesContainersSensorCoverageV1QueryParams): Promise<GetAggregatesContainersSensorCoverageV1ApiResponse>;
113
+ getAggregatesImagesCountByStateV1(urlParams?: GetAggregatesImagesCountByStateV1QueryParams): Promise<GetAggregatesImagesCountByStateV1ApiResponse>;
114
+ getAggregatesNodesCountV1(urlParams?: GetAggregatesNodesCountV1QueryParams): Promise<GetAggregatesNodesCountV1ApiResponse>;
115
+ getAggregatesPodsCountV1(urlParams?: GetAggregatesPodsCountV1QueryParams): Promise<GetAggregatesPodsCountV1ApiResponse>;
116
+ getAggregatesUnidentifiedContainersCountV1(urlParams?: GetAggregatesUnidentifiedContainersCountV1QueryParams): Promise<GetAggregatesUnidentifiedContainersCountV1ApiResponse>;
117
+ getCombinedClustersV1(urlParams?: GetCombinedClustersV1QueryParams): Promise<GetCombinedClustersV1ApiResponse>;
118
+ }
@@ -0,0 +1,49 @@
1
+ /**
2
+ *
3
+ * This file is autogenerated.
4
+ *
5
+ * DO NOT EDIT DIRECTLY
6
+ *
7
+ **/
8
+ import type { Bridge } from '../../bridge';
9
+ import type { ApiResponsePayload, BaseApiRequestMessage, BaseApiResponseMessage, BaseUrlParams, QueryParam } from '../../types';
10
+ export type CspmRegistrationRequestApi = 'cspmRegistration';
11
+ export type CommonApiResponseMessage = BaseApiResponseMessage<ApiResponsePayload>;
12
+ export interface CommonApiRequestMessage extends BaseApiRequestMessage<BaseUrlParams, unknown> {
13
+ api: CspmRegistrationRequestApi;
14
+ }
15
+ export interface GetCspmregistrationCloudConnectCspmAzureCombinedAccountsV1QueryParams extends BaseUrlParams {
16
+ filter?: string;
17
+ sort?: QueryParam;
18
+ nextToken?: QueryParam;
19
+ limit?: QueryParam;
20
+ offset?: QueryParam;
21
+ }
22
+ export type GetCspmregistrationCloudConnectCspmAzureCombinedAccountsV1ApiResponse = ApiResponsePayload;
23
+ export type GetCspmregistrationCloudConnectCspmAzureCombinedAccountsV1ResponseMessage = BaseApiResponseMessage<GetCspmregistrationCloudConnectCspmAzureCombinedAccountsV1ApiResponse>;
24
+ export interface GetCspmregistrationCloudConnectCspmAzureCombinedAccountsV1RequestMessage extends BaseApiRequestMessage<GetCspmregistrationCloudConnectCspmAzureCombinedAccountsV1QueryParams> {
25
+ api: CspmRegistrationRequestApi;
26
+ method: 'getCspmregistrationCloudConnectCspmAzureCombinedAccountsV1';
27
+ }
28
+ export interface GetCspmregistrationCloudConnectCspmGcpCombinedAccountsV1QueryParams extends BaseUrlParams {
29
+ filter?: string;
30
+ sort?: QueryParam;
31
+ nextToken?: QueryParam;
32
+ limit?: QueryParam;
33
+ offset?: QueryParam;
34
+ }
35
+ export type GetCspmregistrationCloudConnectCspmGcpCombinedAccountsV1ApiResponse = ApiResponsePayload;
36
+ export type GetCspmregistrationCloudConnectCspmGcpCombinedAccountsV1ResponseMessage = BaseApiResponseMessage<GetCspmregistrationCloudConnectCspmGcpCombinedAccountsV1ApiResponse>;
37
+ export interface GetCspmregistrationCloudConnectCspmGcpCombinedAccountsV1RequestMessage extends BaseApiRequestMessage<GetCspmregistrationCloudConnectCspmGcpCombinedAccountsV1QueryParams> {
38
+ api: CspmRegistrationRequestApi;
39
+ method: 'getCspmregistrationCloudConnectCspmGcpCombinedAccountsV1';
40
+ }
41
+ export type CspmRegistrationApiRequestMessage = GetCspmregistrationCloudConnectCspmAzureCombinedAccountsV1RequestMessage | GetCspmregistrationCloudConnectCspmGcpCombinedAccountsV1RequestMessage;
42
+ export type CspmRegistrationApiResponseMessage = GetCspmregistrationCloudConnectCspmAzureCombinedAccountsV1ResponseMessage | GetCspmregistrationCloudConnectCspmGcpCombinedAccountsV1ResponseMessage;
43
+ export declare class CspmRegistrationApiBridge {
44
+ private bridge;
45
+ constructor(bridge: Bridge);
46
+ getBridge(): Bridge<import("../../types").LocalData>;
47
+ getCspmregistrationCloudConnectCspmAzureCombinedAccountsV1(urlParams?: GetCspmregistrationCloudConnectCspmAzureCombinedAccountsV1QueryParams): Promise<GetCspmregistrationCloudConnectCspmAzureCombinedAccountsV1ApiResponse>;
48
+ getCspmregistrationCloudConnectCspmGcpCombinedAccountsV1(urlParams?: GetCspmregistrationCloudConnectCspmGcpCombinedAccountsV1QueryParams): Promise<GetCspmregistrationCloudConnectCspmGcpCombinedAccountsV1ApiResponse>;
49
+ }
@@ -62,8 +62,7 @@ export interface PostV1CollectionsCollectionNameObjectsQueryParams extends BaseU
62
62
  sort?: QueryParam;
63
63
  }
64
64
  export type PostV1CollectionsCollectionNameObjectsApiResponse = ApiResponsePayload;
65
- export interface PostV1CollectionsCollectionNameObjectsPostData {
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 interface PutV1CollectionsCollectionNameObjectsObjectKeyPostData {
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 interface PatchEntitiesDetectsV2PostData {
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 interface PatchQueriesDetectsV1PostData {
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 interface PatchQueriesDetectsV2PostData {
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 interface PostAggregatesDetectsGetV1PostData {
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 interface PostEntitiesSummariesGetV1PostData {
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 interface PostEntitiesSuppressedDevicesV1PostData {
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 interface PatchEntitiesDevicesTagsV2PostData {
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 interface PatchEntitiesDevicesV1PostData {
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 interface PatchEntitiesGroupsV1PostData {
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 interface PostAggregatesDevicesGetV1PostData {
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 interface PostAggregatesFgaHostsGetV1PostData {
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 interface PostCombinedDevicesLoginHistoryV1PostData {
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 interface PostCombinedFgaHostsLoginHistoryV1PostData {
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 interface PostEntitiesDevicesActionsV4PostData {
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 interface PostEntitiesDevicesHiddenActionsV4PostData {
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 interface PostEntitiesDevicesReportsV1PostData {
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 interface PostEntitiesDevicesV1PostData {
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 interface PostEntitiesDevicesV2PostData {
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 interface PostEntitiesFgaHostsReportsV1PostData {
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 interface PostEntitiesFgaHostsV1PostData {
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 interface PostEntitiesGroupActionsV1PostData {
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 interface PostEntitiesGroupsV1PostData {
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 interface PostEntitiesExecutionV1PostData {
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;