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.

Files changed (46) hide show
  1. cribl_control_plane/_version.py +3 -3
  2. cribl_control_plane/commits.py +4 -4
  3. cribl_control_plane/cribl.py +513 -0
  4. cribl_control_plane/destinations.py +3 -3
  5. cribl_control_plane/{samples.py → destinations_samples.py} +1 -1
  6. cribl_control_plane/models/__init__.py +829 -189
  7. cribl_control_plane/models/authconfig.py +43 -0
  8. cribl_control_plane/models/commonservicelimitconfigs.py +14 -0
  9. cribl_control_plane/models/edgeheartbeatmetricsmode.py +11 -0
  10. cribl_control_plane/models/getpacksbyidop.py +37 -0
  11. cribl_control_plane/models/getsystemsettingsauthop.py +24 -0
  12. cribl_control_plane/models/getsystemsettingsconfop.py +24 -0
  13. cribl_control_plane/models/getsystemsettingsgitsettingsop.py +24 -0
  14. cribl_control_plane/models/gitopstype.py +10 -0
  15. cribl_control_plane/models/gitrevertparams.py +3 -3
  16. cribl_control_plane/models/gitsettings.py +70 -0
  17. cribl_control_plane/models/input.py +77 -76
  18. cribl_control_plane/models/inputgrafana.py +678 -67
  19. cribl_control_plane/models/inputsyslog.py +406 -37
  20. cribl_control_plane/models/inputwizwebhook.py +393 -0
  21. cribl_control_plane/models/jobsettings.py +83 -0
  22. cribl_control_plane/models/limits.py +127 -0
  23. cribl_control_plane/models/output.py +75 -77
  24. cribl_control_plane/models/outputgrafanacloud.py +565 -69
  25. cribl_control_plane/models/rediscachelimits.py +38 -0
  26. cribl_control_plane/models/redisconnectionlimits.py +20 -0
  27. cribl_control_plane/models/redislimits.py +14 -0
  28. cribl_control_plane/models/searchsettings.py +71 -0
  29. cribl_control_plane/models/serviceslimits.py +23 -0
  30. cribl_control_plane/models/systemsettings.py +358 -0
  31. cribl_control_plane/models/systemsettingsconf.py +311 -0
  32. cribl_control_plane/models/updatesystemsettingsauthop.py +24 -0
  33. cribl_control_plane/models/updatesystemsettingsconfop.py +24 -0
  34. cribl_control_plane/models/updatesystemsettingsgitsettingsop.py +24 -0
  35. cribl_control_plane/models/upgradegroupsettings.py +24 -0
  36. cribl_control_plane/models/upgradepackageurls.py +20 -0
  37. cribl_control_plane/models/upgradesettings.py +36 -0
  38. cribl_control_plane/packs.py +174 -0
  39. cribl_control_plane/sdk.py +3 -0
  40. cribl_control_plane/settings.py +23 -0
  41. cribl_control_plane/settings_auth.py +339 -0
  42. cribl_control_plane/settings_git.py +339 -0
  43. cribl_control_plane/system_sdk.py +17 -0
  44. {cribl_control_plane-0.0.37a1.dist-info → cribl_control_plane-0.0.38a1.dist-info}/METADATA +22 -5
  45. {cribl_control_plane-0.0.37a1.dist-info → cribl_control_plane-0.0.38a1.dist-info}/RECORD +46 -16
  46. {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 Annotated, TypeAliasType
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
- OutputCriblLakeTypedDict,
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 = Annotated[
158
+ Output = TypeAliasType(
159
+ "Output",
161
160
  Union[
162
- Annotated[OutputDefault, Tag("default")],
163
- Annotated[OutputWebhook, Tag("webhook")],
164
- Annotated[OutputSentinel, Tag("sentinel")],
165
- Annotated[OutputDevnull, Tag("devnull")],
166
- Annotated[OutputSyslog, Tag("syslog")],
167
- Annotated[OutputSplunk, Tag("splunk")],
168
- Annotated[OutputSplunkLb, Tag("splunk_lb")],
169
- Annotated[OutputSplunkHec, Tag("splunk_hec")],
170
- Annotated[OutputTcpjson, Tag("tcpjson")],
171
- Annotated[OutputWavefront, Tag("wavefront")],
172
- Annotated[OutputSignalfx, Tag("signalfx")],
173
- Annotated[OutputFilesystem, Tag("filesystem")],
174
- Annotated[OutputS3, Tag("s3")],
175
- Annotated[OutputAzureBlob, Tag("azure_blob")],
176
- Annotated[OutputAzureDataExplorer, Tag("azure_data_explorer")],
177
- Annotated[OutputAzureLogs, Tag("azure_logs")],
178
- Annotated[OutputKinesis, Tag("kinesis")],
179
- Annotated[OutputHoneycomb, Tag("honeycomb")],
180
- Annotated[OutputAzureEventhub, Tag("azure_eventhub")],
181
- Annotated[OutputGoogleChronicle, Tag("google_chronicle")],
182
- Annotated[OutputGoogleCloudStorage, Tag("google_cloud_storage")],
183
- Annotated[OutputGoogleCloudLogging, Tag("google_cloud_logging")],
184
- Annotated[OutputGooglePubsub, Tag("google_pubsub")],
185
- Annotated[OutputExabeam, Tag("exabeam")],
186
- Annotated[OutputKafka, Tag("kafka")],
187
- Annotated[OutputConfluentCloud, Tag("confluent_cloud")],
188
- Annotated[OutputMsk, Tag("msk")],
189
- Annotated[OutputElastic, Tag("elastic")],
190
- Annotated[OutputElasticCloud, Tag("elastic_cloud")],
191
- Annotated[OutputNewrelic, Tag("newrelic")],
192
- Annotated[OutputNewrelicEvents, Tag("newrelic_events")],
193
- Annotated[OutputInfluxdb, Tag("influxdb")],
194
- Annotated[OutputCloudwatch, Tag("cloudwatch")],
195
- Annotated[OutputMinio, Tag("minio")],
196
- Annotated[OutputStatsd, Tag("statsd")],
197
- Annotated[OutputStatsdExt, Tag("statsd_ext")],
198
- Annotated[OutputGraphite, Tag("graphite")],
199
- Annotated[OutputRouter, Tag("router")],
200
- Annotated[OutputSns, Tag("sns")],
201
- Annotated[OutputSqs, Tag("sqs")],
202
- Annotated[OutputSnmp, Tag("snmp")],
203
- Annotated[OutputSumoLogic, Tag("sumo_logic")],
204
- Annotated[OutputDatadog, Tag("datadog")],
205
- Annotated[OutputGrafanaCloud, Tag("grafana_cloud")],
206
- Annotated[OutputLoki, Tag("loki")],
207
- Annotated[OutputPrometheus, Tag("prometheus")],
208
- Annotated[OutputRing, Tag("ring")],
209
- Annotated[OutputOpenTelemetry, Tag("open_telemetry")],
210
- Annotated[OutputServiceNow, Tag("service_now")],
211
- Annotated[OutputDataset, Tag("dataset")],
212
- Annotated[OutputCriblTCP, Tag("cribl_tcp")],
213
- Annotated[OutputCriblHTTP, Tag("cribl_http")],
214
- Annotated[OutputHumioHec, Tag("humio_hec")],
215
- Annotated[OutputCrowdstrikeNextGenSiem, Tag("crowdstrike_next_gen_siem")],
216
- Annotated[OutputDlS3, Tag("dl_s3")],
217
- Annotated[OutputSecurityLake, Tag("security_lake")],
218
- Annotated[OutputCriblLake, Tag("cribl_lake")],
219
- Annotated[OutputDiskSpool, Tag("disk_spool")],
220
- Annotated[OutputClickHouse, Tag("click_house")],
221
- Annotated[OutputXsiam, Tag("xsiam")],
222
- Annotated[OutputNetflow, Tag("netflow")],
223
- Annotated[OutputDynatraceHTTP, Tag("dynatrace_http")],
224
- Annotated[OutputDynatraceOtlp, Tag("dynatrace_otlp")],
225
- Annotated[OutputSentinelOneAiSiem, Tag("sentinel_one_ai_siem")],
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
- Discriminator(lambda m: get_discriminator(m, "type", "type")),
228
- ]
226
+ )