pulumi-splunk 1.3.0a1750230248__py3-none-any.whl → 1.3.0a1759215781__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 -1
  2. pulumi_splunk/_inputs.py +1274 -1275
  3. pulumi_splunk/admin_saml_groups.py +35 -36
  4. pulumi_splunk/apps_local.py +208 -209
  5. pulumi_splunk/authentication_users.py +154 -155
  6. pulumi_splunk/authorization_roles.py +222 -223
  7. pulumi_splunk/config/__init__.py +1 -1
  8. pulumi_splunk/config/__init__.pyi +2 -4
  9. pulumi_splunk/config/vars.py +8 -10
  10. pulumi_splunk/configs_conf.py +38 -39
  11. pulumi_splunk/data_ui_views.py +38 -39
  12. pulumi_splunk/generic_acl.py +21 -22
  13. pulumi_splunk/global_http_event_collector.py +120 -121
  14. pulumi_splunk/indexes.py +650 -651
  15. pulumi_splunk/inputs_http_event_collector.py +157 -158
  16. pulumi_splunk/inputs_monitor.py +259 -260
  17. pulumi_splunk/inputs_script.py +157 -158
  18. pulumi_splunk/inputs_tcp_cooked.py +89 -90
  19. pulumi_splunk/inputs_tcp_raw.py +174 -175
  20. pulumi_splunk/inputs_tcp_splunk_tcp_token.py +38 -39
  21. pulumi_splunk/inputs_tcp_ssl.py +86 -87
  22. pulumi_splunk/inputs_udp.py +191 -192
  23. pulumi_splunk/lookup_definition.py +38 -39
  24. pulumi_splunk/lookup_table_file.py +69 -70
  25. pulumi_splunk/outputs.py +856 -857
  26. pulumi_splunk/outputs_tcp_default.py +140 -141
  27. pulumi_splunk/outputs_tcp_group.py +174 -175
  28. pulumi_splunk/outputs_tcp_server.py +174 -175
  29. pulumi_splunk/outputs_tcp_syslog.py +123 -124
  30. pulumi_splunk/provider.py +60 -65
  31. pulumi_splunk/pulumi-plugin.json +1 -1
  32. pulumi_splunk/saved_searches.py +3097 -2886
  33. pulumi_splunk/sh_indexes_manager.py +72 -73
  34. {pulumi_splunk-1.3.0a1750230248.dist-info → pulumi_splunk-1.3.0a1759215781.dist-info}/METADATA +1 -1
  35. pulumi_splunk-1.3.0a1759215781.dist-info/RECORD +39 -0
  36. pulumi_splunk-1.3.0a1750230248.dist-info/RECORD +0 -39
  37. {pulumi_splunk-1.3.0a1750230248.dist-info → pulumi_splunk-1.3.0a1759215781.dist-info}/WHEEL +0 -0
  38. {pulumi_splunk-1.3.0a1750230248.dist-info → pulumi_splunk-1.3.0a1759215781.dist-info}/top_level.txt +0 -0
@@ -2,8 +2,7 @@
2
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 builtins
6
- import copy
5
+ import builtins as _builtins
7
6
  import warnings
8
7
  import sys
9
8
  import pulumi
@@ -22,11 +21,11 @@ __all__ = ['GenericAclArgs', 'GenericAcl']
22
21
  @pulumi.input_type
23
22
  class GenericAclArgs:
24
23
  def __init__(__self__, *,
25
- path: pulumi.Input[builtins.str],
24
+ path: pulumi.Input[_builtins.str],
26
25
  acl: Optional[pulumi.Input['GenericAclAclArgs']] = None):
27
26
  """
28
27
  The set of arguments for constructing a GenericAcl resource.
29
- :param pulumi.Input[builtins.str] path: REST API Endpoint path to the object, relative to servicesNS/<owner>/<app>
28
+ :param pulumi.Input[_builtins.str] path: REST API Endpoint path to the object, relative to servicesNS/<owner>/<app>
30
29
  :param pulumi.Input['GenericAclAclArgs'] acl: The ACL to apply to the object, including app/owner to properly identify the object.
31
30
  Though technically optional, it should be explicitly set for this resource to really be valid. Some objects, such as
32
31
  apps, require specific values for app and owner. Consult the REST API documentation regarding which values to use for
@@ -36,19 +35,19 @@ class GenericAclArgs:
36
35
  if acl is not None:
37
36
  pulumi.set(__self__, "acl", acl)
38
37
 
39
- @property
38
+ @_builtins.property
40
39
  @pulumi.getter
41
- def path(self) -> pulumi.Input[builtins.str]:
40
+ def path(self) -> pulumi.Input[_builtins.str]:
42
41
  """
43
42
  REST API Endpoint path to the object, relative to servicesNS/<owner>/<app>
44
43
  """
45
44
  return pulumi.get(self, "path")
46
45
 
47
46
  @path.setter
48
- def path(self, value: pulumi.Input[builtins.str]):
47
+ def path(self, value: pulumi.Input[_builtins.str]):
49
48
  pulumi.set(self, "path", value)
50
49
 
51
- @property
50
+ @_builtins.property
52
51
  @pulumi.getter
53
52
  def acl(self) -> Optional[pulumi.Input['GenericAclAclArgs']]:
54
53
  """
@@ -68,21 +67,21 @@ class GenericAclArgs:
68
67
  class _GenericAclState:
69
68
  def __init__(__self__, *,
70
69
  acl: Optional[pulumi.Input['GenericAclAclArgs']] = None,
71
- path: Optional[pulumi.Input[builtins.str]] = None):
70
+ path: Optional[pulumi.Input[_builtins.str]] = None):
72
71
  """
73
72
  Input properties used for looking up and filtering GenericAcl resources.
74
73
  :param pulumi.Input['GenericAclAclArgs'] acl: The ACL to apply to the object, including app/owner to properly identify the object.
75
74
  Though technically optional, it should be explicitly set for this resource to really be valid. Some objects, such as
76
75
  apps, require specific values for app and owner. Consult the REST API documentation regarding which values to use for
77
76
  app and owner for objects that don't fit in the normal namespace.
78
- :param pulumi.Input[builtins.str] path: REST API Endpoint path to the object, relative to servicesNS/<owner>/<app>
77
+ :param pulumi.Input[_builtins.str] path: REST API Endpoint path to the object, relative to servicesNS/<owner>/<app>
79
78
  """
80
79
  if acl is not None:
81
80
  pulumi.set(__self__, "acl", acl)
82
81
  if path is not None:
83
82
  pulumi.set(__self__, "path", path)
84
83
 
85
- @property
84
+ @_builtins.property
86
85
  @pulumi.getter
87
86
  def acl(self) -> Optional[pulumi.Input['GenericAclAclArgs']]:
88
87
  """
@@ -97,16 +96,16 @@ class _GenericAclState:
97
96
  def acl(self, value: Optional[pulumi.Input['GenericAclAclArgs']]):
98
97
  pulumi.set(self, "acl", value)
99
98
 
100
- @property
99
+ @_builtins.property
101
100
  @pulumi.getter
102
- def path(self) -> Optional[pulumi.Input[builtins.str]]:
101
+ def path(self) -> Optional[pulumi.Input[_builtins.str]]:
103
102
  """
104
103
  REST API Endpoint path to the object, relative to servicesNS/<owner>/<app>
105
104
  """
106
105
  return pulumi.get(self, "path")
107
106
 
108
107
  @path.setter
109
- def path(self, value: Optional[pulumi.Input[builtins.str]]):
108
+ def path(self, value: Optional[pulumi.Input[_builtins.str]]):
110
109
  pulumi.set(self, "path", value)
111
110
 
112
111
 
@@ -117,7 +116,7 @@ class GenericAcl(pulumi.CustomResource):
117
116
  resource_name: str,
118
117
  opts: Optional[pulumi.ResourceOptions] = None,
119
118
  acl: Optional[pulumi.Input[Union['GenericAclAclArgs', 'GenericAclAclArgsDict']]] = None,
120
- path: Optional[pulumi.Input[builtins.str]] = None,
119
+ path: Optional[pulumi.Input[_builtins.str]] = None,
121
120
  __props__=None):
122
121
  """
123
122
  ## Example Usage
@@ -161,7 +160,7 @@ class GenericAcl(pulumi.CustomResource):
161
160
  Though technically optional, it should be explicitly set for this resource to really be valid. Some objects, such as
162
161
  apps, require specific values for app and owner. Consult the REST API documentation regarding which values to use for
163
162
  app and owner for objects that don't fit in the normal namespace.
164
- :param pulumi.Input[builtins.str] path: REST API Endpoint path to the object, relative to servicesNS/<owner>/<app>
163
+ :param pulumi.Input[_builtins.str] path: REST API Endpoint path to the object, relative to servicesNS/<owner>/<app>
165
164
  """
166
165
  ...
167
166
  @overload
@@ -221,7 +220,7 @@ class GenericAcl(pulumi.CustomResource):
221
220
  resource_name: str,
222
221
  opts: Optional[pulumi.ResourceOptions] = None,
223
222
  acl: Optional[pulumi.Input[Union['GenericAclAclArgs', 'GenericAclAclArgsDict']]] = None,
224
- path: Optional[pulumi.Input[builtins.str]] = None,
223
+ path: Optional[pulumi.Input[_builtins.str]] = None,
225
224
  __props__=None):
226
225
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
227
226
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -246,7 +245,7 @@ class GenericAcl(pulumi.CustomResource):
246
245
  id: pulumi.Input[str],
247
246
  opts: Optional[pulumi.ResourceOptions] = None,
248
247
  acl: Optional[pulumi.Input[Union['GenericAclAclArgs', 'GenericAclAclArgsDict']]] = None,
249
- path: Optional[pulumi.Input[builtins.str]] = None) -> 'GenericAcl':
248
+ path: Optional[pulumi.Input[_builtins.str]] = None) -> 'GenericAcl':
250
249
  """
251
250
  Get an existing GenericAcl resource's state with the given name, id, and optional extra
252
251
  properties used to qualify the lookup.
@@ -258,7 +257,7 @@ class GenericAcl(pulumi.CustomResource):
258
257
  Though technically optional, it should be explicitly set for this resource to really be valid. Some objects, such as
259
258
  apps, require specific values for app and owner. Consult the REST API documentation regarding which values to use for
260
259
  app and owner for objects that don't fit in the normal namespace.
261
- :param pulumi.Input[builtins.str] path: REST API Endpoint path to the object, relative to servicesNS/<owner>/<app>
260
+ :param pulumi.Input[_builtins.str] path: REST API Endpoint path to the object, relative to servicesNS/<owner>/<app>
262
261
  """
263
262
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
264
263
 
@@ -268,7 +267,7 @@ class GenericAcl(pulumi.CustomResource):
268
267
  __props__.__dict__["path"] = path
269
268
  return GenericAcl(resource_name, opts=opts, __props__=__props__)
270
269
 
271
- @property
270
+ @_builtins.property
272
271
  @pulumi.getter
273
272
  def acl(self) -> pulumi.Output['outputs.GenericAclAcl']:
274
273
  """
@@ -279,9 +278,9 @@ class GenericAcl(pulumi.CustomResource):
279
278
  """
280
279
  return pulumi.get(self, "acl")
281
280
 
282
- @property
281
+ @_builtins.property
283
282
  @pulumi.getter
284
- def path(self) -> pulumi.Output[builtins.str]:
283
+ def path(self) -> pulumi.Output[_builtins.str]:
285
284
  """
286
285
  REST API Endpoint path to the object, relative to servicesNS/<owner>/<app>
287
286
  """