pulumi-splunk 1.3.0a1743575469__py3-none-any.whl → 1.3.0a1744266748__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 pulumi-splunk might be problematic. Click here for more details.

Files changed (38) hide show
  1. pulumi_splunk/__init__.py +1 -0
  2. pulumi_splunk/_inputs.py +1065 -1064
  3. pulumi_splunk/admin_saml_groups.py +29 -28
  4. pulumi_splunk/apps_local.py +169 -168
  5. pulumi_splunk/authentication_users.py +127 -126
  6. pulumi_splunk/authorization_roles.py +183 -182
  7. pulumi_splunk/config/__init__.py +1 -0
  8. pulumi_splunk/config/__init__.pyi +1 -0
  9. pulumi_splunk/config/vars.py +1 -0
  10. pulumi_splunk/configs_conf.py +29 -28
  11. pulumi_splunk/data_ui_views.py +29 -28
  12. pulumi_splunk/generic_acl.py +15 -14
  13. pulumi_splunk/global_http_event_collector.py +99 -98
  14. pulumi_splunk/indexes.py +533 -532
  15. pulumi_splunk/inputs_http_event_collector.py +127 -126
  16. pulumi_splunk/inputs_monitor.py +211 -210
  17. pulumi_splunk/inputs_script.py +127 -126
  18. pulumi_splunk/inputs_tcp_cooked.py +71 -70
  19. pulumi_splunk/inputs_tcp_raw.py +141 -140
  20. pulumi_splunk/inputs_tcp_splunk_tcp_token.py +29 -28
  21. pulumi_splunk/inputs_tcp_ssl.py +71 -70
  22. pulumi_splunk/inputs_udp.py +155 -154
  23. pulumi_splunk/lookup_definition.py +29 -28
  24. pulumi_splunk/lookup_table_file.py +57 -56
  25. pulumi_splunk/outputs.py +647 -646
  26. pulumi_splunk/outputs_tcp_default.py +113 -112
  27. pulumi_splunk/outputs_tcp_group.py +141 -140
  28. pulumi_splunk/outputs_tcp_server.py +141 -140
  29. pulumi_splunk/outputs_tcp_syslog.py +99 -98
  30. pulumi_splunk/provider.py +47 -46
  31. pulumi_splunk/pulumi-plugin.json +1 -1
  32. pulumi_splunk/saved_searches.py +2304 -2303
  33. pulumi_splunk/sh_indexes_manager.py +57 -56
  34. {pulumi_splunk-1.3.0a1743575469.dist-info → pulumi_splunk-1.3.0a1744266748.dist-info}/METADATA +1 -1
  35. pulumi_splunk-1.3.0a1744266748.dist-info/RECORD +39 -0
  36. pulumi_splunk-1.3.0a1743575469.dist-info/RECORD +0 -39
  37. {pulumi_splunk-1.3.0a1743575469.dist-info → pulumi_splunk-1.3.0a1744266748.dist-info}/WHEEL +0 -0
  38. {pulumi_splunk-1.3.0a1743575469.dist-info → pulumi_splunk-1.3.0a1744266748.dist-info}/top_level.txt +0 -0
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -22,39 +23,39 @@ __all__ = ['InputsTcpRawArgs', 'InputsTcpRaw']
22
23
  class InputsTcpRawArgs:
23
24
  def __init__(__self__, *,
24
25
  acl: Optional[pulumi.Input['InputsTcpRawAclArgs']] = None,
25
- connection_host: Optional[pulumi.Input[str]] = None,
26
- disabled: Optional[pulumi.Input[bool]] = None,
27
- host: Optional[pulumi.Input[str]] = None,
28
- index: Optional[pulumi.Input[str]] = None,
29
- name: Optional[pulumi.Input[str]] = None,
30
- queue: Optional[pulumi.Input[str]] = None,
31
- raw_tcp_done_timeout: Optional[pulumi.Input[int]] = None,
32
- restrict_to_host: Optional[pulumi.Input[str]] = None,
33
- source: Optional[pulumi.Input[str]] = None,
34
- sourcetype: Optional[pulumi.Input[str]] = None):
26
+ connection_host: Optional[pulumi.Input[builtins.str]] = None,
27
+ disabled: Optional[pulumi.Input[builtins.bool]] = None,
28
+ host: Optional[pulumi.Input[builtins.str]] = None,
29
+ index: Optional[pulumi.Input[builtins.str]] = None,
30
+ name: Optional[pulumi.Input[builtins.str]] = None,
31
+ queue: Optional[pulumi.Input[builtins.str]] = None,
32
+ raw_tcp_done_timeout: Optional[pulumi.Input[builtins.int]] = None,
33
+ restrict_to_host: Optional[pulumi.Input[builtins.str]] = None,
34
+ source: Optional[pulumi.Input[builtins.str]] = None,
35
+ sourcetype: Optional[pulumi.Input[builtins.str]] = None):
35
36
  """
36
37
  The set of arguments for constructing a InputsTcpRaw resource.
37
38
  :param pulumi.Input['InputsTcpRawAclArgs'] acl: The app/user context that is the namespace for the resource
38
- :param pulumi.Input[str] connection_host: Valid values: (ip | dns | none)
39
+ :param pulumi.Input[builtins.str] connection_host: Valid values: (ip | dns | none)
39
40
  Set the host for the remote server that is sending data.
40
41
  ip sets the host to the IP address of the remote server sending data.
41
42
  dns sets the host to the reverse DNS entry for the IP address of the remote server sending data.
42
43
  none leaves the host as specified in inputs.conf, which is typically the Splunk system hostname.
43
44
  Default value is dns.
44
- :param pulumi.Input[bool] disabled: Indicates if input is disabled.
45
- :param pulumi.Input[str] host: Host from which the indexer gets data.
46
- :param pulumi.Input[str] index: Index to store generated events. Defaults to default.
47
- :param pulumi.Input[str] name: The input port which receives raw data.
48
- :param pulumi.Input[str] queue: Valid values: (parsingQueue | indexQueue)
45
+ :param pulumi.Input[builtins.bool] disabled: Indicates if input is disabled.
46
+ :param pulumi.Input[builtins.str] host: Host from which the indexer gets data.
47
+ :param pulumi.Input[builtins.str] index: Index to store generated events. Defaults to default.
48
+ :param pulumi.Input[builtins.str] name: The input port which receives raw data.
49
+ :param pulumi.Input[builtins.str] queue: Valid values: (parsingQueue | indexQueue)
49
50
  Specifies where the input processor should deposit the events it reads. Defaults to parsingQueue.
50
51
  Set queue to parsingQueue to apply props.conf and other parsing rules to your data. For more information about props.conf and rules for timestamping and linebreaking, refer to props.conf and the online documentation at "Monitor files and directories with inputs.conf"
51
52
  Set queue to indexQueue to send your data directly into the index.
52
- :param pulumi.Input[int] raw_tcp_done_timeout: Specifies in seconds the timeout value for adding a Done-key. Default value is 10 seconds.
53
+ :param pulumi.Input[builtins.int] raw_tcp_done_timeout: Specifies in seconds the timeout value for adding a Done-key. Default value is 10 seconds.
53
54
  If a connection over the port specified by name remains idle after receiving data for specified number of seconds, it adds a Done-key. This implies the last event is completely received.
54
- :param pulumi.Input[str] restrict_to_host: Allows for restricting this input to only accept data from the host specified here.
55
- :param pulumi.Input[str] source: Sets the source key/field for events from this input. Defaults to the input file path.
55
+ :param pulumi.Input[builtins.str] restrict_to_host: Allows for restricting this input to only accept data from the host specified here.
56
+ :param pulumi.Input[builtins.str] source: Sets the source key/field for events from this input. Defaults to the input file path.
56
57
  Sets the source key initial value. The key is used during parsing/indexing, in particular to set the source field during indexing. It is also the source field used at search time. As a convenience, the chosen string is prepended with 'source::'.
57
- :param pulumi.Input[str] sourcetype: Set the source type for events from this input.
58
+ :param pulumi.Input[builtins.str] sourcetype: Set the source type for events from this input.
58
59
  "sourcetype=" is automatically prepended to <string>.
59
60
  Defaults to audittrail (if signedaudit=true) or fschange (if signedaudit=false).
60
61
  """
@@ -95,7 +96,7 @@ class InputsTcpRawArgs:
95
96
 
96
97
  @property
97
98
  @pulumi.getter(name="connectionHost")
98
- def connection_host(self) -> Optional[pulumi.Input[str]]:
99
+ def connection_host(self) -> Optional[pulumi.Input[builtins.str]]:
99
100
  """
100
101
  Valid values: (ip | dns | none)
101
102
  Set the host for the remote server that is sending data.
@@ -107,60 +108,60 @@ class InputsTcpRawArgs:
107
108
  return pulumi.get(self, "connection_host")
108
109
 
109
110
  @connection_host.setter
110
- def connection_host(self, value: Optional[pulumi.Input[str]]):
111
+ def connection_host(self, value: Optional[pulumi.Input[builtins.str]]):
111
112
  pulumi.set(self, "connection_host", value)
112
113
 
113
114
  @property
114
115
  @pulumi.getter
115
- def disabled(self) -> Optional[pulumi.Input[bool]]:
116
+ def disabled(self) -> Optional[pulumi.Input[builtins.bool]]:
116
117
  """
117
118
  Indicates if input is disabled.
118
119
  """
119
120
  return pulumi.get(self, "disabled")
120
121
 
121
122
  @disabled.setter
122
- def disabled(self, value: Optional[pulumi.Input[bool]]):
123
+ def disabled(self, value: Optional[pulumi.Input[builtins.bool]]):
123
124
  pulumi.set(self, "disabled", value)
124
125
 
125
126
  @property
126
127
  @pulumi.getter
127
- def host(self) -> Optional[pulumi.Input[str]]:
128
+ def host(self) -> Optional[pulumi.Input[builtins.str]]:
128
129
  """
129
130
  Host from which the indexer gets data.
130
131
  """
131
132
  return pulumi.get(self, "host")
132
133
 
133
134
  @host.setter
134
- def host(self, value: Optional[pulumi.Input[str]]):
135
+ def host(self, value: Optional[pulumi.Input[builtins.str]]):
135
136
  pulumi.set(self, "host", value)
136
137
 
137
138
  @property
138
139
  @pulumi.getter
139
- def index(self) -> Optional[pulumi.Input[str]]:
140
+ def index(self) -> Optional[pulumi.Input[builtins.str]]:
140
141
  """
141
142
  Index to store generated events. Defaults to default.
142
143
  """
143
144
  return pulumi.get(self, "index")
144
145
 
145
146
  @index.setter
146
- def index(self, value: Optional[pulumi.Input[str]]):
147
+ def index(self, value: Optional[pulumi.Input[builtins.str]]):
147
148
  pulumi.set(self, "index", value)
148
149
 
149
150
  @property
150
151
  @pulumi.getter
151
- def name(self) -> Optional[pulumi.Input[str]]:
152
+ def name(self) -> Optional[pulumi.Input[builtins.str]]:
152
153
  """
153
154
  The input port which receives raw data.
154
155
  """
155
156
  return pulumi.get(self, "name")
156
157
 
157
158
  @name.setter
158
- def name(self, value: Optional[pulumi.Input[str]]):
159
+ def name(self, value: Optional[pulumi.Input[builtins.str]]):
159
160
  pulumi.set(self, "name", value)
160
161
 
161
162
  @property
162
163
  @pulumi.getter
163
- def queue(self) -> Optional[pulumi.Input[str]]:
164
+ def queue(self) -> Optional[pulumi.Input[builtins.str]]:
164
165
  """
165
166
  Valid values: (parsingQueue | indexQueue)
166
167
  Specifies where the input processor should deposit the events it reads. Defaults to parsingQueue.
@@ -170,12 +171,12 @@ class InputsTcpRawArgs:
170
171
  return pulumi.get(self, "queue")
171
172
 
172
173
  @queue.setter
173
- def queue(self, value: Optional[pulumi.Input[str]]):
174
+ def queue(self, value: Optional[pulumi.Input[builtins.str]]):
174
175
  pulumi.set(self, "queue", value)
175
176
 
176
177
  @property
177
178
  @pulumi.getter(name="rawTcpDoneTimeout")
178
- def raw_tcp_done_timeout(self) -> Optional[pulumi.Input[int]]:
179
+ def raw_tcp_done_timeout(self) -> Optional[pulumi.Input[builtins.int]]:
179
180
  """
180
181
  Specifies in seconds the timeout value for adding a Done-key. Default value is 10 seconds.
181
182
  If a connection over the port specified by name remains idle after receiving data for specified number of seconds, it adds a Done-key. This implies the last event is completely received.
@@ -183,24 +184,24 @@ class InputsTcpRawArgs:
183
184
  return pulumi.get(self, "raw_tcp_done_timeout")
184
185
 
185
186
  @raw_tcp_done_timeout.setter
186
- def raw_tcp_done_timeout(self, value: Optional[pulumi.Input[int]]):
187
+ def raw_tcp_done_timeout(self, value: Optional[pulumi.Input[builtins.int]]):
187
188
  pulumi.set(self, "raw_tcp_done_timeout", value)
188
189
 
189
190
  @property
190
191
  @pulumi.getter(name="restrictToHost")
191
- def restrict_to_host(self) -> Optional[pulumi.Input[str]]:
192
+ def restrict_to_host(self) -> Optional[pulumi.Input[builtins.str]]:
192
193
  """
193
194
  Allows for restricting this input to only accept data from the host specified here.
194
195
  """
195
196
  return pulumi.get(self, "restrict_to_host")
196
197
 
197
198
  @restrict_to_host.setter
198
- def restrict_to_host(self, value: Optional[pulumi.Input[str]]):
199
+ def restrict_to_host(self, value: Optional[pulumi.Input[builtins.str]]):
199
200
  pulumi.set(self, "restrict_to_host", value)
200
201
 
201
202
  @property
202
203
  @pulumi.getter
203
- def source(self) -> Optional[pulumi.Input[str]]:
204
+ def source(self) -> Optional[pulumi.Input[builtins.str]]:
204
205
  """
205
206
  Sets the source key/field for events from this input. Defaults to the input file path.
206
207
  Sets the source key initial value. The key is used during parsing/indexing, in particular to set the source field during indexing. It is also the source field used at search time. As a convenience, the chosen string is prepended with 'source::'.
@@ -208,12 +209,12 @@ class InputsTcpRawArgs:
208
209
  return pulumi.get(self, "source")
209
210
 
210
211
  @source.setter
211
- def source(self, value: Optional[pulumi.Input[str]]):
212
+ def source(self, value: Optional[pulumi.Input[builtins.str]]):
212
213
  pulumi.set(self, "source", value)
213
214
 
214
215
  @property
215
216
  @pulumi.getter
216
- def sourcetype(self) -> Optional[pulumi.Input[str]]:
217
+ def sourcetype(self) -> Optional[pulumi.Input[builtins.str]]:
217
218
  """
218
219
  Set the source type for events from this input.
219
220
  "sourcetype=" is automatically prepended to <string>.
@@ -222,7 +223,7 @@ class InputsTcpRawArgs:
222
223
  return pulumi.get(self, "sourcetype")
223
224
 
224
225
  @sourcetype.setter
225
- def sourcetype(self, value: Optional[pulumi.Input[str]]):
226
+ def sourcetype(self, value: Optional[pulumi.Input[builtins.str]]):
226
227
  pulumi.set(self, "sourcetype", value)
227
228
 
228
229
 
@@ -230,39 +231,39 @@ class InputsTcpRawArgs:
230
231
  class _InputsTcpRawState:
231
232
  def __init__(__self__, *,
232
233
  acl: Optional[pulumi.Input['InputsTcpRawAclArgs']] = None,
233
- connection_host: Optional[pulumi.Input[str]] = None,
234
- disabled: Optional[pulumi.Input[bool]] = None,
235
- host: Optional[pulumi.Input[str]] = None,
236
- index: Optional[pulumi.Input[str]] = None,
237
- name: Optional[pulumi.Input[str]] = None,
238
- queue: Optional[pulumi.Input[str]] = None,
239
- raw_tcp_done_timeout: Optional[pulumi.Input[int]] = None,
240
- restrict_to_host: Optional[pulumi.Input[str]] = None,
241
- source: Optional[pulumi.Input[str]] = None,
242
- sourcetype: Optional[pulumi.Input[str]] = None):
234
+ connection_host: Optional[pulumi.Input[builtins.str]] = None,
235
+ disabled: Optional[pulumi.Input[builtins.bool]] = None,
236
+ host: Optional[pulumi.Input[builtins.str]] = None,
237
+ index: Optional[pulumi.Input[builtins.str]] = None,
238
+ name: Optional[pulumi.Input[builtins.str]] = None,
239
+ queue: Optional[pulumi.Input[builtins.str]] = None,
240
+ raw_tcp_done_timeout: Optional[pulumi.Input[builtins.int]] = None,
241
+ restrict_to_host: Optional[pulumi.Input[builtins.str]] = None,
242
+ source: Optional[pulumi.Input[builtins.str]] = None,
243
+ sourcetype: Optional[pulumi.Input[builtins.str]] = None):
243
244
  """
244
245
  Input properties used for looking up and filtering InputsTcpRaw resources.
245
246
  :param pulumi.Input['InputsTcpRawAclArgs'] acl: The app/user context that is the namespace for the resource
246
- :param pulumi.Input[str] connection_host: Valid values: (ip | dns | none)
247
+ :param pulumi.Input[builtins.str] connection_host: Valid values: (ip | dns | none)
247
248
  Set the host for the remote server that is sending data.
248
249
  ip sets the host to the IP address of the remote server sending data.
249
250
  dns sets the host to the reverse DNS entry for the IP address of the remote server sending data.
250
251
  none leaves the host as specified in inputs.conf, which is typically the Splunk system hostname.
251
252
  Default value is dns.
252
- :param pulumi.Input[bool] disabled: Indicates if input is disabled.
253
- :param pulumi.Input[str] host: Host from which the indexer gets data.
254
- :param pulumi.Input[str] index: Index to store generated events. Defaults to default.
255
- :param pulumi.Input[str] name: The input port which receives raw data.
256
- :param pulumi.Input[str] queue: Valid values: (parsingQueue | indexQueue)
253
+ :param pulumi.Input[builtins.bool] disabled: Indicates if input is disabled.
254
+ :param pulumi.Input[builtins.str] host: Host from which the indexer gets data.
255
+ :param pulumi.Input[builtins.str] index: Index to store generated events. Defaults to default.
256
+ :param pulumi.Input[builtins.str] name: The input port which receives raw data.
257
+ :param pulumi.Input[builtins.str] queue: Valid values: (parsingQueue | indexQueue)
257
258
  Specifies where the input processor should deposit the events it reads. Defaults to parsingQueue.
258
259
  Set queue to parsingQueue to apply props.conf and other parsing rules to your data. For more information about props.conf and rules for timestamping and linebreaking, refer to props.conf and the online documentation at "Monitor files and directories with inputs.conf"
259
260
  Set queue to indexQueue to send your data directly into the index.
260
- :param pulumi.Input[int] raw_tcp_done_timeout: Specifies in seconds the timeout value for adding a Done-key. Default value is 10 seconds.
261
+ :param pulumi.Input[builtins.int] raw_tcp_done_timeout: Specifies in seconds the timeout value for adding a Done-key. Default value is 10 seconds.
261
262
  If a connection over the port specified by name remains idle after receiving data for specified number of seconds, it adds a Done-key. This implies the last event is completely received.
262
- :param pulumi.Input[str] restrict_to_host: Allows for restricting this input to only accept data from the host specified here.
263
- :param pulumi.Input[str] source: Sets the source key/field for events from this input. Defaults to the input file path.
263
+ :param pulumi.Input[builtins.str] restrict_to_host: Allows for restricting this input to only accept data from the host specified here.
264
+ :param pulumi.Input[builtins.str] source: Sets the source key/field for events from this input. Defaults to the input file path.
264
265
  Sets the source key initial value. The key is used during parsing/indexing, in particular to set the source field during indexing. It is also the source field used at search time. As a convenience, the chosen string is prepended with 'source::'.
265
- :param pulumi.Input[str] sourcetype: Set the source type for events from this input.
266
+ :param pulumi.Input[builtins.str] sourcetype: Set the source type for events from this input.
266
267
  "sourcetype=" is automatically prepended to <string>.
267
268
  Defaults to audittrail (if signedaudit=true) or fschange (if signedaudit=false).
268
269
  """
@@ -303,7 +304,7 @@ class _InputsTcpRawState:
303
304
 
304
305
  @property
305
306
  @pulumi.getter(name="connectionHost")
306
- def connection_host(self) -> Optional[pulumi.Input[str]]:
307
+ def connection_host(self) -> Optional[pulumi.Input[builtins.str]]:
307
308
  """
308
309
  Valid values: (ip | dns | none)
309
310
  Set the host for the remote server that is sending data.
@@ -315,60 +316,60 @@ class _InputsTcpRawState:
315
316
  return pulumi.get(self, "connection_host")
316
317
 
317
318
  @connection_host.setter
318
- def connection_host(self, value: Optional[pulumi.Input[str]]):
319
+ def connection_host(self, value: Optional[pulumi.Input[builtins.str]]):
319
320
  pulumi.set(self, "connection_host", value)
320
321
 
321
322
  @property
322
323
  @pulumi.getter
323
- def disabled(self) -> Optional[pulumi.Input[bool]]:
324
+ def disabled(self) -> Optional[pulumi.Input[builtins.bool]]:
324
325
  """
325
326
  Indicates if input is disabled.
326
327
  """
327
328
  return pulumi.get(self, "disabled")
328
329
 
329
330
  @disabled.setter
330
- def disabled(self, value: Optional[pulumi.Input[bool]]):
331
+ def disabled(self, value: Optional[pulumi.Input[builtins.bool]]):
331
332
  pulumi.set(self, "disabled", value)
332
333
 
333
334
  @property
334
335
  @pulumi.getter
335
- def host(self) -> Optional[pulumi.Input[str]]:
336
+ def host(self) -> Optional[pulumi.Input[builtins.str]]:
336
337
  """
337
338
  Host from which the indexer gets data.
338
339
  """
339
340
  return pulumi.get(self, "host")
340
341
 
341
342
  @host.setter
342
- def host(self, value: Optional[pulumi.Input[str]]):
343
+ def host(self, value: Optional[pulumi.Input[builtins.str]]):
343
344
  pulumi.set(self, "host", value)
344
345
 
345
346
  @property
346
347
  @pulumi.getter
347
- def index(self) -> Optional[pulumi.Input[str]]:
348
+ def index(self) -> Optional[pulumi.Input[builtins.str]]:
348
349
  """
349
350
  Index to store generated events. Defaults to default.
350
351
  """
351
352
  return pulumi.get(self, "index")
352
353
 
353
354
  @index.setter
354
- def index(self, value: Optional[pulumi.Input[str]]):
355
+ def index(self, value: Optional[pulumi.Input[builtins.str]]):
355
356
  pulumi.set(self, "index", value)
356
357
 
357
358
  @property
358
359
  @pulumi.getter
359
- def name(self) -> Optional[pulumi.Input[str]]:
360
+ def name(self) -> Optional[pulumi.Input[builtins.str]]:
360
361
  """
361
362
  The input port which receives raw data.
362
363
  """
363
364
  return pulumi.get(self, "name")
364
365
 
365
366
  @name.setter
366
- def name(self, value: Optional[pulumi.Input[str]]):
367
+ def name(self, value: Optional[pulumi.Input[builtins.str]]):
367
368
  pulumi.set(self, "name", value)
368
369
 
369
370
  @property
370
371
  @pulumi.getter
371
- def queue(self) -> Optional[pulumi.Input[str]]:
372
+ def queue(self) -> Optional[pulumi.Input[builtins.str]]:
372
373
  """
373
374
  Valid values: (parsingQueue | indexQueue)
374
375
  Specifies where the input processor should deposit the events it reads. Defaults to parsingQueue.
@@ -378,12 +379,12 @@ class _InputsTcpRawState:
378
379
  return pulumi.get(self, "queue")
379
380
 
380
381
  @queue.setter
381
- def queue(self, value: Optional[pulumi.Input[str]]):
382
+ def queue(self, value: Optional[pulumi.Input[builtins.str]]):
382
383
  pulumi.set(self, "queue", value)
383
384
 
384
385
  @property
385
386
  @pulumi.getter(name="rawTcpDoneTimeout")
386
- def raw_tcp_done_timeout(self) -> Optional[pulumi.Input[int]]:
387
+ def raw_tcp_done_timeout(self) -> Optional[pulumi.Input[builtins.int]]:
387
388
  """
388
389
  Specifies in seconds the timeout value for adding a Done-key. Default value is 10 seconds.
389
390
  If a connection over the port specified by name remains idle after receiving data for specified number of seconds, it adds a Done-key. This implies the last event is completely received.
@@ -391,24 +392,24 @@ class _InputsTcpRawState:
391
392
  return pulumi.get(self, "raw_tcp_done_timeout")
392
393
 
393
394
  @raw_tcp_done_timeout.setter
394
- def raw_tcp_done_timeout(self, value: Optional[pulumi.Input[int]]):
395
+ def raw_tcp_done_timeout(self, value: Optional[pulumi.Input[builtins.int]]):
395
396
  pulumi.set(self, "raw_tcp_done_timeout", value)
396
397
 
397
398
  @property
398
399
  @pulumi.getter(name="restrictToHost")
399
- def restrict_to_host(self) -> Optional[pulumi.Input[str]]:
400
+ def restrict_to_host(self) -> Optional[pulumi.Input[builtins.str]]:
400
401
  """
401
402
  Allows for restricting this input to only accept data from the host specified here.
402
403
  """
403
404
  return pulumi.get(self, "restrict_to_host")
404
405
 
405
406
  @restrict_to_host.setter
406
- def restrict_to_host(self, value: Optional[pulumi.Input[str]]):
407
+ def restrict_to_host(self, value: Optional[pulumi.Input[builtins.str]]):
407
408
  pulumi.set(self, "restrict_to_host", value)
408
409
 
409
410
  @property
410
411
  @pulumi.getter
411
- def source(self) -> Optional[pulumi.Input[str]]:
412
+ def source(self) -> Optional[pulumi.Input[builtins.str]]:
412
413
  """
413
414
  Sets the source key/field for events from this input. Defaults to the input file path.
414
415
  Sets the source key initial value. The key is used during parsing/indexing, in particular to set the source field during indexing. It is also the source field used at search time. As a convenience, the chosen string is prepended with 'source::'.
@@ -416,12 +417,12 @@ class _InputsTcpRawState:
416
417
  return pulumi.get(self, "source")
417
418
 
418
419
  @source.setter
419
- def source(self, value: Optional[pulumi.Input[str]]):
420
+ def source(self, value: Optional[pulumi.Input[builtins.str]]):
420
421
  pulumi.set(self, "source", value)
421
422
 
422
423
  @property
423
424
  @pulumi.getter
424
- def sourcetype(self) -> Optional[pulumi.Input[str]]:
425
+ def sourcetype(self) -> Optional[pulumi.Input[builtins.str]]:
425
426
  """
426
427
  Set the source type for events from this input.
427
428
  "sourcetype=" is automatically prepended to <string>.
@@ -430,7 +431,7 @@ class _InputsTcpRawState:
430
431
  return pulumi.get(self, "sourcetype")
431
432
 
432
433
  @sourcetype.setter
433
- def sourcetype(self, value: Optional[pulumi.Input[str]]):
434
+ def sourcetype(self, value: Optional[pulumi.Input[builtins.str]]):
434
435
  pulumi.set(self, "sourcetype", value)
435
436
 
436
437
 
@@ -440,16 +441,16 @@ class InputsTcpRaw(pulumi.CustomResource):
440
441
  resource_name: str,
441
442
  opts: Optional[pulumi.ResourceOptions] = None,
442
443
  acl: Optional[pulumi.Input[Union['InputsTcpRawAclArgs', 'InputsTcpRawAclArgsDict']]] = None,
443
- connection_host: Optional[pulumi.Input[str]] = None,
444
- disabled: Optional[pulumi.Input[bool]] = None,
445
- host: Optional[pulumi.Input[str]] = None,
446
- index: Optional[pulumi.Input[str]] = None,
447
- name: Optional[pulumi.Input[str]] = None,
448
- queue: Optional[pulumi.Input[str]] = None,
449
- raw_tcp_done_timeout: Optional[pulumi.Input[int]] = None,
450
- restrict_to_host: Optional[pulumi.Input[str]] = None,
451
- source: Optional[pulumi.Input[str]] = None,
452
- sourcetype: Optional[pulumi.Input[str]] = None,
444
+ connection_host: Optional[pulumi.Input[builtins.str]] = None,
445
+ disabled: Optional[pulumi.Input[builtins.bool]] = None,
446
+ host: Optional[pulumi.Input[builtins.str]] = None,
447
+ index: Optional[pulumi.Input[builtins.str]] = None,
448
+ name: Optional[pulumi.Input[builtins.str]] = None,
449
+ queue: Optional[pulumi.Input[builtins.str]] = None,
450
+ raw_tcp_done_timeout: Optional[pulumi.Input[builtins.int]] = None,
451
+ restrict_to_host: Optional[pulumi.Input[builtins.str]] = None,
452
+ source: Optional[pulumi.Input[builtins.str]] = None,
453
+ sourcetype: Optional[pulumi.Input[builtins.str]] = None,
453
454
  __props__=None):
454
455
  """
455
456
  ## # Resource: InputsTcpRaw
@@ -474,26 +475,26 @@ class InputsTcpRaw(pulumi.CustomResource):
474
475
  :param str resource_name: The name of the resource.
475
476
  :param pulumi.ResourceOptions opts: Options for the resource.
476
477
  :param pulumi.Input[Union['InputsTcpRawAclArgs', 'InputsTcpRawAclArgsDict']] acl: The app/user context that is the namespace for the resource
477
- :param pulumi.Input[str] connection_host: Valid values: (ip | dns | none)
478
+ :param pulumi.Input[builtins.str] connection_host: Valid values: (ip | dns | none)
478
479
  Set the host for the remote server that is sending data.
479
480
  ip sets the host to the IP address of the remote server sending data.
480
481
  dns sets the host to the reverse DNS entry for the IP address of the remote server sending data.
481
482
  none leaves the host as specified in inputs.conf, which is typically the Splunk system hostname.
482
483
  Default value is dns.
483
- :param pulumi.Input[bool] disabled: Indicates if input is disabled.
484
- :param pulumi.Input[str] host: Host from which the indexer gets data.
485
- :param pulumi.Input[str] index: Index to store generated events. Defaults to default.
486
- :param pulumi.Input[str] name: The input port which receives raw data.
487
- :param pulumi.Input[str] queue: Valid values: (parsingQueue | indexQueue)
484
+ :param pulumi.Input[builtins.bool] disabled: Indicates if input is disabled.
485
+ :param pulumi.Input[builtins.str] host: Host from which the indexer gets data.
486
+ :param pulumi.Input[builtins.str] index: Index to store generated events. Defaults to default.
487
+ :param pulumi.Input[builtins.str] name: The input port which receives raw data.
488
+ :param pulumi.Input[builtins.str] queue: Valid values: (parsingQueue | indexQueue)
488
489
  Specifies where the input processor should deposit the events it reads. Defaults to parsingQueue.
489
490
  Set queue to parsingQueue to apply props.conf and other parsing rules to your data. For more information about props.conf and rules for timestamping and linebreaking, refer to props.conf and the online documentation at "Monitor files and directories with inputs.conf"
490
491
  Set queue to indexQueue to send your data directly into the index.
491
- :param pulumi.Input[int] raw_tcp_done_timeout: Specifies in seconds the timeout value for adding a Done-key. Default value is 10 seconds.
492
+ :param pulumi.Input[builtins.int] raw_tcp_done_timeout: Specifies in seconds the timeout value for adding a Done-key. Default value is 10 seconds.
492
493
  If a connection over the port specified by name remains idle after receiving data for specified number of seconds, it adds a Done-key. This implies the last event is completely received.
493
- :param pulumi.Input[str] restrict_to_host: Allows for restricting this input to only accept data from the host specified here.
494
- :param pulumi.Input[str] source: Sets the source key/field for events from this input. Defaults to the input file path.
494
+ :param pulumi.Input[builtins.str] restrict_to_host: Allows for restricting this input to only accept data from the host specified here.
495
+ :param pulumi.Input[builtins.str] source: Sets the source key/field for events from this input. Defaults to the input file path.
495
496
  Sets the source key initial value. The key is used during parsing/indexing, in particular to set the source field during indexing. It is also the source field used at search time. As a convenience, the chosen string is prepended with 'source::'.
496
- :param pulumi.Input[str] sourcetype: Set the source type for events from this input.
497
+ :param pulumi.Input[builtins.str] sourcetype: Set the source type for events from this input.
497
498
  "sourcetype=" is automatically prepended to <string>.
498
499
  Defaults to audittrail (if signedaudit=true) or fschange (if signedaudit=false).
499
500
  """
@@ -539,16 +540,16 @@ class InputsTcpRaw(pulumi.CustomResource):
539
540
  resource_name: str,
540
541
  opts: Optional[pulumi.ResourceOptions] = None,
541
542
  acl: Optional[pulumi.Input[Union['InputsTcpRawAclArgs', 'InputsTcpRawAclArgsDict']]] = None,
542
- connection_host: Optional[pulumi.Input[str]] = None,
543
- disabled: Optional[pulumi.Input[bool]] = None,
544
- host: Optional[pulumi.Input[str]] = None,
545
- index: Optional[pulumi.Input[str]] = None,
546
- name: Optional[pulumi.Input[str]] = None,
547
- queue: Optional[pulumi.Input[str]] = None,
548
- raw_tcp_done_timeout: Optional[pulumi.Input[int]] = None,
549
- restrict_to_host: Optional[pulumi.Input[str]] = None,
550
- source: Optional[pulumi.Input[str]] = None,
551
- sourcetype: Optional[pulumi.Input[str]] = None,
543
+ connection_host: Optional[pulumi.Input[builtins.str]] = None,
544
+ disabled: Optional[pulumi.Input[builtins.bool]] = None,
545
+ host: Optional[pulumi.Input[builtins.str]] = None,
546
+ index: Optional[pulumi.Input[builtins.str]] = None,
547
+ name: Optional[pulumi.Input[builtins.str]] = None,
548
+ queue: Optional[pulumi.Input[builtins.str]] = None,
549
+ raw_tcp_done_timeout: Optional[pulumi.Input[builtins.int]] = None,
550
+ restrict_to_host: Optional[pulumi.Input[builtins.str]] = None,
551
+ source: Optional[pulumi.Input[builtins.str]] = None,
552
+ sourcetype: Optional[pulumi.Input[builtins.str]] = None,
552
553
  __props__=None):
553
554
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
554
555
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -580,16 +581,16 @@ class InputsTcpRaw(pulumi.CustomResource):
580
581
  id: pulumi.Input[str],
581
582
  opts: Optional[pulumi.ResourceOptions] = None,
582
583
  acl: Optional[pulumi.Input[Union['InputsTcpRawAclArgs', 'InputsTcpRawAclArgsDict']]] = None,
583
- connection_host: Optional[pulumi.Input[str]] = None,
584
- disabled: Optional[pulumi.Input[bool]] = None,
585
- host: Optional[pulumi.Input[str]] = None,
586
- index: Optional[pulumi.Input[str]] = None,
587
- name: Optional[pulumi.Input[str]] = None,
588
- queue: Optional[pulumi.Input[str]] = None,
589
- raw_tcp_done_timeout: Optional[pulumi.Input[int]] = None,
590
- restrict_to_host: Optional[pulumi.Input[str]] = None,
591
- source: Optional[pulumi.Input[str]] = None,
592
- sourcetype: Optional[pulumi.Input[str]] = None) -> 'InputsTcpRaw':
584
+ connection_host: Optional[pulumi.Input[builtins.str]] = None,
585
+ disabled: Optional[pulumi.Input[builtins.bool]] = None,
586
+ host: Optional[pulumi.Input[builtins.str]] = None,
587
+ index: Optional[pulumi.Input[builtins.str]] = None,
588
+ name: Optional[pulumi.Input[builtins.str]] = None,
589
+ queue: Optional[pulumi.Input[builtins.str]] = None,
590
+ raw_tcp_done_timeout: Optional[pulumi.Input[builtins.int]] = None,
591
+ restrict_to_host: Optional[pulumi.Input[builtins.str]] = None,
592
+ source: Optional[pulumi.Input[builtins.str]] = None,
593
+ sourcetype: Optional[pulumi.Input[builtins.str]] = None) -> 'InputsTcpRaw':
593
594
  """
594
595
  Get an existing InputsTcpRaw resource's state with the given name, id, and optional extra
595
596
  properties used to qualify the lookup.
@@ -598,26 +599,26 @@ class InputsTcpRaw(pulumi.CustomResource):
598
599
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
599
600
  :param pulumi.ResourceOptions opts: Options for the resource.
600
601
  :param pulumi.Input[Union['InputsTcpRawAclArgs', 'InputsTcpRawAclArgsDict']] acl: The app/user context that is the namespace for the resource
601
- :param pulumi.Input[str] connection_host: Valid values: (ip | dns | none)
602
+ :param pulumi.Input[builtins.str] connection_host: Valid values: (ip | dns | none)
602
603
  Set the host for the remote server that is sending data.
603
604
  ip sets the host to the IP address of the remote server sending data.
604
605
  dns sets the host to the reverse DNS entry for the IP address of the remote server sending data.
605
606
  none leaves the host as specified in inputs.conf, which is typically the Splunk system hostname.
606
607
  Default value is dns.
607
- :param pulumi.Input[bool] disabled: Indicates if input is disabled.
608
- :param pulumi.Input[str] host: Host from which the indexer gets data.
609
- :param pulumi.Input[str] index: Index to store generated events. Defaults to default.
610
- :param pulumi.Input[str] name: The input port which receives raw data.
611
- :param pulumi.Input[str] queue: Valid values: (parsingQueue | indexQueue)
608
+ :param pulumi.Input[builtins.bool] disabled: Indicates if input is disabled.
609
+ :param pulumi.Input[builtins.str] host: Host from which the indexer gets data.
610
+ :param pulumi.Input[builtins.str] index: Index to store generated events. Defaults to default.
611
+ :param pulumi.Input[builtins.str] name: The input port which receives raw data.
612
+ :param pulumi.Input[builtins.str] queue: Valid values: (parsingQueue | indexQueue)
612
613
  Specifies where the input processor should deposit the events it reads. Defaults to parsingQueue.
613
614
  Set queue to parsingQueue to apply props.conf and other parsing rules to your data. For more information about props.conf and rules for timestamping and linebreaking, refer to props.conf and the online documentation at "Monitor files and directories with inputs.conf"
614
615
  Set queue to indexQueue to send your data directly into the index.
615
- :param pulumi.Input[int] raw_tcp_done_timeout: Specifies in seconds the timeout value for adding a Done-key. Default value is 10 seconds.
616
+ :param pulumi.Input[builtins.int] raw_tcp_done_timeout: Specifies in seconds the timeout value for adding a Done-key. Default value is 10 seconds.
616
617
  If a connection over the port specified by name remains idle after receiving data for specified number of seconds, it adds a Done-key. This implies the last event is completely received.
617
- :param pulumi.Input[str] restrict_to_host: Allows for restricting this input to only accept data from the host specified here.
618
- :param pulumi.Input[str] source: Sets the source key/field for events from this input. Defaults to the input file path.
618
+ :param pulumi.Input[builtins.str] restrict_to_host: Allows for restricting this input to only accept data from the host specified here.
619
+ :param pulumi.Input[builtins.str] source: Sets the source key/field for events from this input. Defaults to the input file path.
619
620
  Sets the source key initial value. The key is used during parsing/indexing, in particular to set the source field during indexing. It is also the source field used at search time. As a convenience, the chosen string is prepended with 'source::'.
620
- :param pulumi.Input[str] sourcetype: Set the source type for events from this input.
621
+ :param pulumi.Input[builtins.str] sourcetype: Set the source type for events from this input.
621
622
  "sourcetype=" is automatically prepended to <string>.
622
623
  Defaults to audittrail (if signedaudit=true) or fschange (if signedaudit=false).
623
624
  """
@@ -648,7 +649,7 @@ class InputsTcpRaw(pulumi.CustomResource):
648
649
 
649
650
  @property
650
651
  @pulumi.getter(name="connectionHost")
651
- def connection_host(self) -> pulumi.Output[str]:
652
+ def connection_host(self) -> pulumi.Output[builtins.str]:
652
653
  """
653
654
  Valid values: (ip | dns | none)
654
655
  Set the host for the remote server that is sending data.
@@ -661,7 +662,7 @@ class InputsTcpRaw(pulumi.CustomResource):
661
662
 
662
663
  @property
663
664
  @pulumi.getter
664
- def disabled(self) -> pulumi.Output[bool]:
665
+ def disabled(self) -> pulumi.Output[builtins.bool]:
665
666
  """
666
667
  Indicates if input is disabled.
667
668
  """
@@ -669,7 +670,7 @@ class InputsTcpRaw(pulumi.CustomResource):
669
670
 
670
671
  @property
671
672
  @pulumi.getter
672
- def host(self) -> pulumi.Output[str]:
673
+ def host(self) -> pulumi.Output[builtins.str]:
673
674
  """
674
675
  Host from which the indexer gets data.
675
676
  """
@@ -677,7 +678,7 @@ class InputsTcpRaw(pulumi.CustomResource):
677
678
 
678
679
  @property
679
680
  @pulumi.getter
680
- def index(self) -> pulumi.Output[str]:
681
+ def index(self) -> pulumi.Output[builtins.str]:
681
682
  """
682
683
  Index to store generated events. Defaults to default.
683
684
  """
@@ -685,7 +686,7 @@ class InputsTcpRaw(pulumi.CustomResource):
685
686
 
686
687
  @property
687
688
  @pulumi.getter
688
- def name(self) -> pulumi.Output[str]:
689
+ def name(self) -> pulumi.Output[builtins.str]:
689
690
  """
690
691
  The input port which receives raw data.
691
692
  """
@@ -693,7 +694,7 @@ class InputsTcpRaw(pulumi.CustomResource):
693
694
 
694
695
  @property
695
696
  @pulumi.getter
696
- def queue(self) -> pulumi.Output[str]:
697
+ def queue(self) -> pulumi.Output[builtins.str]:
697
698
  """
698
699
  Valid values: (parsingQueue | indexQueue)
699
700
  Specifies where the input processor should deposit the events it reads. Defaults to parsingQueue.
@@ -704,7 +705,7 @@ class InputsTcpRaw(pulumi.CustomResource):
704
705
 
705
706
  @property
706
707
  @pulumi.getter(name="rawTcpDoneTimeout")
707
- def raw_tcp_done_timeout(self) -> pulumi.Output[int]:
708
+ def raw_tcp_done_timeout(self) -> pulumi.Output[builtins.int]:
708
709
  """
709
710
  Specifies in seconds the timeout value for adding a Done-key. Default value is 10 seconds.
710
711
  If a connection over the port specified by name remains idle after receiving data for specified number of seconds, it adds a Done-key. This implies the last event is completely received.
@@ -713,7 +714,7 @@ class InputsTcpRaw(pulumi.CustomResource):
713
714
 
714
715
  @property
715
716
  @pulumi.getter(name="restrictToHost")
716
- def restrict_to_host(self) -> pulumi.Output[str]:
717
+ def restrict_to_host(self) -> pulumi.Output[builtins.str]:
717
718
  """
718
719
  Allows for restricting this input to only accept data from the host specified here.
719
720
  """
@@ -721,7 +722,7 @@ class InputsTcpRaw(pulumi.CustomResource):
721
722
 
722
723
  @property
723
724
  @pulumi.getter
724
- def source(self) -> pulumi.Output[str]:
725
+ def source(self) -> pulumi.Output[builtins.str]:
725
726
  """
726
727
  Sets the source key/field for events from this input. Defaults to the input file path.
727
728
  Sets the source key initial value. The key is used during parsing/indexing, in particular to set the source field during indexing. It is also the source field used at search time. As a convenience, the chosen string is prepended with 'source::'.
@@ -730,7 +731,7 @@ class InputsTcpRaw(pulumi.CustomResource):
730
731
 
731
732
  @property
732
733
  @pulumi.getter
733
- def sourcetype(self) -> pulumi.Output[str]:
734
+ def sourcetype(self) -> pulumi.Output[builtins.str]:
734
735
  """
735
736
  Set the source type for events from this input.
736
737
  "sourcetype=" is automatically prepended to <string>.