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
@@ -21,11 +21,11 @@ __all__ = ['GenericAclArgs', 'GenericAcl']
21
21
  @pulumi.input_type
22
22
  class GenericAclArgs:
23
23
  def __init__(__self__, *,
24
- path: pulumi.Input[str],
24
+ path: pulumi.Input[_builtins.str],
25
25
  acl: Optional[pulumi.Input['GenericAclAclArgs']] = None):
26
26
  """
27
27
  The set of arguments for constructing a GenericAcl resource.
28
- :param pulumi.Input[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>
29
29
  :param pulumi.Input['GenericAclAclArgs'] acl: The ACL to apply to the object, including app/owner to properly identify the object.
30
30
  Though technically optional, it should be explicitly set for this resource to really be valid. Some objects, such as
31
31
  apps, require specific values for app and owner. Consult the REST API documentation regarding which values to use for
@@ -35,19 +35,19 @@ class GenericAclArgs:
35
35
  if acl is not None:
36
36
  pulumi.set(__self__, "acl", acl)
37
37
 
38
- @property
38
+ @_builtins.property
39
39
  @pulumi.getter
40
- def path(self) -> pulumi.Input[str]:
40
+ def path(self) -> pulumi.Input[_builtins.str]:
41
41
  """
42
42
  REST API Endpoint path to the object, relative to servicesNS/<owner>/<app>
43
43
  """
44
44
  return pulumi.get(self, "path")
45
45
 
46
46
  @path.setter
47
- def path(self, value: pulumi.Input[str]):
47
+ def path(self, value: pulumi.Input[_builtins.str]):
48
48
  pulumi.set(self, "path", value)
49
49
 
50
- @property
50
+ @_builtins.property
51
51
  @pulumi.getter
52
52
  def acl(self) -> Optional[pulumi.Input['GenericAclAclArgs']]:
53
53
  """
@@ -67,21 +67,21 @@ class GenericAclArgs:
67
67
  class _GenericAclState:
68
68
  def __init__(__self__, *,
69
69
  acl: Optional[pulumi.Input['GenericAclAclArgs']] = None,
70
- path: Optional[pulumi.Input[str]] = None):
70
+ path: Optional[pulumi.Input[_builtins.str]] = None):
71
71
  """
72
72
  Input properties used for looking up and filtering GenericAcl resources.
73
73
  :param pulumi.Input['GenericAclAclArgs'] acl: The ACL to apply to the object, including app/owner to properly identify the object.
74
74
  Though technically optional, it should be explicitly set for this resource to really be valid. Some objects, such as
75
75
  apps, require specific values for app and owner. Consult the REST API documentation regarding which values to use for
76
76
  app and owner for objects that don't fit in the normal namespace.
77
- :param pulumi.Input[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>
78
78
  """
79
79
  if acl is not None:
80
80
  pulumi.set(__self__, "acl", acl)
81
81
  if path is not None:
82
82
  pulumi.set(__self__, "path", path)
83
83
 
84
- @property
84
+ @_builtins.property
85
85
  @pulumi.getter
86
86
  def acl(self) -> Optional[pulumi.Input['GenericAclAclArgs']]:
87
87
  """
@@ -96,26 +96,27 @@ class _GenericAclState:
96
96
  def acl(self, value: Optional[pulumi.Input['GenericAclAclArgs']]):
97
97
  pulumi.set(self, "acl", value)
98
98
 
99
- @property
99
+ @_builtins.property
100
100
  @pulumi.getter
101
- def path(self) -> Optional[pulumi.Input[str]]:
101
+ def path(self) -> Optional[pulumi.Input[_builtins.str]]:
102
102
  """
103
103
  REST API Endpoint path to the object, relative to servicesNS/<owner>/<app>
104
104
  """
105
105
  return pulumi.get(self, "path")
106
106
 
107
107
  @path.setter
108
- def path(self, value: Optional[pulumi.Input[str]]):
108
+ def path(self, value: Optional[pulumi.Input[_builtins.str]]):
109
109
  pulumi.set(self, "path", value)
110
110
 
111
111
 
112
+ @pulumi.type_token("splunk:index/genericAcl:GenericAcl")
112
113
  class GenericAcl(pulumi.CustomResource):
113
114
  @overload
114
115
  def __init__(__self__,
115
116
  resource_name: str,
116
117
  opts: Optional[pulumi.ResourceOptions] = None,
117
118
  acl: Optional[pulumi.Input[Union['GenericAclAclArgs', 'GenericAclAclArgsDict']]] = None,
118
- path: Optional[pulumi.Input[str]] = None,
119
+ path: Optional[pulumi.Input[_builtins.str]] = None,
119
120
  __props__=None):
120
121
  """
121
122
  ## Example Usage
@@ -159,7 +160,7 @@ class GenericAcl(pulumi.CustomResource):
159
160
  Though technically optional, it should be explicitly set for this resource to really be valid. Some objects, such as
160
161
  apps, require specific values for app and owner. Consult the REST API documentation regarding which values to use for
161
162
  app and owner for objects that don't fit in the normal namespace.
162
- :param pulumi.Input[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>
163
164
  """
164
165
  ...
165
166
  @overload
@@ -219,7 +220,7 @@ class GenericAcl(pulumi.CustomResource):
219
220
  resource_name: str,
220
221
  opts: Optional[pulumi.ResourceOptions] = None,
221
222
  acl: Optional[pulumi.Input[Union['GenericAclAclArgs', 'GenericAclAclArgsDict']]] = None,
222
- path: Optional[pulumi.Input[str]] = None,
223
+ path: Optional[pulumi.Input[_builtins.str]] = None,
223
224
  __props__=None):
224
225
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
225
226
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -244,7 +245,7 @@ class GenericAcl(pulumi.CustomResource):
244
245
  id: pulumi.Input[str],
245
246
  opts: Optional[pulumi.ResourceOptions] = None,
246
247
  acl: Optional[pulumi.Input[Union['GenericAclAclArgs', 'GenericAclAclArgsDict']]] = None,
247
- path: Optional[pulumi.Input[str]] = None) -> 'GenericAcl':
248
+ path: Optional[pulumi.Input[_builtins.str]] = None) -> 'GenericAcl':
248
249
  """
249
250
  Get an existing GenericAcl resource's state with the given name, id, and optional extra
250
251
  properties used to qualify the lookup.
@@ -256,7 +257,7 @@ class GenericAcl(pulumi.CustomResource):
256
257
  Though technically optional, it should be explicitly set for this resource to really be valid. Some objects, such as
257
258
  apps, require specific values for app and owner. Consult the REST API documentation regarding which values to use for
258
259
  app and owner for objects that don't fit in the normal namespace.
259
- :param pulumi.Input[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>
260
261
  """
261
262
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
262
263
 
@@ -266,7 +267,7 @@ class GenericAcl(pulumi.CustomResource):
266
267
  __props__.__dict__["path"] = path
267
268
  return GenericAcl(resource_name, opts=opts, __props__=__props__)
268
269
 
269
- @property
270
+ @_builtins.property
270
271
  @pulumi.getter
271
272
  def acl(self) -> pulumi.Output['outputs.GenericAclAcl']:
272
273
  """
@@ -277,9 +278,9 @@ class GenericAcl(pulumi.CustomResource):
277
278
  """
278
279
  return pulumi.get(self, "acl")
279
280
 
280
- @property
281
+ @_builtins.property
281
282
  @pulumi.getter
282
- def path(self) -> pulumi.Output[str]:
283
+ def path(self) -> pulumi.Output[_builtins.str]:
283
284
  """
284
285
  REST API Endpoint path to the object, relative to servicesNS/<owner>/<app>
285
286
  """