cribl-control-plane 0.0.30__py3-none-any.whl → 0.0.32__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 (53) hide show
  1. cribl_control_plane/_version.py +3 -3
  2. cribl_control_plane/branches.py +6 -6
  3. cribl_control_plane/commits.py +216 -36
  4. cribl_control_plane/commits_files.py +16 -16
  5. cribl_control_plane/destinations.py +18 -18
  6. cribl_control_plane/destinations_pq.py +10 -10
  7. cribl_control_plane/hectokens.py +10 -10
  8. cribl_control_plane/lakedatasets.py +36 -36
  9. cribl_control_plane/models/__init__.py +19 -0
  10. cribl_control_plane/models/createcribllakedatasetbylakeidop.py +2 -2
  11. cribl_control_plane/models/createinputhectokenbyidop.py +2 -2
  12. cribl_control_plane/models/createoutputtestbyidop.py +2 -2
  13. cribl_control_plane/models/createroutesappendbyidop.py +6 -5
  14. cribl_control_plane/models/createversionundoop.py +2 -2
  15. cribl_control_plane/models/deletecribllakedatasetbylakeidandidop.py +4 -4
  16. cribl_control_plane/models/deleteinputbyidop.py +2 -2
  17. cribl_control_plane/models/deleteoutputbyidop.py +2 -2
  18. cribl_control_plane/models/deleteoutputpqbyidop.py +2 -2
  19. cribl_control_plane/models/deletepacksbyidop.py +2 -2
  20. cribl_control_plane/models/getconfiggroupaclteamsbyproductandidop.py +3 -3
  21. cribl_control_plane/models/getcribllakedatasetbylakeidandidop.py +4 -4
  22. cribl_control_plane/models/getcribllakedatasetbylakeidop.py +2 -2
  23. cribl_control_plane/models/getinputbyidop.py +2 -2
  24. cribl_control_plane/models/getmasterworkerentryop.py +2 -2
  25. cribl_control_plane/models/getoutputbyidop.py +2 -2
  26. cribl_control_plane/models/getoutputpqbyidop.py +2 -2
  27. cribl_control_plane/models/getoutputsamplesbyidop.py +2 -2
  28. cribl_control_plane/models/getpacksop.py +2 -2
  29. cribl_control_plane/models/getsummaryop.py +3 -3
  30. cribl_control_plane/models/getversioncountop.py +4 -4
  31. cribl_control_plane/models/getversiondiffop.py +8 -8
  32. cribl_control_plane/models/getversionfilesop.py +4 -4
  33. cribl_control_plane/models/getversionop.py +46 -0
  34. cribl_control_plane/models/getversionshowop.py +8 -8
  35. cribl_control_plane/models/getversionstatusop.py +2 -2
  36. cribl_control_plane/models/gitlogresult.py +33 -0
  37. cribl_control_plane/models/listmasterworkerentryop.py +23 -23
  38. cribl_control_plane/models/updatecribllakedatasetbylakeidandidop.py +4 -4
  39. cribl_control_plane/models/updateinputbyidop.py +2 -2
  40. cribl_control_plane/models/updateinputhectokenbyidandtokenop.py +4 -4
  41. cribl_control_plane/models/updateoutputbyidop.py +2 -2
  42. cribl_control_plane/models/updatepacksbyidop.py +2 -2
  43. cribl_control_plane/nodes.py +30 -30
  44. cribl_control_plane/packs.py +16 -16
  45. cribl_control_plane/samples.py +10 -10
  46. cribl_control_plane/sources.py +18 -18
  47. cribl_control_plane/statuses.py +6 -6
  48. cribl_control_plane/summaries.py +6 -6
  49. cribl_control_plane/teams.py +2 -2
  50. cribl_control_plane/versions_configs.py +4 -4
  51. {cribl_control_plane-0.0.30.dist-info → cribl_control_plane-0.0.32.dist-info}/METADATA +24 -23
  52. {cribl_control_plane-0.0.30.dist-info → cribl_control_plane-0.0.32.dist-info}/RECORD +53 -51
  53. {cribl_control_plane-0.0.30.dist-info → cribl_control_plane-0.0.32.dist-info}/WHEEL +0 -0
@@ -26,26 +26,26 @@ class Nodes(BaseSDK):
26
26
  self,
27
27
  *,
28
28
  filter_exp: Optional[str] = None,
29
- sort: Optional[str] = None,
30
29
  sort_exp: Optional[str] = None,
30
+ filter_: Optional[str] = None,
31
+ sort: Optional[str] = None,
31
32
  limit: Optional[int] = None,
32
33
  offset: Optional[int] = None,
33
- filter_: Optional[str] = None,
34
34
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
35
35
  server_url: Optional[str] = None,
36
36
  timeout_ms: Optional[int] = None,
37
37
  http_headers: Optional[Mapping[str, str]] = None,
38
38
  ) -> models.ListMasterWorkerEntryResponse:
39
- r"""Retrieve detailed metadata for Worker and Edge Nodes
39
+ r"""Get detailed metadata for Worker and Edge Nodes
40
40
 
41
- get worker and edge nodes
41
+ Get detailed metadata for Worker and Edge Nodes.
42
42
 
43
- :param filter_exp: Filter expression evaluated against nodes
44
- :param sort: Sorting object (JSON stringified) expression evaluated against nodes
45
- :param sort_exp: Sorting expression evaluated against nodes
46
- :param limit: Maximum number of nodes to return
47
- :param offset: Pagination offset
48
- :param filter_: Filter object (JSON stringified) to select nodes
43
+ :param filter_exp: Filter expression to evaluate against Nodes for inclusion in the response.
44
+ :param sort_exp: Sorting expression to evaluate against Nodes to specify the sort order for the response.
45
+ :param filter_: JSON-stringified filter object to evaluate against Nodes for inclusion in the response.
46
+ :param sort: JSON-stringified sorting object to evaluate against Nodes to specify the sort order for the response.
47
+ :param limit: Maximum number of Nodes to return in the response for this request. Use with <code>offset</code> to paginate the response into manageable batches.
48
+ :param offset: Starting point from which to retrieve results for this request. Use with <code>limit</code> to paginate the response into manageable batches.
49
49
  :param retries: Override the default retry configuration for this method
50
50
  :param server_url: Override the default server URL for this method
51
51
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -63,11 +63,11 @@ class Nodes(BaseSDK):
63
63
 
64
64
  request = models.ListMasterWorkerEntryRequest(
65
65
  filter_exp=filter_exp,
66
- sort=sort,
67
66
  sort_exp=sort_exp,
67
+ filter_=filter_,
68
+ sort=sort,
68
69
  limit=limit,
69
70
  offset=offset,
70
- filter_=filter_,
71
71
  )
72
72
 
73
73
  req = self._build_request(
@@ -130,26 +130,26 @@ class Nodes(BaseSDK):
130
130
  self,
131
131
  *,
132
132
  filter_exp: Optional[str] = None,
133
- sort: Optional[str] = None,
134
133
  sort_exp: Optional[str] = None,
134
+ filter_: Optional[str] = None,
135
+ sort: Optional[str] = None,
135
136
  limit: Optional[int] = None,
136
137
  offset: Optional[int] = None,
137
- filter_: Optional[str] = None,
138
138
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
139
139
  server_url: Optional[str] = None,
140
140
  timeout_ms: Optional[int] = None,
141
141
  http_headers: Optional[Mapping[str, str]] = None,
142
142
  ) -> models.ListMasterWorkerEntryResponse:
143
- r"""Retrieve detailed metadata for Worker and Edge Nodes
143
+ r"""Get detailed metadata for Worker and Edge Nodes
144
144
 
145
- get worker and edge nodes
145
+ Get detailed metadata for Worker and Edge Nodes.
146
146
 
147
- :param filter_exp: Filter expression evaluated against nodes
148
- :param sort: Sorting object (JSON stringified) expression evaluated against nodes
149
- :param sort_exp: Sorting expression evaluated against nodes
150
- :param limit: Maximum number of nodes to return
151
- :param offset: Pagination offset
152
- :param filter_: Filter object (JSON stringified) to select nodes
147
+ :param filter_exp: Filter expression to evaluate against Nodes for inclusion in the response.
148
+ :param sort_exp: Sorting expression to evaluate against Nodes to specify the sort order for the response.
149
+ :param filter_: JSON-stringified filter object to evaluate against Nodes for inclusion in the response.
150
+ :param sort: JSON-stringified sorting object to evaluate against Nodes to specify the sort order for the response.
151
+ :param limit: Maximum number of Nodes to return in the response for this request. Use with <code>offset</code> to paginate the response into manageable batches.
152
+ :param offset: Starting point from which to retrieve results for this request. Use with <code>limit</code> to paginate the response into manageable batches.
153
153
  :param retries: Override the default retry configuration for this method
154
154
  :param server_url: Override the default server URL for this method
155
155
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -167,11 +167,11 @@ class Nodes(BaseSDK):
167
167
 
168
168
  request = models.ListMasterWorkerEntryRequest(
169
169
  filter_exp=filter_exp,
170
- sort=sort,
171
170
  sort_exp=sort_exp,
171
+ filter_=filter_,
172
+ sort=sort,
172
173
  limit=limit,
173
174
  offset=offset,
174
- filter_=filter_,
175
175
  )
176
176
 
177
177
  req = self._build_request_async(
@@ -239,11 +239,11 @@ class Nodes(BaseSDK):
239
239
  timeout_ms: Optional[int] = None,
240
240
  http_headers: Optional[Mapping[str, str]] = None,
241
241
  ) -> models.GetMasterWorkerEntryResponse:
242
- r"""Retrieve a count of Worker and Edge Nodes
242
+ r"""Get a count of Worker and Edge Nodes
243
243
 
244
- get worker and edge nodes count
244
+ Get a count of all Worker and Edge Nodes.
245
245
 
246
- :param filter_exp: Filter expression evaluated against nodes
246
+ :param filter_exp: Filter expression to evaluate against Nodes for inclusion in the response.
247
247
  :param retries: Override the default retry configuration for this method
248
248
  :param server_url: Override the default server URL for this method
249
249
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -328,11 +328,11 @@ class Nodes(BaseSDK):
328
328
  timeout_ms: Optional[int] = None,
329
329
  http_headers: Optional[Mapping[str, str]] = None,
330
330
  ) -> models.GetMasterWorkerEntryResponse:
331
- r"""Retrieve a count of Worker and Edge Nodes
331
+ r"""Get a count of Worker and Edge Nodes
332
332
 
333
- get worker and edge nodes count
333
+ Get a count of all Worker and Edge Nodes.
334
334
 
335
- :param filter_exp: Filter expression evaluated against nodes
335
+ :param filter_exp: Filter expression to evaluate against Nodes for inclusion in the response.
336
336
  :param retries: Override the default retry configuration for this method
337
337
  :param server_url: Override the default server URL for this method
338
338
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -38,7 +38,7 @@ class Packs(BaseSDK):
38
38
  ) -> models.CreatePacksResponse:
39
39
  r"""Install a Pack
40
40
 
41
- Install Pack
41
+ Install a Pack.
42
42
 
43
43
  :param id:
44
44
  :param source:
@@ -169,7 +169,7 @@ class Packs(BaseSDK):
169
169
  ) -> models.CreatePacksResponse:
170
170
  r"""Install a Pack
171
171
 
172
- Install Pack
172
+ Install a Pack.
173
173
 
174
174
  :param id:
175
175
  :param source:
@@ -285,9 +285,9 @@ class Packs(BaseSDK):
285
285
  ) -> models.GetPacksResponse:
286
286
  r"""List all Packs
287
287
 
288
- Get info on packs
288
+ Get a list of all Packs.
289
289
 
290
- :param with_: Comma separated list of entities, \"outputs\", \"inputs\"
290
+ :param with_: Comma-separated list of additional properties to include in the response. When set, the response includes a count of the specified properties in the Pack. Available values are <code>inputs</code> and <code>outputs</code>.
291
291
  :param retries: Override the default retry configuration for this method
292
292
  :param server_url: Override the default server URL for this method
293
293
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -372,9 +372,9 @@ class Packs(BaseSDK):
372
372
  ) -> models.GetPacksResponse:
373
373
  r"""List all Packs
374
374
 
375
- Get info on packs
375
+ Get a list of all Packs.
376
376
 
377
- :param with_: Comma separated list of entities, \"outputs\", \"inputs\"
377
+ :param with_: Comma-separated list of additional properties to include in the response. When set, the response includes a count of the specified properties in the Pack. Available values are <code>inputs</code> and <code>outputs</code>.
378
378
  :param retries: Override the default retry configuration for this method
379
379
  :param server_url: Override the default server URL for this method
380
380
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -459,9 +459,9 @@ class Packs(BaseSDK):
459
459
  ) -> models.DeletePacksByIDResponse:
460
460
  r"""Uninstall a Pack
461
461
 
462
- Uninstall Pack from the system
462
+ Uninstall the specified Pack.
463
463
 
464
- :param id: Pack name
464
+ :param id: The <code>id</code> of the Pack to uninstall.
465
465
  :param retries: Override the default retry configuration for this method
466
466
  :param server_url: Override the default server URL for this method
467
467
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -546,9 +546,9 @@ class Packs(BaseSDK):
546
546
  ) -> models.DeletePacksByIDResponse:
547
547
  r"""Uninstall a Pack
548
548
 
549
- Uninstall Pack from the system
549
+ Uninstall the specified Pack.
550
550
 
551
- :param id: Pack name
551
+ :param id: The <code>id</code> of the Pack to uninstall.
552
552
  :param retries: Override the default retry configuration for this method
553
553
  :param server_url: Override the default server URL for this method
554
554
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -634,11 +634,11 @@ class Packs(BaseSDK):
634
634
  timeout_ms: Optional[int] = None,
635
635
  http_headers: Optional[Mapping[str, str]] = None,
636
636
  ) -> models.UpdatePacksByIDResponse:
637
- r"""Update a Pack
637
+ r"""Upgrade a Pack
638
638
 
639
- Upgrade Pack
639
+ Upgrade the specified Pack.</br></br>If the Pack includes any user–modified versions of default Cribl Knowledge resources such as lookups, copy the modified files locally for safekeeping before upgrading the Pack. Copy the modified files back to the upgraded Pack after you install it with <code>POST /packs</code> to overwrite the default versions in the Pack.</br></br>After you upgrade the Pack, update any Routes, Pipelines, Sources, and Destinations that use the previous Pack version so that they reference the upgraded Pack.
640
640
 
641
- :param id: Pack name
641
+ :param id: The <code>id</code> of the Pack to upgrade.
642
642
  :param source: body string required Pack source
643
643
  :param minor: body boolean optional Only upgrade to minor/patch versions
644
644
  :param spec: body string optional Specify a branch, tag or a semver spec
@@ -730,11 +730,11 @@ class Packs(BaseSDK):
730
730
  timeout_ms: Optional[int] = None,
731
731
  http_headers: Optional[Mapping[str, str]] = None,
732
732
  ) -> models.UpdatePacksByIDResponse:
733
- r"""Update a Pack
733
+ r"""Upgrade a Pack
734
734
 
735
- Upgrade Pack
735
+ Upgrade the specified Pack.</br></br>If the Pack includes any user–modified versions of default Cribl Knowledge resources such as lookups, copy the modified files locally for safekeeping before upgrading the Pack. Copy the modified files back to the upgraded Pack after you install it with <code>POST /packs</code> to overwrite the default versions in the Pack.</br></br>After you upgrade the Pack, update any Routes, Pipelines, Sources, and Destinations that use the previous Pack version so that they reference the upgraded Pack.
736
736
 
737
- :param id: Pack name
737
+ :param id: The <code>id</code> of the Pack to upgrade.
738
738
  :param source: body string required Pack source
739
739
  :param minor: body boolean optional Only upgrade to minor/patch versions
740
740
  :param spec: body string optional Specify a branch, tag or a semver spec
@@ -19,11 +19,11 @@ class Samples(BaseSDK):
19
19
  timeout_ms: Optional[int] = None,
20
20
  http_headers: Optional[Mapping[str, str]] = None,
21
21
  ) -> models.GetOutputSamplesByIDResponse:
22
- r"""Retrieve sample event data for a Destination
22
+ r"""Get sample event data for a Destination
23
23
 
24
- Retrieve samples data for the specified destination. Used to get sample data for the test action.
24
+ Get sample event data for the specified Destination to validate the configuration or test connectivity.
25
25
 
26
- :param id: Destination Id
26
+ :param id: The <code>id</code> of the Destination to get sample event data for.
27
27
  :param retries: Override the default retry configuration for this method
28
28
  :param server_url: Override the default server URL for this method
29
29
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -108,11 +108,11 @@ class Samples(BaseSDK):
108
108
  timeout_ms: Optional[int] = None,
109
109
  http_headers: Optional[Mapping[str, str]] = None,
110
110
  ) -> models.GetOutputSamplesByIDResponse:
111
- r"""Retrieve sample event data for a Destination
111
+ r"""Get sample event data for a Destination
112
112
 
113
- Retrieve samples data for the specified destination. Used to get sample data for the test action.
113
+ Get sample event data for the specified Destination to validate the configuration or test connectivity.
114
114
 
115
- :param id: Destination Id
115
+ :param id: The <code>id</code> of the Destination to get sample event data for.
116
116
  :param retries: Override the default retry configuration for this method
117
117
  :param server_url: Override the default server URL for this method
118
118
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -200,9 +200,9 @@ class Samples(BaseSDK):
200
200
  ) -> models.CreateOutputTestByIDResponse:
201
201
  r"""Send sample event data to a Destination
202
202
 
203
- Send sample data to a destination to validate configuration or test connectivity
203
+ Send sample event data to the specified Destination to validate the configuration or test connectivity.
204
204
 
205
- :param id: Destination Id
205
+ :param id: The <code>id</code> of the Destination to send sample event data to.
206
206
  :param events:
207
207
  :param retries: Override the default retry configuration for this method
208
208
  :param server_url: Override the default server URL for this method
@@ -301,9 +301,9 @@ class Samples(BaseSDK):
301
301
  ) -> models.CreateOutputTestByIDResponse:
302
302
  r"""Send sample event data to a Destination
303
303
 
304
- Send sample data to a destination to validate configuration or test connectivity
304
+ Send sample event data to the specified Destination to validate the configuration or test connectivity.
305
305
 
306
- :param id: Destination Id
306
+ :param id: The <code>id</code> of the Destination to send sample event data to.
307
307
  :param events:
308
308
  :param retries: Override the default retry configuration for this method
309
309
  :param server_url: Override the default server URL for this method
@@ -34,7 +34,7 @@ class Sources(BaseSDK):
34
34
  ) -> models.ListInputResponse:
35
35
  r"""List all Sources
36
36
 
37
- Get a list of Source objects
37
+ Get a list of all Sources.
38
38
 
39
39
  :param retries: Override the default retry configuration for this method
40
40
  :param server_url: Override the default server URL for this method
@@ -114,7 +114,7 @@ class Sources(BaseSDK):
114
114
  ) -> models.ListInputResponse:
115
115
  r"""List all Sources
116
116
 
117
- Get a list of Source objects
117
+ Get a list of all Sources.
118
118
 
119
119
  :param retries: Override the default retry configuration for this method
120
120
  :param server_url: Override the default server URL for this method
@@ -195,7 +195,7 @@ class Sources(BaseSDK):
195
195
  ) -> models.CreateInputResponse:
196
196
  r"""Create a Source
197
197
 
198
- Create Source
198
+ Create a new Source.
199
199
 
200
200
  :param request: The request object to send.
201
201
  :param retries: Override the default retry configuration for this method
@@ -285,7 +285,7 @@ class Sources(BaseSDK):
285
285
  ) -> models.CreateInputResponse:
286
286
  r"""Create a Source
287
287
 
288
- Create Source
288
+ Create a new Source.
289
289
 
290
290
  :param request: The request object to send.
291
291
  :param retries: Override the default retry configuration for this method
@@ -373,11 +373,11 @@ class Sources(BaseSDK):
373
373
  timeout_ms: Optional[int] = None,
374
374
  http_headers: Optional[Mapping[str, str]] = None,
375
375
  ) -> models.GetInputByIDResponse:
376
- r"""Retrieve a Source
376
+ r"""Get a Source
377
377
 
378
- Get Source by ID
378
+ Get the specified Source.
379
379
 
380
- :param id: Unique ID to GET
380
+ :param id: The <code>id</code> of the Source to get.
381
381
  :param retries: Override the default retry configuration for this method
382
382
  :param server_url: Override the default server URL for this method
383
383
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -460,11 +460,11 @@ class Sources(BaseSDK):
460
460
  timeout_ms: Optional[int] = None,
461
461
  http_headers: Optional[Mapping[str, str]] = None,
462
462
  ) -> models.GetInputByIDResponse:
463
- r"""Retrieve a Source
463
+ r"""Get a Source
464
464
 
465
- Get Source by ID
465
+ Get the specified Source.
466
466
 
467
- :param id: Unique ID to GET
467
+ :param id: The <code>id</code> of the Source to get.
468
468
  :param retries: Override the default retry configuration for this method
469
469
  :param server_url: Override the default server URL for this method
470
470
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -550,9 +550,9 @@ class Sources(BaseSDK):
550
550
  ) -> models.UpdateInputByIDResponse:
551
551
  r"""Update a Source
552
552
 
553
- Update Source
553
+ Update the specified Source.</br></br>Provide a complete representation of the Source that you want to update in the request body. This endpoint does not support partial updates. Cribl removes any omitted fields when updating the Source.</br></br>Confirm that the configuration in your request body is correct before sending the request. If the configuration is incorrect, the updated Source might not function as expected.
554
554
 
555
- :param id: Unique ID to PATCH
555
+ :param id: The <code>id</code> of the Source to update.
556
556
  :param input: Input object
557
557
  :param retries: Override the default retry configuration for this method
558
558
  :param server_url: Override the default server URL for this method
@@ -643,9 +643,9 @@ class Sources(BaseSDK):
643
643
  ) -> models.UpdateInputByIDResponse:
644
644
  r"""Update a Source
645
645
 
646
- Update Source
646
+ Update the specified Source.</br></br>Provide a complete representation of the Source that you want to update in the request body. This endpoint does not support partial updates. Cribl removes any omitted fields when updating the Source.</br></br>Confirm that the configuration in your request body is correct before sending the request. If the configuration is incorrect, the updated Source might not function as expected.
647
647
 
648
- :param id: Unique ID to PATCH
648
+ :param id: The <code>id</code> of the Source to update.
649
649
  :param input: Input object
650
650
  :param retries: Override the default retry configuration for this method
651
651
  :param server_url: Override the default server URL for this method
@@ -735,9 +735,9 @@ class Sources(BaseSDK):
735
735
  ) -> models.DeleteInputByIDResponse:
736
736
  r"""Delete a Source
737
737
 
738
- Delete Source
738
+ Delete the specified Source.
739
739
 
740
- :param id: Unique ID to DELETE
740
+ :param id: The <code>id</code> of the Source to delete.
741
741
  :param retries: Override the default retry configuration for this method
742
742
  :param server_url: Override the default server URL for this method
743
743
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -822,9 +822,9 @@ class Sources(BaseSDK):
822
822
  ) -> models.DeleteInputByIDResponse:
823
823
  r"""Delete a Source
824
824
 
825
- Delete Source
825
+ Delete the specified Source.
826
826
 
827
- :param id: Unique ID to DELETE
827
+ :param id: The <code>id</code> of the Source to delete.
828
828
  :param retries: Override the default retry configuration for this method
829
829
  :param server_url: Override the default server URL for this method
830
830
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -19,11 +19,11 @@ class Statuses(BaseSDK):
19
19
  timeout_ms: Optional[int] = None,
20
20
  http_headers: Optional[Mapping[str, str]] = None,
21
21
  ) -> models.GetVersionStatusResponse:
22
- r"""Retrieve the status of the current working tree
22
+ r"""Get the status of the current working tree
23
23
 
24
- get the the working tree status
24
+ Get the status of the current working tree of the Git repository used for Cribl configuration. The response includes details about modified, staged, untracked, and conflicted files, as well as branch and remote tracking information.
25
25
 
26
- :param group: Group ID
26
+ :param group: The <code>id</code> of the Worker Group or Edge Fleet to get the status for.
27
27
  :param retries: Override the default retry configuration for this method
28
28
  :param server_url: Override the default server URL for this method
29
29
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -106,11 +106,11 @@ class Statuses(BaseSDK):
106
106
  timeout_ms: Optional[int] = None,
107
107
  http_headers: Optional[Mapping[str, str]] = None,
108
108
  ) -> models.GetVersionStatusResponse:
109
- r"""Retrieve the status of the current working tree
109
+ r"""Get the status of the current working tree
110
110
 
111
- get the the working tree status
111
+ Get the status of the current working tree of the Git repository used for Cribl configuration. The response includes details about modified, staged, untracked, and conflicted files, as well as branch and remote tracking information.
112
112
 
113
- :param group: Group ID
113
+ :param group: The <code>id</code> of the Worker Group or Edge Fleet to get the status for.
114
114
  :param retries: Override the default retry configuration for this method
115
115
  :param server_url: Override the default server URL for this method
116
116
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -19,11 +19,11 @@ class Summaries(BaseSDK):
19
19
  timeout_ms: Optional[int] = None,
20
20
  http_headers: Optional[Mapping[str, str]] = None,
21
21
  ) -> models.GetSummaryResponse:
22
- r"""Retrieve a summary of the Distributed deployment
22
+ r"""Get a summary of the Distributed deployment
23
23
 
24
- Get summary of Distributed deployment
24
+ Get a summary of the Distributed deployment. The response includes counts of Worker Groups, Edge Fleets, Pipelines, Routes, Sources, Destinations, and Worker and Edge Nodes, as well as statistics for the Worker and Edge Nodes.
25
25
 
26
- :param mode: product filter
26
+ :param mode: Filter for limiting the response by Cribl product: Cribl Stream (<code>worker</code>) or Cribl Edge (<code>managed-edge</code>).
27
27
  :param retries: Override the default retry configuration for this method
28
28
  :param server_url: Override the default server URL for this method
29
29
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -106,11 +106,11 @@ class Summaries(BaseSDK):
106
106
  timeout_ms: Optional[int] = None,
107
107
  http_headers: Optional[Mapping[str, str]] = None,
108
108
  ) -> models.GetSummaryResponse:
109
- r"""Retrieve a summary of the Distributed deployment
109
+ r"""Get a summary of the Distributed deployment
110
110
 
111
- Get summary of Distributed deployment
111
+ Get a summary of the Distributed deployment. The response includes counts of Worker Groups, Edge Fleets, Pipelines, Routes, Sources, Destinations, and Worker and Edge Nodes, as well as statistics for the Worker and Edge Nodes.
112
112
 
113
- :param mode: product filter
113
+ :param mode: Filter for limiting the response by Cribl product: Cribl Stream (<code>worker</code>) or Cribl Edge (<code>managed-edge</code>).
114
114
  :param retries: Override the default retry configuration for this method
115
115
  :param server_url: Override the default server URL for this method
116
116
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -27,7 +27,7 @@ class Teams(BaseSDK):
27
27
 
28
28
  :param product: Name of the Cribl product that contains the Worker Group or Edge Fleet.
29
29
  :param id: The <code>id</code> of the Worker Group or Edge Fleet to get the team ACL for.
30
- :param type: resource type by which to filter access levels
30
+ :param type: Filter for limiting the response to ACL entries for the specified RBAC resource type.
31
31
  :param retries: Override the default retry configuration for this method
32
32
  :param server_url: Override the default server URL for this method
33
33
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -122,7 +122,7 @@ class Teams(BaseSDK):
122
122
 
123
123
  :param product: Name of the Cribl product that contains the Worker Group or Edge Fleet.
124
124
  :param id: The <code>id</code> of the Worker Group or Edge Fleet to get the team ACL for.
125
- :param type: resource type by which to filter access levels
125
+ :param type: Filter for limiting the response to ACL entries for the specified RBAC resource type.
126
126
  :param retries: Override the default retry configuration for this method
127
127
  :param server_url: Override the default server URL for this method
128
128
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -18,9 +18,9 @@ class VersionsConfigs(BaseSDK):
18
18
  timeout_ms: Optional[int] = None,
19
19
  http_headers: Optional[Mapping[str, str]] = None,
20
20
  ) -> models.GetVersionInfoResponse:
21
- r"""Retrieve the configuration and status for the Git integration
21
+ r"""Get the configuration and status for the Git integration
22
22
 
23
- Get info about versioning availability
23
+ Get the configuration and versioning status for the Git integration for the Cribl configuration.
24
24
 
25
25
  :param retries: Override the default retry configuration for this method
26
26
  :param server_url: Override the default server URL for this method
@@ -98,9 +98,9 @@ class VersionsConfigs(BaseSDK):
98
98
  timeout_ms: Optional[int] = None,
99
99
  http_headers: Optional[Mapping[str, str]] = None,
100
100
  ) -> models.GetVersionInfoResponse:
101
- r"""Retrieve the configuration and status for the Git integration
101
+ r"""Get the configuration and status for the Git integration
102
102
 
103
- Get info about versioning availability
103
+ Get the configuration and versioning status for the Git integration for the Cribl configuration.
104
104
 
105
105
  :param retries: Override the default retry configuration for this method
106
106
  :param server_url: Override the default server URL for this method