splunk-soar-sdk 3.9.0__py3-none-any.whl → 3.9.1__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.
soar_sdk/params.py CHANGED
@@ -207,27 +207,27 @@ class Params(BaseModel):
207
207
  class OnPollParams(Params):
208
208
  """Canonical parameters for the special 'on poll' action."""
209
209
 
210
- start_time: int = Param(
210
+ start_time: int | None = Param(
211
211
  description="Start of time range, in epoch time (milliseconds).",
212
212
  required=False,
213
213
  )
214
214
 
215
- end_time: int = Param(
215
+ end_time: int | None = Param(
216
216
  description="End of time range, in epoch time (milliseconds).",
217
217
  required=False,
218
218
  )
219
219
 
220
- container_count: int = Param(
220
+ container_count: int | None = Param(
221
221
  description="Maximum number of container records to query for.",
222
222
  required=False,
223
223
  )
224
224
 
225
- artifact_count: int = Param(
225
+ artifact_count: int | None = Param(
226
226
  description="Maximum number of artifact records to query for.",
227
227
  required=False,
228
228
  )
229
229
 
230
- container_id: str = Param(
230
+ container_id: str | None = Param(
231
231
  description="Comma-separated list of container IDs to limit the ingestion to.",
232
232
  required=False,
233
233
  allow_list=True,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: splunk-soar-sdk
3
- Version: 3.9.0
3
+ Version: 3.9.1
4
4
  Summary: The official framework for developing and testing Splunk SOAR Apps
5
5
  Project-URL: Homepage, https://github.com/phantomcyber/splunk-soar-sdk
6
6
  Project-URL: Documentation, https://github.com/phantomcyber/splunk-soar-sdk
@@ -16,7 +16,7 @@ soar_sdk/exceptions.py,sha256=413-AcIM7IMixoyVk_0yDaqsUhommb784uH5vSv18lU,2129
16
16
  soar_sdk/field_utils.py,sha256=qLCzAPlx4CPJ6pcy5hWWNFOB1XQMpgEdGS2_xL5F8YE,2913
17
17
  soar_sdk/input_spec.py,sha256=vvmE8AWk2VFRgsvh-Bn1eIMDAHkV-1Y73_8xM_8qVZI,4678
18
18
  soar_sdk/logging.py,sha256=Y_5RLT1Z0UcRTxDZpwXwDae7ZtwOs91Hs-UU4UOiMuk,11425
19
- soar_sdk/params.py,sha256=UN2_w9Ipsk9Xtux313I5_lG3SAgWoYJD3fY0AQyU3YU,12296
19
+ soar_sdk/params.py,sha256=JsisAJJfGz_4GlXjYjvmcNH5lwfFcLTrlEPitD6lu_w,12331
20
20
  soar_sdk/paths.py,sha256=XhpanQCAiTXaulRx440oKu36mnll7P05TethHXgMpgQ,239
21
21
  soar_sdk/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
22
  soar_sdk/types.py,sha256=wN-zV27IamDR67hj4QDqOWA04EVnJwcFhWOighMYEJc,616
@@ -116,8 +116,8 @@ soar_sdk/views/components/pie_chart.py,sha256=LVTeHVJN6nf2vjUs9y7PDBhS0U1fKW750l
116
116
  soar_sdk/webhooks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
117
117
  soar_sdk/webhooks/models.py,sha256=j3kbvYmcOlcj3gQYKtrv7iS-lDavMKYNLdCNMy_I2Hc,4542
118
118
  soar_sdk/webhooks/routing.py,sha256=OjezhuAb8wzW0MnbGSnIWeAH3uJcu-Sb7s3w9zoiPVM,6873
119
- splunk_soar_sdk-3.9.0.dist-info/METADATA,sha256=wfLVvI64ugKvPBMH7-hVXS7Qt3Y3BhNfH8MFECYW5Js,7544
120
- splunk_soar_sdk-3.9.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
121
- splunk_soar_sdk-3.9.0.dist-info/entry_points.txt,sha256=CgBjo2ZWpYNkt9TgvToL26h2Tg1yt8FbvYTb5NVgNuc,51
122
- splunk_soar_sdk-3.9.0.dist-info/licenses/LICENSE,sha256=gNCGrGhrSQb1PUzBOByVUN1tvaliwLZfna-QU2r2hQ8,11345
123
- splunk_soar_sdk-3.9.0.dist-info/RECORD,,
119
+ splunk_soar_sdk-3.9.1.dist-info/METADATA,sha256=nsmlwAnj8UwSpqqRmiLgMWnv9KZZYrlF9b2k9217ugY,7544
120
+ splunk_soar_sdk-3.9.1.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
121
+ splunk_soar_sdk-3.9.1.dist-info/entry_points.txt,sha256=CgBjo2ZWpYNkt9TgvToL26h2Tg1yt8FbvYTb5NVgNuc,51
122
+ splunk_soar_sdk-3.9.1.dist-info/licenses/LICENSE,sha256=gNCGrGhrSQb1PUzBOByVUN1tvaliwLZfna-QU2r2hQ8,11345
123
+ splunk_soar_sdk-3.9.1.dist-info/RECORD,,