cribl-control-plane 0.0.21a2__py3-none-any.whl → 0.0.22__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 +3 -3
- cribl_control_plane/groups_sdk.py +572 -60
- cribl_control_plane/models/__init__.py +28 -12
- cribl_control_plane/models/deletegroupsbyidop.py +37 -0
- cribl_control_plane/models/updategroupsbyidop.py +48 -0
- cribl_control_plane/models/updatepacksop.py +6 -67
- cribl_control_plane/packs.py +4 -34
- {cribl_control_plane-0.0.21a2.dist-info → cribl_control_plane-0.0.22.dist-info}/METADATA +209 -43
- {cribl_control_plane-0.0.21a2.dist-info → cribl_control_plane-0.0.22.dist-info}/RECORD +10 -8
- {cribl_control_plane-0.0.21a2.dist-info → cribl_control_plane-0.0.22.dist-info}/WHEEL +0 -0
|
@@ -1857,6 +1857,12 @@ if TYPE_CHECKING:
|
|
|
1857
1857
|
DeleteCriblLakeDatasetByLakeIDAndIDResponse,
|
|
1858
1858
|
DeleteCriblLakeDatasetByLakeIDAndIDResponseTypedDict,
|
|
1859
1859
|
)
|
|
1860
|
+
from .deletegroupsbyidop import (
|
|
1861
|
+
DeleteGroupsByIDRequest,
|
|
1862
|
+
DeleteGroupsByIDRequestTypedDict,
|
|
1863
|
+
DeleteGroupsByIDResponse,
|
|
1864
|
+
DeleteGroupsByIDResponseTypedDict,
|
|
1865
|
+
)
|
|
1860
1866
|
from .deleteinputbyidop import (
|
|
1861
1867
|
DeleteInputByIDRequest,
|
|
1862
1868
|
DeleteInputByIDRequestTypedDict,
|
|
@@ -4711,6 +4717,12 @@ if TYPE_CHECKING:
|
|
|
4711
4717
|
UpdateCriblLakeDatasetByLakeIDAndIDResponse,
|
|
4712
4718
|
UpdateCriblLakeDatasetByLakeIDAndIDResponseTypedDict,
|
|
4713
4719
|
)
|
|
4720
|
+
from .updategroupsbyidop import (
|
|
4721
|
+
UpdateGroupsByIDRequest,
|
|
4722
|
+
UpdateGroupsByIDRequestTypedDict,
|
|
4723
|
+
UpdateGroupsByIDResponse,
|
|
4724
|
+
UpdateGroupsByIDResponseTypedDict,
|
|
4725
|
+
)
|
|
4714
4726
|
from .updategroupsdeploybyidop import (
|
|
4715
4727
|
UpdateGroupsDeployByIDRequest,
|
|
4716
4728
|
UpdateGroupsDeployByIDRequestTypedDict,
|
|
@@ -4748,11 +4760,7 @@ if TYPE_CHECKING:
|
|
|
4748
4760
|
UpdatePacksByIDResponseTypedDict,
|
|
4749
4761
|
)
|
|
4750
4762
|
from .updatepacksop import (
|
|
4751
|
-
UpdatePacksFile,
|
|
4752
|
-
UpdatePacksFileTypedDict,
|
|
4753
4763
|
UpdatePacksRequest,
|
|
4754
|
-
UpdatePacksRequestBody,
|
|
4755
|
-
UpdatePacksRequestBodyTypedDict,
|
|
4756
4764
|
UpdatePacksRequestTypedDict,
|
|
4757
4765
|
UpdatePacksResponse,
|
|
4758
4766
|
UpdatePacksResponseTypedDict,
|
|
@@ -5881,6 +5889,10 @@ __all__ = [
|
|
|
5881
5889
|
"DeleteCriblLakeDatasetByLakeIDAndIDRequestTypedDict",
|
|
5882
5890
|
"DeleteCriblLakeDatasetByLakeIDAndIDResponse",
|
|
5883
5891
|
"DeleteCriblLakeDatasetByLakeIDAndIDResponseTypedDict",
|
|
5892
|
+
"DeleteGroupsByIDRequest",
|
|
5893
|
+
"DeleteGroupsByIDRequestTypedDict",
|
|
5894
|
+
"DeleteGroupsByIDResponse",
|
|
5895
|
+
"DeleteGroupsByIDResponseTypedDict",
|
|
5884
5896
|
"DeleteInputByIDRequest",
|
|
5885
5897
|
"DeleteInputByIDRequestTypedDict",
|
|
5886
5898
|
"DeleteInputByIDResponse",
|
|
@@ -9145,6 +9157,10 @@ __all__ = [
|
|
|
9145
9157
|
"UpdateCriblLakeDatasetByLakeIDAndIDRequestTypedDict",
|
|
9146
9158
|
"UpdateCriblLakeDatasetByLakeIDAndIDResponse",
|
|
9147
9159
|
"UpdateCriblLakeDatasetByLakeIDAndIDResponseTypedDict",
|
|
9160
|
+
"UpdateGroupsByIDRequest",
|
|
9161
|
+
"UpdateGroupsByIDRequestTypedDict",
|
|
9162
|
+
"UpdateGroupsByIDResponse",
|
|
9163
|
+
"UpdateGroupsByIDResponseTypedDict",
|
|
9148
9164
|
"UpdateGroupsDeployByIDRequest",
|
|
9149
9165
|
"UpdateGroupsDeployByIDRequestTypedDict",
|
|
9150
9166
|
"UpdateGroupsDeployByIDResponse",
|
|
@@ -9169,11 +9185,7 @@ __all__ = [
|
|
|
9169
9185
|
"UpdatePacksByIDRequestTypedDict",
|
|
9170
9186
|
"UpdatePacksByIDResponse",
|
|
9171
9187
|
"UpdatePacksByIDResponseTypedDict",
|
|
9172
|
-
"UpdatePacksFile",
|
|
9173
|
-
"UpdatePacksFileTypedDict",
|
|
9174
9188
|
"UpdatePacksRequest",
|
|
9175
|
-
"UpdatePacksRequestBody",
|
|
9176
|
-
"UpdatePacksRequestBodyTypedDict",
|
|
9177
9189
|
"UpdatePacksRequestTypedDict",
|
|
9178
9190
|
"UpdatePacksResponse",
|
|
9179
9191
|
"UpdatePacksResponseTypedDict",
|
|
@@ -11020,6 +11032,10 @@ _dynamic_imports: dict[str, str] = {
|
|
|
11020
11032
|
"DeleteCriblLakeDatasetByLakeIDAndIDRequestTypedDict": ".deletecribllakedatasetbylakeidandidop",
|
|
11021
11033
|
"DeleteCriblLakeDatasetByLakeIDAndIDResponse": ".deletecribllakedatasetbylakeidandidop",
|
|
11022
11034
|
"DeleteCriblLakeDatasetByLakeIDAndIDResponseTypedDict": ".deletecribllakedatasetbylakeidandidop",
|
|
11035
|
+
"DeleteGroupsByIDRequest": ".deletegroupsbyidop",
|
|
11036
|
+
"DeleteGroupsByIDRequestTypedDict": ".deletegroupsbyidop",
|
|
11037
|
+
"DeleteGroupsByIDResponse": ".deletegroupsbyidop",
|
|
11038
|
+
"DeleteGroupsByIDResponseTypedDict": ".deletegroupsbyidop",
|
|
11023
11039
|
"DeleteInputByIDRequest": ".deleteinputbyidop",
|
|
11024
11040
|
"DeleteInputByIDRequestTypedDict": ".deleteinputbyidop",
|
|
11025
11041
|
"DeleteInputByIDResponse": ".deleteinputbyidop",
|
|
@@ -13568,6 +13584,10 @@ _dynamic_imports: dict[str, str] = {
|
|
|
13568
13584
|
"UpdateCriblLakeDatasetByLakeIDAndIDRequestTypedDict": ".updatecribllakedatasetbylakeidandidop",
|
|
13569
13585
|
"UpdateCriblLakeDatasetByLakeIDAndIDResponse": ".updatecribllakedatasetbylakeidandidop",
|
|
13570
13586
|
"UpdateCriblLakeDatasetByLakeIDAndIDResponseTypedDict": ".updatecribllakedatasetbylakeidandidop",
|
|
13587
|
+
"UpdateGroupsByIDRequest": ".updategroupsbyidop",
|
|
13588
|
+
"UpdateGroupsByIDRequestTypedDict": ".updategroupsbyidop",
|
|
13589
|
+
"UpdateGroupsByIDResponse": ".updategroupsbyidop",
|
|
13590
|
+
"UpdateGroupsByIDResponseTypedDict": ".updategroupsbyidop",
|
|
13571
13591
|
"UpdateGroupsDeployByIDRequest": ".updategroupsdeploybyidop",
|
|
13572
13592
|
"UpdateGroupsDeployByIDRequestTypedDict": ".updategroupsdeploybyidop",
|
|
13573
13593
|
"UpdateGroupsDeployByIDResponse": ".updategroupsdeploybyidop",
|
|
@@ -13592,11 +13612,7 @@ _dynamic_imports: dict[str, str] = {
|
|
|
13592
13612
|
"UpdatePacksByIDRequestTypedDict": ".updatepacksbyidop",
|
|
13593
13613
|
"UpdatePacksByIDResponse": ".updatepacksbyidop",
|
|
13594
13614
|
"UpdatePacksByIDResponseTypedDict": ".updatepacksbyidop",
|
|
13595
|
-
"UpdatePacksFile": ".updatepacksop",
|
|
13596
|
-
"UpdatePacksFileTypedDict": ".updatepacksop",
|
|
13597
13615
|
"UpdatePacksRequest": ".updatepacksop",
|
|
13598
|
-
"UpdatePacksRequestBody": ".updatepacksop",
|
|
13599
|
-
"UpdatePacksRequestBodyTypedDict": ".updatepacksop",
|
|
13600
13616
|
"UpdatePacksRequestTypedDict": ".updatepacksop",
|
|
13601
13617
|
"UpdatePacksResponse": ".updatepacksop",
|
|
13602
13618
|
"UpdatePacksResponseTypedDict": ".updatepacksop",
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from .configgroup import ConfigGroup, ConfigGroupTypedDict
|
|
5
|
+
from cribl_control_plane.types import BaseModel
|
|
6
|
+
from cribl_control_plane.utils import FieldMetadata, PathParamMetadata
|
|
7
|
+
from typing import List, Optional
|
|
8
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class DeleteGroupsByIDRequestTypedDict(TypedDict):
|
|
12
|
+
id: str
|
|
13
|
+
r"""Group ID"""
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
class DeleteGroupsByIDRequest(BaseModel):
|
|
17
|
+
id: Annotated[
|
|
18
|
+
str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
|
|
19
|
+
]
|
|
20
|
+
r"""Group ID"""
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
class DeleteGroupsByIDResponseTypedDict(TypedDict):
|
|
24
|
+
r"""a list of ConfigGroup objects"""
|
|
25
|
+
|
|
26
|
+
count: NotRequired[int]
|
|
27
|
+
r"""number of items present in the items array"""
|
|
28
|
+
items: NotRequired[List[ConfigGroupTypedDict]]
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
class DeleteGroupsByIDResponse(BaseModel):
|
|
32
|
+
r"""a list of ConfigGroup objects"""
|
|
33
|
+
|
|
34
|
+
count: Optional[int] = None
|
|
35
|
+
r"""number of items present in the items array"""
|
|
36
|
+
|
|
37
|
+
items: Optional[List[ConfigGroup]] = None
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from .configgroup import ConfigGroup, ConfigGroupTypedDict
|
|
5
|
+
from cribl_control_plane.types import BaseModel
|
|
6
|
+
from cribl_control_plane.utils import FieldMetadata, PathParamMetadata, RequestMetadata
|
|
7
|
+
import pydantic
|
|
8
|
+
from typing import List, Optional
|
|
9
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class UpdateGroupsByIDRequestTypedDict(TypedDict):
|
|
13
|
+
id_param: str
|
|
14
|
+
r"""Group ID"""
|
|
15
|
+
config_group: ConfigGroupTypedDict
|
|
16
|
+
r"""ConfigGroup object"""
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
class UpdateGroupsByIDRequest(BaseModel):
|
|
20
|
+
id_param: Annotated[
|
|
21
|
+
str,
|
|
22
|
+
pydantic.Field(alias="id"),
|
|
23
|
+
FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
|
|
24
|
+
]
|
|
25
|
+
r"""Group ID"""
|
|
26
|
+
|
|
27
|
+
config_group: Annotated[
|
|
28
|
+
ConfigGroup,
|
|
29
|
+
FieldMetadata(request=RequestMetadata(media_type="application/json")),
|
|
30
|
+
]
|
|
31
|
+
r"""ConfigGroup object"""
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
class UpdateGroupsByIDResponseTypedDict(TypedDict):
|
|
35
|
+
r"""a list of ConfigGroup objects"""
|
|
36
|
+
|
|
37
|
+
count: NotRequired[int]
|
|
38
|
+
r"""number of items present in the items array"""
|
|
39
|
+
items: NotRequired[List[ConfigGroupTypedDict]]
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
class UpdateGroupsByIDResponse(BaseModel):
|
|
43
|
+
r"""a list of ConfigGroup objects"""
|
|
44
|
+
|
|
45
|
+
count: Optional[int] = None
|
|
46
|
+
r"""number of items present in the items array"""
|
|
47
|
+
|
|
48
|
+
items: Optional[List[ConfigGroup]] = None
|
|
@@ -2,84 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
from cribl_control_plane.types import BaseModel
|
|
5
|
-
from cribl_control_plane.utils import
|
|
6
|
-
|
|
7
|
-
MultipartFormMetadata,
|
|
8
|
-
QueryParamMetadata,
|
|
9
|
-
RequestMetadata,
|
|
10
|
-
)
|
|
11
|
-
import io
|
|
12
|
-
import pydantic
|
|
13
|
-
from typing import Any, Dict, IO, List, Optional, Union
|
|
5
|
+
from cribl_control_plane.utils import FieldMetadata, QueryParamMetadata
|
|
6
|
+
from typing import Any, Dict, List, Optional
|
|
14
7
|
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
15
8
|
|
|
16
9
|
|
|
17
|
-
class UpdatePacksFileTypedDict(TypedDict):
|
|
18
|
-
file_name: str
|
|
19
|
-
content: Union[bytes, IO[bytes], io.BufferedReader]
|
|
20
|
-
content_type: NotRequired[str]
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
class UpdatePacksFile(BaseModel):
|
|
24
|
-
file_name: Annotated[
|
|
25
|
-
str, pydantic.Field(alias="fileName"), FieldMetadata(multipart=True)
|
|
26
|
-
]
|
|
27
|
-
|
|
28
|
-
content: Annotated[
|
|
29
|
-
Union[bytes, IO[bytes], io.BufferedReader],
|
|
30
|
-
pydantic.Field(alias=""),
|
|
31
|
-
FieldMetadata(multipart=MultipartFormMetadata(content=True)),
|
|
32
|
-
]
|
|
33
|
-
|
|
34
|
-
content_type: Annotated[
|
|
35
|
-
Optional[str],
|
|
36
|
-
pydantic.Field(alias="Content-Type"),
|
|
37
|
-
FieldMetadata(multipart=True),
|
|
38
|
-
] = None
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
class UpdatePacksRequestBodyTypedDict(TypedDict):
|
|
42
|
-
r"""multipart upload of the pack file"""
|
|
43
|
-
|
|
44
|
-
file: UpdatePacksFileTypedDict
|
|
45
|
-
r"""The pack file to upload"""
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
class UpdatePacksRequestBody(BaseModel):
|
|
49
|
-
r"""multipart upload of the pack file"""
|
|
50
|
-
|
|
51
|
-
file: Annotated[
|
|
52
|
-
UpdatePacksFile, FieldMetadata(multipart=MultipartFormMetadata(file=True))
|
|
53
|
-
]
|
|
54
|
-
r"""The pack file to upload"""
|
|
55
|
-
|
|
56
|
-
|
|
57
10
|
class UpdatePacksRequestTypedDict(TypedDict):
|
|
58
|
-
filename: str
|
|
11
|
+
filename: NotRequired[str]
|
|
59
12
|
r"""the file to upload"""
|
|
60
|
-
size: int
|
|
61
|
-
r"""Size of the pack file in bytes"""
|
|
62
|
-
request_body: UpdatePacksRequestBodyTypedDict
|
|
63
|
-
r"""multipart upload of the pack file"""
|
|
64
13
|
|
|
65
14
|
|
|
66
15
|
class UpdatePacksRequest(BaseModel):
|
|
67
16
|
filename: Annotated[
|
|
68
|
-
str,
|
|
69
|
-
|
|
17
|
+
Optional[str],
|
|
18
|
+
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
|
19
|
+
] = None
|
|
70
20
|
r"""the file to upload"""
|
|
71
21
|
|
|
72
|
-
size: Annotated[
|
|
73
|
-
int, FieldMetadata(query=QueryParamMetadata(style="form", explode=True))
|
|
74
|
-
]
|
|
75
|
-
r"""Size of the pack file in bytes"""
|
|
76
|
-
|
|
77
|
-
request_body: Annotated[
|
|
78
|
-
UpdatePacksRequestBody,
|
|
79
|
-
FieldMetadata(request=RequestMetadata(media_type="multipart/form-data")),
|
|
80
|
-
]
|
|
81
|
-
r"""multipart upload of the pack file"""
|
|
82
|
-
|
|
83
22
|
|
|
84
23
|
class UpdatePacksResponseTypedDict(TypedDict):
|
|
85
24
|
r"""a list of any objects"""
|
cribl_control_plane/packs.py
CHANGED
|
@@ -451,9 +451,7 @@ class Packs(BaseSDK):
|
|
|
451
451
|
def update_packs(
|
|
452
452
|
self,
|
|
453
453
|
*,
|
|
454
|
-
filename: str,
|
|
455
|
-
size: int,
|
|
456
|
-
file: Union[models.UpdatePacksFile, models.UpdatePacksFileTypedDict],
|
|
454
|
+
filename: Optional[str] = None,
|
|
457
455
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
458
456
|
server_url: Optional[str] = None,
|
|
459
457
|
timeout_ms: Optional[int] = None,
|
|
@@ -464,8 +462,6 @@ class Packs(BaseSDK):
|
|
|
464
462
|
Upload Pack
|
|
465
463
|
|
|
466
464
|
:param filename: the file to upload
|
|
467
|
-
:param size: Size of the pack file in bytes
|
|
468
|
-
:param file: The pack file to upload
|
|
469
465
|
:param retries: Override the default retry configuration for this method
|
|
470
466
|
:param server_url: Override the default server URL for this method
|
|
471
467
|
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
|
@@ -483,10 +479,6 @@ class Packs(BaseSDK):
|
|
|
483
479
|
|
|
484
480
|
request = models.UpdatePacksRequest(
|
|
485
481
|
filename=filename,
|
|
486
|
-
size=size,
|
|
487
|
-
request_body=models.UpdatePacksRequestBody(
|
|
488
|
-
file=utils.get_pydantic_model(file, models.UpdatePacksFile),
|
|
489
|
-
),
|
|
490
482
|
)
|
|
491
483
|
|
|
492
484
|
req = self._build_request(
|
|
@@ -495,20 +487,13 @@ class Packs(BaseSDK):
|
|
|
495
487
|
base_url=base_url,
|
|
496
488
|
url_variables=url_variables,
|
|
497
489
|
request=request,
|
|
498
|
-
request_body_required=
|
|
490
|
+
request_body_required=False,
|
|
499
491
|
request_has_path_params=False,
|
|
500
492
|
request_has_query_params=True,
|
|
501
493
|
user_agent_header="user-agent",
|
|
502
494
|
accept_header_value="application/json",
|
|
503
495
|
http_headers=http_headers,
|
|
504
496
|
security=self.sdk_configuration.security,
|
|
505
|
-
get_serialized_body=lambda: utils.serialize_request_body(
|
|
506
|
-
request.request_body,
|
|
507
|
-
False,
|
|
508
|
-
False,
|
|
509
|
-
"multipart",
|
|
510
|
-
models.UpdatePacksRequestBody,
|
|
511
|
-
),
|
|
512
497
|
timeout_ms=timeout_ms,
|
|
513
498
|
)
|
|
514
499
|
|
|
@@ -553,9 +538,7 @@ class Packs(BaseSDK):
|
|
|
553
538
|
async def update_packs_async(
|
|
554
539
|
self,
|
|
555
540
|
*,
|
|
556
|
-
filename: str,
|
|
557
|
-
size: int,
|
|
558
|
-
file: Union[models.UpdatePacksFile, models.UpdatePacksFileTypedDict],
|
|
541
|
+
filename: Optional[str] = None,
|
|
559
542
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
560
543
|
server_url: Optional[str] = None,
|
|
561
544
|
timeout_ms: Optional[int] = None,
|
|
@@ -566,8 +549,6 @@ class Packs(BaseSDK):
|
|
|
566
549
|
Upload Pack
|
|
567
550
|
|
|
568
551
|
:param filename: the file to upload
|
|
569
|
-
:param size: Size of the pack file in bytes
|
|
570
|
-
:param file: The pack file to upload
|
|
571
552
|
:param retries: Override the default retry configuration for this method
|
|
572
553
|
:param server_url: Override the default server URL for this method
|
|
573
554
|
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
|
@@ -585,10 +566,6 @@ class Packs(BaseSDK):
|
|
|
585
566
|
|
|
586
567
|
request = models.UpdatePacksRequest(
|
|
587
568
|
filename=filename,
|
|
588
|
-
size=size,
|
|
589
|
-
request_body=models.UpdatePacksRequestBody(
|
|
590
|
-
file=utils.get_pydantic_model(file, models.UpdatePacksFile),
|
|
591
|
-
),
|
|
592
569
|
)
|
|
593
570
|
|
|
594
571
|
req = self._build_request_async(
|
|
@@ -597,20 +574,13 @@ class Packs(BaseSDK):
|
|
|
597
574
|
base_url=base_url,
|
|
598
575
|
url_variables=url_variables,
|
|
599
576
|
request=request,
|
|
600
|
-
request_body_required=
|
|
577
|
+
request_body_required=False,
|
|
601
578
|
request_has_path_params=False,
|
|
602
579
|
request_has_query_params=True,
|
|
603
580
|
user_agent_header="user-agent",
|
|
604
581
|
accept_header_value="application/json",
|
|
605
582
|
http_headers=http_headers,
|
|
606
583
|
security=self.sdk_configuration.security,
|
|
607
|
-
get_serialized_body=lambda: utils.serialize_request_body(
|
|
608
|
-
request.request_body,
|
|
609
|
-
False,
|
|
610
|
-
False,
|
|
611
|
-
"multipart",
|
|
612
|
-
models.UpdatePacksRequestBody,
|
|
613
|
-
),
|
|
614
584
|
timeout_ms=timeout_ms,
|
|
615
585
|
)
|
|
616
586
|
|