cribl-control-plane 0.0.37a1__py3-none-any.whl → 0.0.38a1__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/commits.py +4 -4
- cribl_control_plane/cribl.py +513 -0
- cribl_control_plane/destinations.py +3 -3
- cribl_control_plane/{samples.py → destinations_samples.py} +1 -1
- cribl_control_plane/models/__init__.py +829 -189
- cribl_control_plane/models/authconfig.py +43 -0
- cribl_control_plane/models/commonservicelimitconfigs.py +14 -0
- cribl_control_plane/models/edgeheartbeatmetricsmode.py +11 -0
- cribl_control_plane/models/getpacksbyidop.py +37 -0
- cribl_control_plane/models/getsystemsettingsauthop.py +24 -0
- cribl_control_plane/models/getsystemsettingsconfop.py +24 -0
- cribl_control_plane/models/getsystemsettingsgitsettingsop.py +24 -0
- cribl_control_plane/models/gitopstype.py +10 -0
- cribl_control_plane/models/gitrevertparams.py +3 -3
- cribl_control_plane/models/gitsettings.py +70 -0
- cribl_control_plane/models/input.py +77 -76
- cribl_control_plane/models/inputgrafana.py +678 -67
- cribl_control_plane/models/inputsyslog.py +406 -37
- cribl_control_plane/models/inputwizwebhook.py +393 -0
- cribl_control_plane/models/jobsettings.py +83 -0
- cribl_control_plane/models/limits.py +127 -0
- cribl_control_plane/models/output.py +75 -77
- cribl_control_plane/models/outputgrafanacloud.py +565 -69
- cribl_control_plane/models/rediscachelimits.py +38 -0
- cribl_control_plane/models/redisconnectionlimits.py +20 -0
- cribl_control_plane/models/redislimits.py +14 -0
- cribl_control_plane/models/searchsettings.py +71 -0
- cribl_control_plane/models/serviceslimits.py +23 -0
- cribl_control_plane/models/systemsettings.py +358 -0
- cribl_control_plane/models/systemsettingsconf.py +311 -0
- cribl_control_plane/models/updatesystemsettingsauthop.py +24 -0
- cribl_control_plane/models/updatesystemsettingsconfop.py +24 -0
- cribl_control_plane/models/updatesystemsettingsgitsettingsop.py +24 -0
- cribl_control_plane/models/upgradegroupsettings.py +24 -0
- cribl_control_plane/models/upgradepackageurls.py +20 -0
- cribl_control_plane/models/upgradesettings.py +36 -0
- cribl_control_plane/packs.py +174 -0
- cribl_control_plane/sdk.py +3 -0
- cribl_control_plane/settings.py +23 -0
- cribl_control_plane/settings_auth.py +339 -0
- cribl_control_plane/settings_git.py +339 -0
- cribl_control_plane/system_sdk.py +17 -0
- {cribl_control_plane-0.0.37a1.dist-info → cribl_control_plane-0.0.38a1.dist-info}/METADATA +22 -5
- {cribl_control_plane-0.0.37a1.dist-info → cribl_control_plane-0.0.38a1.dist-info}/RECORD +46 -16
- {cribl_control_plane-0.0.37a1.dist-info → cribl_control_plane-0.0.38a1.dist-info}/WHEEL +0 -0
|
@@ -80,10 +80,8 @@ from .outputtcpjson import OutputTcpjson, OutputTcpjsonTypedDict
|
|
|
80
80
|
from .outputwavefront import OutputWavefront, OutputWavefrontTypedDict
|
|
81
81
|
from .outputwebhook import OutputWebhook, OutputWebhookTypedDict
|
|
82
82
|
from .outputxsiam import OutputXsiam, OutputXsiamTypedDict
|
|
83
|
-
from cribl_control_plane.utils import get_discriminator
|
|
84
|
-
from pydantic import Discriminator, Tag
|
|
85
83
|
from typing import Union
|
|
86
|
-
from typing_extensions import
|
|
84
|
+
from typing_extensions import TypeAliasType
|
|
87
85
|
|
|
88
86
|
|
|
89
87
|
OutputTypedDict = TypeAliasType(
|
|
@@ -92,25 +90,25 @@ OutputTypedDict = TypeAliasType(
|
|
|
92
90
|
OutputDevnullTypedDict,
|
|
93
91
|
OutputDefaultTypedDict,
|
|
94
92
|
OutputRouterTypedDict,
|
|
95
|
-
OutputSnmpTypedDict,
|
|
96
93
|
OutputNetflowTypedDict,
|
|
94
|
+
OutputSnmpTypedDict,
|
|
97
95
|
OutputDiskSpoolTypedDict,
|
|
98
96
|
OutputRingTypedDict,
|
|
97
|
+
OutputStatsdExtTypedDict,
|
|
99
98
|
OutputGraphiteTypedDict,
|
|
100
99
|
OutputStatsdTypedDict,
|
|
101
|
-
OutputStatsdExtTypedDict,
|
|
102
100
|
OutputGooglePubsubTypedDict,
|
|
103
101
|
OutputCriblTCPTypedDict,
|
|
104
|
-
OutputSplunkTypedDict,
|
|
105
102
|
OutputSnsTypedDict,
|
|
103
|
+
OutputSplunkTypedDict,
|
|
106
104
|
OutputCloudwatchTypedDict,
|
|
107
105
|
OutputSyslogTypedDict,
|
|
108
106
|
OutputAzureEventhubTypedDict,
|
|
109
107
|
OutputWavefrontTypedDict,
|
|
110
108
|
OutputSignalfxTypedDict,
|
|
111
109
|
OutputHoneycombTypedDict,
|
|
112
|
-
OutputTcpjsonTypedDict,
|
|
113
110
|
OutputSumoLogicTypedDict,
|
|
111
|
+
OutputTcpjsonTypedDict,
|
|
114
112
|
OutputHumioHecTypedDict,
|
|
115
113
|
OutputElasticCloudTypedDict,
|
|
116
114
|
OutputCrowdstrikeNextGenSiemTypedDict,
|
|
@@ -124,7 +122,6 @@ OutputTypedDict = TypeAliasType(
|
|
|
124
122
|
OutputSqsTypedDict,
|
|
125
123
|
OutputNewrelicTypedDict,
|
|
126
124
|
OutputCriblHTTPTypedDict,
|
|
127
|
-
OutputGrafanaCloudTypedDict,
|
|
128
125
|
OutputXsiamTypedDict,
|
|
129
126
|
OutputFilesystemTypedDict,
|
|
130
127
|
OutputDatasetTypedDict,
|
|
@@ -133,10 +130,10 @@ OutputTypedDict = TypeAliasType(
|
|
|
133
130
|
OutputServiceNowTypedDict,
|
|
134
131
|
OutputLokiTypedDict,
|
|
135
132
|
OutputDynatraceOtlpTypedDict,
|
|
136
|
-
OutputElasticTypedDict,
|
|
137
133
|
OutputGoogleChronicleTypedDict,
|
|
138
|
-
|
|
134
|
+
OutputElasticTypedDict,
|
|
139
135
|
OutputDatadogTypedDict,
|
|
136
|
+
OutputCriblLakeTypedDict,
|
|
140
137
|
OutputPrometheusTypedDict,
|
|
141
138
|
OutputMskTypedDict,
|
|
142
139
|
OutputSentinelOneAiSiemTypedDict,
|
|
@@ -153,76 +150,77 @@ OutputTypedDict = TypeAliasType(
|
|
|
153
150
|
OutputAzureDataExplorerTypedDict,
|
|
154
151
|
OutputWebhookTypedDict,
|
|
155
152
|
OutputGoogleCloudLoggingTypedDict,
|
|
153
|
+
OutputGrafanaCloudTypedDict,
|
|
156
154
|
],
|
|
157
155
|
)
|
|
158
156
|
|
|
159
157
|
|
|
160
|
-
Output =
|
|
158
|
+
Output = TypeAliasType(
|
|
159
|
+
"Output",
|
|
161
160
|
Union[
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
161
|
+
OutputDevnull,
|
|
162
|
+
OutputDefault,
|
|
163
|
+
OutputRouter,
|
|
164
|
+
OutputNetflow,
|
|
165
|
+
OutputSnmp,
|
|
166
|
+
OutputDiskSpool,
|
|
167
|
+
OutputRing,
|
|
168
|
+
OutputStatsdExt,
|
|
169
|
+
OutputGraphite,
|
|
170
|
+
OutputStatsd,
|
|
171
|
+
OutputGooglePubsub,
|
|
172
|
+
OutputCriblTCP,
|
|
173
|
+
OutputSns,
|
|
174
|
+
OutputSplunk,
|
|
175
|
+
OutputCloudwatch,
|
|
176
|
+
OutputSyslog,
|
|
177
|
+
OutputAzureEventhub,
|
|
178
|
+
OutputWavefront,
|
|
179
|
+
OutputSignalfx,
|
|
180
|
+
OutputHoneycomb,
|
|
181
|
+
OutputSumoLogic,
|
|
182
|
+
OutputTcpjson,
|
|
183
|
+
OutputHumioHec,
|
|
184
|
+
OutputElasticCloud,
|
|
185
|
+
OutputCrowdstrikeNextGenSiem,
|
|
186
|
+
OutputKinesis,
|
|
187
|
+
OutputConfluentCloud,
|
|
188
|
+
OutputKafka,
|
|
189
|
+
OutputExabeam,
|
|
190
|
+
OutputNewrelicEvents,
|
|
191
|
+
OutputAzureLogs,
|
|
192
|
+
OutputSplunkLb,
|
|
193
|
+
OutputSqs,
|
|
194
|
+
OutputNewrelic,
|
|
195
|
+
OutputCriblHTTP,
|
|
196
|
+
OutputXsiam,
|
|
197
|
+
OutputFilesystem,
|
|
198
|
+
OutputDataset,
|
|
199
|
+
OutputSplunkHec,
|
|
200
|
+
OutputDynatraceHTTP,
|
|
201
|
+
OutputServiceNow,
|
|
202
|
+
OutputLoki,
|
|
203
|
+
OutputDynatraceOtlp,
|
|
204
|
+
OutputGoogleChronicle,
|
|
205
|
+
OutputElastic,
|
|
206
|
+
OutputDatadog,
|
|
207
|
+
OutputCriblLake,
|
|
208
|
+
OutputPrometheus,
|
|
209
|
+
OutputMsk,
|
|
210
|
+
OutputSentinelOneAiSiem,
|
|
211
|
+
OutputSentinel,
|
|
212
|
+
OutputInfluxdb,
|
|
213
|
+
OutputGoogleCloudStorage,
|
|
214
|
+
OutputAzureBlob,
|
|
215
|
+
OutputOpenTelemetry,
|
|
216
|
+
OutputMinio,
|
|
217
|
+
OutputClickHouse,
|
|
218
|
+
OutputSecurityLake,
|
|
219
|
+
OutputDlS3,
|
|
220
|
+
OutputS3,
|
|
221
|
+
OutputAzureDataExplorer,
|
|
222
|
+
OutputWebhook,
|
|
223
|
+
OutputGoogleCloudLogging,
|
|
224
|
+
OutputGrafanaCloud,
|
|
226
225
|
],
|
|
227
|
-
|
|
228
|
-
]
|
|
226
|
+
)
|