cribl-control-plane 0.0.38__py3-none-any.whl → 0.0.39__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.

@@ -3,10 +3,10 @@
3
3
  import importlib.metadata
4
4
 
5
5
  __title__: str = "cribl-control-plane"
6
- __version__: str = "0.0.38"
7
- __openapi_doc_version__: str = "4.14.0-alpha.1756226637429-1513a21f"
6
+ __version__: str = "0.0.39"
7
+ __openapi_doc_version__: str = "4.14.0-alpha.1756720086962-ed6aba5c"
8
8
  __gen_version__: str = "2.686.7"
9
- __user_agent__: str = "speakeasy-sdk/python 0.0.38 2.686.7 4.14.0-alpha.1756226637429-1513a21f cribl-control-plane"
9
+ __user_agent__: str = "speakeasy-sdk/python 0.0.39 2.686.7 4.14.0-alpha.1756720086962-ed6aba5c cribl-control-plane"
10
10
 
11
11
  try:
12
12
  if __package__ is not None:
@@ -215,11 +215,11 @@ class GroupsSDK(BaseSDK):
215
215
  self,
216
216
  *,
217
217
  product: models.ProductsCore,
218
- config_version: str,
219
218
  id: str,
220
219
  cloud: Optional[
221
220
  Union[models.ConfigGroupCloud, models.ConfigGroupCloudTypedDict]
222
221
  ] = None,
222
+ config_version: Optional[str] = None,
223
223
  deploying_worker_count: Optional[float] = None,
224
224
  description: Optional[str] = None,
225
225
  estimated_ingest_rate: Optional[float] = None,
@@ -254,9 +254,9 @@ class GroupsSDK(BaseSDK):
254
254
  Create a new Worker Group or Edge Fleet for the specified Cribl product.
255
255
 
256
256
  :param product: Name of the Cribl product to add the Worker Group or Edge Fleet to.
257
- :param config_version:
258
257
  :param id:
259
258
  :param cloud:
259
+ :param config_version:
260
260
  :param deploying_worker_count:
261
261
  :param description:
262
262
  :param estimated_ingest_rate:
@@ -386,11 +386,11 @@ class GroupsSDK(BaseSDK):
386
386
  self,
387
387
  *,
388
388
  product: models.ProductsCore,
389
- config_version: str,
390
389
  id: str,
391
390
  cloud: Optional[
392
391
  Union[models.ConfigGroupCloud, models.ConfigGroupCloudTypedDict]
393
392
  ] = None,
393
+ config_version: Optional[str] = None,
394
394
  deploying_worker_count: Optional[float] = None,
395
395
  description: Optional[str] = None,
396
396
  estimated_ingest_rate: Optional[float] = None,
@@ -425,9 +425,9 @@ class GroupsSDK(BaseSDK):
425
425
  Create a new Worker Group or Edge Fleet for the specified Cribl product.
426
426
 
427
427
  :param product: Name of the Cribl product to add the Worker Group or Edge Fleet to.
428
- :param config_version:
429
428
  :param id:
430
429
  :param cloud:
430
+ :param config_version:
431
431
  :param deploying_worker_count:
432
432
  :param description:
433
433
  :param estimated_ingest_rate:
@@ -748,11 +748,11 @@ class GroupsSDK(BaseSDK):
748
748
  *,
749
749
  product: models.ProductsCore,
750
750
  id_param: str,
751
- config_version: str,
752
751
  id: str,
753
752
  cloud: Optional[
754
753
  Union[models.ConfigGroupCloud, models.ConfigGroupCloudTypedDict]
755
754
  ] = None,
755
+ config_version: Optional[str] = None,
756
756
  deploying_worker_count: Optional[float] = None,
757
757
  description: Optional[str] = None,
758
758
  estimated_ingest_rate: Optional[float] = None,
@@ -788,9 +788,9 @@ class GroupsSDK(BaseSDK):
788
788
 
789
789
  :param product: Name of the Cribl product to get the Worker Groups or Edge Fleets for.
790
790
  :param id_param: The <code>id</code> of the Worker Group or Edge Fleet to update.
791
- :param config_version:
792
791
  :param id:
793
792
  :param cloud:
793
+ :param config_version:
794
794
  :param deploying_worker_count:
795
795
  :param description:
796
796
  :param estimated_ingest_rate:
@@ -922,11 +922,11 @@ class GroupsSDK(BaseSDK):
922
922
  *,
923
923
  product: models.ProductsCore,
924
924
  id_param: str,
925
- config_version: str,
926
925
  id: str,
927
926
  cloud: Optional[
928
927
  Union[models.ConfigGroupCloud, models.ConfigGroupCloudTypedDict]
929
928
  ] = None,
929
+ config_version: Optional[str] = None,
930
930
  deploying_worker_count: Optional[float] = None,
931
931
  description: Optional[str] = None,
932
932
  estimated_ingest_rate: Optional[float] = None,
@@ -962,9 +962,9 @@ class GroupsSDK(BaseSDK):
962
962
 
963
963
  :param product: Name of the Cribl product to get the Worker Groups or Edge Fleets for.
964
964
  :param id_param: The <code>id</code> of the Worker Group or Edge Fleet to update.
965
- :param config_version:
966
965
  :param id:
967
966
  :param cloud:
967
+ :param config_version:
968
968
  :param deploying_worker_count:
969
969
  :param description:
970
970
  :param estimated_ingest_rate:
@@ -32,9 +32,9 @@ class ConfigGroupType(str, Enum):
32
32
 
33
33
 
34
34
  class ConfigGroupTypedDict(TypedDict):
35
- config_version: str
36
35
  id: str
37
36
  cloud: NotRequired[ConfigGroupCloudTypedDict]
37
+ config_version: NotRequired[str]
38
38
  deploying_worker_count: NotRequired[float]
39
39
  description: NotRequired[str]
40
40
  estimated_ingest_rate: NotRequired[float]
@@ -57,12 +57,14 @@ class ConfigGroupTypedDict(TypedDict):
57
57
 
58
58
 
59
59
  class ConfigGroup(BaseModel):
60
- config_version: Annotated[str, pydantic.Field(alias="configVersion")]
61
-
62
60
  id: str
63
61
 
64
62
  cloud: Optional[ConfigGroupCloud] = None
65
63
 
64
+ config_version: Annotated[Optional[str], pydantic.Field(alias="configVersion")] = (
65
+ None
66
+ )
67
+
66
68
  deploying_worker_count: Annotated[
67
69
  Optional[float], pydantic.Field(alias="deployingWorkerCount")
68
70
  ] = None
@@ -189,21 +189,24 @@ class InputCriblLakeHTTPAuthTokensExtMetadatum(BaseModel):
189
189
 
190
190
  class InputCriblLakeHTTPAuthTokensExtTypedDict(TypedDict):
191
191
  token: str
192
- r"""Shared secret to be provided by any client (Authorization: <token>)"""
193
192
  description: NotRequired[str]
194
193
  metadata: NotRequired[List[InputCriblLakeHTTPAuthTokensExtMetadatumTypedDict]]
195
194
  r"""Fields to add to events referencing this token"""
195
+ enable_splunk_hec: NotRequired[bool]
196
196
 
197
197
 
198
198
  class InputCriblLakeHTTPAuthTokensExt(BaseModel):
199
199
  token: str
200
- r"""Shared secret to be provided by any client (Authorization: <token>)"""
201
200
 
202
201
  description: Optional[str] = None
203
202
 
204
203
  metadata: Optional[List[InputCriblLakeHTTPAuthTokensExtMetadatum]] = None
205
204
  r"""Fields to add to events referencing this token"""
206
205
 
206
+ enable_splunk_hec: Annotated[
207
+ Optional[bool], pydantic.Field(alias="enableSplunkHec")
208
+ ] = False
209
+
207
210
 
208
211
  class InputCriblLakeHTTPTypedDict(TypedDict):
209
212
  type: InputCriblLakeHTTPType
@@ -262,7 +265,6 @@ class InputCriblLakeHTTPTypedDict(TypedDict):
262
265
  metadata: NotRequired[List[InputCriblLakeHTTPMetadatumTypedDict]]
263
266
  r"""Fields to add to events from this input"""
264
267
  auth_tokens_ext: NotRequired[List[InputCriblLakeHTTPAuthTokensExtTypedDict]]
265
- r"""Shared secrets to be provided by any client (Authorization: <token>). If empty, unauthorized access is permitted."""
266
268
  description: NotRequired[str]
267
269
 
268
270
 
@@ -388,6 +390,5 @@ class InputCriblLakeHTTP(BaseModel):
388
390
  Optional[List[InputCriblLakeHTTPAuthTokensExt]],
389
391
  pydantic.Field(alias="authTokensExt"),
390
392
  ] = None
391
- r"""Shared secrets to be provided by any client (Authorization: <token>). If empty, unauthorized access is permitted."""
392
393
 
393
394
  description: Optional[str] = None
@@ -25,7 +25,7 @@ class OutputSentinelOneAiSiemRegion(str, Enum):
25
25
 
26
26
 
27
27
  class AISIEMEndpointPath(str, Enum):
28
- r"""Regional endpoint used to send events to, such as /services/collector/event or /services/collector/raw"""
28
+ r"""Endpoint to send events to. Use /services/collector/event for structured JSON payloads with standard HEC top-level fields. Use /services/collector/raw for unstructured log lines (plain text)."""
29
29
 
30
30
  ROOT_SERVICES_COLLECTOR_EVENT = "/services/collector/event"
31
31
  ROOT_SERVICES_COLLECTOR_RAW = "/services/collector/raw"
@@ -164,7 +164,7 @@ class OutputSentinelOneAiSiemTypedDict(TypedDict):
164
164
  region: NotRequired[OutputSentinelOneAiSiemRegion]
165
165
  r"""The SentinelOne region to send events to. In most cases you can find the region by either looking at your SentinelOne URL or knowing what geographic region your SentinelOne instance is contained in."""
166
166
  endpoint: NotRequired[AISIEMEndpointPath]
167
- r"""Regional endpoint used to send events to, such as /services/collector/event or /services/collector/raw"""
167
+ r"""Endpoint to send events to. Use /services/collector/event for structured JSON payloads with standard HEC top-level fields. Use /services/collector/raw for unstructured log lines (plain text)."""
168
168
  concurrency: NotRequired[float]
169
169
  r"""Maximum number of ongoing requests before blocking"""
170
170
  max_payload_size_kb: NotRequired[float]
@@ -281,7 +281,7 @@ class OutputSentinelOneAiSiem(BaseModel):
281
281
  endpoint: Optional[AISIEMEndpointPath] = (
282
282
  AISIEMEndpointPath.ROOT_SERVICES_COLLECTOR_EVENT
283
283
  )
284
- r"""Regional endpoint used to send events to, such as /services/collector/event or /services/collector/raw"""
284
+ r"""Endpoint to send events to. Use /services/collector/event for structured JSON payloads with standard HEC top-level fields. Use /services/collector/raw for unstructured log lines (plain text)."""
285
285
 
286
286
  concurrency: Optional[float] = 5
287
287
  r"""Maximum number of ongoing requests before blocking"""
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: cribl-control-plane
3
- Version: 0.0.38
3
+ Version: 0.0.39
4
4
  Summary: Python Client SDK Generated by Speakeasy.
5
5
  Author: Speakeasy
6
6
  Requires-Python: >=3.9.2
@@ -4,7 +4,7 @@ cribl_control_plane/_hooks/clientcredentials.py,sha256=_scvqxVT_8CDEMWblZ02IQ9A1
4
4
  cribl_control_plane/_hooks/registration.py,sha256=1QZB41w6If7I9dXiOSQx6dhSc6BPWrnI5Q5bMOr4iVA,624
5
5
  cribl_control_plane/_hooks/sdkhooks.py,sha256=ggXjME1_Rdv8CVCg1XHqB83eYtbxzKyhXyfQ36Yc1gA,2816
6
6
  cribl_control_plane/_hooks/types.py,sha256=Tw_C4zTZm01rW_89VDEUpvQ8KQr1WxN0Gu_-s_fYSPc,2998
7
- cribl_control_plane/_version.py,sha256=6BogjgzsmAhRtVFH1aWj86oQNW2cCIJPZn2Lj9tsQZw,542
7
+ cribl_control_plane/_version.py,sha256=MAoM7MpDRZcBmUbLFdGv4OcNsgo0VmAqYGC7pkb4vrQ,542
8
8
  cribl_control_plane/acl.py,sha256=LMsIZTDCRTXVt73MC_QoJexElGNsicYsBBHfVGzUsG8,8923
9
9
  cribl_control_plane/auth_sdk.py,sha256=FQZpAERAlpw6Xk-mkUdalUDSekftklv_Du4i2TLDilk,496
10
10
  cribl_control_plane/basesdk.py,sha256=amvvB5iPT7c-L6NLo2Rhu2f7xWaapsa6OfQ37SICXOw,11954
@@ -22,7 +22,7 @@ cribl_control_plane/errors/healthstatus_error.py,sha256=Hgn36yszsiYPS3cG__-PKHDD
22
22
  cribl_control_plane/errors/no_response_error.py,sha256=FQG44Lq6uF7uUlzbUYfM3dJon6sbqXzJ0Ri6YrDdsEs,380
23
23
  cribl_control_plane/errors/responsevalidationerror.py,sha256=TvZ9dOsy-oFBYA_wZCOOEXeGKMBQtzCVX-1-i7epQTE,720
24
24
  cribl_control_plane/groups_configs.py,sha256=Tp0DFJ-zCNF_fvtnxCxVSkmrDl1IP6bRF7Irg2CZXAM,543
25
- cribl_control_plane/groups_sdk.py,sha256=igh_XeQBZAwyvGbN7ynlMKj6MeWEn5z9skk5Tsxa6QA,61637
25
+ cribl_control_plane/groups_sdk.py,sha256=C077OK9FuZcvXLokc5j7PgahTEBZoLUcGkQi51moqTs,61705
26
26
  cribl_control_plane/health.py,sha256=mDYmC13IE_M9jTVKKBOr5aeZ5QArUURLT1PyPpvn5Ho,6719
27
27
  cribl_control_plane/hectokens.py,sha256=0EGgGGrM83m1YmTZwkN5S4xFkHQGnw1IZe3y6uMwmLw,19151
28
28
  cribl_control_plane/httpclient.py,sha256=Eu73urOAiZQtdUIyOUnPccxCiBbWEKrXG-JrRG3SLM4,3946
@@ -35,7 +35,7 @@ cribl_control_plane/models/cacheconnection.py,sha256=lTXs6ukwNNeFyPb6UixCe9CE9vC
35
35
  cribl_control_plane/models/cacheconnectionbackfillstatus.py,sha256=TTR1AwxeB2JiiPD8xq9JnEqhVoTbc3c4N1jEvh8D980,312
36
36
  cribl_control_plane/models/cloudprovider.py,sha256=2EiF1HKl65vTxSJHhj_J6ZONvrd-8vK0bxxecH-xRTo,200
37
37
  cribl_control_plane/models/commit.py,sha256=wXQkjOYsffxWURHTrfU9kJ4HF2H65QfD1R9-vH0clvQ,641
38
- cribl_control_plane/models/configgroup.py,sha256=cgIfR0Fz54SdBLGZNnruaJVA4jUpdVHdSKbji6fh0Bc,3404
38
+ cribl_control_plane/models/configgroup.py,sha256=dzvxeThwh-DJTbXS7UD8K4G_NvquLA-5qm2QloY-0Ic,3450
39
39
  cribl_control_plane/models/configgroupcloud.py,sha256=l9e1E-JyZGu4JANlU8SIzaXcsZIUcs7CtPQs90WvZ-w,1395
40
40
  cribl_control_plane/models/configgrouplookups.py,sha256=1z1DlvlVehqfD6hZMXG0XedZTfoCIpYd0cHav45tiRw,830
41
41
  cribl_control_plane/models/createconfiggroupbyproductop.py,sha256=zllL-jYwkEdEvGjRwxSz-X7pUyRJyOOAsj4SA7IqtTQ,1575
@@ -110,7 +110,7 @@ cribl_control_plane/models/inputcollection.py,sha256=KzesuvW-qfuPeLygKp1peNx-hrI
110
110
  cribl_control_plane/models/inputconfluentcloud.py,sha256=No-ub9LOj81_r8tkhYEu_3Zqf9HGVDYOm_3oTExtn2Y,28845
111
111
  cribl_control_plane/models/inputcribl.py,sha256=tdt5OpWZN6MgHZiJt36X2gQOSYNcP2JiyySXHGoT-ms,6953
112
112
  cribl_control_plane/models/inputcriblhttp.py,sha256=aN0ncENh1-hRgk9F2-DxzxD5fxyqGCEpKV8aVu2iEJ0,15306
113
- cribl_control_plane/models/inputcribllakehttp.py,sha256=FrNAVqueYQ3wDHTwTwTJM2i6OZY72g3ex7yZzTIWlPc,18492
113
+ cribl_control_plane/models/inputcribllakehttp.py,sha256=pt5FaMbd8Mc7C9cTEeOdgUpRDkqakasHOaqkFQcEkT4,18238
114
114
  cribl_control_plane/models/inputcriblmetrics.py,sha256=JL23J9LaC45yqQGPfQJYt9T1YxorsMD1eCu8HEI9rsI,8137
115
115
  cribl_control_plane/models/inputcribltcp.py,sha256=Cah0ohHRubWJGuVJpYufwGaTKLTrjMCGhB1QvIO82fE,13124
116
116
  cribl_control_plane/models/inputcrowdstrike.py,sha256=LPt7e2LAOMxhwL5FJOSqm8YorFkg7D45d4jnPiX8-FY,20239
@@ -229,7 +229,7 @@ cribl_control_plane/models/outputs3.py,sha256=_LJwZ0fPJTl-Qz90_dxuTHuZtDCk07nwmT
229
229
  cribl_control_plane/models/outputsamplesresponse.py,sha256=gQrDTmfvvYDoKPYyhl6qijUU8AksXxq2mPHahVPssAk,390
230
230
  cribl_control_plane/models/outputsecuritylake.py,sha256=wHfbF34yTGqFDWaldzOnRb4bvhV4BDZJAQ14NDZ52ok,22686
231
231
  cribl_control_plane/models/outputsentinel.py,sha256=sqCqMAtsh7r1yxde6NGE_QGvdNCxMaxmcaasqLKYm1A,24531
232
- cribl_control_plane/models/outputsentineloneaisiem.py,sha256=Z7Oe4c9Z4IWItFBFd8ue9mqmYXlNKpwqWvnTRf4fKdU,27466
232
+ cribl_control_plane/models/outputsentineloneaisiem.py,sha256=2g_TTl3s079pQ5BFIdhSQNrg4p3iBbNTQAiwJAck-gA,27733
233
233
  cribl_control_plane/models/outputservicenow.py,sha256=yaZtnSxDau3Nn3UJnzuHZi7qvg94dCz71jpd1VAUS_Y,24732
234
234
  cribl_control_plane/models/outputsignalfx.py,sha256=j4xGQBHD2fcqsBhv7qVnwabocs2Zr0qq-V7SZ0ase1M,17682
235
235
  cribl_control_plane/models/outputsnmp.py,sha256=TQK8zgga3LAuyp_YGhqobc7FYLBBJRciw2ZBFQPkU1Y,2738
@@ -310,6 +310,6 @@ cribl_control_plane/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8N
310
310
  cribl_control_plane/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
311
311
  cribl_control_plane/versions.py,sha256=Wdaxc2wZeEeD12wAh7SQ0RGG9KgwKaWQ7bc8qOQ8oAo,920
312
312
  cribl_control_plane/versions_configs.py,sha256=5CKcfN4SzuyFgggrx6O8H_h3GhNyKSbfdVhSkVGZKi4,7284
313
- cribl_control_plane-0.0.38.dist-info/METADATA,sha256=LmbnbnbQE1_9q9kGEYYbvPrdIJl2fDBf0OK9L8QrPIE,38845
314
- cribl_control_plane-0.0.38.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
315
- cribl_control_plane-0.0.38.dist-info/RECORD,,
313
+ cribl_control_plane-0.0.39.dist-info/METADATA,sha256=SMUhTCmX87dHJGVtshpPxv3X5rGS7GHql5eQaRik758,38845
314
+ cribl_control_plane-0.0.39.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
315
+ cribl_control_plane-0.0.39.dist-info/RECORD,,