cribl-control-plane 0.2.0b6__py3-none-any.whl → 0.2.0b8__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.2.0b6"
7
- __openapi_doc_version__: str = "4.15.0-alpha.1760742316222-ce9b582f"
6
+ __version__: str = "0.2.0b8"
7
+ __openapi_doc_version__: str = "4.15.0-alpha.1761174335818-8b3b1a8b"
8
8
  __gen_version__: str = "2.723.11"
9
- __user_agent__: str = "speakeasy-sdk/python 0.2.0b6 2.723.11 4.15.0-alpha.1760742316222-ce9b582f cribl-control-plane"
9
+ __user_agent__: str = "speakeasy-sdk/python 0.2.0b8 2.723.11 4.15.0-alpha.1761174335818-8b3b1a8b cribl-control-plane"
10
10
 
11
11
  try:
12
12
  if __package__ is not None:
@@ -261,7 +261,7 @@ class GroupsSDK(BaseSDK):
261
261
  :param config_version:
262
262
  :param deploying_worker_count:
263
263
  :param description:
264
- :param estimated_ingest_rate:
264
+ :param estimated_ingest_rate: Maximum expected volume of data ingested by the @{group}. (This setting is available only on @{group}s consisting of Cribl-managed Cribl.Cloud @{node}s.)
265
265
  :param git:
266
266
  :param incompatible_worker_count:
267
267
  :param inherits:
@@ -432,7 +432,7 @@ class GroupsSDK(BaseSDK):
432
432
  :param config_version:
433
433
  :param deploying_worker_count:
434
434
  :param description:
435
- :param estimated_ingest_rate:
435
+ :param estimated_ingest_rate: Maximum expected volume of data ingested by the @{group}. (This setting is available only on @{group}s consisting of Cribl-managed Cribl.Cloud @{node}s.)
436
436
  :param git:
437
437
  :param incompatible_worker_count:
438
438
  :param inherits:
@@ -795,7 +795,7 @@ class GroupsSDK(BaseSDK):
795
795
  :param config_version:
796
796
  :param deploying_worker_count:
797
797
  :param description:
798
- :param estimated_ingest_rate:
798
+ :param estimated_ingest_rate: Maximum expected volume of data ingested by the @{group}. (This setting is available only on @{group}s consisting of Cribl-managed Cribl.Cloud @{node}s.)
799
799
  :param git:
800
800
  :param incompatible_worker_count:
801
801
  :param inherits:
@@ -969,7 +969,7 @@ class GroupsSDK(BaseSDK):
969
969
  :param config_version:
970
970
  :param deploying_worker_count:
971
971
  :param description:
972
- :param estimated_ingest_rate:
972
+ :param estimated_ingest_rate: Maximum expected volume of data ingested by the @{group}. (This setting is available only on @{group}s consisting of Cribl-managed Cribl.Cloud @{node}s.)
973
973
  :param git:
974
974
  :param incompatible_worker_count:
975
975
  :param inherits:
@@ -15,15 +15,26 @@ from typing_extensions import Annotated, NotRequired, TypedDict
15
15
 
16
16
 
17
17
  class EstimatedIngestRate(int, Enum, metaclass=utils.OpenEnumMeta):
18
- ONE_THOUSAND_AND_TWENTY_FOUR = 1024
19
- FOUR_THOUSAND_AND_NINETY_SIX = 4096
20
- TEN_THOUSAND_TWO_HUNDRED_AND_FORTY = 10240
21
- TWO_THOUSAND_AND_FORTY_EIGHT = 2048
22
- THREE_THOUSAND_AND_SEVENTY_TWO = 3072
23
- FIVE_THOUSAND_ONE_HUNDRED_AND_TWENTY = 5120
24
- SEVEN_THOUSAND_ONE_HUNDRED_AND_SIXTY_EIGHT = 7168
25
- THIRTEEN_THOUSAND_THREE_HUNDRED_AND_TWELVE = 13312
26
- FIFTEEN_THOUSAND_THREE_HUNDRED_AND_SIXTY = 15360
18
+ r"""Maximum expected volume of data ingested by the @{group}. (This setting is available only on @{group}s consisting of Cribl-managed Cribl.Cloud @{node}s.)"""
19
+
20
+ # 12 MB/sec
21
+ RATE12_MB_PER_SEC = 1024
22
+ # 24 MB/sec
23
+ RATE24_MB_PER_SEC = 2048
24
+ # 36 MB/sec
25
+ RATE36_MB_PER_SEC = 3072
26
+ # 48 MB/sec
27
+ RATE48_MB_PER_SEC = 4096
28
+ # 60 MB/sec
29
+ RATE60_MB_PER_SEC = 5120
30
+ # 84 MB/sec
31
+ RATE84_MB_PER_SEC = 7168
32
+ # 120 MB/sec
33
+ RATE120_MB_PER_SEC = 10240
34
+ # 156 MB/sec
35
+ RATE156_MB_PER_SEC = 13312
36
+ # 180 MB/sec
37
+ RATE180_MB_PER_SEC = 15360
27
38
 
28
39
 
29
40
  class GitTypedDict(TypedDict):
@@ -53,6 +64,7 @@ class ConfigGroupTypedDict(TypedDict):
53
64
  deploying_worker_count: NotRequired[float]
54
65
  description: NotRequired[str]
55
66
  estimated_ingest_rate: NotRequired[EstimatedIngestRate]
67
+ r"""Maximum expected volume of data ingested by the @{group}. (This setting is available only on @{group}s consisting of Cribl-managed Cribl.Cloud @{node}s.)"""
56
68
  git: NotRequired[GitTypedDict]
57
69
  incompatible_worker_count: NotRequired[float]
58
70
  inherits: NotRequired[str]
@@ -92,6 +104,7 @@ class ConfigGroup(BaseModel):
92
104
  ],
93
105
  pydantic.Field(alias="estimatedIngestRate"),
94
106
  ] = None
107
+ r"""Maximum expected volume of data ingested by the @{group}. (This setting is available only on @{group}s consisting of Cribl-managed Cribl.Cloud @{node}s.)"""
95
108
 
96
109
  git: Optional[Git] = None
97
110
 
@@ -12,7 +12,6 @@ class UpdatePacksRequestTypedDict(TypedDict):
12
12
  filename: str
13
13
  r"""Filename of the Pack file to upload."""
14
14
  request_body: Union[bytes, IO[bytes], io.BufferedReader]
15
- r"""Binary file content"""
16
15
 
17
16
 
18
17
  class UpdatePacksRequest(BaseModel):
@@ -24,4 +23,3 @@ class UpdatePacksRequest(BaseModel):
24
23
  request_body: Annotated[
25
24
  Union[bytes, IO[bytes], io.BufferedReader], FieldMetadata(request=True)
26
25
  ]
27
- r"""Binary file content"""
@@ -383,10 +383,10 @@ class Packs(BaseSDK):
383
383
  ) -> models.UploadPackResponse:
384
384
  r"""Upload a Pack file
385
385
 
386
- Upload a Pack file. Returns the <code>source</code> ID needed to install the Pack with <code>POST /packs</source>, which you must call separately.
386
+ Upload a Pack file. Returns the <code>source</code> ID needed to install the Pack with <code>POST /packs source</code>, which you must call separately.
387
387
 
388
388
  :param filename: Filename of the Pack file to upload.
389
- :param request_body: Binary file content
389
+ :param request_body:
390
390
  :param retries: Override the default retry configuration for this method
391
391
  :param server_url: Override the default server URL for this method
392
392
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -480,10 +480,10 @@ class Packs(BaseSDK):
480
480
  ) -> models.UploadPackResponse:
481
481
  r"""Upload a Pack file
482
482
 
483
- Upload a Pack file. Returns the <code>source</code> ID needed to install the Pack with <code>POST /packs</source>, which you must call separately.
483
+ Upload a Pack file. Returns the <code>source</code> ID needed to install the Pack with <code>POST /packs source</code>, which you must call separately.
484
484
 
485
485
  :param filename: Filename of the Pack file to upload.
486
- :param request_body: Binary file content
486
+ :param request_body:
487
487
  :param retries: Override the default retry configuration for this method
488
488
  :param server_url: Override the default server URL for this method
489
489
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cribl-control-plane
3
- Version: 0.2.0b6
3
+ Version: 0.2.0b8
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=CeI19FzRb2V6kiNPgSFGn0CgI
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=FEa3N8OMjnkmrrs6iHesiaKkyIGxfzMYaszyrnRQy7Q,546
7
+ cribl_control_plane/_version.py,sha256=8OTMapRkZK7wrTdJzWe3PoQ7eh2YPiHQajP_04FUyhs,546
8
8
  cribl_control_plane/acl.py,sha256=8lvYOKAli4PzsQhOVaCU6YCwblPMh9jQo04L0r4HJuQ,9025
9
9
  cribl_control_plane/auth_sdk.py,sha256=3sjf1VoyWwfhSyuMDQLixgWISSf03BOZwmkiT8g5Ruw,626
10
10
  cribl_control_plane/basesdk.py,sha256=y4yIXSNVXLMd0sLS2htBFdTCI3gkPQbIWd-C671kg1I,12249
@@ -22,7 +22,7 @@ cribl_control_plane/errors/healthstatus_error.py,sha256=Psoup4s1La6jZU8Z7kXQxO6w
22
22
  cribl_control_plane/errors/no_response_error.py,sha256=DaZukP5ManflzAN-11MtmBitfTIct37sRvfszvfM13o,467
23
23
  cribl_control_plane/errors/responsevalidationerror.py,sha256=l8CMARNT46VW1u2GuWlH7Ki_rF8Ulky4J_2fQ7rMwnU,783
24
24
  cribl_control_plane/groups_configs.py,sha256=dgi-W0ElnyygaVKXqk5df2ldAAgj9YmXRPCez2hP7yc,695
25
- cribl_control_plane/groups_sdk.py,sha256=pZy0owBWP-RFNp9CwA2fopDZSceUX1CFlAtaTsFctDc,61919
25
+ cribl_control_plane/groups_sdk.py,sha256=V2yLvhAqRw1rjP16F4L4WnhkvOadHZaGkalTT-xxP0E,62535
26
26
  cribl_control_plane/health.py,sha256=N8pX8RHkJVtLFd4nZ8ypJPrzT_JezciEVry9s9qvCRc,7019
27
27
  cribl_control_plane/hectokens.py,sha256=0EGgGGrM83m1YmTZwkN5S4xFkHQGnw1IZe3y6uMwmLw,19151
28
28
  cribl_control_plane/httpclient.py,sha256=dqTPONDBpRn4ktXfcetQiRXnG93f0pJkFhqsYFhLUac,3945
@@ -35,7 +35,7 @@ cribl_control_plane/models/cacheconnection.py,sha256=IaqcKQhOxuY_SYdMpD2FqBGMbra
35
35
  cribl_control_plane/models/cacheconnectionbackfillstatus.py,sha256=EFJtxJ8EULR0JI4SjDoIsYSxx7uGHk-ULOeSxSzTCSc,380
36
36
  cribl_control_plane/models/cloudprovider.py,sha256=OwlC4oXKrv5AjIgotkcSSTGgods-2QWeR0N5UgJ20Yw,268
37
37
  cribl_control_plane/models/commit.py,sha256=wXQkjOYsffxWURHTrfU9kJ4HF2H65QfD1R9-vH0clvQ,641
38
- cribl_control_plane/models/configgroup.py,sha256=5t0IF-5BVrtJLM8XPBBrfriY9RXP9TxCzK2m46mDWiA,4302
38
+ cribl_control_plane/models/configgroup.py,sha256=6ocFXnV75jxY9Z8O0ls94vOKnvtVJSeeFFO4IfRHptQ,4793
39
39
  cribl_control_plane/models/configgroupcloud.py,sha256=xme7fTZesBGwpma0huL-EXyPNaDYhP2CeYnvxBRxwU8,1589
40
40
  cribl_control_plane/models/configgrouplookups.py,sha256=1z1DlvlVehqfD6hZMXG0XedZTfoCIpYd0cHav45tiRw,830
41
41
  cribl_control_plane/models/createconfiggroupbyproductop.py,sha256=OZtUSrA4Lf81IhqH-PnO5nqbcWJ_plFLJJbe-vIBsSI,1728
@@ -286,14 +286,14 @@ cribl_control_plane/models/updateinputbyidop.py,sha256=fWbSRQQ1WdHI6_e-fV32T99vD
286
286
  cribl_control_plane/models/updateinputhectokenbyidandtokenop.py,sha256=di6CX6521rBdx1h5pcUrtC-glnRFeDNehcx2U3px5_U,1893
287
287
  cribl_control_plane/models/updateoutputbyidop.py,sha256=44KI9zpS8trSu1FohNHD2egDVUxAlL-A8zazS7YOsrU,1357
288
288
  cribl_control_plane/models/updatepacksbyidop.py,sha256=QYjDGco3xBD0P7MXGzj0NE2qjQosmOWKQ7S0PoedugI,1510
289
- cribl_control_plane/models/updatepacksop.py,sha256=a11FUaKKT2pa8vN5sNEYCm7bat0kUEP6Sk_1dv4lNxo,870
289
+ cribl_control_plane/models/updatepacksop.py,sha256=2hkaEm6nKQe8wm0Pf79xiAHNz-aY7k9lfdKCxLqJ32c,808
290
290
  cribl_control_plane/models/updatepipelinebyidop.py,sha256=Cn_FBckmK1NyUkfOpWmc84K94W0nYCKuzppWwk0g4yY,1448
291
291
  cribl_control_plane/models/updateroutesbyidop.py,sha256=KEoryZP8OqtJCXp0f5P4c2KKs1k1jY9-LsxGSBLDFMA,1562
292
292
  cribl_control_plane/models/uploadpackresponse.py,sha256=-B2ye6T8fc4WKBxVnufwryRsVAHhqentutQVuN7PA3s,315
293
293
  cribl_control_plane/models/useraccesscontrollist.py,sha256=UNM3mdqFByd9GAovAi26z9y-5H15hrKDzw0M-f-Pn2o,483
294
294
  cribl_control_plane/models/workertypes.py,sha256=1AaTkG_g67Vtoh0vYYrYVgRo41PvcK3cRm_G_r-JSgA,286
295
295
  cribl_control_plane/nodes.py,sha256=I4AnHbDlX3zNbvDfwgIZ6sv1yQTlkAGaQRoSzwkl0KM,17531
296
- cribl_control_plane/packs.py,sha256=1MpYnN5iUEXxHW6lIgnDN71Trc42xY_cxVS5_-TEwSQ,47681
296
+ cribl_control_plane/packs.py,sha256=svZrwbLNPfqPlRC0oh0w5IwQl2DWUHI89N3aTw27AiQ,47651
297
297
  cribl_control_plane/pipelines.py,sha256=jeU-R5NDOsLXrV-5t7Cz-RPidsQ4KwNN4-_oW9iNK0s,36946
298
298
  cribl_control_plane/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
299
299
  cribl_control_plane/routes_sdk.py,sha256=aqJkB-EbLzA2NSFtu9N7ERta5BvIbpDRg7OZcO_ndkA,33197
@@ -326,6 +326,6 @@ cribl_control_plane/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8N
326
326
  cribl_control_plane/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
327
327
  cribl_control_plane/versions.py,sha256=4xdTYbM84Xyjr5qkixqNpgn2q6V8aXVYXkEPDU2Ele0,1156
328
328
  cribl_control_plane/versions_configs.py,sha256=5CKcfN4SzuyFgggrx6O8H_h3GhNyKSbfdVhSkVGZKi4,7284
329
- cribl_control_plane-0.2.0b6.dist-info/METADATA,sha256=C4c9NxYg3hL-RXQb1S4LDwWyVag8EskzUYCIE7r7flU,39955
330
- cribl_control_plane-0.2.0b6.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
331
- cribl_control_plane-0.2.0b6.dist-info/RECORD,,
329
+ cribl_control_plane-0.2.0b8.dist-info/METADATA,sha256=Qtk3JSbPyxbiqX4k68B_lq_6uesZ78bfSnw9HKyXsUc,39955
330
+ cribl_control_plane-0.2.0b8.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
331
+ cribl_control_plane-0.2.0b8.dist-info/RECORD,,