pulumi-splunk 1.3.0a1735837426__py3-none-any.whl → 1.3.0a1763793741__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.
Files changed (39) hide show
  1. pulumi_splunk/__init__.py +2 -1
  2. pulumi_splunk/_inputs.py +1275 -1275
  3. pulumi_splunk/_utilities.py +9 -5
  4. pulumi_splunk/admin_saml_groups.py +37 -36
  5. pulumi_splunk/apps_local.py +210 -209
  6. pulumi_splunk/authentication_users.py +156 -155
  7. pulumi_splunk/authorization_roles.py +224 -223
  8. pulumi_splunk/config/__init__.py +2 -1
  9. pulumi_splunk/config/__init__.pyi +3 -4
  10. pulumi_splunk/config/vars.py +9 -10
  11. pulumi_splunk/configs_conf.py +40 -39
  12. pulumi_splunk/data_ui_views.py +40 -39
  13. pulumi_splunk/generic_acl.py +23 -22
  14. pulumi_splunk/global_http_event_collector.py +122 -121
  15. pulumi_splunk/indexes.py +652 -651
  16. pulumi_splunk/inputs_http_event_collector.py +159 -158
  17. pulumi_splunk/inputs_monitor.py +261 -260
  18. pulumi_splunk/inputs_script.py +159 -158
  19. pulumi_splunk/inputs_tcp_cooked.py +91 -90
  20. pulumi_splunk/inputs_tcp_raw.py +176 -175
  21. pulumi_splunk/inputs_tcp_splunk_tcp_token.py +40 -39
  22. pulumi_splunk/inputs_tcp_ssl.py +88 -87
  23. pulumi_splunk/inputs_udp.py +193 -192
  24. pulumi_splunk/lookup_definition.py +40 -39
  25. pulumi_splunk/lookup_table_file.py +71 -70
  26. pulumi_splunk/outputs.py +857 -857
  27. pulumi_splunk/outputs_tcp_default.py +142 -141
  28. pulumi_splunk/outputs_tcp_group.py +176 -175
  29. pulumi_splunk/outputs_tcp_server.py +176 -175
  30. pulumi_splunk/outputs_tcp_syslog.py +125 -124
  31. pulumi_splunk/provider.py +94 -78
  32. pulumi_splunk/pulumi-plugin.json +1 -1
  33. pulumi_splunk/saved_searches.py +3099 -2886
  34. pulumi_splunk/sh_indexes_manager.py +74 -73
  35. {pulumi_splunk-1.3.0a1735837426.dist-info → pulumi_splunk-1.3.0a1763793741.dist-info}/METADATA +3 -3
  36. pulumi_splunk-1.3.0a1763793741.dist-info/RECORD +39 -0
  37. {pulumi_splunk-1.3.0a1735837426.dist-info → pulumi_splunk-1.3.0a1763793741.dist-info}/WHEEL +1 -1
  38. pulumi_splunk-1.3.0a1735837426.dist-info/RECORD +0 -39
  39. {pulumi_splunk-1.3.0a1735837426.dist-info → pulumi_splunk-1.3.0a1763793741.dist-info}/top_level.txt +0 -0
@@ -1,8 +1,8 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
- import copy
5
+ import builtins as _builtins
6
6
  import warnings
7
7
  import sys
8
8
  import pulumi
@@ -19,22 +19,22 @@ __all__ = ['GlobalHttpEventCollectorArgs', 'GlobalHttpEventCollector']
19
19
  @pulumi.input_type
20
20
  class GlobalHttpEventCollectorArgs:
21
21
  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):
22
+ dedicated_io_threads: Optional[pulumi.Input[_builtins.int]] = None,
23
+ disabled: Optional[pulumi.Input[_builtins.bool]] = None,
24
+ enable_ssl: Optional[pulumi.Input[_builtins.bool]] = None,
25
+ max_sockets: Optional[pulumi.Input[_builtins.int]] = None,
26
+ max_threads: Optional[pulumi.Input[_builtins.int]] = None,
27
+ port: Optional[pulumi.Input[_builtins.int]] = None,
28
+ use_deployment_server: Optional[pulumi.Input[_builtins.int]] = None):
29
29
  """
30
30
  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.
31
+ :param pulumi.Input[_builtins.int] dedicated_io_threads: Number of threads used by HTTP Input server.
32
+ :param pulumi.Input[_builtins.bool] disabled: Input disabled indicator.
33
+ :param pulumi.Input[_builtins.bool] enable_ssl: Enable SSL protocol for HTTP data input. `true` = SSL enabled, `false` = SSL disabled.
34
+ :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.
35
+ :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.
36
+ :param pulumi.Input[_builtins.int] port: HTTP data input IP port.
37
+ :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
38
  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
39
  """
40
40
  if dedicated_io_threads is not None:
@@ -52,81 +52,81 @@ class GlobalHttpEventCollectorArgs:
52
52
  if use_deployment_server is not None:
53
53
  pulumi.set(__self__, "use_deployment_server", use_deployment_server)
54
54
 
55
- @property
55
+ @_builtins.property
56
56
  @pulumi.getter(name="dedicatedIoThreads")
57
- def dedicated_io_threads(self) -> Optional[pulumi.Input[int]]:
57
+ def dedicated_io_threads(self) -> Optional[pulumi.Input[_builtins.int]]:
58
58
  """
59
59
  Number of threads used by HTTP Input server.
60
60
  """
61
61
  return pulumi.get(self, "dedicated_io_threads")
62
62
 
63
63
  @dedicated_io_threads.setter
64
- def dedicated_io_threads(self, value: Optional[pulumi.Input[int]]):
64
+ def dedicated_io_threads(self, value: Optional[pulumi.Input[_builtins.int]]):
65
65
  pulumi.set(self, "dedicated_io_threads", value)
66
66
 
67
- @property
67
+ @_builtins.property
68
68
  @pulumi.getter
69
- def disabled(self) -> Optional[pulumi.Input[bool]]:
69
+ def disabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
70
70
  """
71
71
  Input disabled indicator.
72
72
  """
73
73
  return pulumi.get(self, "disabled")
74
74
 
75
75
  @disabled.setter
76
- def disabled(self, value: Optional[pulumi.Input[bool]]):
76
+ def disabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
77
77
  pulumi.set(self, "disabled", value)
78
78
 
79
- @property
79
+ @_builtins.property
80
80
  @pulumi.getter(name="enableSsl")
81
- def enable_ssl(self) -> Optional[pulumi.Input[bool]]:
81
+ def enable_ssl(self) -> Optional[pulumi.Input[_builtins.bool]]:
82
82
  """
83
83
  Enable SSL protocol for HTTP data input. `true` = SSL enabled, `false` = SSL disabled.
84
84
  """
85
85
  return pulumi.get(self, "enable_ssl")
86
86
 
87
87
  @enable_ssl.setter
88
- def enable_ssl(self, value: Optional[pulumi.Input[bool]]):
88
+ def enable_ssl(self, value: Optional[pulumi.Input[_builtins.bool]]):
89
89
  pulumi.set(self, "enable_ssl", value)
90
90
 
91
- @property
91
+ @_builtins.property
92
92
  @pulumi.getter(name="maxSockets")
93
- def max_sockets(self) -> Optional[pulumi.Input[int]]:
93
+ def max_sockets(self) -> Optional[pulumi.Input[_builtins.int]]:
94
94
  """
95
95
  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
96
  """
97
97
  return pulumi.get(self, "max_sockets")
98
98
 
99
99
  @max_sockets.setter
100
- def max_sockets(self, value: Optional[pulumi.Input[int]]):
100
+ def max_sockets(self, value: Optional[pulumi.Input[_builtins.int]]):
101
101
  pulumi.set(self, "max_sockets", value)
102
102
 
103
- @property
103
+ @_builtins.property
104
104
  @pulumi.getter(name="maxThreads")
105
- def max_threads(self) -> Optional[pulumi.Input[int]]:
105
+ def max_threads(self) -> Optional[pulumi.Input[_builtins.int]]:
106
106
  """
107
107
  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
108
  """
109
109
  return pulumi.get(self, "max_threads")
110
110
 
111
111
  @max_threads.setter
112
- def max_threads(self, value: Optional[pulumi.Input[int]]):
112
+ def max_threads(self, value: Optional[pulumi.Input[_builtins.int]]):
113
113
  pulumi.set(self, "max_threads", value)
114
114
 
115
- @property
115
+ @_builtins.property
116
116
  @pulumi.getter
117
- def port(self) -> Optional[pulumi.Input[int]]:
117
+ def port(self) -> Optional[pulumi.Input[_builtins.int]]:
118
118
  """
119
119
  HTTP data input IP port.
120
120
  """
121
121
  return pulumi.get(self, "port")
122
122
 
123
123
  @port.setter
124
- def port(self, value: Optional[pulumi.Input[int]]):
124
+ def port(self, value: Optional[pulumi.Input[_builtins.int]]):
125
125
  pulumi.set(self, "port", value)
126
126
 
127
- @property
127
+ @_builtins.property
128
128
  @pulumi.getter(name="useDeploymentServer")
129
- def use_deployment_server(self) -> Optional[pulumi.Input[int]]:
129
+ def use_deployment_server(self) -> Optional[pulumi.Input[_builtins.int]]:
130
130
  """
131
131
  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
132
  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 +134,29 @@ class GlobalHttpEventCollectorArgs:
134
134
  return pulumi.get(self, "use_deployment_server")
135
135
 
136
136
  @use_deployment_server.setter
137
- def use_deployment_server(self, value: Optional[pulumi.Input[int]]):
137
+ def use_deployment_server(self, value: Optional[pulumi.Input[_builtins.int]]):
138
138
  pulumi.set(self, "use_deployment_server", value)
139
139
 
140
140
 
141
141
  @pulumi.input_type
142
142
  class _GlobalHttpEventCollectorState:
143
143
  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):
144
+ dedicated_io_threads: Optional[pulumi.Input[_builtins.int]] = None,
145
+ disabled: Optional[pulumi.Input[_builtins.bool]] = None,
146
+ enable_ssl: Optional[pulumi.Input[_builtins.bool]] = None,
147
+ max_sockets: Optional[pulumi.Input[_builtins.int]] = None,
148
+ max_threads: Optional[pulumi.Input[_builtins.int]] = None,
149
+ port: Optional[pulumi.Input[_builtins.int]] = None,
150
+ use_deployment_server: Optional[pulumi.Input[_builtins.int]] = None):
151
151
  """
152
152
  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.
153
+ :param pulumi.Input[_builtins.int] dedicated_io_threads: Number of threads used by HTTP Input server.
154
+ :param pulumi.Input[_builtins.bool] disabled: Input disabled indicator.
155
+ :param pulumi.Input[_builtins.bool] enable_ssl: Enable SSL protocol for HTTP data input. `true` = SSL enabled, `false` = SSL disabled.
156
+ :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.
157
+ :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.
158
+ :param pulumi.Input[_builtins.int] port: HTTP data input IP port.
159
+ :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
160
  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
161
  """
162
162
  if dedicated_io_threads is not None:
@@ -174,81 +174,81 @@ class _GlobalHttpEventCollectorState:
174
174
  if use_deployment_server is not None:
175
175
  pulumi.set(__self__, "use_deployment_server", use_deployment_server)
176
176
 
177
- @property
177
+ @_builtins.property
178
178
  @pulumi.getter(name="dedicatedIoThreads")
179
- def dedicated_io_threads(self) -> Optional[pulumi.Input[int]]:
179
+ def dedicated_io_threads(self) -> Optional[pulumi.Input[_builtins.int]]:
180
180
  """
181
181
  Number of threads used by HTTP Input server.
182
182
  """
183
183
  return pulumi.get(self, "dedicated_io_threads")
184
184
 
185
185
  @dedicated_io_threads.setter
186
- def dedicated_io_threads(self, value: Optional[pulumi.Input[int]]):
186
+ def dedicated_io_threads(self, value: Optional[pulumi.Input[_builtins.int]]):
187
187
  pulumi.set(self, "dedicated_io_threads", value)
188
188
 
189
- @property
189
+ @_builtins.property
190
190
  @pulumi.getter
191
- def disabled(self) -> Optional[pulumi.Input[bool]]:
191
+ def disabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
192
192
  """
193
193
  Input disabled indicator.
194
194
  """
195
195
  return pulumi.get(self, "disabled")
196
196
 
197
197
  @disabled.setter
198
- def disabled(self, value: Optional[pulumi.Input[bool]]):
198
+ def disabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
199
199
  pulumi.set(self, "disabled", value)
200
200
 
201
- @property
201
+ @_builtins.property
202
202
  @pulumi.getter(name="enableSsl")
203
- def enable_ssl(self) -> Optional[pulumi.Input[bool]]:
203
+ def enable_ssl(self) -> Optional[pulumi.Input[_builtins.bool]]:
204
204
  """
205
205
  Enable SSL protocol for HTTP data input. `true` = SSL enabled, `false` = SSL disabled.
206
206
  """
207
207
  return pulumi.get(self, "enable_ssl")
208
208
 
209
209
  @enable_ssl.setter
210
- def enable_ssl(self, value: Optional[pulumi.Input[bool]]):
210
+ def enable_ssl(self, value: Optional[pulumi.Input[_builtins.bool]]):
211
211
  pulumi.set(self, "enable_ssl", value)
212
212
 
213
- @property
213
+ @_builtins.property
214
214
  @pulumi.getter(name="maxSockets")
215
- def max_sockets(self) -> Optional[pulumi.Input[int]]:
215
+ def max_sockets(self) -> Optional[pulumi.Input[_builtins.int]]:
216
216
  """
217
217
  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
218
  """
219
219
  return pulumi.get(self, "max_sockets")
220
220
 
221
221
  @max_sockets.setter
222
- def max_sockets(self, value: Optional[pulumi.Input[int]]):
222
+ def max_sockets(self, value: Optional[pulumi.Input[_builtins.int]]):
223
223
  pulumi.set(self, "max_sockets", value)
224
224
 
225
- @property
225
+ @_builtins.property
226
226
  @pulumi.getter(name="maxThreads")
227
- def max_threads(self) -> Optional[pulumi.Input[int]]:
227
+ def max_threads(self) -> Optional[pulumi.Input[_builtins.int]]:
228
228
  """
229
229
  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
230
  """
231
231
  return pulumi.get(self, "max_threads")
232
232
 
233
233
  @max_threads.setter
234
- def max_threads(self, value: Optional[pulumi.Input[int]]):
234
+ def max_threads(self, value: Optional[pulumi.Input[_builtins.int]]):
235
235
  pulumi.set(self, "max_threads", value)
236
236
 
237
- @property
237
+ @_builtins.property
238
238
  @pulumi.getter
239
- def port(self) -> Optional[pulumi.Input[int]]:
239
+ def port(self) -> Optional[pulumi.Input[_builtins.int]]:
240
240
  """
241
241
  HTTP data input IP port.
242
242
  """
243
243
  return pulumi.get(self, "port")
244
244
 
245
245
  @port.setter
246
- def port(self, value: Optional[pulumi.Input[int]]):
246
+ def port(self, value: Optional[pulumi.Input[_builtins.int]]):
247
247
  pulumi.set(self, "port", value)
248
248
 
249
- @property
249
+ @_builtins.property
250
250
  @pulumi.getter(name="useDeploymentServer")
251
- def use_deployment_server(self) -> Optional[pulumi.Input[int]]:
251
+ def use_deployment_server(self) -> Optional[pulumi.Input[_builtins.int]]:
252
252
  """
253
253
  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
254
  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,22 +256,23 @@ class _GlobalHttpEventCollectorState:
256
256
  return pulumi.get(self, "use_deployment_server")
257
257
 
258
258
  @use_deployment_server.setter
259
- def use_deployment_server(self, value: Optional[pulumi.Input[int]]):
259
+ def use_deployment_server(self, value: Optional[pulumi.Input[_builtins.int]]):
260
260
  pulumi.set(self, "use_deployment_server", value)
261
261
 
262
262
 
263
+ @pulumi.type_token("splunk:index/globalHttpEventCollector:GlobalHttpEventCollector")
263
264
  class GlobalHttpEventCollector(pulumi.CustomResource):
264
265
  @overload
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))
@@ -408,57 +409,57 @@ class GlobalHttpEventCollector(pulumi.CustomResource):
408
409
  __props__.__dict__["use_deployment_server"] = use_deployment_server
409
410
  return GlobalHttpEventCollector(resource_name, opts=opts, __props__=__props__)
410
411
 
411
- @property
412
+ @_builtins.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
  """
417
418
  return pulumi.get(self, "dedicated_io_threads")
418
419
 
419
- @property
420
+ @_builtins.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
  """
425
426
  return pulumi.get(self, "disabled")
426
427
 
427
- @property
428
+ @_builtins.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
  """
433
434
  return pulumi.get(self, "enable_ssl")
434
435
 
435
- @property
436
+ @_builtins.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
  """
441
442
  return pulumi.get(self, "max_sockets")
442
443
 
443
- @property
444
+ @_builtins.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
  """
449
450
  return pulumi.get(self, "max_threads")
450
451
 
451
- @property
452
+ @_builtins.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
  """
457
458
  return pulumi.get(self, "port")
458
459
 
459
- @property
460
+ @_builtins.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).