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
@@ -22,24 +22,24 @@ __all__ = ['InputsTcpCookedArgs', 'InputsTcpCooked']
22
22
  class InputsTcpCookedArgs:
23
23
  def __init__(__self__, *,
24
24
  acl: Optional[pulumi.Input['InputsTcpCookedAclArgs']] = None,
25
- connection_host: Optional[pulumi.Input[str]] = None,
26
- disabled: Optional[pulumi.Input[bool]] = None,
27
- host: Optional[pulumi.Input[str]] = None,
28
- name: Optional[pulumi.Input[str]] = None,
29
- restrict_to_host: Optional[pulumi.Input[str]] = None):
25
+ connection_host: Optional[pulumi.Input[_builtins.str]] = None,
26
+ disabled: Optional[pulumi.Input[_builtins.bool]] = None,
27
+ host: Optional[pulumi.Input[_builtins.str]] = None,
28
+ name: Optional[pulumi.Input[_builtins.str]] = None,
29
+ restrict_to_host: Optional[pulumi.Input[_builtins.str]] = None):
30
30
  """
31
31
  The set of arguments for constructing a InputsTcpCooked resource.
32
32
  :param pulumi.Input['InputsTcpCookedAclArgs'] acl: The app/user context that is the namespace for the resource
33
- :param pulumi.Input[str] connection_host: Valid values: (ip | dns | none)
33
+ :param pulumi.Input[_builtins.str] connection_host: Valid values: (ip | dns | none)
34
34
  Set the host for the remote server that is sending data.
35
35
  ip sets the host to the IP address of the remote server sending data.
36
36
  dns sets the host to the reverse DNS entry for the IP address of the remote server sending data.
37
37
  none leaves the host as specified in inputs.conf, which is typically the Splunk system hostname.
38
38
  Default value is dns.
39
- :param pulumi.Input[bool] disabled: Indicates if input is disabled.
40
- :param pulumi.Input[str] host: Host from which the indexer gets data.
41
- :param pulumi.Input[str] name: The port number of this input.
42
- :param pulumi.Input[str] restrict_to_host: Restrict incoming connections on this port to the host specified here.
39
+ :param pulumi.Input[_builtins.bool] disabled: Indicates if input is disabled.
40
+ :param pulumi.Input[_builtins.str] host: Host from which the indexer gets data.
41
+ :param pulumi.Input[_builtins.str] name: The port number of this input.
42
+ :param pulumi.Input[_builtins.str] restrict_to_host: Restrict incoming connections on this port to the host specified here.
43
43
  """
44
44
  if acl is not None:
45
45
  pulumi.set(__self__, "acl", acl)
@@ -54,7 +54,7 @@ class InputsTcpCookedArgs:
54
54
  if restrict_to_host is not None:
55
55
  pulumi.set(__self__, "restrict_to_host", restrict_to_host)
56
56
 
57
- @property
57
+ @_builtins.property
58
58
  @pulumi.getter
59
59
  def acl(self) -> Optional[pulumi.Input['InputsTcpCookedAclArgs']]:
60
60
  """
@@ -66,9 +66,9 @@ class InputsTcpCookedArgs:
66
66
  def acl(self, value: Optional[pulumi.Input['InputsTcpCookedAclArgs']]):
67
67
  pulumi.set(self, "acl", value)
68
68
 
69
- @property
69
+ @_builtins.property
70
70
  @pulumi.getter(name="connectionHost")
71
- def connection_host(self) -> Optional[pulumi.Input[str]]:
71
+ def connection_host(self) -> Optional[pulumi.Input[_builtins.str]]:
72
72
  """
73
73
  Valid values: (ip | dns | none)
74
74
  Set the host for the remote server that is sending data.
@@ -80,55 +80,55 @@ class InputsTcpCookedArgs:
80
80
  return pulumi.get(self, "connection_host")
81
81
 
82
82
  @connection_host.setter
83
- def connection_host(self, value: Optional[pulumi.Input[str]]):
83
+ def connection_host(self, value: Optional[pulumi.Input[_builtins.str]]):
84
84
  pulumi.set(self, "connection_host", value)
85
85
 
86
- @property
86
+ @_builtins.property
87
87
  @pulumi.getter
88
- def disabled(self) -> Optional[pulumi.Input[bool]]:
88
+ def disabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
89
89
  """
90
90
  Indicates if input is disabled.
91
91
  """
92
92
  return pulumi.get(self, "disabled")
93
93
 
94
94
  @disabled.setter
95
- def disabled(self, value: Optional[pulumi.Input[bool]]):
95
+ def disabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
96
96
  pulumi.set(self, "disabled", value)
97
97
 
98
- @property
98
+ @_builtins.property
99
99
  @pulumi.getter
100
- def host(self) -> Optional[pulumi.Input[str]]:
100
+ def host(self) -> Optional[pulumi.Input[_builtins.str]]:
101
101
  """
102
102
  Host from which the indexer gets data.
103
103
  """
104
104
  return pulumi.get(self, "host")
105
105
 
106
106
  @host.setter
107
- def host(self, value: Optional[pulumi.Input[str]]):
107
+ def host(self, value: Optional[pulumi.Input[_builtins.str]]):
108
108
  pulumi.set(self, "host", value)
109
109
 
110
- @property
110
+ @_builtins.property
111
111
  @pulumi.getter
112
- def name(self) -> Optional[pulumi.Input[str]]:
112
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
113
113
  """
114
114
  The port number of this input.
115
115
  """
116
116
  return pulumi.get(self, "name")
117
117
 
118
118
  @name.setter
119
- def name(self, value: Optional[pulumi.Input[str]]):
119
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
120
120
  pulumi.set(self, "name", value)
121
121
 
122
- @property
122
+ @_builtins.property
123
123
  @pulumi.getter(name="restrictToHost")
124
- def restrict_to_host(self) -> Optional[pulumi.Input[str]]:
124
+ def restrict_to_host(self) -> Optional[pulumi.Input[_builtins.str]]:
125
125
  """
126
126
  Restrict incoming connections on this port to the host specified here.
127
127
  """
128
128
  return pulumi.get(self, "restrict_to_host")
129
129
 
130
130
  @restrict_to_host.setter
131
- def restrict_to_host(self, value: Optional[pulumi.Input[str]]):
131
+ def restrict_to_host(self, value: Optional[pulumi.Input[_builtins.str]]):
132
132
  pulumi.set(self, "restrict_to_host", value)
133
133
 
134
134
 
@@ -136,24 +136,24 @@ class InputsTcpCookedArgs:
136
136
  class _InputsTcpCookedState:
137
137
  def __init__(__self__, *,
138
138
  acl: Optional[pulumi.Input['InputsTcpCookedAclArgs']] = None,
139
- connection_host: Optional[pulumi.Input[str]] = None,
140
- disabled: Optional[pulumi.Input[bool]] = None,
141
- host: Optional[pulumi.Input[str]] = None,
142
- name: Optional[pulumi.Input[str]] = None,
143
- restrict_to_host: Optional[pulumi.Input[str]] = None):
139
+ connection_host: Optional[pulumi.Input[_builtins.str]] = None,
140
+ disabled: Optional[pulumi.Input[_builtins.bool]] = None,
141
+ host: Optional[pulumi.Input[_builtins.str]] = None,
142
+ name: Optional[pulumi.Input[_builtins.str]] = None,
143
+ restrict_to_host: Optional[pulumi.Input[_builtins.str]] = None):
144
144
  """
145
145
  Input properties used for looking up and filtering InputsTcpCooked resources.
146
146
  :param pulumi.Input['InputsTcpCookedAclArgs'] acl: The app/user context that is the namespace for the resource
147
- :param pulumi.Input[str] connection_host: Valid values: (ip | dns | none)
147
+ :param pulumi.Input[_builtins.str] connection_host: Valid values: (ip | dns | none)
148
148
  Set the host for the remote server that is sending data.
149
149
  ip sets the host to the IP address of the remote server sending data.
150
150
  dns sets the host to the reverse DNS entry for the IP address of the remote server sending data.
151
151
  none leaves the host as specified in inputs.conf, which is typically the Splunk system hostname.
152
152
  Default value is dns.
153
- :param pulumi.Input[bool] disabled: Indicates if input is disabled.
154
- :param pulumi.Input[str] host: Host from which the indexer gets data.
155
- :param pulumi.Input[str] name: The port number of this input.
156
- :param pulumi.Input[str] restrict_to_host: Restrict incoming connections on this port to the host specified here.
153
+ :param pulumi.Input[_builtins.bool] disabled: Indicates if input is disabled.
154
+ :param pulumi.Input[_builtins.str] host: Host from which the indexer gets data.
155
+ :param pulumi.Input[_builtins.str] name: The port number of this input.
156
+ :param pulumi.Input[_builtins.str] restrict_to_host: Restrict incoming connections on this port to the host specified here.
157
157
  """
158
158
  if acl is not None:
159
159
  pulumi.set(__self__, "acl", acl)
@@ -168,7 +168,7 @@ class _InputsTcpCookedState:
168
168
  if restrict_to_host is not None:
169
169
  pulumi.set(__self__, "restrict_to_host", restrict_to_host)
170
170
 
171
- @property
171
+ @_builtins.property
172
172
  @pulumi.getter
173
173
  def acl(self) -> Optional[pulumi.Input['InputsTcpCookedAclArgs']]:
174
174
  """
@@ -180,9 +180,9 @@ class _InputsTcpCookedState:
180
180
  def acl(self, value: Optional[pulumi.Input['InputsTcpCookedAclArgs']]):
181
181
  pulumi.set(self, "acl", value)
182
182
 
183
- @property
183
+ @_builtins.property
184
184
  @pulumi.getter(name="connectionHost")
185
- def connection_host(self) -> Optional[pulumi.Input[str]]:
185
+ def connection_host(self) -> Optional[pulumi.Input[_builtins.str]]:
186
186
  """
187
187
  Valid values: (ip | dns | none)
188
188
  Set the host for the remote server that is sending data.
@@ -194,69 +194,70 @@ class _InputsTcpCookedState:
194
194
  return pulumi.get(self, "connection_host")
195
195
 
196
196
  @connection_host.setter
197
- def connection_host(self, value: Optional[pulumi.Input[str]]):
197
+ def connection_host(self, value: Optional[pulumi.Input[_builtins.str]]):
198
198
  pulumi.set(self, "connection_host", value)
199
199
 
200
- @property
200
+ @_builtins.property
201
201
  @pulumi.getter
202
- def disabled(self) -> Optional[pulumi.Input[bool]]:
202
+ def disabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
203
203
  """
204
204
  Indicates if input is disabled.
205
205
  """
206
206
  return pulumi.get(self, "disabled")
207
207
 
208
208
  @disabled.setter
209
- def disabled(self, value: Optional[pulumi.Input[bool]]):
209
+ def disabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
210
210
  pulumi.set(self, "disabled", value)
211
211
 
212
- @property
212
+ @_builtins.property
213
213
  @pulumi.getter
214
- def host(self) -> Optional[pulumi.Input[str]]:
214
+ def host(self) -> Optional[pulumi.Input[_builtins.str]]:
215
215
  """
216
216
  Host from which the indexer gets data.
217
217
  """
218
218
  return pulumi.get(self, "host")
219
219
 
220
220
  @host.setter
221
- def host(self, value: Optional[pulumi.Input[str]]):
221
+ def host(self, value: Optional[pulumi.Input[_builtins.str]]):
222
222
  pulumi.set(self, "host", value)
223
223
 
224
- @property
224
+ @_builtins.property
225
225
  @pulumi.getter
226
- def name(self) -> Optional[pulumi.Input[str]]:
226
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
227
227
  """
228
228
  The port number of this input.
229
229
  """
230
230
  return pulumi.get(self, "name")
231
231
 
232
232
  @name.setter
233
- def name(self, value: Optional[pulumi.Input[str]]):
233
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
234
234
  pulumi.set(self, "name", value)
235
235
 
236
- @property
236
+ @_builtins.property
237
237
  @pulumi.getter(name="restrictToHost")
238
- def restrict_to_host(self) -> Optional[pulumi.Input[str]]:
238
+ def restrict_to_host(self) -> Optional[pulumi.Input[_builtins.str]]:
239
239
  """
240
240
  Restrict incoming connections on this port to the host specified here.
241
241
  """
242
242
  return pulumi.get(self, "restrict_to_host")
243
243
 
244
244
  @restrict_to_host.setter
245
- def restrict_to_host(self, value: Optional[pulumi.Input[str]]):
245
+ def restrict_to_host(self, value: Optional[pulumi.Input[_builtins.str]]):
246
246
  pulumi.set(self, "restrict_to_host", value)
247
247
 
248
248
 
249
+ @pulumi.type_token("splunk:index/inputsTcpCooked:InputsTcpCooked")
249
250
  class InputsTcpCooked(pulumi.CustomResource):
250
251
  @overload
251
252
  def __init__(__self__,
252
253
  resource_name: str,
253
254
  opts: Optional[pulumi.ResourceOptions] = None,
254
255
  acl: Optional[pulumi.Input[Union['InputsTcpCookedAclArgs', 'InputsTcpCookedAclArgsDict']]] = None,
255
- connection_host: Optional[pulumi.Input[str]] = None,
256
- disabled: Optional[pulumi.Input[bool]] = None,
257
- host: Optional[pulumi.Input[str]] = None,
258
- name: Optional[pulumi.Input[str]] = None,
259
- restrict_to_host: Optional[pulumi.Input[str]] = None,
256
+ connection_host: Optional[pulumi.Input[_builtins.str]] = None,
257
+ disabled: Optional[pulumi.Input[_builtins.bool]] = None,
258
+ host: Optional[pulumi.Input[_builtins.str]] = None,
259
+ name: Optional[pulumi.Input[_builtins.str]] = None,
260
+ restrict_to_host: Optional[pulumi.Input[_builtins.str]] = None,
260
261
  __props__=None):
261
262
  """
262
263
  ## # Resource: InputsTcpCooked
@@ -279,16 +280,16 @@ class InputsTcpCooked(pulumi.CustomResource):
279
280
  :param str resource_name: The name of the resource.
280
281
  :param pulumi.ResourceOptions opts: Options for the resource.
281
282
  :param pulumi.Input[Union['InputsTcpCookedAclArgs', 'InputsTcpCookedAclArgsDict']] acl: The app/user context that is the namespace for the resource
282
- :param pulumi.Input[str] connection_host: Valid values: (ip | dns | none)
283
+ :param pulumi.Input[_builtins.str] connection_host: Valid values: (ip | dns | none)
283
284
  Set the host for the remote server that is sending data.
284
285
  ip sets the host to the IP address of the remote server sending data.
285
286
  dns sets the host to the reverse DNS entry for the IP address of the remote server sending data.
286
287
  none leaves the host as specified in inputs.conf, which is typically the Splunk system hostname.
287
288
  Default value is dns.
288
- :param pulumi.Input[bool] disabled: Indicates if input is disabled.
289
- :param pulumi.Input[str] host: Host from which the indexer gets data.
290
- :param pulumi.Input[str] name: The port number of this input.
291
- :param pulumi.Input[str] restrict_to_host: Restrict incoming connections on this port to the host specified here.
289
+ :param pulumi.Input[_builtins.bool] disabled: Indicates if input is disabled.
290
+ :param pulumi.Input[_builtins.str] host: Host from which the indexer gets data.
291
+ :param pulumi.Input[_builtins.str] name: The port number of this input.
292
+ :param pulumi.Input[_builtins.str] restrict_to_host: Restrict incoming connections on this port to the host specified here.
292
293
  """
293
294
  ...
294
295
  @overload
@@ -330,11 +331,11 @@ class InputsTcpCooked(pulumi.CustomResource):
330
331
  resource_name: str,
331
332
  opts: Optional[pulumi.ResourceOptions] = None,
332
333
  acl: Optional[pulumi.Input[Union['InputsTcpCookedAclArgs', 'InputsTcpCookedAclArgsDict']]] = None,
333
- connection_host: Optional[pulumi.Input[str]] = None,
334
- disabled: Optional[pulumi.Input[bool]] = None,
335
- host: Optional[pulumi.Input[str]] = None,
336
- name: Optional[pulumi.Input[str]] = None,
337
- restrict_to_host: Optional[pulumi.Input[str]] = None,
334
+ connection_host: Optional[pulumi.Input[_builtins.str]] = None,
335
+ disabled: Optional[pulumi.Input[_builtins.bool]] = None,
336
+ host: Optional[pulumi.Input[_builtins.str]] = None,
337
+ name: Optional[pulumi.Input[_builtins.str]] = None,
338
+ restrict_to_host: Optional[pulumi.Input[_builtins.str]] = None,
338
339
  __props__=None):
339
340
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
340
341
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -361,11 +362,11 @@ class InputsTcpCooked(pulumi.CustomResource):
361
362
  id: pulumi.Input[str],
362
363
  opts: Optional[pulumi.ResourceOptions] = None,
363
364
  acl: Optional[pulumi.Input[Union['InputsTcpCookedAclArgs', 'InputsTcpCookedAclArgsDict']]] = None,
364
- connection_host: Optional[pulumi.Input[str]] = None,
365
- disabled: Optional[pulumi.Input[bool]] = None,
366
- host: Optional[pulumi.Input[str]] = None,
367
- name: Optional[pulumi.Input[str]] = None,
368
- restrict_to_host: Optional[pulumi.Input[str]] = None) -> 'InputsTcpCooked':
365
+ connection_host: Optional[pulumi.Input[_builtins.str]] = None,
366
+ disabled: Optional[pulumi.Input[_builtins.bool]] = None,
367
+ host: Optional[pulumi.Input[_builtins.str]] = None,
368
+ name: Optional[pulumi.Input[_builtins.str]] = None,
369
+ restrict_to_host: Optional[pulumi.Input[_builtins.str]] = None) -> 'InputsTcpCooked':
369
370
  """
370
371
  Get an existing InputsTcpCooked resource's state with the given name, id, and optional extra
371
372
  properties used to qualify the lookup.
@@ -374,16 +375,16 @@ class InputsTcpCooked(pulumi.CustomResource):
374
375
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
375
376
  :param pulumi.ResourceOptions opts: Options for the resource.
376
377
  :param pulumi.Input[Union['InputsTcpCookedAclArgs', 'InputsTcpCookedAclArgsDict']] acl: The app/user context that is the namespace for the resource
377
- :param pulumi.Input[str] connection_host: Valid values: (ip | dns | none)
378
+ :param pulumi.Input[_builtins.str] connection_host: Valid values: (ip | dns | none)
378
379
  Set the host for the remote server that is sending data.
379
380
  ip sets the host to the IP address of the remote server sending data.
380
381
  dns sets the host to the reverse DNS entry for the IP address of the remote server sending data.
381
382
  none leaves the host as specified in inputs.conf, which is typically the Splunk system hostname.
382
383
  Default value is dns.
383
- :param pulumi.Input[bool] disabled: Indicates if input is disabled.
384
- :param pulumi.Input[str] host: Host from which the indexer gets data.
385
- :param pulumi.Input[str] name: The port number of this input.
386
- :param pulumi.Input[str] restrict_to_host: Restrict incoming connections on this port to the host specified here.
384
+ :param pulumi.Input[_builtins.bool] disabled: Indicates if input is disabled.
385
+ :param pulumi.Input[_builtins.str] host: Host from which the indexer gets data.
386
+ :param pulumi.Input[_builtins.str] name: The port number of this input.
387
+ :param pulumi.Input[_builtins.str] restrict_to_host: Restrict incoming connections on this port to the host specified here.
387
388
  """
388
389
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
389
390
 
@@ -397,7 +398,7 @@ class InputsTcpCooked(pulumi.CustomResource):
397
398
  __props__.__dict__["restrict_to_host"] = restrict_to_host
398
399
  return InputsTcpCooked(resource_name, opts=opts, __props__=__props__)
399
400
 
400
- @property
401
+ @_builtins.property
401
402
  @pulumi.getter
402
403
  def acl(self) -> pulumi.Output['outputs.InputsTcpCookedAcl']:
403
404
  """
@@ -405,9 +406,9 @@ class InputsTcpCooked(pulumi.CustomResource):
405
406
  """
406
407
  return pulumi.get(self, "acl")
407
408
 
408
- @property
409
+ @_builtins.property
409
410
  @pulumi.getter(name="connectionHost")
410
- def connection_host(self) -> pulumi.Output[str]:
411
+ def connection_host(self) -> pulumi.Output[_builtins.str]:
411
412
  """
412
413
  Valid values: (ip | dns | none)
413
414
  Set the host for the remote server that is sending data.
@@ -418,33 +419,33 @@ class InputsTcpCooked(pulumi.CustomResource):
418
419
  """
419
420
  return pulumi.get(self, "connection_host")
420
421
 
421
- @property
422
+ @_builtins.property
422
423
  @pulumi.getter
423
- def disabled(self) -> pulumi.Output[bool]:
424
+ def disabled(self) -> pulumi.Output[_builtins.bool]:
424
425
  """
425
426
  Indicates if input is disabled.
426
427
  """
427
428
  return pulumi.get(self, "disabled")
428
429
 
429
- @property
430
+ @_builtins.property
430
431
  @pulumi.getter
431
- def host(self) -> pulumi.Output[str]:
432
+ def host(self) -> pulumi.Output[_builtins.str]:
432
433
  """
433
434
  Host from which the indexer gets data.
434
435
  """
435
436
  return pulumi.get(self, "host")
436
437
 
437
- @property
438
+ @_builtins.property
438
439
  @pulumi.getter
439
- def name(self) -> pulumi.Output[str]:
440
+ def name(self) -> pulumi.Output[_builtins.str]:
440
441
  """
441
442
  The port number of this input.
442
443
  """
443
444
  return pulumi.get(self, "name")
444
445
 
445
- @property
446
+ @_builtins.property
446
447
  @pulumi.getter(name="restrictToHost")
447
- def restrict_to_host(self) -> pulumi.Output[str]:
448
+ def restrict_to_host(self) -> pulumi.Output[_builtins.str]:
448
449
  """
449
450
  Restrict incoming connections on this port to the host specified here.
450
451
  """