pulumi-splunk 1.3.0a1743489547__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.0a1743489547.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.0a1743489547.dist-info/RECORD +0 -39
  37. {pulumi_splunk-1.3.0a1743489547.dist-info → pulumi_splunk-1.3.0a1744266748.dist-info}/WHEEL +0 -0
  38. {pulumi_splunk-1.3.0a1743489547.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
@@ -19,22 +20,22 @@ __all__ = ['GlobalHttpEventCollectorArgs', 'GlobalHttpEventCollector']
19
20
  @pulumi.input_type
20
21
  class GlobalHttpEventCollectorArgs:
21
22
  def __init__(__self__, *,
22
- dedicated_io_threads: Optional[pulumi.Input[int]] = None,
23
- disabled: Optional[pulumi.Input[bool]] = None,
24
- enable_ssl: Optional[pulumi.Input[bool]] = None,
25
- max_sockets: Optional[pulumi.Input[int]] = None,
26
- max_threads: Optional[pulumi.Input[int]] = None,
27
- port: Optional[pulumi.Input[int]] = None,
28
- use_deployment_server: Optional[pulumi.Input[int]] = None):
23
+ dedicated_io_threads: Optional[pulumi.Input[builtins.int]] = None,
24
+ disabled: Optional[pulumi.Input[builtins.bool]] = None,
25
+ enable_ssl: Optional[pulumi.Input[builtins.bool]] = None,
26
+ max_sockets: Optional[pulumi.Input[builtins.int]] = None,
27
+ max_threads: Optional[pulumi.Input[builtins.int]] = None,
28
+ port: Optional[pulumi.Input[builtins.int]] = None,
29
+ use_deployment_server: Optional[pulumi.Input[builtins.int]] = None):
29
30
  """
30
31
  The set of arguments for constructing a GlobalHttpEventCollector resource.
31
- :param pulumi.Input[int] dedicated_io_threads: Number of threads used by HTTP Input server.
32
- :param pulumi.Input[bool] disabled: Input disabled indicator.
33
- :param pulumi.Input[bool] enable_ssl: Enable SSL protocol for HTTP data input. `true` = SSL enabled, `false` = SSL disabled.
34
- :param pulumi.Input[int] max_sockets: Maximum number of simultaneous HTTP connections accepted. Adjusting this value may cause server performance issues and is not generally recommended. Possible values for this setting vary by OS.
35
- :param pulumi.Input[int] max_threads: Maximum number of threads that can be used by active HTTP transactions. Adjusting this value may cause server performance issues and is not generally recommended. Possible values for this setting vary by OS.
36
- :param pulumi.Input[int] port: HTTP data input IP port.
37
- :param pulumi.Input[int] use_deployment_server: Indicates whether the event collector input writes its configuration to a deployment server repository. When this setting is set to 1 (enabled), the input writes its configuration to the directory specified as repositoryLocation in serverclass.conf.
32
+ :param pulumi.Input[builtins.int] dedicated_io_threads: Number of threads used by HTTP Input server.
33
+ :param pulumi.Input[builtins.bool] disabled: Input disabled indicator.
34
+ :param pulumi.Input[builtins.bool] enable_ssl: Enable SSL protocol for HTTP data input. `true` = SSL enabled, `false` = SSL disabled.
35
+ :param pulumi.Input[builtins.int] max_sockets: Maximum number of simultaneous HTTP connections accepted. Adjusting this value may cause server performance issues and is not generally recommended. Possible values for this setting vary by OS.
36
+ :param pulumi.Input[builtins.int] max_threads: Maximum number of threads that can be used by active HTTP transactions. Adjusting this value may cause server performance issues and is not generally recommended. Possible values for this setting vary by OS.
37
+ :param pulumi.Input[builtins.int] port: HTTP data input IP port.
38
+ :param pulumi.Input[builtins.int] use_deployment_server: Indicates whether the event collector input writes its configuration to a deployment server repository. When this setting is set to 1 (enabled), the input writes its configuration to the directory specified as repositoryLocation in serverclass.conf.
38
39
  Copy the full contents of the splunk_httpinput app directory to this directory for the configuration to work. When enabled, only the tokens defined in the splunk_httpinput app in this repository are viewable and editable on the API and the Data Inputs page in Splunk Web. When disabled, the input writes its configuration to $SPLUNK_HOME/etc/apps by default. Defaults to 0 (disabled).
39
40
  """
40
41
  if dedicated_io_threads is not None:
@@ -54,79 +55,79 @@ class GlobalHttpEventCollectorArgs:
54
55
 
55
56
  @property
56
57
  @pulumi.getter(name="dedicatedIoThreads")
57
- def dedicated_io_threads(self) -> Optional[pulumi.Input[int]]:
58
+ def dedicated_io_threads(self) -> Optional[pulumi.Input[builtins.int]]:
58
59
  """
59
60
  Number of threads used by HTTP Input server.
60
61
  """
61
62
  return pulumi.get(self, "dedicated_io_threads")
62
63
 
63
64
  @dedicated_io_threads.setter
64
- def dedicated_io_threads(self, value: Optional[pulumi.Input[int]]):
65
+ def dedicated_io_threads(self, value: Optional[pulumi.Input[builtins.int]]):
65
66
  pulumi.set(self, "dedicated_io_threads", value)
66
67
 
67
68
  @property
68
69
  @pulumi.getter
69
- def disabled(self) -> Optional[pulumi.Input[bool]]:
70
+ def disabled(self) -> Optional[pulumi.Input[builtins.bool]]:
70
71
  """
71
72
  Input disabled indicator.
72
73
  """
73
74
  return pulumi.get(self, "disabled")
74
75
 
75
76
  @disabled.setter
76
- def disabled(self, value: Optional[pulumi.Input[bool]]):
77
+ def disabled(self, value: Optional[pulumi.Input[builtins.bool]]):
77
78
  pulumi.set(self, "disabled", value)
78
79
 
79
80
  @property
80
81
  @pulumi.getter(name="enableSsl")
81
- def enable_ssl(self) -> Optional[pulumi.Input[bool]]:
82
+ def enable_ssl(self) -> Optional[pulumi.Input[builtins.bool]]:
82
83
  """
83
84
  Enable SSL protocol for HTTP data input. `true` = SSL enabled, `false` = SSL disabled.
84
85
  """
85
86
  return pulumi.get(self, "enable_ssl")
86
87
 
87
88
  @enable_ssl.setter
88
- def enable_ssl(self, value: Optional[pulumi.Input[bool]]):
89
+ def enable_ssl(self, value: Optional[pulumi.Input[builtins.bool]]):
89
90
  pulumi.set(self, "enable_ssl", value)
90
91
 
91
92
  @property
92
93
  @pulumi.getter(name="maxSockets")
93
- def max_sockets(self) -> Optional[pulumi.Input[int]]:
94
+ def max_sockets(self) -> Optional[pulumi.Input[builtins.int]]:
94
95
  """
95
96
  Maximum number of simultaneous HTTP connections accepted. Adjusting this value may cause server performance issues and is not generally recommended. Possible values for this setting vary by OS.
96
97
  """
97
98
  return pulumi.get(self, "max_sockets")
98
99
 
99
100
  @max_sockets.setter
100
- def max_sockets(self, value: Optional[pulumi.Input[int]]):
101
+ def max_sockets(self, value: Optional[pulumi.Input[builtins.int]]):
101
102
  pulumi.set(self, "max_sockets", value)
102
103
 
103
104
  @property
104
105
  @pulumi.getter(name="maxThreads")
105
- def max_threads(self) -> Optional[pulumi.Input[int]]:
106
+ def max_threads(self) -> Optional[pulumi.Input[builtins.int]]:
106
107
  """
107
108
  Maximum number of threads that can be used by active HTTP transactions. Adjusting this value may cause server performance issues and is not generally recommended. Possible values for this setting vary by OS.
108
109
  """
109
110
  return pulumi.get(self, "max_threads")
110
111
 
111
112
  @max_threads.setter
112
- def max_threads(self, value: Optional[pulumi.Input[int]]):
113
+ def max_threads(self, value: Optional[pulumi.Input[builtins.int]]):
113
114
  pulumi.set(self, "max_threads", value)
114
115
 
115
116
  @property
116
117
  @pulumi.getter
117
- def port(self) -> Optional[pulumi.Input[int]]:
118
+ def port(self) -> Optional[pulumi.Input[builtins.int]]:
118
119
  """
119
120
  HTTP data input IP port.
120
121
  """
121
122
  return pulumi.get(self, "port")
122
123
 
123
124
  @port.setter
124
- def port(self, value: Optional[pulumi.Input[int]]):
125
+ def port(self, value: Optional[pulumi.Input[builtins.int]]):
125
126
  pulumi.set(self, "port", value)
126
127
 
127
128
  @property
128
129
  @pulumi.getter(name="useDeploymentServer")
129
- def use_deployment_server(self) -> Optional[pulumi.Input[int]]:
130
+ def use_deployment_server(self) -> Optional[pulumi.Input[builtins.int]]:
130
131
  """
131
132
  Indicates whether the event collector input writes its configuration to a deployment server repository. When this setting is set to 1 (enabled), the input writes its configuration to the directory specified as repositoryLocation in serverclass.conf.
132
133
  Copy the full contents of the splunk_httpinput app directory to this directory for the configuration to work. When enabled, only the tokens defined in the splunk_httpinput app in this repository are viewable and editable on the API and the Data Inputs page in Splunk Web. When disabled, the input writes its configuration to $SPLUNK_HOME/etc/apps by default. Defaults to 0 (disabled).
@@ -134,29 +135,29 @@ class GlobalHttpEventCollectorArgs:
134
135
  return pulumi.get(self, "use_deployment_server")
135
136
 
136
137
  @use_deployment_server.setter
137
- def use_deployment_server(self, value: Optional[pulumi.Input[int]]):
138
+ def use_deployment_server(self, value: Optional[pulumi.Input[builtins.int]]):
138
139
  pulumi.set(self, "use_deployment_server", value)
139
140
 
140
141
 
141
142
  @pulumi.input_type
142
143
  class _GlobalHttpEventCollectorState:
143
144
  def __init__(__self__, *,
144
- dedicated_io_threads: Optional[pulumi.Input[int]] = None,
145
- disabled: Optional[pulumi.Input[bool]] = None,
146
- enable_ssl: Optional[pulumi.Input[bool]] = None,
147
- max_sockets: Optional[pulumi.Input[int]] = None,
148
- max_threads: Optional[pulumi.Input[int]] = None,
149
- port: Optional[pulumi.Input[int]] = None,
150
- use_deployment_server: Optional[pulumi.Input[int]] = None):
145
+ dedicated_io_threads: Optional[pulumi.Input[builtins.int]] = None,
146
+ disabled: Optional[pulumi.Input[builtins.bool]] = None,
147
+ enable_ssl: Optional[pulumi.Input[builtins.bool]] = None,
148
+ max_sockets: Optional[pulumi.Input[builtins.int]] = None,
149
+ max_threads: Optional[pulumi.Input[builtins.int]] = None,
150
+ port: Optional[pulumi.Input[builtins.int]] = None,
151
+ use_deployment_server: Optional[pulumi.Input[builtins.int]] = None):
151
152
  """
152
153
  Input properties used for looking up and filtering GlobalHttpEventCollector resources.
153
- :param pulumi.Input[int] dedicated_io_threads: Number of threads used by HTTP Input server.
154
- :param pulumi.Input[bool] disabled: Input disabled indicator.
155
- :param pulumi.Input[bool] enable_ssl: Enable SSL protocol for HTTP data input. `true` = SSL enabled, `false` = SSL disabled.
156
- :param pulumi.Input[int] max_sockets: Maximum number of simultaneous HTTP connections accepted. Adjusting this value may cause server performance issues and is not generally recommended. Possible values for this setting vary by OS.
157
- :param pulumi.Input[int] max_threads: Maximum number of threads that can be used by active HTTP transactions. Adjusting this value may cause server performance issues and is not generally recommended. Possible values for this setting vary by OS.
158
- :param pulumi.Input[int] port: HTTP data input IP port.
159
- :param pulumi.Input[int] use_deployment_server: Indicates whether the event collector input writes its configuration to a deployment server repository. When this setting is set to 1 (enabled), the input writes its configuration to the directory specified as repositoryLocation in serverclass.conf.
154
+ :param pulumi.Input[builtins.int] dedicated_io_threads: Number of threads used by HTTP Input server.
155
+ :param pulumi.Input[builtins.bool] disabled: Input disabled indicator.
156
+ :param pulumi.Input[builtins.bool] enable_ssl: Enable SSL protocol for HTTP data input. `true` = SSL enabled, `false` = SSL disabled.
157
+ :param pulumi.Input[builtins.int] max_sockets: Maximum number of simultaneous HTTP connections accepted. Adjusting this value may cause server performance issues and is not generally recommended. Possible values for this setting vary by OS.
158
+ :param pulumi.Input[builtins.int] max_threads: Maximum number of threads that can be used by active HTTP transactions. Adjusting this value may cause server performance issues and is not generally recommended. Possible values for this setting vary by OS.
159
+ :param pulumi.Input[builtins.int] port: HTTP data input IP port.
160
+ :param pulumi.Input[builtins.int] use_deployment_server: Indicates whether the event collector input writes its configuration to a deployment server repository. When this setting is set to 1 (enabled), the input writes its configuration to the directory specified as repositoryLocation in serverclass.conf.
160
161
  Copy the full contents of the splunk_httpinput app directory to this directory for the configuration to work. When enabled, only the tokens defined in the splunk_httpinput app in this repository are viewable and editable on the API and the Data Inputs page in Splunk Web. When disabled, the input writes its configuration to $SPLUNK_HOME/etc/apps by default. Defaults to 0 (disabled).
161
162
  """
162
163
  if dedicated_io_threads is not None:
@@ -176,79 +177,79 @@ class _GlobalHttpEventCollectorState:
176
177
 
177
178
  @property
178
179
  @pulumi.getter(name="dedicatedIoThreads")
179
- def dedicated_io_threads(self) -> Optional[pulumi.Input[int]]:
180
+ def dedicated_io_threads(self) -> Optional[pulumi.Input[builtins.int]]:
180
181
  """
181
182
  Number of threads used by HTTP Input server.
182
183
  """
183
184
  return pulumi.get(self, "dedicated_io_threads")
184
185
 
185
186
  @dedicated_io_threads.setter
186
- def dedicated_io_threads(self, value: Optional[pulumi.Input[int]]):
187
+ def dedicated_io_threads(self, value: Optional[pulumi.Input[builtins.int]]):
187
188
  pulumi.set(self, "dedicated_io_threads", value)
188
189
 
189
190
  @property
190
191
  @pulumi.getter
191
- def disabled(self) -> Optional[pulumi.Input[bool]]:
192
+ def disabled(self) -> Optional[pulumi.Input[builtins.bool]]:
192
193
  """
193
194
  Input disabled indicator.
194
195
  """
195
196
  return pulumi.get(self, "disabled")
196
197
 
197
198
  @disabled.setter
198
- def disabled(self, value: Optional[pulumi.Input[bool]]):
199
+ def disabled(self, value: Optional[pulumi.Input[builtins.bool]]):
199
200
  pulumi.set(self, "disabled", value)
200
201
 
201
202
  @property
202
203
  @pulumi.getter(name="enableSsl")
203
- def enable_ssl(self) -> Optional[pulumi.Input[bool]]:
204
+ def enable_ssl(self) -> Optional[pulumi.Input[builtins.bool]]:
204
205
  """
205
206
  Enable SSL protocol for HTTP data input. `true` = SSL enabled, `false` = SSL disabled.
206
207
  """
207
208
  return pulumi.get(self, "enable_ssl")
208
209
 
209
210
  @enable_ssl.setter
210
- def enable_ssl(self, value: Optional[pulumi.Input[bool]]):
211
+ def enable_ssl(self, value: Optional[pulumi.Input[builtins.bool]]):
211
212
  pulumi.set(self, "enable_ssl", value)
212
213
 
213
214
  @property
214
215
  @pulumi.getter(name="maxSockets")
215
- def max_sockets(self) -> Optional[pulumi.Input[int]]:
216
+ def max_sockets(self) -> Optional[pulumi.Input[builtins.int]]:
216
217
  """
217
218
  Maximum number of simultaneous HTTP connections accepted. Adjusting this value may cause server performance issues and is not generally recommended. Possible values for this setting vary by OS.
218
219
  """
219
220
  return pulumi.get(self, "max_sockets")
220
221
 
221
222
  @max_sockets.setter
222
- def max_sockets(self, value: Optional[pulumi.Input[int]]):
223
+ def max_sockets(self, value: Optional[pulumi.Input[builtins.int]]):
223
224
  pulumi.set(self, "max_sockets", value)
224
225
 
225
226
  @property
226
227
  @pulumi.getter(name="maxThreads")
227
- def max_threads(self) -> Optional[pulumi.Input[int]]:
228
+ def max_threads(self) -> Optional[pulumi.Input[builtins.int]]:
228
229
  """
229
230
  Maximum number of threads that can be used by active HTTP transactions. Adjusting this value may cause server performance issues and is not generally recommended. Possible values for this setting vary by OS.
230
231
  """
231
232
  return pulumi.get(self, "max_threads")
232
233
 
233
234
  @max_threads.setter
234
- def max_threads(self, value: Optional[pulumi.Input[int]]):
235
+ def max_threads(self, value: Optional[pulumi.Input[builtins.int]]):
235
236
  pulumi.set(self, "max_threads", value)
236
237
 
237
238
  @property
238
239
  @pulumi.getter
239
- def port(self) -> Optional[pulumi.Input[int]]:
240
+ def port(self) -> Optional[pulumi.Input[builtins.int]]:
240
241
  """
241
242
  HTTP data input IP port.
242
243
  """
243
244
  return pulumi.get(self, "port")
244
245
 
245
246
  @port.setter
246
- def port(self, value: Optional[pulumi.Input[int]]):
247
+ def port(self, value: Optional[pulumi.Input[builtins.int]]):
247
248
  pulumi.set(self, "port", value)
248
249
 
249
250
  @property
250
251
  @pulumi.getter(name="useDeploymentServer")
251
- def use_deployment_server(self) -> Optional[pulumi.Input[int]]:
252
+ def use_deployment_server(self) -> Optional[pulumi.Input[builtins.int]]:
252
253
  """
253
254
  Indicates whether the event collector input writes its configuration to a deployment server repository. When this setting is set to 1 (enabled), the input writes its configuration to the directory specified as repositoryLocation in serverclass.conf.
254
255
  Copy the full contents of the splunk_httpinput app directory to this directory for the configuration to work. When enabled, only the tokens defined in the splunk_httpinput app in this repository are viewable and editable on the API and the Data Inputs page in Splunk Web. When disabled, the input writes its configuration to $SPLUNK_HOME/etc/apps by default. Defaults to 0 (disabled).
@@ -256,7 +257,7 @@ class _GlobalHttpEventCollectorState:
256
257
  return pulumi.get(self, "use_deployment_server")
257
258
 
258
259
  @use_deployment_server.setter
259
- def use_deployment_server(self, value: Optional[pulumi.Input[int]]):
260
+ def use_deployment_server(self, value: Optional[pulumi.Input[builtins.int]]):
260
261
  pulumi.set(self, "use_deployment_server", value)
261
262
 
262
263
 
@@ -265,13 +266,13 @@ class GlobalHttpEventCollector(pulumi.CustomResource):
265
266
  def __init__(__self__,
266
267
  resource_name: str,
267
268
  opts: Optional[pulumi.ResourceOptions] = None,
268
- dedicated_io_threads: Optional[pulumi.Input[int]] = None,
269
- disabled: Optional[pulumi.Input[bool]] = None,
270
- enable_ssl: Optional[pulumi.Input[bool]] = None,
271
- max_sockets: Optional[pulumi.Input[int]] = None,
272
- max_threads: Optional[pulumi.Input[int]] = None,
273
- port: Optional[pulumi.Input[int]] = None,
274
- use_deployment_server: Optional[pulumi.Input[int]] = None,
269
+ dedicated_io_threads: Optional[pulumi.Input[builtins.int]] = None,
270
+ disabled: Optional[pulumi.Input[builtins.bool]] = None,
271
+ enable_ssl: Optional[pulumi.Input[builtins.bool]] = None,
272
+ max_sockets: Optional[pulumi.Input[builtins.int]] = None,
273
+ max_threads: Optional[pulumi.Input[builtins.int]] = None,
274
+ port: Optional[pulumi.Input[builtins.int]] = None,
275
+ use_deployment_server: Optional[pulumi.Input[builtins.int]] = None,
275
276
  __props__=None):
276
277
  """
277
278
  ## # Resource: GlobalHttpEventCollector
@@ -292,13 +293,13 @@ class GlobalHttpEventCollector(pulumi.CustomResource):
292
293
 
293
294
  :param str resource_name: The name of the resource.
294
295
  :param pulumi.ResourceOptions opts: Options for the resource.
295
- :param pulumi.Input[int] dedicated_io_threads: Number of threads used by HTTP Input server.
296
- :param pulumi.Input[bool] disabled: Input disabled indicator.
297
- :param pulumi.Input[bool] enable_ssl: Enable SSL protocol for HTTP data input. `true` = SSL enabled, `false` = SSL disabled.
298
- :param pulumi.Input[int] max_sockets: Maximum number of simultaneous HTTP connections accepted. Adjusting this value may cause server performance issues and is not generally recommended. Possible values for this setting vary by OS.
299
- :param pulumi.Input[int] max_threads: Maximum number of threads that can be used by active HTTP transactions. Adjusting this value may cause server performance issues and is not generally recommended. Possible values for this setting vary by OS.
300
- :param pulumi.Input[int] port: HTTP data input IP port.
301
- :param pulumi.Input[int] use_deployment_server: Indicates whether the event collector input writes its configuration to a deployment server repository. When this setting is set to 1 (enabled), the input writes its configuration to the directory specified as repositoryLocation in serverclass.conf.
296
+ :param pulumi.Input[builtins.int] dedicated_io_threads: Number of threads used by HTTP Input server.
297
+ :param pulumi.Input[builtins.bool] disabled: Input disabled indicator.
298
+ :param pulumi.Input[builtins.bool] enable_ssl: Enable SSL protocol for HTTP data input. `true` = SSL enabled, `false` = SSL disabled.
299
+ :param pulumi.Input[builtins.int] max_sockets: Maximum number of simultaneous HTTP connections accepted. Adjusting this value may cause server performance issues and is not generally recommended. Possible values for this setting vary by OS.
300
+ :param pulumi.Input[builtins.int] max_threads: Maximum number of threads that can be used by active HTTP transactions. Adjusting this value may cause server performance issues and is not generally recommended. Possible values for this setting vary by OS.
301
+ :param pulumi.Input[builtins.int] port: HTTP data input IP port.
302
+ :param pulumi.Input[builtins.int] use_deployment_server: Indicates whether the event collector input writes its configuration to a deployment server repository. When this setting is set to 1 (enabled), the input writes its configuration to the directory specified as repositoryLocation in serverclass.conf.
302
303
  Copy the full contents of the splunk_httpinput app directory to this directory for the configuration to work. When enabled, only the tokens defined in the splunk_httpinput app in this repository are viewable and editable on the API and the Data Inputs page in Splunk Web. When disabled, the input writes its configuration to $SPLUNK_HOME/etc/apps by default. Defaults to 0 (disabled).
303
304
  """
304
305
  ...
@@ -339,13 +340,13 @@ class GlobalHttpEventCollector(pulumi.CustomResource):
339
340
  def _internal_init(__self__,
340
341
  resource_name: str,
341
342
  opts: Optional[pulumi.ResourceOptions] = None,
342
- dedicated_io_threads: Optional[pulumi.Input[int]] = None,
343
- disabled: Optional[pulumi.Input[bool]] = None,
344
- enable_ssl: Optional[pulumi.Input[bool]] = None,
345
- max_sockets: Optional[pulumi.Input[int]] = None,
346
- max_threads: Optional[pulumi.Input[int]] = None,
347
- port: Optional[pulumi.Input[int]] = None,
348
- use_deployment_server: Optional[pulumi.Input[int]] = None,
343
+ dedicated_io_threads: Optional[pulumi.Input[builtins.int]] = None,
344
+ disabled: Optional[pulumi.Input[builtins.bool]] = None,
345
+ enable_ssl: Optional[pulumi.Input[builtins.bool]] = None,
346
+ max_sockets: Optional[pulumi.Input[builtins.int]] = None,
347
+ max_threads: Optional[pulumi.Input[builtins.int]] = None,
348
+ port: Optional[pulumi.Input[builtins.int]] = None,
349
+ use_deployment_server: Optional[pulumi.Input[builtins.int]] = None,
349
350
  __props__=None):
350
351
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
351
352
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -372,13 +373,13 @@ class GlobalHttpEventCollector(pulumi.CustomResource):
372
373
  def get(resource_name: str,
373
374
  id: pulumi.Input[str],
374
375
  opts: Optional[pulumi.ResourceOptions] = None,
375
- dedicated_io_threads: Optional[pulumi.Input[int]] = None,
376
- disabled: Optional[pulumi.Input[bool]] = None,
377
- enable_ssl: Optional[pulumi.Input[bool]] = None,
378
- max_sockets: Optional[pulumi.Input[int]] = None,
379
- max_threads: Optional[pulumi.Input[int]] = None,
380
- port: Optional[pulumi.Input[int]] = None,
381
- use_deployment_server: Optional[pulumi.Input[int]] = None) -> 'GlobalHttpEventCollector':
376
+ dedicated_io_threads: Optional[pulumi.Input[builtins.int]] = None,
377
+ disabled: Optional[pulumi.Input[builtins.bool]] = None,
378
+ enable_ssl: Optional[pulumi.Input[builtins.bool]] = None,
379
+ max_sockets: Optional[pulumi.Input[builtins.int]] = None,
380
+ max_threads: Optional[pulumi.Input[builtins.int]] = None,
381
+ port: Optional[pulumi.Input[builtins.int]] = None,
382
+ use_deployment_server: Optional[pulumi.Input[builtins.int]] = None) -> 'GlobalHttpEventCollector':
382
383
  """
383
384
  Get an existing GlobalHttpEventCollector resource's state with the given name, id, and optional extra
384
385
  properties used to qualify the lookup.
@@ -386,13 +387,13 @@ class GlobalHttpEventCollector(pulumi.CustomResource):
386
387
  :param str resource_name: The unique name of the resulting resource.
387
388
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
388
389
  :param pulumi.ResourceOptions opts: Options for the resource.
389
- :param pulumi.Input[int] dedicated_io_threads: Number of threads used by HTTP Input server.
390
- :param pulumi.Input[bool] disabled: Input disabled indicator.
391
- :param pulumi.Input[bool] enable_ssl: Enable SSL protocol for HTTP data input. `true` = SSL enabled, `false` = SSL disabled.
392
- :param pulumi.Input[int] max_sockets: Maximum number of simultaneous HTTP connections accepted. Adjusting this value may cause server performance issues and is not generally recommended. Possible values for this setting vary by OS.
393
- :param pulumi.Input[int] max_threads: Maximum number of threads that can be used by active HTTP transactions. Adjusting this value may cause server performance issues and is not generally recommended. Possible values for this setting vary by OS.
394
- :param pulumi.Input[int] port: HTTP data input IP port.
395
- :param pulumi.Input[int] use_deployment_server: Indicates whether the event collector input writes its configuration to a deployment server repository. When this setting is set to 1 (enabled), the input writes its configuration to the directory specified as repositoryLocation in serverclass.conf.
390
+ :param pulumi.Input[builtins.int] dedicated_io_threads: Number of threads used by HTTP Input server.
391
+ :param pulumi.Input[builtins.bool] disabled: Input disabled indicator.
392
+ :param pulumi.Input[builtins.bool] enable_ssl: Enable SSL protocol for HTTP data input. `true` = SSL enabled, `false` = SSL disabled.
393
+ :param pulumi.Input[builtins.int] max_sockets: Maximum number of simultaneous HTTP connections accepted. Adjusting this value may cause server performance issues and is not generally recommended. Possible values for this setting vary by OS.
394
+ :param pulumi.Input[builtins.int] max_threads: Maximum number of threads that can be used by active HTTP transactions. Adjusting this value may cause server performance issues and is not generally recommended. Possible values for this setting vary by OS.
395
+ :param pulumi.Input[builtins.int] port: HTTP data input IP port.
396
+ :param pulumi.Input[builtins.int] use_deployment_server: Indicates whether the event collector input writes its configuration to a deployment server repository. When this setting is set to 1 (enabled), the input writes its configuration to the directory specified as repositoryLocation in serverclass.conf.
396
397
  Copy the full contents of the splunk_httpinput app directory to this directory for the configuration to work. When enabled, only the tokens defined in the splunk_httpinput app in this repository are viewable and editable on the API and the Data Inputs page in Splunk Web. When disabled, the input writes its configuration to $SPLUNK_HOME/etc/apps by default. Defaults to 0 (disabled).
397
398
  """
398
399
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -410,7 +411,7 @@ class GlobalHttpEventCollector(pulumi.CustomResource):
410
411
 
411
412
  @property
412
413
  @pulumi.getter(name="dedicatedIoThreads")
413
- def dedicated_io_threads(self) -> pulumi.Output[int]:
414
+ def dedicated_io_threads(self) -> pulumi.Output[builtins.int]:
414
415
  """
415
416
  Number of threads used by HTTP Input server.
416
417
  """
@@ -418,7 +419,7 @@ class GlobalHttpEventCollector(pulumi.CustomResource):
418
419
 
419
420
  @property
420
421
  @pulumi.getter
421
- def disabled(self) -> pulumi.Output[bool]:
422
+ def disabled(self) -> pulumi.Output[builtins.bool]:
422
423
  """
423
424
  Input disabled indicator.
424
425
  """
@@ -426,7 +427,7 @@ class GlobalHttpEventCollector(pulumi.CustomResource):
426
427
 
427
428
  @property
428
429
  @pulumi.getter(name="enableSsl")
429
- def enable_ssl(self) -> pulumi.Output[bool]:
430
+ def enable_ssl(self) -> pulumi.Output[builtins.bool]:
430
431
  """
431
432
  Enable SSL protocol for HTTP data input. `true` = SSL enabled, `false` = SSL disabled.
432
433
  """
@@ -434,7 +435,7 @@ class GlobalHttpEventCollector(pulumi.CustomResource):
434
435
 
435
436
  @property
436
437
  @pulumi.getter(name="maxSockets")
437
- def max_sockets(self) -> pulumi.Output[int]:
438
+ def max_sockets(self) -> pulumi.Output[builtins.int]:
438
439
  """
439
440
  Maximum number of simultaneous HTTP connections accepted. Adjusting this value may cause server performance issues and is not generally recommended. Possible values for this setting vary by OS.
440
441
  """
@@ -442,7 +443,7 @@ class GlobalHttpEventCollector(pulumi.CustomResource):
442
443
 
443
444
  @property
444
445
  @pulumi.getter(name="maxThreads")
445
- def max_threads(self) -> pulumi.Output[int]:
446
+ def max_threads(self) -> pulumi.Output[builtins.int]:
446
447
  """
447
448
  Maximum number of threads that can be used by active HTTP transactions. Adjusting this value may cause server performance issues and is not generally recommended. Possible values for this setting vary by OS.
448
449
  """
@@ -450,7 +451,7 @@ class GlobalHttpEventCollector(pulumi.CustomResource):
450
451
 
451
452
  @property
452
453
  @pulumi.getter
453
- def port(self) -> pulumi.Output[int]:
454
+ def port(self) -> pulumi.Output[builtins.int]:
454
455
  """
455
456
  HTTP data input IP port.
456
457
  """
@@ -458,7 +459,7 @@ class GlobalHttpEventCollector(pulumi.CustomResource):
458
459
 
459
460
  @property
460
461
  @pulumi.getter(name="useDeploymentServer")
461
- def use_deployment_server(self) -> pulumi.Output[int]:
462
+ def use_deployment_server(self) -> pulumi.Output[builtins.int]:
462
463
  """
463
464
  Indicates whether the event collector input writes its configuration to a deployment server repository. When this setting is set to 1 (enabled), the input writes its configuration to the directory specified as repositoryLocation in serverclass.conf.
464
465
  Copy the full contents of the splunk_httpinput app directory to this directory for the configuration to work. When enabled, only the tokens defined in the splunk_httpinput app in this repository are viewable and editable on the API and the Data Inputs page in Splunk Web. When disabled, the input writes its configuration to $SPLUNK_HOME/etc/apps by default. Defaults to 0 (disabled).