cribl-control-plane 0.0.17__py3-none-any.whl → 0.0.18__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/models/__init__.py +241 -0
- cribl_control_plane/models/createversioncommitop.py +24 -0
- cribl_control_plane/models/createversionpushop.py +23 -0
- cribl_control_plane/models/createversionrevertop.py +47 -0
- cribl_control_plane/models/createversionsyncop.py +23 -0
- cribl_control_plane/models/createversionundoop.py +37 -0
- cribl_control_plane/models/getversionbranchop.py +23 -0
- cribl_control_plane/models/getversioncountop.py +47 -0
- cribl_control_plane/models/getversioncurrentbranchop.py +23 -0
- cribl_control_plane/models/getversiondiffop.py +63 -0
- cribl_control_plane/models/getversionfilesop.py +48 -0
- cribl_control_plane/models/getversioninfoop.py +24 -0
- cribl_control_plane/models/getversionshowop.py +63 -0
- cribl_control_plane/models/getversionstatusop.py +38 -0
- cribl_control_plane/models/gitcommitparams.py +23 -0
- cribl_control_plane/models/gitcommitsummary.py +68 -0
- cribl_control_plane/models/gitfile.py +20 -0
- cribl_control_plane/models/gitfilesresponse.py +22 -0
- cribl_control_plane/models/gitinfo.py +23 -0
- cribl_control_plane/models/gitrevertparams.py +20 -0
- cribl_control_plane/models/gitrevertresult.py +48 -0
- cribl_control_plane/models/gitstatusresult.py +73 -0
- cribl_control_plane/sdk.py +4 -0
- cribl_control_plane/versioning.py +2309 -0
- {cribl_control_plane-0.0.17.dist-info → cribl_control_plane-0.0.18.dist-info}/METADATA +18 -2
- {cribl_control_plane-0.0.17.dist-info → cribl_control_plane-0.0.18.dist-info}/RECORD +28 -6
- {cribl_control_plane-0.0.17.dist-info → cribl_control_plane-0.0.18.dist-info}/WHEEL +0 -0
cribl_control_plane/_version.py
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
import importlib.metadata
|
|
4
4
|
|
|
5
5
|
__title__: str = "cribl-control-plane"
|
|
6
|
-
__version__: str = "0.0.
|
|
7
|
-
__openapi_doc_version__: str = "4.14.0-alpha.
|
|
6
|
+
__version__: str = "0.0.18"
|
|
7
|
+
__openapi_doc_version__: str = "4.14.0-alpha.1753735749224-0a5d0b46"
|
|
8
8
|
__gen_version__: str = "2.660.0"
|
|
9
|
-
__user_agent__: str = "speakeasy-sdk/python 0.0.
|
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 0.0.18 2.660.0 4.14.0-alpha.1753735749224-0a5d0b46 cribl-control-plane"
|
|
10
10
|
|
|
11
11
|
try:
|
|
12
12
|
if __package__ is not None:
|
|
@@ -1783,6 +1783,30 @@ if TYPE_CHECKING:
|
|
|
1783
1783
|
CreateRoutesAppendByIDResponse,
|
|
1784
1784
|
CreateRoutesAppendByIDResponseTypedDict,
|
|
1785
1785
|
)
|
|
1786
|
+
from .createversioncommitop import (
|
|
1787
|
+
CreateVersionCommitResponse,
|
|
1788
|
+
CreateVersionCommitResponseTypedDict,
|
|
1789
|
+
)
|
|
1790
|
+
from .createversionpushop import (
|
|
1791
|
+
CreateVersionPushResponse,
|
|
1792
|
+
CreateVersionPushResponseTypedDict,
|
|
1793
|
+
)
|
|
1794
|
+
from .createversionrevertop import (
|
|
1795
|
+
CreateVersionRevertRequest,
|
|
1796
|
+
CreateVersionRevertRequestTypedDict,
|
|
1797
|
+
CreateVersionRevertResponse,
|
|
1798
|
+
CreateVersionRevertResponseTypedDict,
|
|
1799
|
+
)
|
|
1800
|
+
from .createversionsyncop import (
|
|
1801
|
+
CreateVersionSyncResponse,
|
|
1802
|
+
CreateVersionSyncResponseTypedDict,
|
|
1803
|
+
)
|
|
1804
|
+
from .createversionundoop import (
|
|
1805
|
+
CreateVersionUndoRequest,
|
|
1806
|
+
CreateVersionUndoRequestTypedDict,
|
|
1807
|
+
CreateVersionUndoResponse,
|
|
1808
|
+
CreateVersionUndoResponseTypedDict,
|
|
1809
|
+
)
|
|
1786
1810
|
from .criblevent import CriblEvent, CriblEventTypedDict
|
|
1787
1811
|
from .deleteinputbyidop import (
|
|
1788
1812
|
DeleteInputByIDRequest,
|
|
@@ -1844,6 +1868,79 @@ if TYPE_CHECKING:
|
|
|
1844
1868
|
GetRoutesByIDResponse,
|
|
1845
1869
|
GetRoutesByIDResponseTypedDict,
|
|
1846
1870
|
)
|
|
1871
|
+
from .getversionbranchop import (
|
|
1872
|
+
GetVersionBranchResponse,
|
|
1873
|
+
GetVersionBranchResponseTypedDict,
|
|
1874
|
+
)
|
|
1875
|
+
from .getversioncountop import (
|
|
1876
|
+
GetVersionCountRequest,
|
|
1877
|
+
GetVersionCountRequestTypedDict,
|
|
1878
|
+
GetVersionCountResponse,
|
|
1879
|
+
GetVersionCountResponseTypedDict,
|
|
1880
|
+
)
|
|
1881
|
+
from .getversioncurrentbranchop import (
|
|
1882
|
+
GetVersionCurrentBranchResponse,
|
|
1883
|
+
GetVersionCurrentBranchResponseTypedDict,
|
|
1884
|
+
)
|
|
1885
|
+
from .getversiondiffop import (
|
|
1886
|
+
GetVersionDiffRequest,
|
|
1887
|
+
GetVersionDiffRequestTypedDict,
|
|
1888
|
+
GetVersionDiffResponse,
|
|
1889
|
+
GetVersionDiffResponseTypedDict,
|
|
1890
|
+
)
|
|
1891
|
+
from .getversionfilesop import (
|
|
1892
|
+
GetVersionFilesRequest,
|
|
1893
|
+
GetVersionFilesRequestTypedDict,
|
|
1894
|
+
GetVersionFilesResponse,
|
|
1895
|
+
GetVersionFilesResponseTypedDict,
|
|
1896
|
+
)
|
|
1897
|
+
from .getversioninfoop import (
|
|
1898
|
+
GetVersionInfoResponse,
|
|
1899
|
+
GetVersionInfoResponseTypedDict,
|
|
1900
|
+
)
|
|
1901
|
+
from .getversionshowop import (
|
|
1902
|
+
GetVersionShowRequest,
|
|
1903
|
+
GetVersionShowRequestTypedDict,
|
|
1904
|
+
GetVersionShowResponse,
|
|
1905
|
+
GetVersionShowResponseTypedDict,
|
|
1906
|
+
)
|
|
1907
|
+
from .getversionstatusop import (
|
|
1908
|
+
GetVersionStatusRequest,
|
|
1909
|
+
GetVersionStatusRequestTypedDict,
|
|
1910
|
+
GetVersionStatusResponse,
|
|
1911
|
+
GetVersionStatusResponseTypedDict,
|
|
1912
|
+
)
|
|
1913
|
+
from .gitcommitparams import GitCommitParams, GitCommitParamsTypedDict
|
|
1914
|
+
from .gitcommitsummary import (
|
|
1915
|
+
Author,
|
|
1916
|
+
AuthorTypedDict,
|
|
1917
|
+
GitCommitSummary,
|
|
1918
|
+
GitCommitSummaryFiles,
|
|
1919
|
+
GitCommitSummaryFilesTypedDict,
|
|
1920
|
+
GitCommitSummaryTypedDict,
|
|
1921
|
+
Summary,
|
|
1922
|
+
SummaryTypedDict,
|
|
1923
|
+
)
|
|
1924
|
+
from .gitfile import GitFile, GitFileTypedDict
|
|
1925
|
+
from .gitfilesresponse import GitFilesResponse, GitFilesResponseTypedDict
|
|
1926
|
+
from .gitinfo import GitInfo, GitInfoTypedDict, Remote, RemoteTypedDict
|
|
1927
|
+
from .gitrevertparams import GitRevertParams, GitRevertParamsTypedDict
|
|
1928
|
+
from .gitrevertresult import (
|
|
1929
|
+
Audit,
|
|
1930
|
+
AuditTypedDict,
|
|
1931
|
+
GitRevertResult,
|
|
1932
|
+
GitRevertResultFiles,
|
|
1933
|
+
GitRevertResultFilesTypedDict,
|
|
1934
|
+
GitRevertResultTypedDict,
|
|
1935
|
+
)
|
|
1936
|
+
from .gitstatusresult import (
|
|
1937
|
+
File,
|
|
1938
|
+
FileTypedDict,
|
|
1939
|
+
GitStatusResult,
|
|
1940
|
+
GitStatusResultTypedDict,
|
|
1941
|
+
Renamed,
|
|
1942
|
+
RenamedTypedDict,
|
|
1943
|
+
)
|
|
1847
1944
|
from .healthstatus import HealthStatus, HealthStatusTypedDict, Role, Status
|
|
1848
1945
|
from .input import Input, InputTypedDict
|
|
1849
1946
|
from .inputappscope import (
|
|
@@ -4426,6 +4523,8 @@ __all__ = [
|
|
|
4426
4523
|
"AdditionalPropertyTypedDict",
|
|
4427
4524
|
"Allow",
|
|
4428
4525
|
"AllowTypedDict",
|
|
4526
|
+
"Audit",
|
|
4527
|
+
"AuditTypedDict",
|
|
4429
4528
|
"AuthAuthenticationMethodElastic",
|
|
4430
4529
|
"AuthElastic",
|
|
4431
4530
|
"AuthElasticCloud",
|
|
@@ -4495,6 +4594,8 @@ __all__ = [
|
|
|
4495
4594
|
"AuthenticationTypePrometheus",
|
|
4496
4595
|
"AuthenticationTypePrometheusRw",
|
|
4497
4596
|
"AuthenticationTypeSplunkSearch",
|
|
4597
|
+
"Author",
|
|
4598
|
+
"AuthorTypedDict",
|
|
4498
4599
|
"AwsAuthenticationMethod",
|
|
4499
4600
|
"AwsAuthenticationMethodAuthenticationMethodEdgePrometheus",
|
|
4500
4601
|
"AwsAuthenticationMethodAuthenticationMethodPrometheus",
|
|
@@ -5436,6 +5537,20 @@ __all__ = [
|
|
|
5436
5537
|
"CreateRoutesAppendByIDRequestTypedDict",
|
|
5437
5538
|
"CreateRoutesAppendByIDResponse",
|
|
5438
5539
|
"CreateRoutesAppendByIDResponseTypedDict",
|
|
5540
|
+
"CreateVersionCommitResponse",
|
|
5541
|
+
"CreateVersionCommitResponseTypedDict",
|
|
5542
|
+
"CreateVersionPushResponse",
|
|
5543
|
+
"CreateVersionPushResponseTypedDict",
|
|
5544
|
+
"CreateVersionRevertRequest",
|
|
5545
|
+
"CreateVersionRevertRequestTypedDict",
|
|
5546
|
+
"CreateVersionRevertResponse",
|
|
5547
|
+
"CreateVersionRevertResponseTypedDict",
|
|
5548
|
+
"CreateVersionSyncResponse",
|
|
5549
|
+
"CreateVersionSyncResponseTypedDict",
|
|
5550
|
+
"CreateVersionUndoRequest",
|
|
5551
|
+
"CreateVersionUndoRequestTypedDict",
|
|
5552
|
+
"CreateVersionUndoResponse",
|
|
5553
|
+
"CreateVersionUndoResponseTypedDict",
|
|
5439
5554
|
"CriblEvent",
|
|
5440
5555
|
"CriblEventTypedDict",
|
|
5441
5556
|
"CustomLabel",
|
|
@@ -5568,6 +5683,8 @@ __all__ = [
|
|
|
5568
5683
|
"FailedRequestLoggingModeSumoLogic",
|
|
5569
5684
|
"FailedRequestLoggingModeWavefront",
|
|
5570
5685
|
"FieldName",
|
|
5686
|
+
"File",
|
|
5687
|
+
"FileTypedDict",
|
|
5571
5688
|
"Firewall",
|
|
5572
5689
|
"FirewallTypedDict",
|
|
5573
5690
|
"FlushPeriodSec",
|
|
@@ -5602,6 +5719,52 @@ __all__ = [
|
|
|
5602
5719
|
"GetRoutesByIDRequestTypedDict",
|
|
5603
5720
|
"GetRoutesByIDResponse",
|
|
5604
5721
|
"GetRoutesByIDResponseTypedDict",
|
|
5722
|
+
"GetVersionBranchResponse",
|
|
5723
|
+
"GetVersionBranchResponseTypedDict",
|
|
5724
|
+
"GetVersionCountRequest",
|
|
5725
|
+
"GetVersionCountRequestTypedDict",
|
|
5726
|
+
"GetVersionCountResponse",
|
|
5727
|
+
"GetVersionCountResponseTypedDict",
|
|
5728
|
+
"GetVersionCurrentBranchResponse",
|
|
5729
|
+
"GetVersionCurrentBranchResponseTypedDict",
|
|
5730
|
+
"GetVersionDiffRequest",
|
|
5731
|
+
"GetVersionDiffRequestTypedDict",
|
|
5732
|
+
"GetVersionDiffResponse",
|
|
5733
|
+
"GetVersionDiffResponseTypedDict",
|
|
5734
|
+
"GetVersionFilesRequest",
|
|
5735
|
+
"GetVersionFilesRequestTypedDict",
|
|
5736
|
+
"GetVersionFilesResponse",
|
|
5737
|
+
"GetVersionFilesResponseTypedDict",
|
|
5738
|
+
"GetVersionInfoResponse",
|
|
5739
|
+
"GetVersionInfoResponseTypedDict",
|
|
5740
|
+
"GetVersionShowRequest",
|
|
5741
|
+
"GetVersionShowRequestTypedDict",
|
|
5742
|
+
"GetVersionShowResponse",
|
|
5743
|
+
"GetVersionShowResponseTypedDict",
|
|
5744
|
+
"GetVersionStatusRequest",
|
|
5745
|
+
"GetVersionStatusRequestTypedDict",
|
|
5746
|
+
"GetVersionStatusResponse",
|
|
5747
|
+
"GetVersionStatusResponseTypedDict",
|
|
5748
|
+
"GitCommitParams",
|
|
5749
|
+
"GitCommitParamsTypedDict",
|
|
5750
|
+
"GitCommitSummary",
|
|
5751
|
+
"GitCommitSummaryFiles",
|
|
5752
|
+
"GitCommitSummaryFilesTypedDict",
|
|
5753
|
+
"GitCommitSummaryTypedDict",
|
|
5754
|
+
"GitFile",
|
|
5755
|
+
"GitFileTypedDict",
|
|
5756
|
+
"GitFilesResponse",
|
|
5757
|
+
"GitFilesResponseTypedDict",
|
|
5758
|
+
"GitInfo",
|
|
5759
|
+
"GitInfoTypedDict",
|
|
5760
|
+
"GitRevertParams",
|
|
5761
|
+
"GitRevertParamsTypedDict",
|
|
5762
|
+
"GitRevertResult",
|
|
5763
|
+
"GitRevertResultFiles",
|
|
5764
|
+
"GitRevertResultFilesTypedDict",
|
|
5765
|
+
"GitRevertResultTypedDict",
|
|
5766
|
+
"GitStatusResult",
|
|
5767
|
+
"GitStatusResultTypedDict",
|
|
5605
5768
|
"GoogleAuthenticationMethodGoogleCloudLogging",
|
|
5606
5769
|
"HTTPCompressCompression131",
|
|
5607
5770
|
"HTTPCompressCompressionHTTP",
|
|
@@ -8289,6 +8452,10 @@ __all__ = [
|
|
|
8289
8452
|
"RecordTypePrometheus",
|
|
8290
8453
|
"RegionNewrelicEvents",
|
|
8291
8454
|
"RegionSentinelOneAiSiem",
|
|
8455
|
+
"Remote",
|
|
8456
|
+
"RemoteTypedDict",
|
|
8457
|
+
"Renamed",
|
|
8458
|
+
"RenamedTypedDict",
|
|
8292
8459
|
"ReportLevel",
|
|
8293
8460
|
"ReportMethod",
|
|
8294
8461
|
"RequestFormatCrowdstrikeNextGenSiem",
|
|
@@ -8416,6 +8583,8 @@ __all__ = [
|
|
|
8416
8583
|
"SubscriptionPlanOffice365MsgTrace",
|
|
8417
8584
|
"SubscriptionPlanOffice365Service",
|
|
8418
8585
|
"SubscriptionTypedDict",
|
|
8586
|
+
"Summary",
|
|
8587
|
+
"SummaryTypedDict",
|
|
8419
8588
|
"TLSSettingsClientSide131",
|
|
8420
8589
|
"TLSSettingsClientSide131TypedDict",
|
|
8421
8590
|
"TLSSettingsClientSideAzureEventhub",
|
|
@@ -10319,6 +10488,20 @@ _dynamic_imports: dict[str, str] = {
|
|
|
10319
10488
|
"CreateRoutesAppendByIDRequestTypedDict": ".createroutesappendbyidop",
|
|
10320
10489
|
"CreateRoutesAppendByIDResponse": ".createroutesappendbyidop",
|
|
10321
10490
|
"CreateRoutesAppendByIDResponseTypedDict": ".createroutesappendbyidop",
|
|
10491
|
+
"CreateVersionCommitResponse": ".createversioncommitop",
|
|
10492
|
+
"CreateVersionCommitResponseTypedDict": ".createversioncommitop",
|
|
10493
|
+
"CreateVersionPushResponse": ".createversionpushop",
|
|
10494
|
+
"CreateVersionPushResponseTypedDict": ".createversionpushop",
|
|
10495
|
+
"CreateVersionRevertRequest": ".createversionrevertop",
|
|
10496
|
+
"CreateVersionRevertRequestTypedDict": ".createversionrevertop",
|
|
10497
|
+
"CreateVersionRevertResponse": ".createversionrevertop",
|
|
10498
|
+
"CreateVersionRevertResponseTypedDict": ".createversionrevertop",
|
|
10499
|
+
"CreateVersionSyncResponse": ".createversionsyncop",
|
|
10500
|
+
"CreateVersionSyncResponseTypedDict": ".createversionsyncop",
|
|
10501
|
+
"CreateVersionUndoRequest": ".createversionundoop",
|
|
10502
|
+
"CreateVersionUndoRequestTypedDict": ".createversionundoop",
|
|
10503
|
+
"CreateVersionUndoResponse": ".createversionundoop",
|
|
10504
|
+
"CreateVersionUndoResponseTypedDict": ".createversionundoop",
|
|
10322
10505
|
"CriblEvent": ".criblevent",
|
|
10323
10506
|
"CriblEventTypedDict": ".criblevent",
|
|
10324
10507
|
"DeleteInputByIDRequest": ".deleteinputbyidop",
|
|
@@ -10361,6 +10544,64 @@ _dynamic_imports: dict[str, str] = {
|
|
|
10361
10544
|
"GetRoutesByIDRequestTypedDict": ".getroutesbyidop",
|
|
10362
10545
|
"GetRoutesByIDResponse": ".getroutesbyidop",
|
|
10363
10546
|
"GetRoutesByIDResponseTypedDict": ".getroutesbyidop",
|
|
10547
|
+
"GetVersionBranchResponse": ".getversionbranchop",
|
|
10548
|
+
"GetVersionBranchResponseTypedDict": ".getversionbranchop",
|
|
10549
|
+
"GetVersionCountRequest": ".getversioncountop",
|
|
10550
|
+
"GetVersionCountRequestTypedDict": ".getversioncountop",
|
|
10551
|
+
"GetVersionCountResponse": ".getversioncountop",
|
|
10552
|
+
"GetVersionCountResponseTypedDict": ".getversioncountop",
|
|
10553
|
+
"GetVersionCurrentBranchResponse": ".getversioncurrentbranchop",
|
|
10554
|
+
"GetVersionCurrentBranchResponseTypedDict": ".getversioncurrentbranchop",
|
|
10555
|
+
"GetVersionDiffRequest": ".getversiondiffop",
|
|
10556
|
+
"GetVersionDiffRequestTypedDict": ".getversiondiffop",
|
|
10557
|
+
"GetVersionDiffResponse": ".getversiondiffop",
|
|
10558
|
+
"GetVersionDiffResponseTypedDict": ".getversiondiffop",
|
|
10559
|
+
"GetVersionFilesRequest": ".getversionfilesop",
|
|
10560
|
+
"GetVersionFilesRequestTypedDict": ".getversionfilesop",
|
|
10561
|
+
"GetVersionFilesResponse": ".getversionfilesop",
|
|
10562
|
+
"GetVersionFilesResponseTypedDict": ".getversionfilesop",
|
|
10563
|
+
"GetVersionInfoResponse": ".getversioninfoop",
|
|
10564
|
+
"GetVersionInfoResponseTypedDict": ".getversioninfoop",
|
|
10565
|
+
"GetVersionShowRequest": ".getversionshowop",
|
|
10566
|
+
"GetVersionShowRequestTypedDict": ".getversionshowop",
|
|
10567
|
+
"GetVersionShowResponse": ".getversionshowop",
|
|
10568
|
+
"GetVersionShowResponseTypedDict": ".getversionshowop",
|
|
10569
|
+
"GetVersionStatusRequest": ".getversionstatusop",
|
|
10570
|
+
"GetVersionStatusRequestTypedDict": ".getversionstatusop",
|
|
10571
|
+
"GetVersionStatusResponse": ".getversionstatusop",
|
|
10572
|
+
"GetVersionStatusResponseTypedDict": ".getversionstatusop",
|
|
10573
|
+
"GitCommitParams": ".gitcommitparams",
|
|
10574
|
+
"GitCommitParamsTypedDict": ".gitcommitparams",
|
|
10575
|
+
"Author": ".gitcommitsummary",
|
|
10576
|
+
"AuthorTypedDict": ".gitcommitsummary",
|
|
10577
|
+
"GitCommitSummary": ".gitcommitsummary",
|
|
10578
|
+
"GitCommitSummaryFiles": ".gitcommitsummary",
|
|
10579
|
+
"GitCommitSummaryFilesTypedDict": ".gitcommitsummary",
|
|
10580
|
+
"GitCommitSummaryTypedDict": ".gitcommitsummary",
|
|
10581
|
+
"Summary": ".gitcommitsummary",
|
|
10582
|
+
"SummaryTypedDict": ".gitcommitsummary",
|
|
10583
|
+
"GitFile": ".gitfile",
|
|
10584
|
+
"GitFileTypedDict": ".gitfile",
|
|
10585
|
+
"GitFilesResponse": ".gitfilesresponse",
|
|
10586
|
+
"GitFilesResponseTypedDict": ".gitfilesresponse",
|
|
10587
|
+
"GitInfo": ".gitinfo",
|
|
10588
|
+
"GitInfoTypedDict": ".gitinfo",
|
|
10589
|
+
"Remote": ".gitinfo",
|
|
10590
|
+
"RemoteTypedDict": ".gitinfo",
|
|
10591
|
+
"GitRevertParams": ".gitrevertparams",
|
|
10592
|
+
"GitRevertParamsTypedDict": ".gitrevertparams",
|
|
10593
|
+
"Audit": ".gitrevertresult",
|
|
10594
|
+
"AuditTypedDict": ".gitrevertresult",
|
|
10595
|
+
"GitRevertResult": ".gitrevertresult",
|
|
10596
|
+
"GitRevertResultFiles": ".gitrevertresult",
|
|
10597
|
+
"GitRevertResultFilesTypedDict": ".gitrevertresult",
|
|
10598
|
+
"GitRevertResultTypedDict": ".gitrevertresult",
|
|
10599
|
+
"File": ".gitstatusresult",
|
|
10600
|
+
"FileTypedDict": ".gitstatusresult",
|
|
10601
|
+
"GitStatusResult": ".gitstatusresult",
|
|
10602
|
+
"GitStatusResultTypedDict": ".gitstatusresult",
|
|
10603
|
+
"Renamed": ".gitstatusresult",
|
|
10604
|
+
"RenamedTypedDict": ".gitstatusresult",
|
|
10364
10605
|
"HealthStatus": ".healthstatus",
|
|
10365
10606
|
"HealthStatusTypedDict": ".healthstatus",
|
|
10366
10607
|
"Role": ".healthstatus",
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from .gitcommitsummary import GitCommitSummary, GitCommitSummaryTypedDict
|
|
5
|
+
from cribl_control_plane.types import BaseModel
|
|
6
|
+
from typing import List, Optional
|
|
7
|
+
from typing_extensions import NotRequired, TypedDict
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class CreateVersionCommitResponseTypedDict(TypedDict):
|
|
11
|
+
r"""a list of GitCommitSummary objects"""
|
|
12
|
+
|
|
13
|
+
count: NotRequired[int]
|
|
14
|
+
r"""number of items present in the items array"""
|
|
15
|
+
items: NotRequired[List[GitCommitSummaryTypedDict]]
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
class CreateVersionCommitResponse(BaseModel):
|
|
19
|
+
r"""a list of GitCommitSummary objects"""
|
|
20
|
+
|
|
21
|
+
count: Optional[int] = None
|
|
22
|
+
r"""number of items present in the items array"""
|
|
23
|
+
|
|
24
|
+
items: Optional[List[GitCommitSummary]] = None
|
|
@@ -0,0 +1,23 @@
|
|
|
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
|
+
from typing import Any, Dict, List, Optional
|
|
6
|
+
from typing_extensions import NotRequired, TypedDict
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class CreateVersionPushResponseTypedDict(TypedDict):
|
|
10
|
+
r"""a list of any objects"""
|
|
11
|
+
|
|
12
|
+
count: NotRequired[int]
|
|
13
|
+
r"""number of items present in the items array"""
|
|
14
|
+
items: NotRequired[List[Dict[str, Any]]]
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
class CreateVersionPushResponse(BaseModel):
|
|
18
|
+
r"""a list of any objects"""
|
|
19
|
+
|
|
20
|
+
count: Optional[int] = None
|
|
21
|
+
r"""number of items present in the items array"""
|
|
22
|
+
|
|
23
|
+
items: Optional[List[Dict[str, Any]]] = None
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from .gitrevertparams import GitRevertParams, GitRevertParamsTypedDict
|
|
5
|
+
from .gitrevertresult import GitRevertResult, GitRevertResultTypedDict
|
|
6
|
+
from cribl_control_plane.types import BaseModel
|
|
7
|
+
from cribl_control_plane.utils import FieldMetadata, QueryParamMetadata, RequestMetadata
|
|
8
|
+
from typing import List, Optional
|
|
9
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class CreateVersionRevertRequestTypedDict(TypedDict):
|
|
13
|
+
git_revert_params: GitRevertParamsTypedDict
|
|
14
|
+
r"""GitRevertParams object"""
|
|
15
|
+
group: NotRequired[str]
|
|
16
|
+
r"""Group ID"""
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
class CreateVersionRevertRequest(BaseModel):
|
|
20
|
+
git_revert_params: Annotated[
|
|
21
|
+
GitRevertParams,
|
|
22
|
+
FieldMetadata(request=RequestMetadata(media_type="application/json")),
|
|
23
|
+
]
|
|
24
|
+
r"""GitRevertParams object"""
|
|
25
|
+
|
|
26
|
+
group: Annotated[
|
|
27
|
+
Optional[str],
|
|
28
|
+
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
|
29
|
+
] = None
|
|
30
|
+
r"""Group ID"""
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
class CreateVersionRevertResponseTypedDict(TypedDict):
|
|
34
|
+
r"""a list of GitRevertResult objects"""
|
|
35
|
+
|
|
36
|
+
count: NotRequired[int]
|
|
37
|
+
r"""number of items present in the items array"""
|
|
38
|
+
items: NotRequired[List[GitRevertResultTypedDict]]
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
class CreateVersionRevertResponse(BaseModel):
|
|
42
|
+
r"""a list of GitRevertResult objects"""
|
|
43
|
+
|
|
44
|
+
count: Optional[int] = None
|
|
45
|
+
r"""number of items present in the items array"""
|
|
46
|
+
|
|
47
|
+
items: Optional[List[GitRevertResult]] = None
|
|
@@ -0,0 +1,23 @@
|
|
|
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
|
+
from typing import Any, Dict, List, Optional
|
|
6
|
+
from typing_extensions import NotRequired, TypedDict
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class CreateVersionSyncResponseTypedDict(TypedDict):
|
|
10
|
+
r"""a list of any objects"""
|
|
11
|
+
|
|
12
|
+
count: NotRequired[int]
|
|
13
|
+
r"""number of items present in the items array"""
|
|
14
|
+
items: NotRequired[List[Dict[str, Any]]]
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
class CreateVersionSyncResponse(BaseModel):
|
|
18
|
+
r"""a list of any objects"""
|
|
19
|
+
|
|
20
|
+
count: Optional[int] = None
|
|
21
|
+
r"""number of items present in the items array"""
|
|
22
|
+
|
|
23
|
+
items: Optional[List[Dict[str, Any]]] = None
|
|
@@ -0,0 +1,37 @@
|
|
|
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
|
+
from cribl_control_plane.utils import FieldMetadata, QueryParamMetadata
|
|
6
|
+
from typing import List, Optional
|
|
7
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class CreateVersionUndoRequestTypedDict(TypedDict):
|
|
11
|
+
group: NotRequired[str]
|
|
12
|
+
r"""Group ID"""
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class CreateVersionUndoRequest(BaseModel):
|
|
16
|
+
group: Annotated[
|
|
17
|
+
Optional[str],
|
|
18
|
+
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
|
19
|
+
] = None
|
|
20
|
+
r"""Group ID"""
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
class CreateVersionUndoResponseTypedDict(TypedDict):
|
|
24
|
+
r"""a list of object objects"""
|
|
25
|
+
|
|
26
|
+
count: NotRequired[int]
|
|
27
|
+
r"""number of items present in the items array"""
|
|
28
|
+
items: NotRequired[List[str]]
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
class CreateVersionUndoResponse(BaseModel):
|
|
32
|
+
r"""a list of object objects"""
|
|
33
|
+
|
|
34
|
+
count: Optional[int] = None
|
|
35
|
+
r"""number of items present in the items array"""
|
|
36
|
+
|
|
37
|
+
items: Optional[List[str]] = None
|
|
@@ -0,0 +1,23 @@
|
|
|
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
|
+
from typing import Any, Dict, List, Optional
|
|
6
|
+
from typing_extensions import NotRequired, TypedDict
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class GetVersionBranchResponseTypedDict(TypedDict):
|
|
10
|
+
r"""a list of any objects"""
|
|
11
|
+
|
|
12
|
+
count: NotRequired[int]
|
|
13
|
+
r"""number of items present in the items array"""
|
|
14
|
+
items: NotRequired[List[Dict[str, Any]]]
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
class GetVersionBranchResponse(BaseModel):
|
|
18
|
+
r"""a list of any objects"""
|
|
19
|
+
|
|
20
|
+
count: Optional[int] = None
|
|
21
|
+
r"""number of items present in the items array"""
|
|
22
|
+
|
|
23
|
+
items: Optional[List[Dict[str, Any]]] = None
|
|
@@ -0,0 +1,47 @@
|
|
|
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
|
+
from cribl_control_plane.utils import FieldMetadata, QueryParamMetadata
|
|
6
|
+
import pydantic
|
|
7
|
+
from typing import Any, Dict, List, Optional
|
|
8
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class GetVersionCountRequestTypedDict(TypedDict):
|
|
12
|
+
group: NotRequired[str]
|
|
13
|
+
r"""Group ID"""
|
|
14
|
+
id: NotRequired[str]
|
|
15
|
+
r"""Commit ID"""
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
class GetVersionCountRequest(BaseModel):
|
|
19
|
+
group: Annotated[
|
|
20
|
+
Optional[str],
|
|
21
|
+
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
|
22
|
+
] = None
|
|
23
|
+
r"""Group ID"""
|
|
24
|
+
|
|
25
|
+
id: Annotated[
|
|
26
|
+
Optional[str],
|
|
27
|
+
pydantic.Field(alias="ID"),
|
|
28
|
+
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
|
29
|
+
] = None
|
|
30
|
+
r"""Commit ID"""
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
class GetVersionCountResponseTypedDict(TypedDict):
|
|
34
|
+
r"""a list of any objects"""
|
|
35
|
+
|
|
36
|
+
count: NotRequired[int]
|
|
37
|
+
r"""number of items present in the items array"""
|
|
38
|
+
items: NotRequired[List[Dict[str, Any]]]
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
class GetVersionCountResponse(BaseModel):
|
|
42
|
+
r"""a list of any objects"""
|
|
43
|
+
|
|
44
|
+
count: Optional[int] = None
|
|
45
|
+
r"""number of items present in the items array"""
|
|
46
|
+
|
|
47
|
+
items: Optional[List[Dict[str, Any]]] = None
|
|
@@ -0,0 +1,23 @@
|
|
|
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
|
+
from typing import Any, Dict, List, Optional
|
|
6
|
+
from typing_extensions import NotRequired, TypedDict
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class GetVersionCurrentBranchResponseTypedDict(TypedDict):
|
|
10
|
+
r"""a list of any objects"""
|
|
11
|
+
|
|
12
|
+
count: NotRequired[int]
|
|
13
|
+
r"""number of items present in the items array"""
|
|
14
|
+
items: NotRequired[List[Dict[str, Any]]]
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
class GetVersionCurrentBranchResponse(BaseModel):
|
|
18
|
+
r"""a list of any objects"""
|
|
19
|
+
|
|
20
|
+
count: Optional[int] = None
|
|
21
|
+
r"""number of items present in the items array"""
|
|
22
|
+
|
|
23
|
+
items: Optional[List[Dict[str, Any]]] = None
|
|
@@ -0,0 +1,63 @@
|
|
|
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
|
+
from cribl_control_plane.utils import FieldMetadata, QueryParamMetadata
|
|
6
|
+
import pydantic
|
|
7
|
+
from typing import Any, Dict, List, Optional
|
|
8
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class GetVersionDiffRequestTypedDict(TypedDict):
|
|
12
|
+
commit: NotRequired[str]
|
|
13
|
+
r"""Commit hash (default is HEAD)"""
|
|
14
|
+
group: NotRequired[str]
|
|
15
|
+
r"""Group ID"""
|
|
16
|
+
filename: NotRequired[str]
|
|
17
|
+
r"""Filename"""
|
|
18
|
+
diff_line_limit: NotRequired[float]
|
|
19
|
+
r"""Limit maximum lines in the diff"""
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
class GetVersionDiffRequest(BaseModel):
|
|
23
|
+
commit: Annotated[
|
|
24
|
+
Optional[str],
|
|
25
|
+
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
|
26
|
+
] = None
|
|
27
|
+
r"""Commit hash (default is HEAD)"""
|
|
28
|
+
|
|
29
|
+
group: Annotated[
|
|
30
|
+
Optional[str],
|
|
31
|
+
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
|
32
|
+
] = None
|
|
33
|
+
r"""Group ID"""
|
|
34
|
+
|
|
35
|
+
filename: Annotated[
|
|
36
|
+
Optional[str],
|
|
37
|
+
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
|
38
|
+
] = None
|
|
39
|
+
r"""Filename"""
|
|
40
|
+
|
|
41
|
+
diff_line_limit: Annotated[
|
|
42
|
+
Optional[float],
|
|
43
|
+
pydantic.Field(alias="diffLineLimit"),
|
|
44
|
+
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
|
45
|
+
] = None
|
|
46
|
+
r"""Limit maximum lines in the diff"""
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
class GetVersionDiffResponseTypedDict(TypedDict):
|
|
50
|
+
r"""a list of any objects"""
|
|
51
|
+
|
|
52
|
+
count: NotRequired[int]
|
|
53
|
+
r"""number of items present in the items array"""
|
|
54
|
+
items: NotRequired[List[Dict[str, Any]]]
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
class GetVersionDiffResponse(BaseModel):
|
|
58
|
+
r"""a list of any objects"""
|
|
59
|
+
|
|
60
|
+
count: Optional[int] = None
|
|
61
|
+
r"""number of items present in the items array"""
|
|
62
|
+
|
|
63
|
+
items: Optional[List[Dict[str, Any]]] = None
|