cribl-control-plane 0.0.39__py3-none-any.whl → 0.0.40a1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of cribl-control-plane might be problematic. Click here for more details.

@@ -3,10 +3,10 @@
3
3
  import importlib.metadata
4
4
 
5
5
  __title__: str = "cribl-control-plane"
6
- __version__: str = "0.0.39"
7
- __openapi_doc_version__: str = "4.14.0-alpha.1756720086962-ed6aba5c"
6
+ __version__: str = "0.0.40a1"
7
+ __openapi_doc_version__: str = "4.14.0-alpha.1756793140693-1fbdb43f"
8
8
  __gen_version__: str = "2.686.7"
9
- __user_agent__: str = "speakeasy-sdk/python 0.0.39 2.686.7 4.14.0-alpha.1756720086962-ed6aba5c cribl-control-plane"
9
+ __user_agent__: str = "speakeasy-sdk/python 0.0.40a1 2.686.7 4.14.0-alpha.1756793140693-1fbdb43f cribl-control-plane"
10
10
 
11
11
  try:
12
12
  if __package__ is not None:
@@ -83,7 +83,7 @@ class DestinationsPq(BaseSDK):
83
83
  )
84
84
 
85
85
  response_data: Any = None
86
- if utils.match_response(http_res, "200", "application/json"):
86
+ if utils.match_response(http_res, "201", "application/json"):
87
87
  return unmarshal_json_response(models.DeleteOutputPqByIDResponse, http_res)
88
88
  if utils.match_response(http_res, "500", "application/json"):
89
89
  response_data = unmarshal_json_response(errors.ErrorData, http_res)
@@ -170,7 +170,7 @@ class DestinationsPq(BaseSDK):
170
170
  )
171
171
 
172
172
  response_data: Any = None
173
- if utils.match_response(http_res, "200", "application/json"):
173
+ if utils.match_response(http_res, "201", "application/json"):
174
174
  return unmarshal_json_response(models.DeleteOutputPqByIDResponse, http_res)
175
175
  if utils.match_response(http_res, "500", "application/json"):
176
176
  response_data = unmarshal_json_response(errors.ErrorData, http_res)
@@ -13,6 +13,7 @@ if TYPE_CHECKING:
13
13
  )
14
14
  from .appmode import AppMode
15
15
  from .authtoken import AuthToken, AuthTokenTypedDict
16
+ from .branchinfo import BranchInfo, BranchInfoTypedDict
16
17
  from .cacheconnection import CacheConnection, CacheConnectionTypedDict
17
18
  from .cacheconnectionbackfillstatus import CacheConnectionBackfillStatus
18
19
  from .cloudprovider import CloudProvider
@@ -151,6 +152,24 @@ if TYPE_CHECKING:
151
152
  DeployRequestLookupsLookupTypedDict,
152
153
  DeployRequestLookupsTypedDict,
153
154
  )
155
+ from .difffiles import (
156
+ Block,
157
+ BlockTypedDict,
158
+ ChecksumBefore,
159
+ ChecksumBeforeTypedDict,
160
+ DiffFiles,
161
+ DiffFilesTypedDict,
162
+ Line1,
163
+ Line1TypedDict,
164
+ Line2,
165
+ Line2TypedDict,
166
+ Line3,
167
+ Line3TypedDict,
168
+ LineUnion,
169
+ LineUnionTypedDict,
170
+ OldMode,
171
+ OldModeTypedDict,
172
+ )
154
173
  from .distributedsummary import (
155
174
  DistributedSummary,
156
175
  DistributedSummaryGroups,
@@ -310,6 +329,8 @@ if TYPE_CHECKING:
310
329
  Summary,
311
330
  SummaryTypedDict,
312
331
  )
332
+ from .gitcountresult import GitCountResult, GitCountResultTypedDict
333
+ from .gitdiffresult import GitDiffResult, GitDiffResultTypedDict
313
334
  from .gitfile import GitFile, GitFileTypedDict
314
335
  from .gitfilesresponse import GitFilesResponse, GitFilesResponseTypedDict
315
336
  from .gitinfo import GitInfo, GitInfoTypedDict, Remote, RemoteTypedDict
@@ -1620,6 +1641,8 @@ if TYPE_CHECKING:
1620
1641
  InputZscalerHecType,
1621
1642
  InputZscalerHecTypedDict,
1622
1643
  )
1644
+ from .jobinfo import JobInfo, JobInfoTypedDict
1645
+ from .jobstatus import JobStatus, JobStatusTypedDict
1623
1646
  from .lakedatasetsearchconfig import (
1624
1647
  LakeDatasetSearchConfig,
1625
1648
  LakeDatasetSearchConfigTypedDict,
@@ -2983,6 +3006,74 @@ if TYPE_CHECKING:
2983
3006
  RoutesTypedDict,
2984
3007
  )
2985
3008
  from .routesroute import RoutesRoute, RoutesRouteTypedDict
3009
+ from .runnablejob import RunnableJob, RunnableJobTypedDict
3010
+ from .runnablejobcollection import (
3011
+ CaptureSettings,
3012
+ CaptureSettingsTypedDict,
3013
+ Collector,
3014
+ CollectorSpecificSettings,
3015
+ CollectorSpecificSettingsTypedDict,
3016
+ CollectorTypedDict,
3017
+ RunnableJobCollection,
3018
+ RunnableJobCollectionInput,
3019
+ RunnableJobCollectionInputTypedDict,
3020
+ RunnableJobCollectionJobType,
3021
+ RunnableJobCollectionLogLevel,
3022
+ RunnableJobCollectionMetadatum,
3023
+ RunnableJobCollectionMetadatumTypedDict,
3024
+ RunnableJobCollectionMode,
3025
+ RunnableJobCollectionPreprocess,
3026
+ RunnableJobCollectionPreprocessTypedDict,
3027
+ RunnableJobCollectionRun,
3028
+ RunnableJobCollectionRunSettings,
3029
+ RunnableJobCollectionRunSettingsTypedDict,
3030
+ RunnableJobCollectionRunType,
3031
+ RunnableJobCollectionRunTypedDict,
3032
+ RunnableJobCollectionSchedule,
3033
+ RunnableJobCollectionScheduleLogLevel,
3034
+ RunnableJobCollectionScheduleTimeWarning,
3035
+ RunnableJobCollectionScheduleTimeWarningTypedDict,
3036
+ RunnableJobCollectionScheduleTypedDict,
3037
+ RunnableJobCollectionTimeWarning,
3038
+ RunnableJobCollectionTimeWarningTypedDict,
3039
+ RunnableJobCollectionType,
3040
+ RunnableJobCollectionTypedDict,
3041
+ TimeRange,
3042
+ WhereToCapture,
3043
+ )
3044
+ from .runnablejobexecutor import (
3045
+ Executor,
3046
+ ExecutorSpecificSettings,
3047
+ ExecutorSpecificSettingsTypedDict,
3048
+ ExecutorTypedDict,
3049
+ RunnableJobExecutor,
3050
+ RunnableJobExecutorJobType,
3051
+ RunnableJobExecutorLogLevel,
3052
+ RunnableJobExecutorRun,
3053
+ RunnableJobExecutorRunSettings,
3054
+ RunnableJobExecutorRunSettingsTypedDict,
3055
+ RunnableJobExecutorRunTypedDict,
3056
+ RunnableJobExecutorSchedule,
3057
+ RunnableJobExecutorScheduleLogLevel,
3058
+ RunnableJobExecutorScheduleTypedDict,
3059
+ RunnableJobExecutorTimeWarning,
3060
+ RunnableJobExecutorTimeWarningTypedDict,
3061
+ RunnableJobExecutorType,
3062
+ RunnableJobExecutorTypedDict,
3063
+ )
3064
+ from .runnablejobscheduledsearch import (
3065
+ RunnableJobScheduledSearch,
3066
+ RunnableJobScheduledSearchJobType,
3067
+ RunnableJobScheduledSearchLogLevel,
3068
+ RunnableJobScheduledSearchRunSettings,
3069
+ RunnableJobScheduledSearchRunSettingsTypedDict,
3070
+ RunnableJobScheduledSearchSchedule,
3071
+ RunnableJobScheduledSearchScheduleTypedDict,
3072
+ RunnableJobScheduledSearchTimeWarning,
3073
+ RunnableJobScheduledSearchTimeWarningTypedDict,
3074
+ RunnableJobScheduledSearchType,
3075
+ RunnableJobScheduledSearchTypedDict,
3076
+ )
2986
3077
  from .schemeclientoauth import SchemeClientOauth, SchemeClientOauthTypedDict
2987
3078
  from .security import Security, SecurityTypedDict
2988
3079
  from .teamaccesscontrollist import (
@@ -3076,12 +3167,24 @@ __all__ = [
3076
3167
  "AuthorTypedDict",
3077
3168
  "AwsAuthenticationMethod",
3078
3169
  "BlobAccessTier",
3170
+ "Block",
3171
+ "BlockTypedDict",
3172
+ "BranchInfo",
3173
+ "BranchInfoTypedDict",
3079
3174
  "CacheConnection",
3080
3175
  "CacheConnectionBackfillStatus",
3081
3176
  "CacheConnectionTypedDict",
3177
+ "CaptureSettings",
3178
+ "CaptureSettingsTypedDict",
3082
3179
  "CertOptions",
3083
3180
  "CertOptionsTypedDict",
3181
+ "ChecksumBefore",
3182
+ "ChecksumBeforeTypedDict",
3084
3183
  "CloudProvider",
3184
+ "Collector",
3185
+ "CollectorSpecificSettings",
3186
+ "CollectorSpecificSettingsTypedDict",
3187
+ "CollectorTypedDict",
3085
3188
  "Collectors",
3086
3189
  "CollectorsTypedDict",
3087
3190
  "ColumnMapping",
@@ -3199,6 +3302,8 @@ __all__ = [
3199
3302
  "DeployRequestLookupsLookupTypedDict",
3200
3303
  "DeployRequestLookupsTypedDict",
3201
3304
  "DeployRequestTypedDict",
3305
+ "DiffFiles",
3306
+ "DiffFilesTypedDict",
3202
3307
  "DisksAndFileSystems",
3203
3308
  "DisksAndFileSystemsTypedDict",
3204
3309
  "DistributedSummary",
@@ -3216,6 +3321,10 @@ __all__ = [
3216
3321
  "EndpointParamTypedDict",
3217
3322
  "EndpointType",
3218
3323
  "EventFormat",
3324
+ "Executor",
3325
+ "ExecutorSpecificSettings",
3326
+ "ExecutorSpecificSettingsTypedDict",
3327
+ "ExecutorTypedDict",
3219
3328
  "ExtentTag",
3220
3329
  "ExtentTagTypedDict",
3221
3330
  "ExtraLogType",
@@ -3327,6 +3436,10 @@ __all__ = [
3327
3436
  "GitCommitSummaryFiles",
3328
3437
  "GitCommitSummaryFilesTypedDict",
3329
3438
  "GitCommitSummaryTypedDict",
3439
+ "GitCountResult",
3440
+ "GitCountResultTypedDict",
3441
+ "GitDiffResult",
3442
+ "GitDiffResultTypedDict",
3330
3443
  "GitFile",
3331
3444
  "GitFileTypedDict",
3332
3445
  "GitFilesResponse",
@@ -4454,11 +4567,23 @@ __all__ = [
4454
4567
  "InputZscalerHecTypedDict",
4455
4568
  "Interfaces",
4456
4569
  "InterfacesTypedDict",
4570
+ "JobInfo",
4571
+ "JobInfoTypedDict",
4572
+ "JobStatus",
4573
+ "JobStatusTypedDict",
4457
4574
  "LakeDatasetSearchConfig",
4458
4575
  "LakeDatasetSearchConfigTypedDict",
4459
4576
  "LakehouseConnectionType",
4460
4577
  "LastMetrics",
4461
4578
  "LastMetricsTypedDict",
4579
+ "Line1",
4580
+ "Line1TypedDict",
4581
+ "Line2",
4582
+ "Line2TypedDict",
4583
+ "Line3",
4584
+ "Line3TypedDict",
4585
+ "LineUnion",
4586
+ "LineUnionTypedDict",
4462
4587
  "ListConfigGroupByProductRequest",
4463
4588
  "ListConfigGroupByProductRequestTypedDict",
4464
4589
  "ListConfigGroupByProductResponse",
@@ -4526,6 +4651,8 @@ __all__ = [
4526
4651
  "NodeUpgradeState",
4527
4652
  "NodeUpgradeStatus",
4528
4653
  "NodeUpgradeStatusTypedDict",
4654
+ "OldMode",
4655
+ "OldModeTypedDict",
4529
4656
  "Os",
4530
4657
  "OsTypedDict",
4531
4658
  "Output",
@@ -5679,6 +5806,57 @@ __all__ = [
5679
5806
  "RoutesRoute",
5680
5807
  "RoutesRouteTypedDict",
5681
5808
  "RoutesTypedDict",
5809
+ "RunnableJob",
5810
+ "RunnableJobCollection",
5811
+ "RunnableJobCollectionInput",
5812
+ "RunnableJobCollectionInputTypedDict",
5813
+ "RunnableJobCollectionJobType",
5814
+ "RunnableJobCollectionLogLevel",
5815
+ "RunnableJobCollectionMetadatum",
5816
+ "RunnableJobCollectionMetadatumTypedDict",
5817
+ "RunnableJobCollectionMode",
5818
+ "RunnableJobCollectionPreprocess",
5819
+ "RunnableJobCollectionPreprocessTypedDict",
5820
+ "RunnableJobCollectionRun",
5821
+ "RunnableJobCollectionRunSettings",
5822
+ "RunnableJobCollectionRunSettingsTypedDict",
5823
+ "RunnableJobCollectionRunType",
5824
+ "RunnableJobCollectionRunTypedDict",
5825
+ "RunnableJobCollectionSchedule",
5826
+ "RunnableJobCollectionScheduleLogLevel",
5827
+ "RunnableJobCollectionScheduleTimeWarning",
5828
+ "RunnableJobCollectionScheduleTimeWarningTypedDict",
5829
+ "RunnableJobCollectionScheduleTypedDict",
5830
+ "RunnableJobCollectionTimeWarning",
5831
+ "RunnableJobCollectionTimeWarningTypedDict",
5832
+ "RunnableJobCollectionType",
5833
+ "RunnableJobCollectionTypedDict",
5834
+ "RunnableJobExecutor",
5835
+ "RunnableJobExecutorJobType",
5836
+ "RunnableJobExecutorLogLevel",
5837
+ "RunnableJobExecutorRun",
5838
+ "RunnableJobExecutorRunSettings",
5839
+ "RunnableJobExecutorRunSettingsTypedDict",
5840
+ "RunnableJobExecutorRunTypedDict",
5841
+ "RunnableJobExecutorSchedule",
5842
+ "RunnableJobExecutorScheduleLogLevel",
5843
+ "RunnableJobExecutorScheduleTypedDict",
5844
+ "RunnableJobExecutorTimeWarning",
5845
+ "RunnableJobExecutorTimeWarningTypedDict",
5846
+ "RunnableJobExecutorType",
5847
+ "RunnableJobExecutorTypedDict",
5848
+ "RunnableJobScheduledSearch",
5849
+ "RunnableJobScheduledSearchJobType",
5850
+ "RunnableJobScheduledSearchLogLevel",
5851
+ "RunnableJobScheduledSearchRunSettings",
5852
+ "RunnableJobScheduledSearchRunSettingsTypedDict",
5853
+ "RunnableJobScheduledSearchSchedule",
5854
+ "RunnableJobScheduledSearchScheduleTypedDict",
5855
+ "RunnableJobScheduledSearchTimeWarning",
5856
+ "RunnableJobScheduledSearchTimeWarningTypedDict",
5857
+ "RunnableJobScheduledSearchType",
5858
+ "RunnableJobScheduledSearchTypedDict",
5859
+ "RunnableJobTypedDict",
5682
5860
  "SNMPv3Authentication",
5683
5861
  "SNMPv3AuthenticationTypedDict",
5684
5862
  "Sample",
@@ -5710,6 +5888,7 @@ __all__ = [
5710
5888
  "TeamAccessControlList",
5711
5889
  "TeamAccessControlListTypedDict",
5712
5890
  "TelemetryType",
5891
+ "TimeRange",
5713
5892
  "TimestampFormat",
5714
5893
  "TimestampPrecision",
5715
5894
  "UpdateConfigGroupByProductAndIDRequest",
@@ -5758,6 +5937,7 @@ __all__ = [
5758
5937
  "UsersAndGroupsTypedDict",
5759
5938
  "V3User",
5760
5939
  "V3UserTypedDict",
5940
+ "WhereToCapture",
5761
5941
  "WorkerTypes",
5762
5942
  "WriteAction",
5763
5943
  ]
@@ -5770,6 +5950,8 @@ _dynamic_imports: dict[str, str] = {
5770
5950
  "AppMode": ".appmode",
5771
5951
  "AuthToken": ".authtoken",
5772
5952
  "AuthTokenTypedDict": ".authtoken",
5953
+ "BranchInfo": ".branchinfo",
5954
+ "BranchInfoTypedDict": ".branchinfo",
5773
5955
  "CacheConnection": ".cacheconnection",
5774
5956
  "CacheConnectionTypedDict": ".cacheconnection",
5775
5957
  "CacheConnectionBackfillStatus": ".cacheconnectionbackfillstatus",
@@ -5875,6 +6057,22 @@ _dynamic_imports: dict[str, str] = {
5875
6057
  "DeployRequestLookupsLookup": ".deployrequestlookups",
5876
6058
  "DeployRequestLookupsLookupTypedDict": ".deployrequestlookups",
5877
6059
  "DeployRequestLookupsTypedDict": ".deployrequestlookups",
6060
+ "Block": ".difffiles",
6061
+ "BlockTypedDict": ".difffiles",
6062
+ "ChecksumBefore": ".difffiles",
6063
+ "ChecksumBeforeTypedDict": ".difffiles",
6064
+ "DiffFiles": ".difffiles",
6065
+ "DiffFilesTypedDict": ".difffiles",
6066
+ "Line1": ".difffiles",
6067
+ "Line1TypedDict": ".difffiles",
6068
+ "Line2": ".difffiles",
6069
+ "Line2TypedDict": ".difffiles",
6070
+ "Line3": ".difffiles",
6071
+ "Line3TypedDict": ".difffiles",
6072
+ "LineUnion": ".difffiles",
6073
+ "LineUnionTypedDict": ".difffiles",
6074
+ "OldMode": ".difffiles",
6075
+ "OldModeTypedDict": ".difffiles",
5878
6076
  "DistributedSummary": ".distributedsummary",
5879
6077
  "DistributedSummaryGroups": ".distributedsummary",
5880
6078
  "DistributedSummaryGroupsTypedDict": ".distributedsummary",
@@ -5983,6 +6181,10 @@ _dynamic_imports: dict[str, str] = {
5983
6181
  "GitCommitSummaryTypedDict": ".gitcommitsummary",
5984
6182
  "Summary": ".gitcommitsummary",
5985
6183
  "SummaryTypedDict": ".gitcommitsummary",
6184
+ "GitCountResult": ".gitcountresult",
6185
+ "GitCountResultTypedDict": ".gitcountresult",
6186
+ "GitDiffResult": ".gitdiffresult",
6187
+ "GitDiffResultTypedDict": ".gitdiffresult",
5986
6188
  "GitFile": ".gitfile",
5987
6189
  "GitFileTypedDict": ".gitfile",
5988
6190
  "GitFilesResponse": ".gitfilesresponse",
@@ -7184,6 +7386,10 @@ _dynamic_imports: dict[str, str] = {
7184
7386
  "InputZscalerHecTLSSettingsServerSideTypedDict": ".inputzscalerhec",
7185
7387
  "InputZscalerHecType": ".inputzscalerhec",
7186
7388
  "InputZscalerHecTypedDict": ".inputzscalerhec",
7389
+ "JobInfo": ".jobinfo",
7390
+ "JobInfoTypedDict": ".jobinfo",
7391
+ "JobStatus": ".jobstatus",
7392
+ "JobStatusTypedDict": ".jobstatus",
7187
7393
  "LakeDatasetSearchConfig": ".lakedatasetsearchconfig",
7188
7394
  "LakeDatasetSearchConfigTypedDict": ".lakedatasetsearchconfig",
7189
7395
  "LakehouseConnectionType": ".lakehouseconnectiontype",
@@ -8418,6 +8624,69 @@ _dynamic_imports: dict[str, str] = {
8418
8624
  "RoutesTypedDict": ".routes",
8419
8625
  "RoutesRoute": ".routesroute",
8420
8626
  "RoutesRouteTypedDict": ".routesroute",
8627
+ "RunnableJob": ".runnablejob",
8628
+ "RunnableJobTypedDict": ".runnablejob",
8629
+ "CaptureSettings": ".runnablejobcollection",
8630
+ "CaptureSettingsTypedDict": ".runnablejobcollection",
8631
+ "Collector": ".runnablejobcollection",
8632
+ "CollectorSpecificSettings": ".runnablejobcollection",
8633
+ "CollectorSpecificSettingsTypedDict": ".runnablejobcollection",
8634
+ "CollectorTypedDict": ".runnablejobcollection",
8635
+ "RunnableJobCollection": ".runnablejobcollection",
8636
+ "RunnableJobCollectionInput": ".runnablejobcollection",
8637
+ "RunnableJobCollectionInputTypedDict": ".runnablejobcollection",
8638
+ "RunnableJobCollectionJobType": ".runnablejobcollection",
8639
+ "RunnableJobCollectionLogLevel": ".runnablejobcollection",
8640
+ "RunnableJobCollectionMetadatum": ".runnablejobcollection",
8641
+ "RunnableJobCollectionMetadatumTypedDict": ".runnablejobcollection",
8642
+ "RunnableJobCollectionMode": ".runnablejobcollection",
8643
+ "RunnableJobCollectionPreprocess": ".runnablejobcollection",
8644
+ "RunnableJobCollectionPreprocessTypedDict": ".runnablejobcollection",
8645
+ "RunnableJobCollectionRun": ".runnablejobcollection",
8646
+ "RunnableJobCollectionRunSettings": ".runnablejobcollection",
8647
+ "RunnableJobCollectionRunSettingsTypedDict": ".runnablejobcollection",
8648
+ "RunnableJobCollectionRunType": ".runnablejobcollection",
8649
+ "RunnableJobCollectionRunTypedDict": ".runnablejobcollection",
8650
+ "RunnableJobCollectionSchedule": ".runnablejobcollection",
8651
+ "RunnableJobCollectionScheduleLogLevel": ".runnablejobcollection",
8652
+ "RunnableJobCollectionScheduleTimeWarning": ".runnablejobcollection",
8653
+ "RunnableJobCollectionScheduleTimeWarningTypedDict": ".runnablejobcollection",
8654
+ "RunnableJobCollectionScheduleTypedDict": ".runnablejobcollection",
8655
+ "RunnableJobCollectionTimeWarning": ".runnablejobcollection",
8656
+ "RunnableJobCollectionTimeWarningTypedDict": ".runnablejobcollection",
8657
+ "RunnableJobCollectionType": ".runnablejobcollection",
8658
+ "RunnableJobCollectionTypedDict": ".runnablejobcollection",
8659
+ "TimeRange": ".runnablejobcollection",
8660
+ "WhereToCapture": ".runnablejobcollection",
8661
+ "Executor": ".runnablejobexecutor",
8662
+ "ExecutorSpecificSettings": ".runnablejobexecutor",
8663
+ "ExecutorSpecificSettingsTypedDict": ".runnablejobexecutor",
8664
+ "ExecutorTypedDict": ".runnablejobexecutor",
8665
+ "RunnableJobExecutor": ".runnablejobexecutor",
8666
+ "RunnableJobExecutorJobType": ".runnablejobexecutor",
8667
+ "RunnableJobExecutorLogLevel": ".runnablejobexecutor",
8668
+ "RunnableJobExecutorRun": ".runnablejobexecutor",
8669
+ "RunnableJobExecutorRunSettings": ".runnablejobexecutor",
8670
+ "RunnableJobExecutorRunSettingsTypedDict": ".runnablejobexecutor",
8671
+ "RunnableJobExecutorRunTypedDict": ".runnablejobexecutor",
8672
+ "RunnableJobExecutorSchedule": ".runnablejobexecutor",
8673
+ "RunnableJobExecutorScheduleLogLevel": ".runnablejobexecutor",
8674
+ "RunnableJobExecutorScheduleTypedDict": ".runnablejobexecutor",
8675
+ "RunnableJobExecutorTimeWarning": ".runnablejobexecutor",
8676
+ "RunnableJobExecutorTimeWarningTypedDict": ".runnablejobexecutor",
8677
+ "RunnableJobExecutorType": ".runnablejobexecutor",
8678
+ "RunnableJobExecutorTypedDict": ".runnablejobexecutor",
8679
+ "RunnableJobScheduledSearch": ".runnablejobscheduledsearch",
8680
+ "RunnableJobScheduledSearchJobType": ".runnablejobscheduledsearch",
8681
+ "RunnableJobScheduledSearchLogLevel": ".runnablejobscheduledsearch",
8682
+ "RunnableJobScheduledSearchRunSettings": ".runnablejobscheduledsearch",
8683
+ "RunnableJobScheduledSearchRunSettingsTypedDict": ".runnablejobscheduledsearch",
8684
+ "RunnableJobScheduledSearchSchedule": ".runnablejobscheduledsearch",
8685
+ "RunnableJobScheduledSearchScheduleTypedDict": ".runnablejobscheduledsearch",
8686
+ "RunnableJobScheduledSearchTimeWarning": ".runnablejobscheduledsearch",
8687
+ "RunnableJobScheduledSearchTimeWarningTypedDict": ".runnablejobscheduledsearch",
8688
+ "RunnableJobScheduledSearchType": ".runnablejobscheduledsearch",
8689
+ "RunnableJobScheduledSearchTypedDict": ".runnablejobscheduledsearch",
8421
8690
  "SchemeClientOauth": ".schemeclientoauth",
8422
8691
  "SchemeClientOauthTypedDict": ".schemeclientoauth",
8423
8692
  "Security": ".security",
@@ -0,0 +1,13 @@
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_extensions import TypedDict
6
+
7
+
8
+ class BranchInfoTypedDict(TypedDict):
9
+ id: str
10
+
11
+
12
+ class BranchInfo(BaseModel):
13
+ id: str
@@ -3,7 +3,7 @@
3
3
  from __future__ import annotations
4
4
  from cribl_control_plane.types import BaseModel
5
5
  from cribl_control_plane.utils import FieldMetadata, PathParamMetadata
6
- from typing import Any, Dict, List, Optional
6
+ from typing import List, Optional
7
7
  from typing_extensions import Annotated, NotRequired, TypedDict
8
8
 
9
9
 
@@ -20,17 +20,17 @@ class DeleteOutputPqByIDRequest(BaseModel):
20
20
 
21
21
 
22
22
  class DeleteOutputPqByIDResponseTypedDict(TypedDict):
23
- r"""a list of any objects"""
23
+ r"""a list of string objects"""
24
24
 
25
25
  count: NotRequired[int]
26
26
  r"""number of items present in the items array"""
27
- items: NotRequired[List[Dict[str, Any]]]
27
+ items: NotRequired[List[str]]
28
28
 
29
29
 
30
30
  class DeleteOutputPqByIDResponse(BaseModel):
31
- r"""a list of any objects"""
31
+ r"""a list of string objects"""
32
32
 
33
33
  count: Optional[int] = None
34
34
  r"""number of items present in the items array"""
35
35
 
36
- items: Optional[List[Dict[str, Any]]] = None
36
+ items: Optional[List[str]] = None
@@ -0,0 +1,171 @@
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 List, Optional, Union
7
+ from typing_extensions import Annotated, NotRequired, TypeAliasType, TypedDict
8
+
9
+
10
+ class Line3TypedDict(TypedDict):
11
+ content: str
12
+ new_number: float
13
+ old_number: float
14
+
15
+
16
+ class Line3(BaseModel):
17
+ content: str
18
+
19
+ new_number: Annotated[float, pydantic.Field(alias="newNumber")]
20
+
21
+ old_number: Annotated[float, pydantic.Field(alias="oldNumber")]
22
+
23
+
24
+ class Line2TypedDict(TypedDict):
25
+ content: str
26
+ new_number: float
27
+
28
+
29
+ class Line2(BaseModel):
30
+ content: str
31
+
32
+ new_number: Annotated[float, pydantic.Field(alias="newNumber")]
33
+
34
+
35
+ class Line1TypedDict(TypedDict):
36
+ content: str
37
+ old_number: float
38
+
39
+
40
+ class Line1(BaseModel):
41
+ content: str
42
+
43
+ old_number: Annotated[float, pydantic.Field(alias="oldNumber")]
44
+
45
+
46
+ LineUnionTypedDict = TypeAliasType(
47
+ "LineUnionTypedDict", Union[Line1TypedDict, Line2TypedDict, Line3TypedDict]
48
+ )
49
+
50
+
51
+ LineUnion = TypeAliasType("LineUnion", Union[Line1, Line2, Line3])
52
+
53
+
54
+ class BlockTypedDict(TypedDict):
55
+ header: str
56
+ lines: List[LineUnionTypedDict]
57
+ new_start_line: float
58
+ old_start_line: float
59
+ old_start_line2: NotRequired[float]
60
+
61
+
62
+ class Block(BaseModel):
63
+ header: str
64
+
65
+ lines: List[LineUnion]
66
+
67
+ new_start_line: Annotated[float, pydantic.Field(alias="newStartLine")]
68
+
69
+ old_start_line: Annotated[float, pydantic.Field(alias="oldStartLine")]
70
+
71
+ old_start_line2: Annotated[
72
+ Optional[float], pydantic.Field(alias="oldStartLine2")
73
+ ] = None
74
+
75
+
76
+ ChecksumBeforeTypedDict = TypeAliasType(
77
+ "ChecksumBeforeTypedDict", Union[str, List[str]]
78
+ )
79
+
80
+
81
+ ChecksumBefore = TypeAliasType("ChecksumBefore", Union[str, List[str]])
82
+
83
+
84
+ OldModeTypedDict = TypeAliasType("OldModeTypedDict", Union[str, List[str]])
85
+
86
+
87
+ OldMode = TypeAliasType("OldMode", Union[str, List[str]])
88
+
89
+
90
+ class DiffFilesTypedDict(TypedDict):
91
+ added_lines: float
92
+ blocks: List[BlockTypedDict]
93
+ deleted_lines: float
94
+ is_combined: bool
95
+ is_git_diff: bool
96
+ language: str
97
+ new_name: str
98
+ old_name: str
99
+ changed_percentage: NotRequired[float]
100
+ checksum_after: NotRequired[str]
101
+ checksum_before: NotRequired[ChecksumBeforeTypedDict]
102
+ deleted_file_mode: NotRequired[str]
103
+ is_binary: NotRequired[bool]
104
+ is_copy: NotRequired[bool]
105
+ is_deleted: NotRequired[bool]
106
+ is_new: NotRequired[bool]
107
+ is_rename: NotRequired[bool]
108
+ is_too_big: NotRequired[bool]
109
+ mode: NotRequired[str]
110
+ new_file_mode: NotRequired[str]
111
+ new_mode: NotRequired[str]
112
+ old_mode: NotRequired[OldModeTypedDict]
113
+ unchanged_percentage: NotRequired[float]
114
+
115
+
116
+ class DiffFiles(BaseModel):
117
+ added_lines: Annotated[float, pydantic.Field(alias="addedLines")]
118
+
119
+ blocks: List[Block]
120
+
121
+ deleted_lines: Annotated[float, pydantic.Field(alias="deletedLines")]
122
+
123
+ is_combined: Annotated[bool, pydantic.Field(alias="isCombined")]
124
+
125
+ is_git_diff: Annotated[bool, pydantic.Field(alias="isGitDiff")]
126
+
127
+ language: str
128
+
129
+ new_name: Annotated[str, pydantic.Field(alias="newName")]
130
+
131
+ old_name: Annotated[str, pydantic.Field(alias="oldName")]
132
+
133
+ changed_percentage: Annotated[
134
+ Optional[float], pydantic.Field(alias="changedPercentage")
135
+ ] = None
136
+
137
+ checksum_after: Annotated[Optional[str], pydantic.Field(alias="checksumAfter")] = (
138
+ None
139
+ )
140
+
141
+ checksum_before: Annotated[
142
+ Optional[ChecksumBefore], pydantic.Field(alias="checksumBefore")
143
+ ] = None
144
+
145
+ deleted_file_mode: Annotated[
146
+ Optional[str], pydantic.Field(alias="deletedFileMode")
147
+ ] = None
148
+
149
+ is_binary: Annotated[Optional[bool], pydantic.Field(alias="isBinary")] = None
150
+
151
+ is_copy: Annotated[Optional[bool], pydantic.Field(alias="isCopy")] = None
152
+
153
+ is_deleted: Annotated[Optional[bool], pydantic.Field(alias="isDeleted")] = None
154
+
155
+ is_new: Annotated[Optional[bool], pydantic.Field(alias="isNew")] = None
156
+
157
+ is_rename: Annotated[Optional[bool], pydantic.Field(alias="isRename")] = None
158
+
159
+ is_too_big: Annotated[Optional[bool], pydantic.Field(alias="isTooBig")] = None
160
+
161
+ mode: Optional[str] = None
162
+
163
+ new_file_mode: Annotated[Optional[str], pydantic.Field(alias="newFileMode")] = None
164
+
165
+ new_mode: Annotated[Optional[str], pydantic.Field(alias="newMode")] = None
166
+
167
+ old_mode: Annotated[Optional[OldMode], pydantic.Field(alias="oldMode")] = None
168
+
169
+ unchanged_percentage: Annotated[
170
+ Optional[float], pydantic.Field(alias="unchangedPercentage")
171
+ ] = None