cribl-control-plane 0.0.26a1__py3-none-any.whl → 0.0.28__py3-none-any.whl

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.

Potentially problematic release.


This version of cribl-control-plane might be problematic. Click here for more details.

Files changed (132) hide show
  1. cribl_control_plane/_hooks/clientcredentials.py +22 -7
  2. cribl_control_plane/_version.py +4 -4
  3. cribl_control_plane/acl.py +203 -0
  4. cribl_control_plane/auth_sdk.py +9 -176
  5. cribl_control_plane/branches.py +335 -0
  6. cribl_control_plane/commits.py +1141 -0
  7. cribl_control_plane/commits_files.py +371 -0
  8. cribl_control_plane/configs_versions.py +189 -0
  9. cribl_control_plane/destinations.py +18 -729
  10. cribl_control_plane/destinations_pq.py +359 -0
  11. cribl_control_plane/errors/__init__.py +3 -2
  12. cribl_control_plane/errors/healthstatus_error.py +1 -1
  13. cribl_control_plane/groups_configs.py +17 -0
  14. cribl_control_plane/groups_sdk.py +18 -551
  15. cribl_control_plane/{healthinfo.py → health.py} +3 -1
  16. cribl_control_plane/hectokens.py +479 -0
  17. cribl_control_plane/models/__init__.py +6 -37
  18. cribl_control_plane/models/healthstatus.py +3 -3
  19. cribl_control_plane/models/inputappscope.py +5 -5
  20. cribl_control_plane/models/inputcollection.py +2 -2
  21. cribl_control_plane/models/inputconfluentcloud.py +3 -3
  22. cribl_control_plane/models/inputcribl.py +5 -5
  23. cribl_control_plane/models/inputcriblhttp.py +3 -3
  24. cribl_control_plane/models/inputcribllakehttp.py +3 -3
  25. cribl_control_plane/models/inputcriblmetrics.py +5 -5
  26. cribl_control_plane/models/inputcribltcp.py +3 -3
  27. cribl_control_plane/models/inputdatadogagent.py +3 -3
  28. cribl_control_plane/models/inputedgeprometheus.py +3 -3
  29. cribl_control_plane/models/inputelastic.py +3 -3
  30. cribl_control_plane/models/inputeventhub.py +3 -3
  31. cribl_control_plane/models/inputfile.py +5 -5
  32. cribl_control_plane/models/inputfirehose.py +3 -3
  33. cribl_control_plane/models/inputgooglepubsub.py +3 -3
  34. cribl_control_plane/models/inputgrafana.py +6 -6
  35. cribl_control_plane/models/inputhttp.py +3 -3
  36. cribl_control_plane/models/inputhttpraw.py +3 -3
  37. cribl_control_plane/models/inputjournalfiles.py +3 -3
  38. cribl_control_plane/models/inputkafka.py +3 -3
  39. cribl_control_plane/models/inputkinesis.py +3 -3
  40. cribl_control_plane/models/inputkubeevents.py +5 -5
  41. cribl_control_plane/models/inputkubelogs.py +5 -5
  42. cribl_control_plane/models/inputkubemetrics.py +5 -5
  43. cribl_control_plane/models/inputloki.py +3 -3
  44. cribl_control_plane/models/inputmodeldriventelemetry.py +3 -3
  45. cribl_control_plane/models/inputmsk.py +3 -3
  46. cribl_control_plane/models/inputnetflow.py +3 -3
  47. cribl_control_plane/models/inputoffice365mgmt.py +3 -3
  48. cribl_control_plane/models/inputoffice365msgtrace.py +3 -3
  49. cribl_control_plane/models/inputoffice365service.py +3 -3
  50. cribl_control_plane/models/inputopentelemetry.py +3 -3
  51. cribl_control_plane/models/inputprometheus.py +3 -3
  52. cribl_control_plane/models/inputprometheusrw.py +3 -3
  53. cribl_control_plane/models/inputrawudp.py +3 -3
  54. cribl_control_plane/models/inputsnmp.py +3 -3
  55. cribl_control_plane/models/inputsplunk.py +3 -3
  56. cribl_control_plane/models/inputsplunkhec.py +3 -3
  57. cribl_control_plane/models/inputsplunksearch.py +3 -3
  58. cribl_control_plane/models/inputsqs.py +3 -3
  59. cribl_control_plane/models/inputsystemmetrics.py +5 -5
  60. cribl_control_plane/models/inputsystemstate.py +5 -5
  61. cribl_control_plane/models/inputtcp.py +3 -3
  62. cribl_control_plane/models/inputtcpjson.py +3 -3
  63. cribl_control_plane/models/inputwef.py +3 -3
  64. cribl_control_plane/models/inputwindowsmetrics.py +5 -5
  65. cribl_control_plane/models/inputwiz.py +3 -3
  66. cribl_control_plane/models/inputzscalerhec.py +3 -3
  67. cribl_control_plane/models/outputazureblob.py +3 -3
  68. cribl_control_plane/models/outputazuredataexplorer.py +3 -3
  69. cribl_control_plane/models/outputazureeventhub.py +3 -3
  70. cribl_control_plane/models/outputclickhouse.py +3 -3
  71. cribl_control_plane/models/outputcloudwatch.py +3 -3
  72. cribl_control_plane/models/outputconfluentcloud.py +3 -3
  73. cribl_control_plane/models/outputcriblhttp.py +5 -5
  74. cribl_control_plane/models/outputcribllake.py +5 -5
  75. cribl_control_plane/models/outputcribltcp.py +5 -5
  76. cribl_control_plane/models/outputcrowdstrikenextgensiem.py +3 -3
  77. cribl_control_plane/models/outputdatadog.py +5 -5
  78. cribl_control_plane/models/outputdataset.py +5 -5
  79. cribl_control_plane/models/outputdevnull.py +5 -5
  80. cribl_control_plane/models/outputdiskspool.py +5 -5
  81. cribl_control_plane/models/outputdls3.py +3 -3
  82. cribl_control_plane/models/outputdynatracehttp.py +3 -3
  83. cribl_control_plane/models/outputdynatraceotlp.py +3 -3
  84. cribl_control_plane/models/outputelasticcloud.py +3 -3
  85. cribl_control_plane/models/outputexabeam.py +3 -3
  86. cribl_control_plane/models/outputgooglecloudlogging.py +3 -3
  87. cribl_control_plane/models/outputgooglecloudstorage.py +3 -3
  88. cribl_control_plane/models/outputgrafanacloud.py +10 -10
  89. cribl_control_plane/models/outputgraphite.py +3 -3
  90. cribl_control_plane/models/outputhumiohec.py +3 -3
  91. cribl_control_plane/models/outputkafka.py +3 -3
  92. cribl_control_plane/models/outputkinesis.py +3 -3
  93. cribl_control_plane/models/outputminio.py +3 -3
  94. cribl_control_plane/models/outputmsk.py +3 -3
  95. cribl_control_plane/models/outputnewrelic.py +5 -5
  96. cribl_control_plane/models/outputnewrelicevents.py +3 -3
  97. cribl_control_plane/models/outputring.py +5 -5
  98. cribl_control_plane/models/outputs3.py +3 -3
  99. cribl_control_plane/models/outputsecuritylake.py +3 -3
  100. cribl_control_plane/models/outputsentinel.py +3 -3
  101. cribl_control_plane/models/outputsentineloneaisiem.py +3 -3
  102. cribl_control_plane/models/outputservicenow.py +3 -3
  103. cribl_control_plane/models/outputsns.py +3 -3
  104. cribl_control_plane/models/outputsplunk.py +3 -3
  105. cribl_control_plane/models/outputsplunkhec.py +5 -5
  106. cribl_control_plane/models/outputsqs.py +3 -3
  107. cribl_control_plane/models/outputstatsd.py +3 -3
  108. cribl_control_plane/models/outputstatsdext.py +3 -3
  109. cribl_control_plane/models/outputsyslog.py +5 -5
  110. cribl_control_plane/models/outputtcpjson.py +5 -5
  111. cribl_control_plane/models/outputwebhook.py +5 -5
  112. cribl_control_plane/models/outputxsiam.py +5 -5
  113. cribl_control_plane/models/schemeclientoauth.py +5 -0
  114. cribl_control_plane/nodes.py +90 -68
  115. cribl_control_plane/samples.py +391 -0
  116. cribl_control_plane/sdk.py +11 -17
  117. cribl_control_plane/sources.py +15 -469
  118. cribl_control_plane/{workers_sdk.py → statuses.py} +23 -25
  119. cribl_control_plane/{deployments.py → summaries.py} +3 -3
  120. cribl_control_plane/teams.py +201 -0
  121. cribl_control_plane/tokens.py +182 -0
  122. cribl_control_plane/utils/__init__.py +3 -2
  123. cribl_control_plane/utils/security.py +5 -0
  124. cribl_control_plane/versions.py +26 -0
  125. cribl_control_plane/versions_configs.py +171 -0
  126. {cribl_control_plane-0.0.26a1.dist-info → cribl_control_plane-0.0.28.dist-info}/METADATA +77 -38
  127. {cribl_control_plane-0.0.26a1.dist-info → cribl_control_plane-0.0.28.dist-info}/RECORD +128 -119
  128. cribl_control_plane/models/createversionsyncop.py +0 -23
  129. cribl_control_plane/models/restartresponse.py +0 -26
  130. cribl_control_plane/models/updateworkersrestartop.py +0 -24
  131. cribl_control_plane/versioning.py +0 -2309
  132. {cribl_control_plane-0.0.26a1.dist-info → cribl_control_plane-0.0.28.dist-info}/WHEEL +0 -0
@@ -0,0 +1,359 @@
1
+ """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
+
3
+ from .basesdk import BaseSDK
4
+ from cribl_control_plane import errors, models, utils
5
+ from cribl_control_plane._hooks import HookContext
6
+ from cribl_control_plane.types import OptionalNullable, UNSET
7
+ from cribl_control_plane.utils import get_security_from_env
8
+ from cribl_control_plane.utils.unmarshal_json_response import unmarshal_json_response
9
+ from typing import Any, Mapping, Optional
10
+
11
+
12
+ class DestinationsPq(BaseSDK):
13
+ def clear(
14
+ self,
15
+ *,
16
+ id: str,
17
+ retries: OptionalNullable[utils.RetryConfig] = UNSET,
18
+ server_url: Optional[str] = None,
19
+ timeout_ms: Optional[int] = None,
20
+ http_headers: Optional[Mapping[str, str]] = None,
21
+ ) -> models.DeleteOutputPqByIDResponse:
22
+ r"""Clear the persistent queue for a Destination
23
+
24
+ Clears destination persistent queue
25
+
26
+ :param id: Destination Id
27
+ :param retries: Override the default retry configuration for this method
28
+ :param server_url: Override the default server URL for this method
29
+ :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
30
+ :param http_headers: Additional headers to set or replace on requests.
31
+ """
32
+ base_url = None
33
+ url_variables = None
34
+ if timeout_ms is None:
35
+ timeout_ms = self.sdk_configuration.timeout_ms
36
+
37
+ if server_url is not None:
38
+ base_url = server_url
39
+ else:
40
+ base_url = self._get_url(base_url, url_variables)
41
+
42
+ request = models.DeleteOutputPqByIDRequest(
43
+ id=id,
44
+ )
45
+
46
+ req = self._build_request(
47
+ method="DELETE",
48
+ path="/system/outputs/{id}/pq",
49
+ base_url=base_url,
50
+ url_variables=url_variables,
51
+ request=request,
52
+ request_body_required=False,
53
+ request_has_path_params=True,
54
+ request_has_query_params=True,
55
+ user_agent_header="user-agent",
56
+ accept_header_value="application/json",
57
+ http_headers=http_headers,
58
+ security=self.sdk_configuration.security,
59
+ timeout_ms=timeout_ms,
60
+ )
61
+
62
+ if retries == UNSET:
63
+ if self.sdk_configuration.retry_config is not UNSET:
64
+ retries = self.sdk_configuration.retry_config
65
+
66
+ retry_config = None
67
+ if isinstance(retries, utils.RetryConfig):
68
+ retry_config = (retries, ["429", "500", "502", "503", "504"])
69
+
70
+ http_res = self.do_request(
71
+ hook_ctx=HookContext(
72
+ config=self.sdk_configuration,
73
+ base_url=base_url or "",
74
+ operation_id="deleteOutputPqById",
75
+ oauth2_scopes=[],
76
+ security_source=get_security_from_env(
77
+ self.sdk_configuration.security, models.Security
78
+ ),
79
+ ),
80
+ request=req,
81
+ error_status_codes=["401", "4XX", "500", "5XX"],
82
+ retry_config=retry_config,
83
+ )
84
+
85
+ response_data: Any = None
86
+ if utils.match_response(http_res, "200", "application/json"):
87
+ return unmarshal_json_response(models.DeleteOutputPqByIDResponse, http_res)
88
+ if utils.match_response(http_res, "500", "application/json"):
89
+ response_data = unmarshal_json_response(errors.ErrorData, http_res)
90
+ raise errors.Error(response_data, http_res)
91
+ if utils.match_response(http_res, ["401", "4XX"], "*"):
92
+ http_res_text = utils.stream_to_text(http_res)
93
+ raise errors.APIError("API error occurred", http_res, http_res_text)
94
+ if utils.match_response(http_res, "5XX", "*"):
95
+ http_res_text = utils.stream_to_text(http_res)
96
+ raise errors.APIError("API error occurred", http_res, http_res_text)
97
+
98
+ raise errors.APIError("Unexpected response received", http_res)
99
+
100
+ async def clear_async(
101
+ self,
102
+ *,
103
+ id: str,
104
+ retries: OptionalNullable[utils.RetryConfig] = UNSET,
105
+ server_url: Optional[str] = None,
106
+ timeout_ms: Optional[int] = None,
107
+ http_headers: Optional[Mapping[str, str]] = None,
108
+ ) -> models.DeleteOutputPqByIDResponse:
109
+ r"""Clear the persistent queue for a Destination
110
+
111
+ Clears destination persistent queue
112
+
113
+ :param id: Destination Id
114
+ :param retries: Override the default retry configuration for this method
115
+ :param server_url: Override the default server URL for this method
116
+ :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
117
+ :param http_headers: Additional headers to set or replace on requests.
118
+ """
119
+ base_url = None
120
+ url_variables = None
121
+ if timeout_ms is None:
122
+ timeout_ms = self.sdk_configuration.timeout_ms
123
+
124
+ if server_url is not None:
125
+ base_url = server_url
126
+ else:
127
+ base_url = self._get_url(base_url, url_variables)
128
+
129
+ request = models.DeleteOutputPqByIDRequest(
130
+ id=id,
131
+ )
132
+
133
+ req = self._build_request_async(
134
+ method="DELETE",
135
+ path="/system/outputs/{id}/pq",
136
+ base_url=base_url,
137
+ url_variables=url_variables,
138
+ request=request,
139
+ request_body_required=False,
140
+ request_has_path_params=True,
141
+ request_has_query_params=True,
142
+ user_agent_header="user-agent",
143
+ accept_header_value="application/json",
144
+ http_headers=http_headers,
145
+ security=self.sdk_configuration.security,
146
+ timeout_ms=timeout_ms,
147
+ )
148
+
149
+ if retries == UNSET:
150
+ if self.sdk_configuration.retry_config is not UNSET:
151
+ retries = self.sdk_configuration.retry_config
152
+
153
+ retry_config = None
154
+ if isinstance(retries, utils.RetryConfig):
155
+ retry_config = (retries, ["429", "500", "502", "503", "504"])
156
+
157
+ http_res = await self.do_request_async(
158
+ hook_ctx=HookContext(
159
+ config=self.sdk_configuration,
160
+ base_url=base_url or "",
161
+ operation_id="deleteOutputPqById",
162
+ oauth2_scopes=[],
163
+ security_source=get_security_from_env(
164
+ self.sdk_configuration.security, models.Security
165
+ ),
166
+ ),
167
+ request=req,
168
+ error_status_codes=["401", "4XX", "500", "5XX"],
169
+ retry_config=retry_config,
170
+ )
171
+
172
+ response_data: Any = None
173
+ if utils.match_response(http_res, "200", "application/json"):
174
+ return unmarshal_json_response(models.DeleteOutputPqByIDResponse, http_res)
175
+ if utils.match_response(http_res, "500", "application/json"):
176
+ response_data = unmarshal_json_response(errors.ErrorData, http_res)
177
+ raise errors.Error(response_data, http_res)
178
+ if utils.match_response(http_res, ["401", "4XX"], "*"):
179
+ http_res_text = await utils.stream_to_text_async(http_res)
180
+ raise errors.APIError("API error occurred", http_res, http_res_text)
181
+ if utils.match_response(http_res, "5XX", "*"):
182
+ http_res_text = await utils.stream_to_text_async(http_res)
183
+ raise errors.APIError("API error occurred", http_res, http_res_text)
184
+
185
+ raise errors.APIError("Unexpected response received", http_res)
186
+
187
+ def get(
188
+ self,
189
+ *,
190
+ id: str,
191
+ retries: OptionalNullable[utils.RetryConfig] = UNSET,
192
+ server_url: Optional[str] = None,
193
+ timeout_ms: Optional[int] = None,
194
+ http_headers: Optional[Mapping[str, str]] = None,
195
+ ) -> models.GetOutputPqByIDResponse:
196
+ r"""Retrieve information about the latest job to clear the persistent queue for a Destination
197
+
198
+ Retrieves status of latest clear PQ job for a destination
199
+
200
+ :param id: Destination Id
201
+ :param retries: Override the default retry configuration for this method
202
+ :param server_url: Override the default server URL for this method
203
+ :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
204
+ :param http_headers: Additional headers to set or replace on requests.
205
+ """
206
+ base_url = None
207
+ url_variables = None
208
+ if timeout_ms is None:
209
+ timeout_ms = self.sdk_configuration.timeout_ms
210
+
211
+ if server_url is not None:
212
+ base_url = server_url
213
+ else:
214
+ base_url = self._get_url(base_url, url_variables)
215
+
216
+ request = models.GetOutputPqByIDRequest(
217
+ id=id,
218
+ )
219
+
220
+ req = self._build_request(
221
+ method="GET",
222
+ path="/system/outputs/{id}/pq",
223
+ base_url=base_url,
224
+ url_variables=url_variables,
225
+ request=request,
226
+ request_body_required=False,
227
+ request_has_path_params=True,
228
+ request_has_query_params=True,
229
+ user_agent_header="user-agent",
230
+ accept_header_value="application/json",
231
+ http_headers=http_headers,
232
+ security=self.sdk_configuration.security,
233
+ timeout_ms=timeout_ms,
234
+ )
235
+
236
+ if retries == UNSET:
237
+ if self.sdk_configuration.retry_config is not UNSET:
238
+ retries = self.sdk_configuration.retry_config
239
+
240
+ retry_config = None
241
+ if isinstance(retries, utils.RetryConfig):
242
+ retry_config = (retries, ["429", "500", "502", "503", "504"])
243
+
244
+ http_res = self.do_request(
245
+ hook_ctx=HookContext(
246
+ config=self.sdk_configuration,
247
+ base_url=base_url or "",
248
+ operation_id="getOutputPqById",
249
+ oauth2_scopes=[],
250
+ security_source=get_security_from_env(
251
+ self.sdk_configuration.security, models.Security
252
+ ),
253
+ ),
254
+ request=req,
255
+ error_status_codes=["401", "4XX", "500", "5XX"],
256
+ retry_config=retry_config,
257
+ )
258
+
259
+ response_data: Any = None
260
+ if utils.match_response(http_res, "200", "application/json"):
261
+ return unmarshal_json_response(models.GetOutputPqByIDResponse, http_res)
262
+ if utils.match_response(http_res, "500", "application/json"):
263
+ response_data = unmarshal_json_response(errors.ErrorData, http_res)
264
+ raise errors.Error(response_data, http_res)
265
+ if utils.match_response(http_res, ["401", "4XX"], "*"):
266
+ http_res_text = utils.stream_to_text(http_res)
267
+ raise errors.APIError("API error occurred", http_res, http_res_text)
268
+ if utils.match_response(http_res, "5XX", "*"):
269
+ http_res_text = utils.stream_to_text(http_res)
270
+ raise errors.APIError("API error occurred", http_res, http_res_text)
271
+
272
+ raise errors.APIError("Unexpected response received", http_res)
273
+
274
+ async def get_async(
275
+ self,
276
+ *,
277
+ id: str,
278
+ retries: OptionalNullable[utils.RetryConfig] = UNSET,
279
+ server_url: Optional[str] = None,
280
+ timeout_ms: Optional[int] = None,
281
+ http_headers: Optional[Mapping[str, str]] = None,
282
+ ) -> models.GetOutputPqByIDResponse:
283
+ r"""Retrieve information about the latest job to clear the persistent queue for a Destination
284
+
285
+ Retrieves status of latest clear PQ job for a destination
286
+
287
+ :param id: Destination Id
288
+ :param retries: Override the default retry configuration for this method
289
+ :param server_url: Override the default server URL for this method
290
+ :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
291
+ :param http_headers: Additional headers to set or replace on requests.
292
+ """
293
+ base_url = None
294
+ url_variables = None
295
+ if timeout_ms is None:
296
+ timeout_ms = self.sdk_configuration.timeout_ms
297
+
298
+ if server_url is not None:
299
+ base_url = server_url
300
+ else:
301
+ base_url = self._get_url(base_url, url_variables)
302
+
303
+ request = models.GetOutputPqByIDRequest(
304
+ id=id,
305
+ )
306
+
307
+ req = self._build_request_async(
308
+ method="GET",
309
+ path="/system/outputs/{id}/pq",
310
+ base_url=base_url,
311
+ url_variables=url_variables,
312
+ request=request,
313
+ request_body_required=False,
314
+ request_has_path_params=True,
315
+ request_has_query_params=True,
316
+ user_agent_header="user-agent",
317
+ accept_header_value="application/json",
318
+ http_headers=http_headers,
319
+ security=self.sdk_configuration.security,
320
+ timeout_ms=timeout_ms,
321
+ )
322
+
323
+ if retries == UNSET:
324
+ if self.sdk_configuration.retry_config is not UNSET:
325
+ retries = self.sdk_configuration.retry_config
326
+
327
+ retry_config = None
328
+ if isinstance(retries, utils.RetryConfig):
329
+ retry_config = (retries, ["429", "500", "502", "503", "504"])
330
+
331
+ http_res = await self.do_request_async(
332
+ hook_ctx=HookContext(
333
+ config=self.sdk_configuration,
334
+ base_url=base_url or "",
335
+ operation_id="getOutputPqById",
336
+ oauth2_scopes=[],
337
+ security_source=get_security_from_env(
338
+ self.sdk_configuration.security, models.Security
339
+ ),
340
+ ),
341
+ request=req,
342
+ error_status_codes=["401", "4XX", "500", "5XX"],
343
+ retry_config=retry_config,
344
+ )
345
+
346
+ response_data: Any = None
347
+ if utils.match_response(http_res, "200", "application/json"):
348
+ return unmarshal_json_response(models.GetOutputPqByIDResponse, http_res)
349
+ if utils.match_response(http_res, "500", "application/json"):
350
+ response_data = unmarshal_json_response(errors.ErrorData, http_res)
351
+ raise errors.Error(response_data, http_res)
352
+ if utils.match_response(http_res, ["401", "4XX"], "*"):
353
+ http_res_text = await utils.stream_to_text_async(http_res)
354
+ raise errors.APIError("API error occurred", http_res, http_res_text)
355
+ if utils.match_response(http_res, "5XX", "*"):
356
+ http_res_text = await utils.stream_to_text_async(http_res)
357
+ raise errors.APIError("API error occurred", http_res, http_res_text)
358
+
359
+ raise errors.APIError("Unexpected response received", http_res)
@@ -2,6 +2,7 @@
2
2
 
3
3
  from typing import TYPE_CHECKING
4
4
  from importlib import import_module
5
+ import builtins
5
6
 
6
7
  if TYPE_CHECKING:
7
8
  from .apierror import APIError
@@ -56,5 +57,5 @@ def __getattr__(attr_name: str) -> object:
56
57
 
57
58
 
58
59
  def __dir__():
59
- lazy_attrs = list(_dynamic_imports.keys())
60
- return sorted(lazy_attrs)
60
+ lazy_attrs = builtins.list(_dynamic_imports.keys())
61
+ return builtins.sorted(lazy_attrs)
@@ -11,7 +11,7 @@ from typing_extensions import Annotated
11
11
 
12
12
 
13
13
  class HealthStatusErrorData(BaseModel):
14
- status: models_healthstatus.HealthStatusStatus
14
+ status: models_healthstatus.Status
15
15
 
16
16
  start_time: Annotated[float, pydantic.Field(alias="startTime")]
17
17
 
@@ -0,0 +1,17 @@
1
+ """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
+
3
+ from .basesdk import BaseSDK
4
+ from .sdkconfiguration import SDKConfiguration
5
+ from cribl_control_plane.configs_versions import ConfigsVersions
6
+
7
+
8
+ class GroupsConfigs(BaseSDK):
9
+ versions: ConfigsVersions
10
+
11
+ def __init__(self, sdk_config: SDKConfiguration) -> None:
12
+ BaseSDK.__init__(self, sdk_config)
13
+ self.sdk_configuration = sdk_config
14
+ self._init_sdks()
15
+
16
+ def _init_sdks(self):
17
+ self.versions = ConfigsVersions(self.sdk_configuration)