@@ -50,44 +50,44 @@ def __str__(self) -> str:
5050@dataclass
5151class Cockpit :
5252 """
53- Cockpit
53+ Cockpit.
5454 """
5555
5656 project_id : str
5757 """
58- Project ID
58+ Project ID.
5959 """
6060
6161 created_at : Optional [datetime ]
6262 """
63- Created at
63+ Created at.
6464 """
6565
6666 updated_at : Optional [datetime ]
6767 """
68- Updated at
68+ Updated at.
6969 """
7070
7171 endpoints : Optional [CockpitEndpoints ]
7272 """
73- Endpoints
73+ Endpoints.
7474 """
7575
7676 status : CockpitStatus
7777 """
78- Status
78+ Status.
7979 """
8080
8181 managed_alerts_enabled : bool
8282 """
83- Managed alerts enabled
83+ Managed alerts enabled.
8484 """
8585
8686
8787@dataclass
8888class CockpitEndpoints :
8989 """
90- Cockpit. endpoints
90+ Cockpit. endpoints.
9191 """
9292
9393 metrics_url : str
@@ -102,7 +102,7 @@ class CockpitEndpoints:
102102@dataclass
103103class ContactPoint :
104104 """
105- Alert contact point
105+ Alert contact point.
106106 """
107107
108108 email : Optional [ContactPointEmail ]
@@ -121,7 +121,7 @@ class ContactPointEmail:
121121@dataclass
122122class GrafanaUser :
123123 """
124- Grafana user
124+ Grafana user.
125125 """
126126
127127 id : int
@@ -136,34 +136,34 @@ class GrafanaUser:
136136@dataclass
137137class ListContactPointsResponse :
138138 """
139- List contact points response
139+ List contact points response.
140140 """
141141
142142 total_count : int
143143 """
144- Total count of contact points
144+ Total count of contact points.
145145 """
146146
147147 contact_points : List [ContactPoint ]
148148 """
149- Contact points array
149+ Contact points array.
150150 """
151151
152152 has_additional_receivers : bool
153153 """
154- Has receivers other than default
154+ Has receivers other than default.
155155 """
156156
157157 has_additional_contact_points : bool
158158 """
159- Has unmanaged contact points
159+ Has unmanaged contact points.
160160 """
161161
162162
163163@dataclass
164164class ListGrafanaUsersResponse :
165165 """
166- List grafana users response
166+ List grafana users response.
167167 """
168168
169169 total_count : int
@@ -174,7 +174,7 @@ class ListGrafanaUsersResponse:
174174@dataclass
175175class ListTokensResponse :
176176 """
177- List tokens response
177+ List tokens response.
178178 """
179179
180180 total_count : int
@@ -185,7 +185,7 @@ class ListTokensResponse:
185185@dataclass
186186class Token :
187187 """
188- Token
188+ Token.
189189 """
190190
191191 id : str
@@ -206,7 +206,7 @@ class Token:
206206@dataclass
207207class TokenScopes :
208208 """
209- Token scopes
209+ Token scopes.
210210 """
211211
212212 query_metrics : bool
@@ -278,30 +278,30 @@ class DeleteTokenRequest:
278278class CreateContactPointRequest :
279279 project_id : Optional [str ]
280280 """
281- Project ID
281+ Project ID.
282282 """
283283
284284 contact_point : Optional [ContactPoint ]
285285 """
286- Contact point to create
286+ Contact point to create.
287287 """
288288
289289
290290@dataclass
291291class ListContactPointsRequest :
292292 page : Optional [int ]
293293 """
294- Page number
294+ Page number.
295295 """
296296
297297 page_size : Optional [int ]
298298 """
299- Page size
299+ Page size.
300300 """
301301
302302 project_id : Optional [str ]
303303 """
304- Project ID
304+ Project ID.
305305 """
306306
307307
@@ -311,7 +311,7 @@ class DeleteContactPointRequest:
311311
312312 contact_point : Optional [ContactPoint ]
313313 """
314- Contact point to delete
314+ Contact point to delete.
315315 """
316316
317317
0 commit comments