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
@@ -10,14 +10,14 @@ from typing_extensions import Annotated, NotRequired, TypedDict
10
10
 
11
11
  class GetOutputSamplesByIDRequestTypedDict(TypedDict):
12
12
  id: str
13
- r"""Destination Id"""
13
+ r"""The <code>id</code> of the Destination to get sample event data for."""
14
14
 
15
15
 
16
16
  class GetOutputSamplesByIDRequest(BaseModel):
17
17
  id: Annotated[
18
18
  str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
19
19
  ]
20
- r"""Destination Id"""
20
+ r"""The <code>id</code> of the Destination to get sample event data for."""
21
21
 
22
22
 
23
23
  class GetOutputSamplesByIDResponseTypedDict(TypedDict):
@@ -11,7 +11,7 @@ from typing_extensions import Annotated, NotRequired, TypedDict
11
11
 
12
12
  class GetPacksRequestTypedDict(TypedDict):
13
13
  with_: NotRequired[str]
14
- r"""Comma separated list of entities, \"outputs\", \"inputs\" """
14
+ r"""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>."""
15
15
 
16
16
 
17
17
  class GetPacksRequest(BaseModel):
@@ -20,7 +20,7 @@ class GetPacksRequest(BaseModel):
20
20
  pydantic.Field(alias="with"),
21
21
  FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
22
22
  ] = None
23
- r"""Comma separated list of entities, \"outputs\", \"inputs\" """
23
+ r"""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>."""
24
24
 
25
25
 
26
26
  class GetPacksResponseTypedDict(TypedDict):
@@ -10,7 +10,7 @@ from typing_extensions import Annotated, NotRequired, TypedDict
10
10
 
11
11
 
12
12
  class GetSummaryMode(str, Enum):
13
- r"""product filter"""
13
+ r"""Filter for limiting the response by Cribl product: Cribl Stream (<code>worker</code>) or Cribl Edge (<code>managed-edge</code>)."""
14
14
 
15
15
  WORKER = "worker"
16
16
  MANAGED_EDGE = "managed-edge"
@@ -18,7 +18,7 @@ class GetSummaryMode(str, Enum):
18
18
 
19
19
  class GetSummaryRequestTypedDict(TypedDict):
20
20
  mode: NotRequired[GetSummaryMode]
21
- r"""product filter"""
21
+ r"""Filter for limiting the response by Cribl product: Cribl Stream (<code>worker</code>) or Cribl Edge (<code>managed-edge</code>)."""
22
22
 
23
23
 
24
24
  class GetSummaryRequest(BaseModel):
@@ -26,7 +26,7 @@ class GetSummaryRequest(BaseModel):
26
26
  Optional[GetSummaryMode],
27
27
  FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
28
28
  ] = None
29
- r"""product filter"""
29
+ r"""Filter for limiting the response by Cribl product: Cribl Stream (<code>worker</code>) or Cribl Edge (<code>managed-edge</code>)."""
30
30
 
31
31
 
32
32
  class GetSummaryResponseTypedDict(TypedDict):
@@ -10,9 +10,9 @@ from typing_extensions import Annotated, NotRequired, TypedDict
10
10
 
11
11
  class GetVersionCountRequestTypedDict(TypedDict):
12
12
  group: NotRequired[str]
13
- r"""Group ID"""
13
+ r"""The <code>id</code> of the Worker Group or Edge Fleet to get the count for."""
14
14
  id: NotRequired[str]
15
- r"""Commit ID"""
15
+ r"""The Git commit hash to use as the starting point for the count."""
16
16
 
17
17
 
18
18
  class GetVersionCountRequest(BaseModel):
@@ -20,14 +20,14 @@ class GetVersionCountRequest(BaseModel):
20
20
  Optional[str],
21
21
  FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
22
22
  ] = None
23
- r"""Group ID"""
23
+ r"""The <code>id</code> of the Worker Group or Edge Fleet to get the count for."""
24
24
 
25
25
  id: Annotated[
26
26
  Optional[str],
27
27
  pydantic.Field(alias="ID"),
28
28
  FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
29
29
  ] = None
30
- r"""Commit ID"""
30
+ r"""The Git commit hash to use as the starting point for the count."""
31
31
 
32
32
 
33
33
  class GetVersionCountResponseTypedDict(TypedDict):
@@ -10,13 +10,13 @@ from typing_extensions import Annotated, NotRequired, TypedDict
10
10
 
11
11
  class GetVersionDiffRequestTypedDict(TypedDict):
12
12
  commit: NotRequired[str]
13
- r"""Commit hash (default is HEAD)"""
13
+ r"""The Git commit hash to get the diff for."""
14
14
  group: NotRequired[str]
15
- r"""Group ID"""
15
+ r"""The <code>id</code> of the Worker Group or Edge Fleet to get the diff for."""
16
16
  filename: NotRequired[str]
17
- r"""Filename"""
17
+ r"""The relative path of the file to get the diff for."""
18
18
  diff_line_limit: NotRequired[float]
19
- r"""Limit maximum lines in the diff"""
19
+ r"""Number of lines of the diff to return. Default is 1000. Set to <code>0</code> to return the full diff, regardless of the number of lines."""
20
20
 
21
21
 
22
22
  class GetVersionDiffRequest(BaseModel):
@@ -24,26 +24,26 @@ class GetVersionDiffRequest(BaseModel):
24
24
  Optional[str],
25
25
  FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
26
26
  ] = None
27
- r"""Commit hash (default is HEAD)"""
27
+ r"""The Git commit hash to get the diff for."""
28
28
 
29
29
  group: Annotated[
30
30
  Optional[str],
31
31
  FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
32
32
  ] = None
33
- r"""Group ID"""
33
+ r"""The <code>id</code> of the Worker Group or Edge Fleet to get the diff for."""
34
34
 
35
35
  filename: Annotated[
36
36
  Optional[str],
37
37
  FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
38
38
  ] = None
39
- r"""Filename"""
39
+ r"""The relative path of the file to get the diff for."""
40
40
 
41
41
  diff_line_limit: Annotated[
42
42
  Optional[float],
43
43
  pydantic.Field(alias="diffLineLimit"),
44
44
  FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
45
45
  ] = None
46
- r"""Limit maximum lines in the diff"""
46
+ r"""Number of lines of the diff to return. Default is 1000. Set to <code>0</code> to return the full diff, regardless of the number of lines."""
47
47
 
48
48
 
49
49
  class GetVersionDiffResponseTypedDict(TypedDict):
@@ -11,9 +11,9 @@ from typing_extensions import Annotated, NotRequired, TypedDict
11
11
 
12
12
  class GetVersionFilesRequestTypedDict(TypedDict):
13
13
  group: NotRequired[str]
14
- r"""Group ID"""
14
+ r"""The <code>id</code> of the Worker Group or Edge Fleet to get file names and status for."""
15
15
  id: NotRequired[str]
16
- r"""Commit ID"""
16
+ r"""The Git commit hash to use as the starting point for the request."""
17
17
 
18
18
 
19
19
  class GetVersionFilesRequest(BaseModel):
@@ -21,14 +21,14 @@ class GetVersionFilesRequest(BaseModel):
21
21
  Optional[str],
22
22
  FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
23
23
  ] = None
24
- r"""Group ID"""
24
+ r"""The <code>id</code> of the Worker Group or Edge Fleet to get file names and status for."""
25
25
 
26
26
  id: Annotated[
27
27
  Optional[str],
28
28
  pydantic.Field(alias="ID"),
29
29
  FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
30
30
  ] = None
31
- r"""Commit ID"""
31
+ r"""The Git commit hash to use as the starting point for the request."""
32
32
 
33
33
 
34
34
  class GetVersionFilesResponseTypedDict(TypedDict):
@@ -0,0 +1,46 @@
1
+ """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
+
3
+ from __future__ import annotations
4
+ from .gitlogresult import GitLogResult, GitLogResultTypedDict
5
+ from cribl_control_plane.types import BaseModel
6
+ from cribl_control_plane.utils import FieldMetadata, QueryParamMetadata
7
+ from typing import List, Optional
8
+ from typing_extensions import Annotated, NotRequired, TypedDict
9
+
10
+
11
+ class GetVersionRequestTypedDict(TypedDict):
12
+ group: NotRequired[str]
13
+ r"""Group ID"""
14
+ count: NotRequired[float]
15
+ r"""Maximum number of commits to return"""
16
+
17
+
18
+ class GetVersionRequest(BaseModel):
19
+ group: Annotated[
20
+ Optional[str],
21
+ FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
22
+ ] = None
23
+ r"""Group ID"""
24
+
25
+ count: Annotated[
26
+ Optional[float],
27
+ FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
28
+ ] = None
29
+ r"""Maximum number of commits to return"""
30
+
31
+
32
+ class GetVersionResponseTypedDict(TypedDict):
33
+ r"""a list of GitLogResult objects"""
34
+
35
+ count: NotRequired[int]
36
+ r"""number of items present in the items array"""
37
+ items: NotRequired[List[GitLogResultTypedDict]]
38
+
39
+
40
+ class GetVersionResponse(BaseModel):
41
+ r"""a list of GitLogResult objects"""
42
+
43
+ count: Optional[int] = None
44
+ r"""number of items present in the items array"""
45
+
46
+ items: Optional[List[GitLogResult]] = None
@@ -10,13 +10,13 @@ from typing_extensions import Annotated, NotRequired, TypedDict
10
10
 
11
11
  class GetVersionShowRequestTypedDict(TypedDict):
12
12
  commit: NotRequired[str]
13
- r"""Commit hash (default is HEAD)"""
13
+ r"""The Git commit hash to retrieve the diff and log message for."""
14
14
  group: NotRequired[str]
15
- r"""Group ID"""
15
+ r"""The <code>id</code> of the Worker Group or Edge Fleet to get the diff and log message for."""
16
16
  filename: NotRequired[str]
17
- r"""Filename"""
17
+ r"""The relative path of the file to get the diff and log message for."""
18
18
  diff_line_limit: NotRequired[float]
19
- r"""Limit maximum lines in the diff"""
19
+ r"""Number of lines of the diff to return. Default is 1000. Set to <code>0</code> to return the full diff, regardless of the number of lines."""
20
20
 
21
21
 
22
22
  class GetVersionShowRequest(BaseModel):
@@ -24,26 +24,26 @@ class GetVersionShowRequest(BaseModel):
24
24
  Optional[str],
25
25
  FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
26
26
  ] = None
27
- r"""Commit hash (default is HEAD)"""
27
+ r"""The Git commit hash to retrieve the diff and log message for."""
28
28
 
29
29
  group: Annotated[
30
30
  Optional[str],
31
31
  FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
32
32
  ] = None
33
- r"""Group ID"""
33
+ r"""The <code>id</code> of the Worker Group or Edge Fleet to get the diff and log message for."""
34
34
 
35
35
  filename: Annotated[
36
36
  Optional[str],
37
37
  FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
38
38
  ] = None
39
- r"""Filename"""
39
+ r"""The relative path of the file to get the diff and log message for."""
40
40
 
41
41
  diff_line_limit: Annotated[
42
42
  Optional[float],
43
43
  pydantic.Field(alias="diffLineLimit"),
44
44
  FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
45
45
  ] = None
46
- r"""Limit maximum lines in the diff"""
46
+ r"""Number of lines of the diff to return. Default is 1000. Set to <code>0</code> to return the full diff, regardless of the number of lines."""
47
47
 
48
48
 
49
49
  class GetVersionShowResponseTypedDict(TypedDict):
@@ -10,7 +10,7 @@ from typing_extensions import Annotated, NotRequired, TypedDict
10
10
 
11
11
  class GetVersionStatusRequestTypedDict(TypedDict):
12
12
  group: NotRequired[str]
13
- r"""Group ID"""
13
+ r"""The <code>id</code> of the Worker Group or Edge Fleet to get the status for."""
14
14
 
15
15
 
16
16
  class GetVersionStatusRequest(BaseModel):
@@ -18,7 +18,7 @@ class GetVersionStatusRequest(BaseModel):
18
18
  Optional[str],
19
19
  FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
20
20
  ] = None
21
- r"""Group ID"""
21
+ r"""The <code>id</code> of the Worker Group or Edge Fleet to get the status for."""
22
22
 
23
23
 
24
24
  class GetVersionStatusResponseTypedDict(TypedDict):
@@ -0,0 +1,33 @@
1
+ """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
+
3
+ from __future__ import annotations
4
+ from cribl_control_plane.types import BaseModel
5
+ import pydantic
6
+ from typing import Optional
7
+ from typing_extensions import Annotated, NotRequired, TypedDict
8
+
9
+
10
+ class GitLogResultTypedDict(TypedDict):
11
+ author_email: NotRequired[str]
12
+ author_name: NotRequired[str]
13
+ body: NotRequired[str]
14
+ date_: NotRequired[str]
15
+ hash: NotRequired[str]
16
+ message: NotRequired[str]
17
+ refs: NotRequired[str]
18
+
19
+
20
+ class GitLogResult(BaseModel):
21
+ author_email: Optional[str] = None
22
+
23
+ author_name: Optional[str] = None
24
+
25
+ body: Optional[str] = None
26
+
27
+ date_: Annotated[Optional[str], pydantic.Field(alias="date")] = None
28
+
29
+ hash: Optional[str] = None
30
+
31
+ message: Optional[str] = None
32
+
33
+ refs: Optional[str] = None
@@ -11,17 +11,17 @@ from typing_extensions import Annotated, NotRequired, TypedDict
11
11
 
12
12
  class ListMasterWorkerEntryRequestTypedDict(TypedDict):
13
13
  filter_exp: NotRequired[str]
14
- r"""Filter expression evaluated against nodes"""
15
- sort: NotRequired[str]
16
- r"""Sorting object (JSON stringified) expression evaluated against nodes"""
14
+ r"""Filter expression to evaluate against Nodes for inclusion in the response."""
17
15
  sort_exp: NotRequired[str]
18
- r"""Sorting expression evaluated against nodes"""
16
+ r"""Sorting expression to evaluate against Nodes to specify the sort order for the response."""
17
+ filter_: NotRequired[str]
18
+ r"""JSON-stringified filter object to evaluate against Nodes for inclusion in the response."""
19
+ sort: NotRequired[str]
20
+ r"""JSON-stringified sorting object to evaluate against Nodes to specify the sort order for the response."""
19
21
  limit: NotRequired[int]
20
- r"""Maximum number of nodes to return"""
22
+ r"""Maximum number of Nodes to return in the response for this request. Use with <code>offset</code> to paginate the response into manageable batches."""
21
23
  offset: NotRequired[int]
22
- r"""Pagination offset"""
23
- filter_: NotRequired[str]
24
- r"""Filter object (JSON stringified) to select nodes"""
24
+ r"""Starting point from which to retrieve results for this request. Use with <code>limit</code> to paginate the response into manageable batches."""
25
25
 
26
26
 
27
27
  class ListMasterWorkerEntryRequest(BaseModel):
@@ -30,39 +30,39 @@ class ListMasterWorkerEntryRequest(BaseModel):
30
30
  pydantic.Field(alias="filterExp"),
31
31
  FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
32
32
  ] = None
33
- r"""Filter expression evaluated against nodes"""
33
+ r"""Filter expression to evaluate against Nodes for inclusion in the response."""
34
34
 
35
- sort: Annotated[
35
+ sort_exp: Annotated[
36
36
  Optional[str],
37
+ pydantic.Field(alias="sortExp"),
37
38
  FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
38
39
  ] = None
39
- r"""Sorting object (JSON stringified) expression evaluated against nodes"""
40
+ r"""Sorting expression to evaluate against Nodes to specify the sort order for the response."""
40
41
 
41
- sort_exp: Annotated[
42
+ filter_: Annotated[
42
43
  Optional[str],
43
- pydantic.Field(alias="sortExp"),
44
+ pydantic.Field(alias="filter"),
44
45
  FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
45
46
  ] = None
46
- r"""Sorting expression evaluated against nodes"""
47
+ r"""JSON-stringified filter object to evaluate against Nodes for inclusion in the response."""
47
48
 
48
- limit: Annotated[
49
- Optional[int],
49
+ sort: Annotated[
50
+ Optional[str],
50
51
  FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
51
52
  ] = None
52
- r"""Maximum number of nodes to return"""
53
+ r"""JSON-stringified sorting object to evaluate against Nodes to specify the sort order for the response."""
53
54
 
54
- offset: Annotated[
55
+ limit: Annotated[
55
56
  Optional[int],
56
57
  FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
57
58
  ] = None
58
- r"""Pagination offset"""
59
+ r"""Maximum number of Nodes to return in the response for this request. Use with <code>offset</code> to paginate the response into manageable batches."""
59
60
 
60
- filter_: Annotated[
61
- Optional[str],
62
- pydantic.Field(alias="filter"),
61
+ offset: Annotated[
62
+ Optional[int],
63
63
  FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
64
64
  ] = None
65
- r"""Filter object (JSON stringified) to select nodes"""
65
+ r"""Starting point from which to retrieve results for this request. Use with <code>limit</code> to paginate the response into manageable batches."""
66
66
 
67
67
 
68
68
  class ListMasterWorkerEntryResponseTypedDict(TypedDict):
@@ -11,9 +11,9 @@ from typing_extensions import Annotated, NotRequired, TypedDict
11
11
 
12
12
  class UpdateCriblLakeDatasetByLakeIDAndIDRequestTypedDict(TypedDict):
13
13
  lake_id: str
14
- r"""lake id that contains the Datasets"""
14
+ r"""The <code>id</code> of the Lake that contains the Lake Dataset to update."""
15
15
  id_param: str
16
- r"""dataset id to update"""
16
+ r"""The <code>id</code> of the Lake Dataset to update."""
17
17
  cribl_lake_dataset: CriblLakeDatasetTypedDict
18
18
  r"""CriblLakeDataset object"""
19
19
 
@@ -24,14 +24,14 @@ class UpdateCriblLakeDatasetByLakeIDAndIDRequest(BaseModel):
24
24
  pydantic.Field(alias="lakeId"),
25
25
  FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
26
26
  ]
27
- r"""lake id that contains the Datasets"""
27
+ r"""The <code>id</code> of the Lake that contains the Lake Dataset to update."""
28
28
 
29
29
  id_param: Annotated[
30
30
  str,
31
31
  pydantic.Field(alias="id"),
32
32
  FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
33
33
  ]
34
- r"""dataset id to update"""
34
+ r"""The <code>id</code> of the Lake Dataset to update."""
35
35
 
36
36
  cribl_lake_dataset: Annotated[
37
37
  CriblLakeDataset,
@@ -10,7 +10,7 @@ from typing_extensions import Annotated, NotRequired, TypedDict
10
10
 
11
11
  class UpdateInputByIDRequestTypedDict(TypedDict):
12
12
  id: str
13
- r"""Unique ID to PATCH"""
13
+ r"""The <code>id</code> of the Source to update."""
14
14
  input: InputTypedDict
15
15
  r"""Input object"""
16
16
 
@@ -19,7 +19,7 @@ class UpdateInputByIDRequest(BaseModel):
19
19
  id: Annotated[
20
20
  str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
21
21
  ]
22
- r"""Unique ID to PATCH"""
22
+ r"""The <code>id</code> of the Source to update."""
23
23
 
24
24
  input: Annotated[
25
25
  Input, FieldMetadata(request=RequestMetadata(media_type="application/json"))
@@ -10,9 +10,9 @@ from typing_extensions import Annotated, NotRequired, TypedDict
10
10
 
11
11
  class UpdateInputHecTokenByIDAndTokenRequestTypedDict(TypedDict):
12
12
  id: str
13
- r"""HEC Source id"""
13
+ r"""The <code>id</code> of the Splunk HEC Source."""
14
14
  token: str
15
- r"""token to update"""
15
+ r"""The <code>id</code> of the HEC token to update."""
16
16
  update_hec_token_request: UpdateHecTokenRequestTypedDict
17
17
  r"""UpdateHecTokenRequest object"""
18
18
 
@@ -21,12 +21,12 @@ class UpdateInputHecTokenByIDAndTokenRequest(BaseModel):
21
21
  id: Annotated[
22
22
  str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
23
23
  ]
24
- r"""HEC Source id"""
24
+ r"""The <code>id</code> of the Splunk HEC Source."""
25
25
 
26
26
  token: Annotated[
27
27
  str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
28
28
  ]
29
- r"""token to update"""
29
+ r"""The <code>id</code> of the HEC token to update."""
30
30
 
31
31
  update_hec_token_request: Annotated[
32
32
  UpdateHecTokenRequest,
@@ -10,7 +10,7 @@ from typing_extensions import Annotated, NotRequired, TypedDict
10
10
 
11
11
  class UpdateOutputByIDRequestTypedDict(TypedDict):
12
12
  id: str
13
- r"""Unique ID to PATCH"""
13
+ r"""The <code>id</code> of the Destination to update."""
14
14
  output: OutputTypedDict
15
15
  r"""Output object"""
16
16
 
@@ -19,7 +19,7 @@ class UpdateOutputByIDRequest(BaseModel):
19
19
  id: Annotated[
20
20
  str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
21
21
  ]
22
- r"""Unique ID to PATCH"""
22
+ r"""The <code>id</code> of the Destination to update."""
23
23
 
24
24
  output: Annotated[
25
25
  Output, FieldMetadata(request=RequestMetadata(media_type="application/json"))
@@ -14,7 +14,7 @@ from typing_extensions import Annotated, NotRequired, TypedDict
14
14
 
15
15
  class UpdatePacksByIDRequestTypedDict(TypedDict):
16
16
  id: str
17
- r"""Pack name"""
17
+ r"""The <code>id</code> of the Pack to upgrade."""
18
18
  source: NotRequired[str]
19
19
  r"""body string required Pack source"""
20
20
  minor: NotRequired[str]
@@ -27,7 +27,7 @@ class UpdatePacksByIDRequest(BaseModel):
27
27
  id: Annotated[
28
28
  str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
29
29
  ]
30
- r"""Pack name"""
30
+ r"""The <code>id</code> of the Pack to upgrade."""
31
31
 
32
32
  source: Annotated[
33
33
  Optional[str],