cribl-control-plane 0.4.0a6__py3-none-any.whl → 0.4.0a12__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.
- cribl_control_plane/_version.py +4 -4
- cribl_control_plane/acl.py +2 -0
- cribl_control_plane/basesdk.py +6 -0
- cribl_control_plane/branches.py +4 -0
- cribl_control_plane/commits.py +14 -0
- cribl_control_plane/commits_files.py +4 -0
- cribl_control_plane/configs_versions.py +2 -0
- cribl_control_plane/destinations.py +10 -0
- cribl_control_plane/destinations_pq.py +4 -0
- cribl_control_plane/groups_sdk.py +12 -0
- cribl_control_plane/health.py +2 -0
- cribl_control_plane/hectokens.py +16 -0
- cribl_control_plane/lakedatasets.py +46 -0
- cribl_control_plane/models/addhectokenrequest.py +7 -1
- cribl_control_plane/models/getcribllakedatasetbylakeidop.py +59 -1
- cribl_control_plane/models/outputnetflow.py +7 -0
- cribl_control_plane/models/updatehectokenrequest.py +7 -1
- cribl_control_plane/nodes.py +4 -0
- cribl_control_plane/packs.py +12 -0
- cribl_control_plane/pipelines.py +10 -0
- cribl_control_plane/routes_sdk.py +8 -0
- cribl_control_plane/samples.py +4 -0
- cribl_control_plane/sources.py +10 -0
- cribl_control_plane/statuses.py +2 -0
- cribl_control_plane/summaries.py +2 -0
- cribl_control_plane/teams.py +2 -0
- cribl_control_plane/tokens.py +2 -0
- cribl_control_plane/utils/forms.py +21 -10
- cribl_control_plane/utils/queryparams.py +14 -2
- cribl_control_plane/versions_configs.py +2 -0
- {cribl_control_plane-0.4.0a6.dist-info → cribl_control_plane-0.4.0a12.dist-info}/METADATA +23 -23
- {cribl_control_plane-0.4.0a6.dist-info → cribl_control_plane-0.4.0a12.dist-info}/RECORD +34 -34
- {cribl_control_plane-0.4.0a6.dist-info → cribl_control_plane-0.4.0a12.dist-info}/WHEEL +0 -0
- {cribl_control_plane-0.4.0a6.dist-info → cribl_control_plane-0.4.0a12.dist-info}/licenses/LICENSE +0 -0
cribl_control_plane/_version.py
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
import importlib.metadata
|
|
4
4
|
|
|
5
5
|
__title__: str = "cribl-control-plane"
|
|
6
|
-
__version__: str = "0.4.
|
|
7
|
-
__openapi_doc_version__: str = "4.15.
|
|
8
|
-
__gen_version__: str = "2.
|
|
9
|
-
__user_agent__: str = "speakeasy-sdk/python 0.4.
|
|
6
|
+
__version__: str = "0.4.0a12"
|
|
7
|
+
__openapi_doc_version__: str = "4.15.1-alpha.1764975753193-67dd5070"
|
|
8
|
+
__gen_version__: str = "2.778.0"
|
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 0.4.0a12 2.778.0 4.15.1-alpha.1764975753193-67dd5070 cribl-control-plane"
|
|
10
10
|
|
|
11
11
|
try:
|
|
12
12
|
if __package__ is not None:
|
cribl_control_plane/acl.py
CHANGED
|
@@ -76,6 +76,7 @@ class ACL(BaseSDK):
|
|
|
76
76
|
accept_header_value="application/json",
|
|
77
77
|
http_headers=http_headers,
|
|
78
78
|
security=self.sdk_configuration.security,
|
|
79
|
+
allow_empty_value=None,
|
|
79
80
|
timeout_ms=timeout_ms,
|
|
80
81
|
)
|
|
81
82
|
|
|
@@ -171,6 +172,7 @@ class ACL(BaseSDK):
|
|
|
171
172
|
accept_header_value="application/json",
|
|
172
173
|
http_headers=http_headers,
|
|
173
174
|
security=self.sdk_configuration.security,
|
|
175
|
+
allow_empty_value=None,
|
|
174
176
|
timeout_ms=timeout_ms,
|
|
175
177
|
)
|
|
176
178
|
|
cribl_control_plane/basesdk.py
CHANGED
|
@@ -64,6 +64,7 @@ class BaseSDK:
|
|
|
64
64
|
] = None,
|
|
65
65
|
url_override: Optional[str] = None,
|
|
66
66
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
67
|
+
allow_empty_value: Optional[List[str]] = None,
|
|
67
68
|
) -> httpx.Request:
|
|
68
69
|
client = self.sdk_configuration.async_client
|
|
69
70
|
return self._build_request_with_client(
|
|
@@ -84,6 +85,7 @@ class BaseSDK:
|
|
|
84
85
|
get_serialized_body,
|
|
85
86
|
url_override,
|
|
86
87
|
http_headers,
|
|
88
|
+
allow_empty_value,
|
|
87
89
|
)
|
|
88
90
|
|
|
89
91
|
def _build_request(
|
|
@@ -106,6 +108,7 @@ class BaseSDK:
|
|
|
106
108
|
] = None,
|
|
107
109
|
url_override: Optional[str] = None,
|
|
108
110
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
111
|
+
allow_empty_value: Optional[List[str]] = None,
|
|
109
112
|
) -> httpx.Request:
|
|
110
113
|
client = self.sdk_configuration.client
|
|
111
114
|
return self._build_request_with_client(
|
|
@@ -126,6 +129,7 @@ class BaseSDK:
|
|
|
126
129
|
get_serialized_body,
|
|
127
130
|
url_override,
|
|
128
131
|
http_headers,
|
|
132
|
+
allow_empty_value,
|
|
129
133
|
)
|
|
130
134
|
|
|
131
135
|
def _build_request_with_client(
|
|
@@ -149,6 +153,7 @@ class BaseSDK:
|
|
|
149
153
|
] = None,
|
|
150
154
|
url_override: Optional[str] = None,
|
|
151
155
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
156
|
+
allow_empty_value: Optional[List[str]] = None,
|
|
152
157
|
) -> httpx.Request:
|
|
153
158
|
query_params = {}
|
|
154
159
|
|
|
@@ -164,6 +169,7 @@ class BaseSDK:
|
|
|
164
169
|
query_params = utils.get_query_params(
|
|
165
170
|
request if request_has_query_params else None,
|
|
166
171
|
_globals if request_has_query_params else None,
|
|
172
|
+
allow_empty_value,
|
|
167
173
|
)
|
|
168
174
|
else:
|
|
169
175
|
# Pick up the query parameter from the override so they can be
|
cribl_control_plane/branches.py
CHANGED
|
@@ -49,6 +49,7 @@ class Branches(BaseSDK):
|
|
|
49
49
|
accept_header_value="application/json",
|
|
50
50
|
http_headers=http_headers,
|
|
51
51
|
security=self.sdk_configuration.security,
|
|
52
|
+
allow_empty_value=None,
|
|
52
53
|
timeout_ms=timeout_ms,
|
|
53
54
|
)
|
|
54
55
|
|
|
@@ -129,6 +130,7 @@ class Branches(BaseSDK):
|
|
|
129
130
|
accept_header_value="application/json",
|
|
130
131
|
http_headers=http_headers,
|
|
131
132
|
security=self.sdk_configuration.security,
|
|
133
|
+
allow_empty_value=None,
|
|
132
134
|
timeout_ms=timeout_ms,
|
|
133
135
|
)
|
|
134
136
|
|
|
@@ -209,6 +211,7 @@ class Branches(BaseSDK):
|
|
|
209
211
|
accept_header_value="application/json",
|
|
210
212
|
http_headers=http_headers,
|
|
211
213
|
security=self.sdk_configuration.security,
|
|
214
|
+
allow_empty_value=None,
|
|
212
215
|
timeout_ms=timeout_ms,
|
|
213
216
|
)
|
|
214
217
|
|
|
@@ -289,6 +292,7 @@ class Branches(BaseSDK):
|
|
|
289
292
|
accept_header_value="application/json",
|
|
290
293
|
http_headers=http_headers,
|
|
291
294
|
security=self.sdk_configuration.security,
|
|
295
|
+
allow_empty_value=None,
|
|
292
296
|
timeout_ms=timeout_ms,
|
|
293
297
|
)
|
|
294
298
|
|
cribl_control_plane/commits.py
CHANGED
|
@@ -87,6 +87,7 @@ class Commits(BaseSDK):
|
|
|
87
87
|
get_serialized_body=lambda: utils.serialize_request_body(
|
|
88
88
|
request.git_commit_params, False, False, "json", models.GitCommitParams
|
|
89
89
|
),
|
|
90
|
+
allow_empty_value=None,
|
|
90
91
|
timeout_ms=timeout_ms,
|
|
91
92
|
)
|
|
92
93
|
|
|
@@ -191,6 +192,7 @@ class Commits(BaseSDK):
|
|
|
191
192
|
get_serialized_body=lambda: utils.serialize_request_body(
|
|
192
193
|
request.git_commit_params, False, False, "json", models.GitCommitParams
|
|
193
194
|
),
|
|
195
|
+
allow_empty_value=None,
|
|
194
196
|
timeout_ms=timeout_ms,
|
|
195
197
|
)
|
|
196
198
|
|
|
@@ -287,6 +289,7 @@ class Commits(BaseSDK):
|
|
|
287
289
|
accept_header_value="application/json",
|
|
288
290
|
http_headers=http_headers,
|
|
289
291
|
security=self.sdk_configuration.security,
|
|
292
|
+
allow_empty_value=None,
|
|
290
293
|
timeout_ms=timeout_ms,
|
|
291
294
|
)
|
|
292
295
|
|
|
@@ -383,6 +386,7 @@ class Commits(BaseSDK):
|
|
|
383
386
|
accept_header_value="application/json",
|
|
384
387
|
http_headers=http_headers,
|
|
385
388
|
security=self.sdk_configuration.security,
|
|
389
|
+
allow_empty_value=None,
|
|
386
390
|
timeout_ms=timeout_ms,
|
|
387
391
|
)
|
|
388
392
|
|
|
@@ -473,6 +477,7 @@ class Commits(BaseSDK):
|
|
|
473
477
|
accept_header_value="application/json",
|
|
474
478
|
http_headers=http_headers,
|
|
475
479
|
security=self.sdk_configuration.security,
|
|
480
|
+
allow_empty_value=None,
|
|
476
481
|
timeout_ms=timeout_ms,
|
|
477
482
|
)
|
|
478
483
|
|
|
@@ -563,6 +568,7 @@ class Commits(BaseSDK):
|
|
|
563
568
|
accept_header_value="application/json",
|
|
564
569
|
http_headers=http_headers,
|
|
565
570
|
security=self.sdk_configuration.security,
|
|
571
|
+
allow_empty_value=None,
|
|
566
572
|
timeout_ms=timeout_ms,
|
|
567
573
|
)
|
|
568
574
|
|
|
@@ -643,6 +649,7 @@ class Commits(BaseSDK):
|
|
|
643
649
|
accept_header_value="application/json",
|
|
644
650
|
http_headers=http_headers,
|
|
645
651
|
security=self.sdk_configuration.security,
|
|
652
|
+
allow_empty_value=None,
|
|
646
653
|
timeout_ms=timeout_ms,
|
|
647
654
|
)
|
|
648
655
|
|
|
@@ -723,6 +730,7 @@ class Commits(BaseSDK):
|
|
|
723
730
|
accept_header_value="application/json",
|
|
724
731
|
http_headers=http_headers,
|
|
725
732
|
security=self.sdk_configuration.security,
|
|
733
|
+
allow_empty_value=None,
|
|
726
734
|
timeout_ms=timeout_ms,
|
|
727
735
|
)
|
|
728
736
|
|
|
@@ -824,6 +832,7 @@ class Commits(BaseSDK):
|
|
|
824
832
|
get_serialized_body=lambda: utils.serialize_request_body(
|
|
825
833
|
request.git_revert_params, False, False, "json", models.GitRevertParams
|
|
826
834
|
),
|
|
835
|
+
allow_empty_value=None,
|
|
827
836
|
timeout_ms=timeout_ms,
|
|
828
837
|
)
|
|
829
838
|
|
|
@@ -925,6 +934,7 @@ class Commits(BaseSDK):
|
|
|
925
934
|
get_serialized_body=lambda: utils.serialize_request_body(
|
|
926
935
|
request.git_revert_params, False, False, "json", models.GitRevertParams
|
|
927
936
|
),
|
|
937
|
+
allow_empty_value=None,
|
|
928
938
|
timeout_ms=timeout_ms,
|
|
929
939
|
)
|
|
930
940
|
|
|
@@ -1021,6 +1031,7 @@ class Commits(BaseSDK):
|
|
|
1021
1031
|
accept_header_value="application/json",
|
|
1022
1032
|
http_headers=http_headers,
|
|
1023
1033
|
security=self.sdk_configuration.security,
|
|
1034
|
+
allow_empty_value=None,
|
|
1024
1035
|
timeout_ms=timeout_ms,
|
|
1025
1036
|
)
|
|
1026
1037
|
|
|
@@ -1117,6 +1128,7 @@ class Commits(BaseSDK):
|
|
|
1117
1128
|
accept_header_value="application/json",
|
|
1118
1129
|
http_headers=http_headers,
|
|
1119
1130
|
security=self.sdk_configuration.security,
|
|
1131
|
+
allow_empty_value=None,
|
|
1120
1132
|
timeout_ms=timeout_ms,
|
|
1121
1133
|
)
|
|
1122
1134
|
|
|
@@ -1204,6 +1216,7 @@ class Commits(BaseSDK):
|
|
|
1204
1216
|
accept_header_value="application/json",
|
|
1205
1217
|
http_headers=http_headers,
|
|
1206
1218
|
security=self.sdk_configuration.security,
|
|
1219
|
+
allow_empty_value=None,
|
|
1207
1220
|
timeout_ms=timeout_ms,
|
|
1208
1221
|
)
|
|
1209
1222
|
|
|
@@ -1291,6 +1304,7 @@ class Commits(BaseSDK):
|
|
|
1291
1304
|
accept_header_value="application/json",
|
|
1292
1305
|
http_headers=http_headers,
|
|
1293
1306
|
security=self.sdk_configuration.security,
|
|
1307
|
+
allow_empty_value=None,
|
|
1294
1308
|
timeout_ms=timeout_ms,
|
|
1295
1309
|
)
|
|
1296
1310
|
|
|
@@ -59,6 +59,7 @@ class CommitsFiles(BaseSDK):
|
|
|
59
59
|
accept_header_value="application/json",
|
|
60
60
|
http_headers=http_headers,
|
|
61
61
|
security=self.sdk_configuration.security,
|
|
62
|
+
allow_empty_value=None,
|
|
62
63
|
timeout_ms=timeout_ms,
|
|
63
64
|
)
|
|
64
65
|
|
|
@@ -149,6 +150,7 @@ class CommitsFiles(BaseSDK):
|
|
|
149
150
|
accept_header_value="application/json",
|
|
150
151
|
http_headers=http_headers,
|
|
151
152
|
security=self.sdk_configuration.security,
|
|
153
|
+
allow_empty_value=None,
|
|
152
154
|
timeout_ms=timeout_ms,
|
|
153
155
|
)
|
|
154
156
|
|
|
@@ -239,6 +241,7 @@ class CommitsFiles(BaseSDK):
|
|
|
239
241
|
accept_header_value="application/json",
|
|
240
242
|
http_headers=http_headers,
|
|
241
243
|
security=self.sdk_configuration.security,
|
|
244
|
+
allow_empty_value=None,
|
|
242
245
|
timeout_ms=timeout_ms,
|
|
243
246
|
)
|
|
244
247
|
|
|
@@ -329,6 +332,7 @@ class CommitsFiles(BaseSDK):
|
|
|
329
332
|
accept_header_value="application/json",
|
|
330
333
|
http_headers=http_headers,
|
|
331
334
|
security=self.sdk_configuration.security,
|
|
335
|
+
allow_empty_value=None,
|
|
332
336
|
timeout_ms=timeout_ms,
|
|
333
337
|
)
|
|
334
338
|
|
|
@@ -59,6 +59,7 @@ class ConfigsVersions(BaseSDK):
|
|
|
59
59
|
accept_header_value="application/json",
|
|
60
60
|
http_headers=http_headers,
|
|
61
61
|
security=self.sdk_configuration.security,
|
|
62
|
+
allow_empty_value=None,
|
|
62
63
|
timeout_ms=timeout_ms,
|
|
63
64
|
)
|
|
64
65
|
|
|
@@ -151,6 +152,7 @@ class ConfigsVersions(BaseSDK):
|
|
|
151
152
|
accept_header_value="application/json",
|
|
152
153
|
http_headers=http_headers,
|
|
153
154
|
security=self.sdk_configuration.security,
|
|
155
|
+
allow_empty_value=None,
|
|
154
156
|
timeout_ms=timeout_ms,
|
|
155
157
|
)
|
|
156
158
|
|
|
@@ -68,6 +68,7 @@ class Destinations(BaseSDK):
|
|
|
68
68
|
accept_header_value="application/json",
|
|
69
69
|
http_headers=http_headers,
|
|
70
70
|
security=self.sdk_configuration.security,
|
|
71
|
+
allow_empty_value=None,
|
|
71
72
|
timeout_ms=timeout_ms,
|
|
72
73
|
)
|
|
73
74
|
|
|
@@ -148,6 +149,7 @@ class Destinations(BaseSDK):
|
|
|
148
149
|
accept_header_value="application/json",
|
|
149
150
|
http_headers=http_headers,
|
|
150
151
|
security=self.sdk_configuration.security,
|
|
152
|
+
allow_empty_value=None,
|
|
151
153
|
timeout_ms=timeout_ms,
|
|
152
154
|
)
|
|
153
155
|
|
|
@@ -238,6 +240,7 @@ class Destinations(BaseSDK):
|
|
|
238
240
|
get_serialized_body=lambda: utils.serialize_request_body(
|
|
239
241
|
request, False, False, "json", models.Output
|
|
240
242
|
),
|
|
243
|
+
allow_empty_value=None,
|
|
241
244
|
timeout_ms=timeout_ms,
|
|
242
245
|
)
|
|
243
246
|
|
|
@@ -328,6 +331,7 @@ class Destinations(BaseSDK):
|
|
|
328
331
|
get_serialized_body=lambda: utils.serialize_request_body(
|
|
329
332
|
request, False, False, "json", models.Output
|
|
330
333
|
),
|
|
334
|
+
allow_empty_value=None,
|
|
331
335
|
timeout_ms=timeout_ms,
|
|
332
336
|
)
|
|
333
337
|
|
|
@@ -415,6 +419,7 @@ class Destinations(BaseSDK):
|
|
|
415
419
|
accept_header_value="application/json",
|
|
416
420
|
http_headers=http_headers,
|
|
417
421
|
security=self.sdk_configuration.security,
|
|
422
|
+
allow_empty_value=None,
|
|
418
423
|
timeout_ms=timeout_ms,
|
|
419
424
|
)
|
|
420
425
|
|
|
@@ -502,6 +507,7 @@ class Destinations(BaseSDK):
|
|
|
502
507
|
accept_header_value="application/json",
|
|
503
508
|
http_headers=http_headers,
|
|
504
509
|
security=self.sdk_configuration.security,
|
|
510
|
+
allow_empty_value=None,
|
|
505
511
|
timeout_ms=timeout_ms,
|
|
506
512
|
)
|
|
507
513
|
|
|
@@ -595,6 +601,7 @@ class Destinations(BaseSDK):
|
|
|
595
601
|
get_serialized_body=lambda: utils.serialize_request_body(
|
|
596
602
|
request.output, False, False, "json", models.Output
|
|
597
603
|
),
|
|
604
|
+
allow_empty_value=None,
|
|
598
605
|
timeout_ms=timeout_ms,
|
|
599
606
|
)
|
|
600
607
|
|
|
@@ -688,6 +695,7 @@ class Destinations(BaseSDK):
|
|
|
688
695
|
get_serialized_body=lambda: utils.serialize_request_body(
|
|
689
696
|
request.output, False, False, "json", models.Output
|
|
690
697
|
),
|
|
698
|
+
allow_empty_value=None,
|
|
691
699
|
timeout_ms=timeout_ms,
|
|
692
700
|
)
|
|
693
701
|
|
|
@@ -775,6 +783,7 @@ class Destinations(BaseSDK):
|
|
|
775
783
|
accept_header_value="application/json",
|
|
776
784
|
http_headers=http_headers,
|
|
777
785
|
security=self.sdk_configuration.security,
|
|
786
|
+
allow_empty_value=None,
|
|
778
787
|
timeout_ms=timeout_ms,
|
|
779
788
|
)
|
|
780
789
|
|
|
@@ -862,6 +871,7 @@ class Destinations(BaseSDK):
|
|
|
862
871
|
accept_header_value="application/json",
|
|
863
872
|
http_headers=http_headers,
|
|
864
873
|
security=self.sdk_configuration.security,
|
|
874
|
+
allow_empty_value=None,
|
|
865
875
|
timeout_ms=timeout_ms,
|
|
866
876
|
)
|
|
867
877
|
|
|
@@ -56,6 +56,7 @@ class DestinationsPq(BaseSDK):
|
|
|
56
56
|
accept_header_value="application/json",
|
|
57
57
|
http_headers=http_headers,
|
|
58
58
|
security=self.sdk_configuration.security,
|
|
59
|
+
allow_empty_value=None,
|
|
59
60
|
timeout_ms=timeout_ms,
|
|
60
61
|
)
|
|
61
62
|
|
|
@@ -143,6 +144,7 @@ class DestinationsPq(BaseSDK):
|
|
|
143
144
|
accept_header_value="application/json",
|
|
144
145
|
http_headers=http_headers,
|
|
145
146
|
security=self.sdk_configuration.security,
|
|
147
|
+
allow_empty_value=None,
|
|
146
148
|
timeout_ms=timeout_ms,
|
|
147
149
|
)
|
|
148
150
|
|
|
@@ -230,6 +232,7 @@ class DestinationsPq(BaseSDK):
|
|
|
230
232
|
accept_header_value="application/json",
|
|
231
233
|
http_headers=http_headers,
|
|
232
234
|
security=self.sdk_configuration.security,
|
|
235
|
+
allow_empty_value=None,
|
|
233
236
|
timeout_ms=timeout_ms,
|
|
234
237
|
)
|
|
235
238
|
|
|
@@ -317,6 +320,7 @@ class DestinationsPq(BaseSDK):
|
|
|
317
320
|
accept_header_value="application/json",
|
|
318
321
|
http_headers=http_headers,
|
|
319
322
|
security=self.sdk_configuration.security,
|
|
323
|
+
allow_empty_value=None,
|
|
320
324
|
timeout_ms=timeout_ms,
|
|
321
325
|
)
|
|
322
326
|
|
|
@@ -78,6 +78,7 @@ class GroupsSDK(BaseSDK):
|
|
|
78
78
|
accept_header_value="application/json",
|
|
79
79
|
http_headers=http_headers,
|
|
80
80
|
security=self.sdk_configuration.security,
|
|
81
|
+
allow_empty_value=None,
|
|
81
82
|
timeout_ms=timeout_ms,
|
|
82
83
|
)
|
|
83
84
|
|
|
@@ -170,6 +171,7 @@ class GroupsSDK(BaseSDK):
|
|
|
170
171
|
accept_header_value="application/json",
|
|
171
172
|
http_headers=http_headers,
|
|
172
173
|
security=self.sdk_configuration.security,
|
|
174
|
+
allow_empty_value=None,
|
|
173
175
|
timeout_ms=timeout_ms,
|
|
174
176
|
)
|
|
175
177
|
|
|
@@ -351,6 +353,7 @@ class GroupsSDK(BaseSDK):
|
|
|
351
353
|
"json",
|
|
352
354
|
models.GroupCreateRequest,
|
|
353
355
|
),
|
|
356
|
+
allow_empty_value=None,
|
|
354
357
|
timeout_ms=timeout_ms,
|
|
355
358
|
)
|
|
356
359
|
|
|
@@ -532,6 +535,7 @@ class GroupsSDK(BaseSDK):
|
|
|
532
535
|
"json",
|
|
533
536
|
models.GroupCreateRequest,
|
|
534
537
|
),
|
|
538
|
+
allow_empty_value=None,
|
|
535
539
|
timeout_ms=timeout_ms,
|
|
536
540
|
)
|
|
537
541
|
|
|
@@ -627,6 +631,7 @@ class GroupsSDK(BaseSDK):
|
|
|
627
631
|
accept_header_value="application/json",
|
|
628
632
|
http_headers=http_headers,
|
|
629
633
|
security=self.sdk_configuration.security,
|
|
634
|
+
allow_empty_value=None,
|
|
630
635
|
timeout_ms=timeout_ms,
|
|
631
636
|
)
|
|
632
637
|
|
|
@@ -722,6 +727,7 @@ class GroupsSDK(BaseSDK):
|
|
|
722
727
|
accept_header_value="application/json",
|
|
723
728
|
http_headers=http_headers,
|
|
724
729
|
security=self.sdk_configuration.security,
|
|
730
|
+
allow_empty_value=None,
|
|
725
731
|
timeout_ms=timeout_ms,
|
|
726
732
|
)
|
|
727
733
|
|
|
@@ -898,6 +904,7 @@ class GroupsSDK(BaseSDK):
|
|
|
898
904
|
get_serialized_body=lambda: utils.serialize_request_body(
|
|
899
905
|
request.config_group, False, False, "json", models.ConfigGroup
|
|
900
906
|
),
|
|
907
|
+
allow_empty_value=None,
|
|
901
908
|
timeout_ms=timeout_ms,
|
|
902
909
|
)
|
|
903
910
|
|
|
@@ -1074,6 +1081,7 @@ class GroupsSDK(BaseSDK):
|
|
|
1074
1081
|
get_serialized_body=lambda: utils.serialize_request_body(
|
|
1075
1082
|
request.config_group, False, False, "json", models.ConfigGroup
|
|
1076
1083
|
),
|
|
1084
|
+
allow_empty_value=None,
|
|
1077
1085
|
timeout_ms=timeout_ms,
|
|
1078
1086
|
)
|
|
1079
1087
|
|
|
@@ -1166,6 +1174,7 @@ class GroupsSDK(BaseSDK):
|
|
|
1166
1174
|
accept_header_value="application/json",
|
|
1167
1175
|
http_headers=http_headers,
|
|
1168
1176
|
security=self.sdk_configuration.security,
|
|
1177
|
+
allow_empty_value=None,
|
|
1169
1178
|
timeout_ms=timeout_ms,
|
|
1170
1179
|
)
|
|
1171
1180
|
|
|
@@ -1258,6 +1267,7 @@ class GroupsSDK(BaseSDK):
|
|
|
1258
1267
|
accept_header_value="application/json",
|
|
1259
1268
|
http_headers=http_headers,
|
|
1260
1269
|
security=self.sdk_configuration.security,
|
|
1270
|
+
allow_empty_value=None,
|
|
1261
1271
|
timeout_ms=timeout_ms,
|
|
1262
1272
|
)
|
|
1263
1273
|
|
|
@@ -1368,6 +1378,7 @@ class GroupsSDK(BaseSDK):
|
|
|
1368
1378
|
get_serialized_body=lambda: utils.serialize_request_body(
|
|
1369
1379
|
request.deploy_request, False, False, "json", models.DeployRequest
|
|
1370
1380
|
),
|
|
1381
|
+
allow_empty_value=None,
|
|
1371
1382
|
timeout_ms=timeout_ms,
|
|
1372
1383
|
)
|
|
1373
1384
|
|
|
@@ -1478,6 +1489,7 @@ class GroupsSDK(BaseSDK):
|
|
|
1478
1489
|
get_serialized_body=lambda: utils.serialize_request_body(
|
|
1479
1490
|
request.deploy_request, False, False, "json", models.DeployRequest
|
|
1480
1491
|
),
|
|
1492
|
+
allow_empty_value=None,
|
|
1481
1493
|
timeout_ms=timeout_ms,
|
|
1482
1494
|
)
|
|
1483
1495
|
|
cribl_control_plane/health.py
CHANGED
|
@@ -49,6 +49,7 @@ class Health(BaseSDK):
|
|
|
49
49
|
user_agent_header="user-agent",
|
|
50
50
|
accept_header_value="application/json",
|
|
51
51
|
http_headers=http_headers,
|
|
52
|
+
allow_empty_value=None,
|
|
52
53
|
timeout_ms=timeout_ms,
|
|
53
54
|
)
|
|
54
55
|
|
|
@@ -131,6 +132,7 @@ class Health(BaseSDK):
|
|
|
131
132
|
user_agent_header="user-agent",
|
|
132
133
|
accept_header_value="application/json",
|
|
133
134
|
http_headers=http_headers,
|
|
135
|
+
allow_empty_value=None,
|
|
134
136
|
timeout_ms=timeout_ms,
|
|
135
137
|
)
|
|
136
138
|
|
cribl_control_plane/hectokens.py
CHANGED
|
@@ -15,6 +15,7 @@ class HecTokens(BaseSDK):
|
|
|
15
15
|
*,
|
|
16
16
|
id: str,
|
|
17
17
|
token: str,
|
|
18
|
+
allowed_indexes_at_token: Optional[List[str]] = None,
|
|
18
19
|
description: Optional[str] = None,
|
|
19
20
|
enabled: Optional[bool] = None,
|
|
20
21
|
metadata: Optional[
|
|
@@ -34,6 +35,7 @@ class HecTokens(BaseSDK):
|
|
|
34
35
|
|
|
35
36
|
:param id: The <code>id</code> of the Splunk HEC Source.
|
|
36
37
|
:param token:
|
|
38
|
+
:param allowed_indexes_at_token:
|
|
37
39
|
:param description:
|
|
38
40
|
:param enabled:
|
|
39
41
|
:param metadata:
|
|
@@ -55,6 +57,7 @@ class HecTokens(BaseSDK):
|
|
|
55
57
|
request = models.CreateInputHecTokenByIDRequest(
|
|
56
58
|
id=id,
|
|
57
59
|
add_hec_token_request=models.AddHecTokenRequest(
|
|
60
|
+
allowed_indexes_at_token=allowed_indexes_at_token,
|
|
58
61
|
description=description,
|
|
59
62
|
enabled=enabled,
|
|
60
63
|
metadata=utils.get_pydantic_model(
|
|
@@ -84,6 +87,7 @@ class HecTokens(BaseSDK):
|
|
|
84
87
|
"json",
|
|
85
88
|
models.AddHecTokenRequest,
|
|
86
89
|
),
|
|
90
|
+
allow_empty_value=None,
|
|
87
91
|
timeout_ms=timeout_ms,
|
|
88
92
|
)
|
|
89
93
|
|
|
@@ -132,6 +136,7 @@ class HecTokens(BaseSDK):
|
|
|
132
136
|
*,
|
|
133
137
|
id: str,
|
|
134
138
|
token: str,
|
|
139
|
+
allowed_indexes_at_token: Optional[List[str]] = None,
|
|
135
140
|
description: Optional[str] = None,
|
|
136
141
|
enabled: Optional[bool] = None,
|
|
137
142
|
metadata: Optional[
|
|
@@ -151,6 +156,7 @@ class HecTokens(BaseSDK):
|
|
|
151
156
|
|
|
152
157
|
:param id: The <code>id</code> of the Splunk HEC Source.
|
|
153
158
|
:param token:
|
|
159
|
+
:param allowed_indexes_at_token:
|
|
154
160
|
:param description:
|
|
155
161
|
:param enabled:
|
|
156
162
|
:param metadata:
|
|
@@ -172,6 +178,7 @@ class HecTokens(BaseSDK):
|
|
|
172
178
|
request = models.CreateInputHecTokenByIDRequest(
|
|
173
179
|
id=id,
|
|
174
180
|
add_hec_token_request=models.AddHecTokenRequest(
|
|
181
|
+
allowed_indexes_at_token=allowed_indexes_at_token,
|
|
175
182
|
description=description,
|
|
176
183
|
enabled=enabled,
|
|
177
184
|
metadata=utils.get_pydantic_model(
|
|
@@ -201,6 +208,7 @@ class HecTokens(BaseSDK):
|
|
|
201
208
|
"json",
|
|
202
209
|
models.AddHecTokenRequest,
|
|
203
210
|
),
|
|
211
|
+
allow_empty_value=None,
|
|
204
212
|
timeout_ms=timeout_ms,
|
|
205
213
|
)
|
|
206
214
|
|
|
@@ -249,6 +257,7 @@ class HecTokens(BaseSDK):
|
|
|
249
257
|
*,
|
|
250
258
|
id: str,
|
|
251
259
|
token: str,
|
|
260
|
+
allowed_indexes_at_token: Optional[List[str]] = None,
|
|
252
261
|
description: Optional[str] = None,
|
|
253
262
|
enabled: Optional[bool] = None,
|
|
254
263
|
metadata: Optional[
|
|
@@ -268,6 +277,7 @@ class HecTokens(BaseSDK):
|
|
|
268
277
|
|
|
269
278
|
:param id: The <code>id</code> of the Splunk HEC Source.
|
|
270
279
|
:param token: The <code>id</code> of the HEC token to update.
|
|
280
|
+
:param allowed_indexes_at_token:
|
|
271
281
|
:param description:
|
|
272
282
|
:param enabled:
|
|
273
283
|
:param metadata:
|
|
@@ -290,6 +300,7 @@ class HecTokens(BaseSDK):
|
|
|
290
300
|
id=id,
|
|
291
301
|
token=token,
|
|
292
302
|
update_hec_token_request=models.UpdateHecTokenRequest(
|
|
303
|
+
allowed_indexes_at_token=allowed_indexes_at_token,
|
|
293
304
|
description=description,
|
|
294
305
|
enabled=enabled,
|
|
295
306
|
metadata=utils.get_pydantic_model(
|
|
@@ -318,6 +329,7 @@ class HecTokens(BaseSDK):
|
|
|
318
329
|
"json",
|
|
319
330
|
models.UpdateHecTokenRequest,
|
|
320
331
|
),
|
|
332
|
+
allow_empty_value=None,
|
|
321
333
|
timeout_ms=timeout_ms,
|
|
322
334
|
)
|
|
323
335
|
|
|
@@ -366,6 +378,7 @@ class HecTokens(BaseSDK):
|
|
|
366
378
|
*,
|
|
367
379
|
id: str,
|
|
368
380
|
token: str,
|
|
381
|
+
allowed_indexes_at_token: Optional[List[str]] = None,
|
|
369
382
|
description: Optional[str] = None,
|
|
370
383
|
enabled: Optional[bool] = None,
|
|
371
384
|
metadata: Optional[
|
|
@@ -385,6 +398,7 @@ class HecTokens(BaseSDK):
|
|
|
385
398
|
|
|
386
399
|
:param id: The <code>id</code> of the Splunk HEC Source.
|
|
387
400
|
:param token: The <code>id</code> of the HEC token to update.
|
|
401
|
+
:param allowed_indexes_at_token:
|
|
388
402
|
:param description:
|
|
389
403
|
:param enabled:
|
|
390
404
|
:param metadata:
|
|
@@ -407,6 +421,7 @@ class HecTokens(BaseSDK):
|
|
|
407
421
|
id=id,
|
|
408
422
|
token=token,
|
|
409
423
|
update_hec_token_request=models.UpdateHecTokenRequest(
|
|
424
|
+
allowed_indexes_at_token=allowed_indexes_at_token,
|
|
410
425
|
description=description,
|
|
411
426
|
enabled=enabled,
|
|
412
427
|
metadata=utils.get_pydantic_model(
|
|
@@ -435,6 +450,7 @@ class HecTokens(BaseSDK):
|
|
|
435
450
|
"json",
|
|
436
451
|
models.UpdateHecTokenRequest,
|
|
437
452
|
),
|
|
453
|
+
allow_empty_value=None,
|
|
438
454
|
timeout_ms=timeout_ms,
|
|
439
455
|
)
|
|
440
456
|
|