-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathintegrations.py
More file actions
181 lines (157 loc) · 5.49 KB
/
integrations.py
File metadata and controls
181 lines (157 loc) · 5.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
import json
from types import NoneType
from typing import Optional, Union, Annotated
from ..models import *
from ..base_model import Page, Service
from pydantic import BaseModel, Field
from pydantic.fields import FieldInfo
from httpx import Auth
from ..http_client import HttpClient
class Integrations(Service):
def __init__(self, auth: Auth, base_url: str = "https://admin.api.crowdsec.net/v1") -> None:
super().__init__(base_url=base_url, auth=auth, user_agent="crowdsec_service_api/v0.15.27")
def get_integrations(
self,
tag: Optional[list[str]] = None,
page: int = 1,
size: int = 50,
)-> IntegrationGetResponsePage:
endpoint_url = "/integrations"
loc = locals()
headers = {}
params = json.loads(
IntegrationsGetIntegrationsQueryParameters(**loc).model_dump_json(
exclude_none=True
)
)
path_params = {}
response = self.http_client.get(
url=endpoint_url, path_params=path_params, params=params, headers=headers
)
return IntegrationGetResponsePage(_client=self, **response.json())
def create_integration(
self,
request: IntegrationCreateRequest,
)-> IntegrationCreateResponse:
endpoint_url = "/integrations"
loc = locals()
headers = {}
params = {}
path_params = {}
payload = json.loads(
request.model_dump_json(
exclude_none=True
)
) if "request" in loc else None
response = self.http_client.post(
url=endpoint_url, path_params=path_params, params=params, headers=headers, json=payload
)
return IntegrationCreateResponse(**response.json())
def get_integration(
self,
integration_id: str,
)-> IntegrationGetResponse:
endpoint_url = "/integrations/{integration_id}"
loc = locals()
headers = {}
params = {}
path_params = json.loads(
IntegrationsGetIntegrationPathParameters(**loc).model_dump_json(
exclude_none=True
)
)
response = self.http_client.get(
url=endpoint_url, path_params=path_params, params=params, headers=headers
)
return IntegrationGetResponse(**response.json())
def delete_integration(
self,
integration_id: str,
force: bool = False,
):
endpoint_url = "/integrations/{integration_id}"
loc = locals()
headers = {}
params = json.loads(
IntegrationsDeleteIntegrationQueryParameters(**loc).model_dump_json(
exclude_none=True
)
)
path_params = json.loads(
IntegrationsDeleteIntegrationPathParameters(**loc).model_dump_json(
exclude_none=True
)
)
response = self.http_client.delete(
url=endpoint_url, path_params=path_params, params=params, headers=headers
)
return None
def update_integration(
self,
request: IntegrationUpdateRequest,
integration_id: str,
)-> IntegrationUpdateResponse:
endpoint_url = "/integrations/{integration_id}"
loc = locals()
headers = {}
params = {}
path_params = json.loads(
IntegrationsUpdateIntegrationPathParameters(**loc).model_dump_json(
exclude_none=True
)
)
response = self.http_client.patch(
url=endpoint_url, path_params=path_params, params=params, headers=headers, json=json.loads(
request.model_dump_json(
exclude_unset=True
)
)
)
return IntegrationUpdateResponse(**response.json())
def get_integration_content(
self,
integration_id: str,
page: int = 1,
page_size: Optional[int] = None,
pull_limit: Optional[int] = None,
enable_ip_aggregation: bool = False,
)-> str:
endpoint_url = "/integrations/{integration_id}/content"
loc = locals()
headers = {}
params = json.loads(
IntegrationsGetIntegrationContentQueryParameters(**loc).model_dump_json(
exclude_none=True
)
)
path_params = json.loads(
IntegrationsGetIntegrationContentPathParameters(**loc).model_dump_json(
exclude_none=True
)
)
response = self.http_client.get(
url=endpoint_url, path_params=path_params, params=params, headers=headers
)
return response.text
def get_integration_content_stream(
self,
integration_id: str,
startup: bool = False,
):
endpoint_url = "/integrations/{integration_id}/v1/decisions/stream"
loc = locals()
headers = {}
params = json.loads(
IntegrationsGetIntegrationContentStreamQueryParameters(**loc).model_dump_json(
exclude_none=True
)
)
path_params = json.loads(
IntegrationsGetIntegrationContentStreamPathParameters(**loc).model_dump_json(
exclude_none=True
)
)
response = self.http_client.get(
url=endpoint_url, path_params=path_params, params=params, headers=headers
)
return None