pulumi-splunk 1.3.0a1743575469__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.
- pulumi_splunk/__init__.py +1 -0
- pulumi_splunk/_inputs.py +1065 -1064
- pulumi_splunk/admin_saml_groups.py +29 -28
- pulumi_splunk/apps_local.py +169 -168
- pulumi_splunk/authentication_users.py +127 -126
- pulumi_splunk/authorization_roles.py +183 -182
- pulumi_splunk/config/__init__.py +1 -0
- pulumi_splunk/config/__init__.pyi +1 -0
- pulumi_splunk/config/vars.py +1 -0
- pulumi_splunk/configs_conf.py +29 -28
- pulumi_splunk/data_ui_views.py +29 -28
- pulumi_splunk/generic_acl.py +15 -14
- pulumi_splunk/global_http_event_collector.py +99 -98
- pulumi_splunk/indexes.py +533 -532
- pulumi_splunk/inputs_http_event_collector.py +127 -126
- pulumi_splunk/inputs_monitor.py +211 -210
- pulumi_splunk/inputs_script.py +127 -126
- pulumi_splunk/inputs_tcp_cooked.py +71 -70
- pulumi_splunk/inputs_tcp_raw.py +141 -140
- pulumi_splunk/inputs_tcp_splunk_tcp_token.py +29 -28
- pulumi_splunk/inputs_tcp_ssl.py +71 -70
- pulumi_splunk/inputs_udp.py +155 -154
- pulumi_splunk/lookup_definition.py +29 -28
- pulumi_splunk/lookup_table_file.py +57 -56
- pulumi_splunk/outputs.py +647 -646
- pulumi_splunk/outputs_tcp_default.py +113 -112
- pulumi_splunk/outputs_tcp_group.py +141 -140
- pulumi_splunk/outputs_tcp_server.py +141 -140
- pulumi_splunk/outputs_tcp_syslog.py +99 -98
- pulumi_splunk/provider.py +47 -46
- pulumi_splunk/pulumi-plugin.json +1 -1
- pulumi_splunk/saved_searches.py +2304 -2303
- pulumi_splunk/sh_indexes_manager.py +57 -56
- {pulumi_splunk-1.3.0a1743575469.dist-info → pulumi_splunk-1.3.0a1744266748.dist-info}/METADATA +1 -1
- pulumi_splunk-1.3.0a1744266748.dist-info/RECORD +39 -0
- pulumi_splunk-1.3.0a1743575469.dist-info/RECORD +0 -39
- {pulumi_splunk-1.3.0a1743575469.dist-info → pulumi_splunk-1.3.0a1744266748.dist-info}/WHEEL +0 -0
- {pulumi_splunk-1.3.0a1743575469.dist-info → pulumi_splunk-1.3.0a1744266748.dist-info}/top_level.txt +0 -0
pulumi_splunk/outputs.py
CHANGED
|
@@ -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
|
|
@@ -64,29 +65,29 @@ class AppsLocalAcl(dict):
|
|
|
64
65
|
return super().get(key, default)
|
|
65
66
|
|
|
66
67
|
def __init__(__self__, *,
|
|
67
|
-
app: Optional[str] = None,
|
|
68
|
-
can_change_perms: Optional[bool] = None,
|
|
69
|
-
can_share_app: Optional[bool] = None,
|
|
70
|
-
can_share_global: Optional[bool] = None,
|
|
71
|
-
can_share_user: Optional[bool] = None,
|
|
72
|
-
can_write: Optional[bool] = None,
|
|
73
|
-
owner: Optional[str] = None,
|
|
74
|
-
reads: Optional[Sequence[str]] = None,
|
|
75
|
-
removable: Optional[bool] = None,
|
|
76
|
-
sharing: Optional[str] = None,
|
|
77
|
-
writes: Optional[Sequence[str]] = None):
|
|
78
|
-
"""
|
|
79
|
-
:param str app: The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
80
|
-
:param bool can_change_perms: Indicates if the active user can change permissions for this object. Defaults to true.
|
|
81
|
-
:param bool can_share_app: Indicates if the active user can change sharing to app level. Defaults to true.
|
|
82
|
-
:param bool can_share_global: Indicates if the active user can change sharing to system level. Defaults to true.
|
|
83
|
-
:param bool can_share_user: Indicates if the active user can change sharing to user level. Defaults to true.
|
|
84
|
-
:param bool can_write: Indicates if the active user can edit this object. Defaults to true.
|
|
85
|
-
:param str owner: User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
86
|
-
:param Sequence[str] reads: Properties that indicate resource read permissions.
|
|
87
|
-
:param bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
88
|
-
:param str sharing: Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
89
|
-
:param Sequence[str] writes: Properties that indicate resource write permissions.
|
|
68
|
+
app: Optional[builtins.str] = None,
|
|
69
|
+
can_change_perms: Optional[builtins.bool] = None,
|
|
70
|
+
can_share_app: Optional[builtins.bool] = None,
|
|
71
|
+
can_share_global: Optional[builtins.bool] = None,
|
|
72
|
+
can_share_user: Optional[builtins.bool] = None,
|
|
73
|
+
can_write: Optional[builtins.bool] = None,
|
|
74
|
+
owner: Optional[builtins.str] = None,
|
|
75
|
+
reads: Optional[Sequence[builtins.str]] = None,
|
|
76
|
+
removable: Optional[builtins.bool] = None,
|
|
77
|
+
sharing: Optional[builtins.str] = None,
|
|
78
|
+
writes: Optional[Sequence[builtins.str]] = None):
|
|
79
|
+
"""
|
|
80
|
+
:param builtins.str app: The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
81
|
+
:param builtins.bool can_change_perms: Indicates if the active user can change permissions for this object. Defaults to true.
|
|
82
|
+
:param builtins.bool can_share_app: Indicates if the active user can change sharing to app level. Defaults to true.
|
|
83
|
+
:param builtins.bool can_share_global: Indicates if the active user can change sharing to system level. Defaults to true.
|
|
84
|
+
:param builtins.bool can_share_user: Indicates if the active user can change sharing to user level. Defaults to true.
|
|
85
|
+
:param builtins.bool can_write: Indicates if the active user can edit this object. Defaults to true.
|
|
86
|
+
:param builtins.str owner: User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
87
|
+
:param Sequence[builtins.str] reads: Properties that indicate resource read permissions.
|
|
88
|
+
:param builtins.bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
89
|
+
:param builtins.str sharing: Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
90
|
+
:param Sequence[builtins.str] writes: Properties that indicate resource write permissions.
|
|
90
91
|
"""
|
|
91
92
|
if app is not None:
|
|
92
93
|
pulumi.set(__self__, "app", app)
|
|
@@ -113,7 +114,7 @@ class AppsLocalAcl(dict):
|
|
|
113
114
|
|
|
114
115
|
@property
|
|
115
116
|
@pulumi.getter
|
|
116
|
-
def app(self) -> Optional[str]:
|
|
117
|
+
def app(self) -> Optional[builtins.str]:
|
|
117
118
|
"""
|
|
118
119
|
The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
119
120
|
"""
|
|
@@ -121,7 +122,7 @@ class AppsLocalAcl(dict):
|
|
|
121
122
|
|
|
122
123
|
@property
|
|
123
124
|
@pulumi.getter(name="canChangePerms")
|
|
124
|
-
def can_change_perms(self) -> Optional[bool]:
|
|
125
|
+
def can_change_perms(self) -> Optional[builtins.bool]:
|
|
125
126
|
"""
|
|
126
127
|
Indicates if the active user can change permissions for this object. Defaults to true.
|
|
127
128
|
"""
|
|
@@ -129,7 +130,7 @@ class AppsLocalAcl(dict):
|
|
|
129
130
|
|
|
130
131
|
@property
|
|
131
132
|
@pulumi.getter(name="canShareApp")
|
|
132
|
-
def can_share_app(self) -> Optional[bool]:
|
|
133
|
+
def can_share_app(self) -> Optional[builtins.bool]:
|
|
133
134
|
"""
|
|
134
135
|
Indicates if the active user can change sharing to app level. Defaults to true.
|
|
135
136
|
"""
|
|
@@ -137,7 +138,7 @@ class AppsLocalAcl(dict):
|
|
|
137
138
|
|
|
138
139
|
@property
|
|
139
140
|
@pulumi.getter(name="canShareGlobal")
|
|
140
|
-
def can_share_global(self) -> Optional[bool]:
|
|
141
|
+
def can_share_global(self) -> Optional[builtins.bool]:
|
|
141
142
|
"""
|
|
142
143
|
Indicates if the active user can change sharing to system level. Defaults to true.
|
|
143
144
|
"""
|
|
@@ -145,7 +146,7 @@ class AppsLocalAcl(dict):
|
|
|
145
146
|
|
|
146
147
|
@property
|
|
147
148
|
@pulumi.getter(name="canShareUser")
|
|
148
|
-
def can_share_user(self) -> Optional[bool]:
|
|
149
|
+
def can_share_user(self) -> Optional[builtins.bool]:
|
|
149
150
|
"""
|
|
150
151
|
Indicates if the active user can change sharing to user level. Defaults to true.
|
|
151
152
|
"""
|
|
@@ -153,7 +154,7 @@ class AppsLocalAcl(dict):
|
|
|
153
154
|
|
|
154
155
|
@property
|
|
155
156
|
@pulumi.getter(name="canWrite")
|
|
156
|
-
def can_write(self) -> Optional[bool]:
|
|
157
|
+
def can_write(self) -> Optional[builtins.bool]:
|
|
157
158
|
"""
|
|
158
159
|
Indicates if the active user can edit this object. Defaults to true.
|
|
159
160
|
"""
|
|
@@ -161,7 +162,7 @@ class AppsLocalAcl(dict):
|
|
|
161
162
|
|
|
162
163
|
@property
|
|
163
164
|
@pulumi.getter
|
|
164
|
-
def owner(self) -> Optional[str]:
|
|
165
|
+
def owner(self) -> Optional[builtins.str]:
|
|
165
166
|
"""
|
|
166
167
|
User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
167
168
|
"""
|
|
@@ -169,7 +170,7 @@ class AppsLocalAcl(dict):
|
|
|
169
170
|
|
|
170
171
|
@property
|
|
171
172
|
@pulumi.getter
|
|
172
|
-
def reads(self) -> Optional[Sequence[str]]:
|
|
173
|
+
def reads(self) -> Optional[Sequence[builtins.str]]:
|
|
173
174
|
"""
|
|
174
175
|
Properties that indicate resource read permissions.
|
|
175
176
|
"""
|
|
@@ -177,7 +178,7 @@ class AppsLocalAcl(dict):
|
|
|
177
178
|
|
|
178
179
|
@property
|
|
179
180
|
@pulumi.getter
|
|
180
|
-
def removable(self) -> Optional[bool]:
|
|
181
|
+
def removable(self) -> Optional[builtins.bool]:
|
|
181
182
|
"""
|
|
182
183
|
Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
183
184
|
"""
|
|
@@ -185,7 +186,7 @@ class AppsLocalAcl(dict):
|
|
|
185
186
|
|
|
186
187
|
@property
|
|
187
188
|
@pulumi.getter
|
|
188
|
-
def sharing(self) -> Optional[str]:
|
|
189
|
+
def sharing(self) -> Optional[builtins.str]:
|
|
189
190
|
"""
|
|
190
191
|
Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
191
192
|
"""
|
|
@@ -193,7 +194,7 @@ class AppsLocalAcl(dict):
|
|
|
193
194
|
|
|
194
195
|
@property
|
|
195
196
|
@pulumi.getter
|
|
196
|
-
def writes(self) -> Optional[Sequence[str]]:
|
|
197
|
+
def writes(self) -> Optional[Sequence[builtins.str]]:
|
|
197
198
|
"""
|
|
198
199
|
Properties that indicate resource write permissions.
|
|
199
200
|
"""
|
|
@@ -228,29 +229,29 @@ class ConfigsConfAcl(dict):
|
|
|
228
229
|
return super().get(key, default)
|
|
229
230
|
|
|
230
231
|
def __init__(__self__, *,
|
|
231
|
-
app: Optional[str] = None,
|
|
232
|
-
can_change_perms: Optional[bool] = None,
|
|
233
|
-
can_share_app: Optional[bool] = None,
|
|
234
|
-
can_share_global: Optional[bool] = None,
|
|
235
|
-
can_share_user: Optional[bool] = None,
|
|
236
|
-
can_write: Optional[bool] = None,
|
|
237
|
-
owner: Optional[str] = None,
|
|
238
|
-
reads: Optional[Sequence[str]] = None,
|
|
239
|
-
removable: Optional[bool] = None,
|
|
240
|
-
sharing: Optional[str] = None,
|
|
241
|
-
writes: Optional[Sequence[str]] = None):
|
|
242
|
-
"""
|
|
243
|
-
:param str app: The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
244
|
-
:param bool can_change_perms: Indicates if the active user can change permissions for this object. Defaults to true.
|
|
245
|
-
:param bool can_share_app: Indicates if the active user can change sharing to app level. Defaults to true.
|
|
246
|
-
:param bool can_share_global: Indicates if the active user can change sharing to system level. Defaults to true.
|
|
247
|
-
:param bool can_share_user: Indicates if the active user can change sharing to user level. Defaults to true.
|
|
248
|
-
:param bool can_write: Indicates if the active user can edit this object. Defaults to true.
|
|
249
|
-
:param str owner: User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
250
|
-
:param Sequence[str] reads: Properties that indicate resource read permissions.
|
|
251
|
-
:param bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
252
|
-
:param str sharing: Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
253
|
-
:param Sequence[str] writes: Properties that indicate resource write permissions.
|
|
232
|
+
app: Optional[builtins.str] = None,
|
|
233
|
+
can_change_perms: Optional[builtins.bool] = None,
|
|
234
|
+
can_share_app: Optional[builtins.bool] = None,
|
|
235
|
+
can_share_global: Optional[builtins.bool] = None,
|
|
236
|
+
can_share_user: Optional[builtins.bool] = None,
|
|
237
|
+
can_write: Optional[builtins.bool] = None,
|
|
238
|
+
owner: Optional[builtins.str] = None,
|
|
239
|
+
reads: Optional[Sequence[builtins.str]] = None,
|
|
240
|
+
removable: Optional[builtins.bool] = None,
|
|
241
|
+
sharing: Optional[builtins.str] = None,
|
|
242
|
+
writes: Optional[Sequence[builtins.str]] = None):
|
|
243
|
+
"""
|
|
244
|
+
:param builtins.str app: The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
245
|
+
:param builtins.bool can_change_perms: Indicates if the active user can change permissions for this object. Defaults to true.
|
|
246
|
+
:param builtins.bool can_share_app: Indicates if the active user can change sharing to app level. Defaults to true.
|
|
247
|
+
:param builtins.bool can_share_global: Indicates if the active user can change sharing to system level. Defaults to true.
|
|
248
|
+
:param builtins.bool can_share_user: Indicates if the active user can change sharing to user level. Defaults to true.
|
|
249
|
+
:param builtins.bool can_write: Indicates if the active user can edit this object. Defaults to true.
|
|
250
|
+
:param builtins.str owner: User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
251
|
+
:param Sequence[builtins.str] reads: Properties that indicate resource read permissions.
|
|
252
|
+
:param builtins.bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
253
|
+
:param builtins.str sharing: Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
254
|
+
:param Sequence[builtins.str] writes: Properties that indicate resource write permissions.
|
|
254
255
|
"""
|
|
255
256
|
if app is not None:
|
|
256
257
|
pulumi.set(__self__, "app", app)
|
|
@@ -277,7 +278,7 @@ class ConfigsConfAcl(dict):
|
|
|
277
278
|
|
|
278
279
|
@property
|
|
279
280
|
@pulumi.getter
|
|
280
|
-
def app(self) -> Optional[str]:
|
|
281
|
+
def app(self) -> Optional[builtins.str]:
|
|
281
282
|
"""
|
|
282
283
|
The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
283
284
|
"""
|
|
@@ -285,7 +286,7 @@ class ConfigsConfAcl(dict):
|
|
|
285
286
|
|
|
286
287
|
@property
|
|
287
288
|
@pulumi.getter(name="canChangePerms")
|
|
288
|
-
def can_change_perms(self) -> Optional[bool]:
|
|
289
|
+
def can_change_perms(self) -> Optional[builtins.bool]:
|
|
289
290
|
"""
|
|
290
291
|
Indicates if the active user can change permissions for this object. Defaults to true.
|
|
291
292
|
"""
|
|
@@ -293,7 +294,7 @@ class ConfigsConfAcl(dict):
|
|
|
293
294
|
|
|
294
295
|
@property
|
|
295
296
|
@pulumi.getter(name="canShareApp")
|
|
296
|
-
def can_share_app(self) -> Optional[bool]:
|
|
297
|
+
def can_share_app(self) -> Optional[builtins.bool]:
|
|
297
298
|
"""
|
|
298
299
|
Indicates if the active user can change sharing to app level. Defaults to true.
|
|
299
300
|
"""
|
|
@@ -301,7 +302,7 @@ class ConfigsConfAcl(dict):
|
|
|
301
302
|
|
|
302
303
|
@property
|
|
303
304
|
@pulumi.getter(name="canShareGlobal")
|
|
304
|
-
def can_share_global(self) -> Optional[bool]:
|
|
305
|
+
def can_share_global(self) -> Optional[builtins.bool]:
|
|
305
306
|
"""
|
|
306
307
|
Indicates if the active user can change sharing to system level. Defaults to true.
|
|
307
308
|
"""
|
|
@@ -309,7 +310,7 @@ class ConfigsConfAcl(dict):
|
|
|
309
310
|
|
|
310
311
|
@property
|
|
311
312
|
@pulumi.getter(name="canShareUser")
|
|
312
|
-
def can_share_user(self) -> Optional[bool]:
|
|
313
|
+
def can_share_user(self) -> Optional[builtins.bool]:
|
|
313
314
|
"""
|
|
314
315
|
Indicates if the active user can change sharing to user level. Defaults to true.
|
|
315
316
|
"""
|
|
@@ -317,7 +318,7 @@ class ConfigsConfAcl(dict):
|
|
|
317
318
|
|
|
318
319
|
@property
|
|
319
320
|
@pulumi.getter(name="canWrite")
|
|
320
|
-
def can_write(self) -> Optional[bool]:
|
|
321
|
+
def can_write(self) -> Optional[builtins.bool]:
|
|
321
322
|
"""
|
|
322
323
|
Indicates if the active user can edit this object. Defaults to true.
|
|
323
324
|
"""
|
|
@@ -325,7 +326,7 @@ class ConfigsConfAcl(dict):
|
|
|
325
326
|
|
|
326
327
|
@property
|
|
327
328
|
@pulumi.getter
|
|
328
|
-
def owner(self) -> Optional[str]:
|
|
329
|
+
def owner(self) -> Optional[builtins.str]:
|
|
329
330
|
"""
|
|
330
331
|
User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
331
332
|
"""
|
|
@@ -333,7 +334,7 @@ class ConfigsConfAcl(dict):
|
|
|
333
334
|
|
|
334
335
|
@property
|
|
335
336
|
@pulumi.getter
|
|
336
|
-
def reads(self) -> Optional[Sequence[str]]:
|
|
337
|
+
def reads(self) -> Optional[Sequence[builtins.str]]:
|
|
337
338
|
"""
|
|
338
339
|
Properties that indicate resource read permissions.
|
|
339
340
|
"""
|
|
@@ -341,7 +342,7 @@ class ConfigsConfAcl(dict):
|
|
|
341
342
|
|
|
342
343
|
@property
|
|
343
344
|
@pulumi.getter
|
|
344
|
-
def removable(self) -> Optional[bool]:
|
|
345
|
+
def removable(self) -> Optional[builtins.bool]:
|
|
345
346
|
"""
|
|
346
347
|
Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
347
348
|
"""
|
|
@@ -349,7 +350,7 @@ class ConfigsConfAcl(dict):
|
|
|
349
350
|
|
|
350
351
|
@property
|
|
351
352
|
@pulumi.getter
|
|
352
|
-
def sharing(self) -> Optional[str]:
|
|
353
|
+
def sharing(self) -> Optional[builtins.str]:
|
|
353
354
|
"""
|
|
354
355
|
Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
355
356
|
"""
|
|
@@ -357,7 +358,7 @@ class ConfigsConfAcl(dict):
|
|
|
357
358
|
|
|
358
359
|
@property
|
|
359
360
|
@pulumi.getter
|
|
360
|
-
def writes(self) -> Optional[Sequence[str]]:
|
|
361
|
+
def writes(self) -> Optional[Sequence[builtins.str]]:
|
|
361
362
|
"""
|
|
362
363
|
Properties that indicate resource write permissions.
|
|
363
364
|
"""
|
|
@@ -392,29 +393,29 @@ class DataUiViewsAcl(dict):
|
|
|
392
393
|
return super().get(key, default)
|
|
393
394
|
|
|
394
395
|
def __init__(__self__, *,
|
|
395
|
-
app: Optional[str] = None,
|
|
396
|
-
can_change_perms: Optional[bool] = None,
|
|
397
|
-
can_share_app: Optional[bool] = None,
|
|
398
|
-
can_share_global: Optional[bool] = None,
|
|
399
|
-
can_share_user: Optional[bool] = None,
|
|
400
|
-
can_write: Optional[bool] = None,
|
|
401
|
-
owner: Optional[str] = None,
|
|
402
|
-
reads: Optional[Sequence[str]] = None,
|
|
403
|
-
removable: Optional[bool] = None,
|
|
404
|
-
sharing: Optional[str] = None,
|
|
405
|
-
writes: Optional[Sequence[str]] = None):
|
|
406
|
-
"""
|
|
407
|
-
:param str app: The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
408
|
-
:param bool can_change_perms: Indicates if the active user can change permissions for this object. Defaults to true.
|
|
409
|
-
:param bool can_share_app: Indicates if the active user can change sharing to app level. Defaults to true.
|
|
410
|
-
:param bool can_share_global: Indicates if the active user can change sharing to system level. Defaults to true.
|
|
411
|
-
:param bool can_share_user: Indicates if the active user can change sharing to user level. Defaults to true.
|
|
412
|
-
:param bool can_write: Indicates if the active user can edit this object. Defaults to true.
|
|
413
|
-
:param str owner: User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
414
|
-
:param Sequence[str] reads: Properties that indicate resource read permissions.
|
|
415
|
-
:param bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
416
|
-
:param str sharing: Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
417
|
-
:param Sequence[str] writes: Properties that indicate resource write permissions.
|
|
396
|
+
app: Optional[builtins.str] = None,
|
|
397
|
+
can_change_perms: Optional[builtins.bool] = None,
|
|
398
|
+
can_share_app: Optional[builtins.bool] = None,
|
|
399
|
+
can_share_global: Optional[builtins.bool] = None,
|
|
400
|
+
can_share_user: Optional[builtins.bool] = None,
|
|
401
|
+
can_write: Optional[builtins.bool] = None,
|
|
402
|
+
owner: Optional[builtins.str] = None,
|
|
403
|
+
reads: Optional[Sequence[builtins.str]] = None,
|
|
404
|
+
removable: Optional[builtins.bool] = None,
|
|
405
|
+
sharing: Optional[builtins.str] = None,
|
|
406
|
+
writes: Optional[Sequence[builtins.str]] = None):
|
|
407
|
+
"""
|
|
408
|
+
:param builtins.str app: The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
409
|
+
:param builtins.bool can_change_perms: Indicates if the active user can change permissions for this object. Defaults to true.
|
|
410
|
+
:param builtins.bool can_share_app: Indicates if the active user can change sharing to app level. Defaults to true.
|
|
411
|
+
:param builtins.bool can_share_global: Indicates if the active user can change sharing to system level. Defaults to true.
|
|
412
|
+
:param builtins.bool can_share_user: Indicates if the active user can change sharing to user level. Defaults to true.
|
|
413
|
+
:param builtins.bool can_write: Indicates if the active user can edit this object. Defaults to true.
|
|
414
|
+
:param builtins.str owner: User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
415
|
+
:param Sequence[builtins.str] reads: Properties that indicate resource read permissions.
|
|
416
|
+
:param builtins.bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
417
|
+
:param builtins.str sharing: Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
418
|
+
:param Sequence[builtins.str] writes: Properties that indicate resource write permissions.
|
|
418
419
|
"""
|
|
419
420
|
if app is not None:
|
|
420
421
|
pulumi.set(__self__, "app", app)
|
|
@@ -441,7 +442,7 @@ class DataUiViewsAcl(dict):
|
|
|
441
442
|
|
|
442
443
|
@property
|
|
443
444
|
@pulumi.getter
|
|
444
|
-
def app(self) -> Optional[str]:
|
|
445
|
+
def app(self) -> Optional[builtins.str]:
|
|
445
446
|
"""
|
|
446
447
|
The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
447
448
|
"""
|
|
@@ -449,7 +450,7 @@ class DataUiViewsAcl(dict):
|
|
|
449
450
|
|
|
450
451
|
@property
|
|
451
452
|
@pulumi.getter(name="canChangePerms")
|
|
452
|
-
def can_change_perms(self) -> Optional[bool]:
|
|
453
|
+
def can_change_perms(self) -> Optional[builtins.bool]:
|
|
453
454
|
"""
|
|
454
455
|
Indicates if the active user can change permissions for this object. Defaults to true.
|
|
455
456
|
"""
|
|
@@ -457,7 +458,7 @@ class DataUiViewsAcl(dict):
|
|
|
457
458
|
|
|
458
459
|
@property
|
|
459
460
|
@pulumi.getter(name="canShareApp")
|
|
460
|
-
def can_share_app(self) -> Optional[bool]:
|
|
461
|
+
def can_share_app(self) -> Optional[builtins.bool]:
|
|
461
462
|
"""
|
|
462
463
|
Indicates if the active user can change sharing to app level. Defaults to true.
|
|
463
464
|
"""
|
|
@@ -465,7 +466,7 @@ class DataUiViewsAcl(dict):
|
|
|
465
466
|
|
|
466
467
|
@property
|
|
467
468
|
@pulumi.getter(name="canShareGlobal")
|
|
468
|
-
def can_share_global(self) -> Optional[bool]:
|
|
469
|
+
def can_share_global(self) -> Optional[builtins.bool]:
|
|
469
470
|
"""
|
|
470
471
|
Indicates if the active user can change sharing to system level. Defaults to true.
|
|
471
472
|
"""
|
|
@@ -473,7 +474,7 @@ class DataUiViewsAcl(dict):
|
|
|
473
474
|
|
|
474
475
|
@property
|
|
475
476
|
@pulumi.getter(name="canShareUser")
|
|
476
|
-
def can_share_user(self) -> Optional[bool]:
|
|
477
|
+
def can_share_user(self) -> Optional[builtins.bool]:
|
|
477
478
|
"""
|
|
478
479
|
Indicates if the active user can change sharing to user level. Defaults to true.
|
|
479
480
|
"""
|
|
@@ -481,7 +482,7 @@ class DataUiViewsAcl(dict):
|
|
|
481
482
|
|
|
482
483
|
@property
|
|
483
484
|
@pulumi.getter(name="canWrite")
|
|
484
|
-
def can_write(self) -> Optional[bool]:
|
|
485
|
+
def can_write(self) -> Optional[builtins.bool]:
|
|
485
486
|
"""
|
|
486
487
|
Indicates if the active user can edit this object. Defaults to true.
|
|
487
488
|
"""
|
|
@@ -489,7 +490,7 @@ class DataUiViewsAcl(dict):
|
|
|
489
490
|
|
|
490
491
|
@property
|
|
491
492
|
@pulumi.getter
|
|
492
|
-
def owner(self) -> Optional[str]:
|
|
493
|
+
def owner(self) -> Optional[builtins.str]:
|
|
493
494
|
"""
|
|
494
495
|
User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
495
496
|
"""
|
|
@@ -497,7 +498,7 @@ class DataUiViewsAcl(dict):
|
|
|
497
498
|
|
|
498
499
|
@property
|
|
499
500
|
@pulumi.getter
|
|
500
|
-
def reads(self) -> Optional[Sequence[str]]:
|
|
501
|
+
def reads(self) -> Optional[Sequence[builtins.str]]:
|
|
501
502
|
"""
|
|
502
503
|
Properties that indicate resource read permissions.
|
|
503
504
|
"""
|
|
@@ -505,7 +506,7 @@ class DataUiViewsAcl(dict):
|
|
|
505
506
|
|
|
506
507
|
@property
|
|
507
508
|
@pulumi.getter
|
|
508
|
-
def removable(self) -> Optional[bool]:
|
|
509
|
+
def removable(self) -> Optional[builtins.bool]:
|
|
509
510
|
"""
|
|
510
511
|
Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
511
512
|
"""
|
|
@@ -513,7 +514,7 @@ class DataUiViewsAcl(dict):
|
|
|
513
514
|
|
|
514
515
|
@property
|
|
515
516
|
@pulumi.getter
|
|
516
|
-
def sharing(self) -> Optional[str]:
|
|
517
|
+
def sharing(self) -> Optional[builtins.str]:
|
|
517
518
|
"""
|
|
518
519
|
Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
519
520
|
"""
|
|
@@ -521,7 +522,7 @@ class DataUiViewsAcl(dict):
|
|
|
521
522
|
|
|
522
523
|
@property
|
|
523
524
|
@pulumi.getter
|
|
524
|
-
def writes(self) -> Optional[Sequence[str]]:
|
|
525
|
+
def writes(self) -> Optional[Sequence[builtins.str]]:
|
|
525
526
|
"""
|
|
526
527
|
Properties that indicate resource write permissions.
|
|
527
528
|
"""
|
|
@@ -556,29 +557,29 @@ class GenericAclAcl(dict):
|
|
|
556
557
|
return super().get(key, default)
|
|
557
558
|
|
|
558
559
|
def __init__(__self__, *,
|
|
559
|
-
app: Optional[str] = None,
|
|
560
|
-
can_change_perms: Optional[bool] = None,
|
|
561
|
-
can_share_app: Optional[bool] = None,
|
|
562
|
-
can_share_global: Optional[bool] = None,
|
|
563
|
-
can_share_user: Optional[bool] = None,
|
|
564
|
-
can_write: Optional[bool] = None,
|
|
565
|
-
owner: Optional[str] = None,
|
|
566
|
-
reads: Optional[Sequence[str]] = None,
|
|
567
|
-
removable: Optional[bool] = None,
|
|
568
|
-
sharing: Optional[str] = None,
|
|
569
|
-
writes: Optional[Sequence[str]] = None):
|
|
570
|
-
"""
|
|
571
|
-
:param str app: The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
572
|
-
:param bool can_change_perms: Indicates if the active user can change permissions for this object. Defaults to true.
|
|
573
|
-
:param bool can_share_app: Indicates if the active user can change sharing to app level. Defaults to true.
|
|
574
|
-
:param bool can_share_global: Indicates if the active user can change sharing to system level. Defaults to true.
|
|
575
|
-
:param bool can_share_user: Indicates if the active user can change sharing to user level. Defaults to true.
|
|
576
|
-
:param bool can_write: Indicates if the active user can edit this object. Defaults to true.
|
|
577
|
-
:param str owner: User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
578
|
-
:param Sequence[str] reads: Properties that indicate resource read permissions.
|
|
579
|
-
:param bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
580
|
-
:param str sharing: Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
581
|
-
:param Sequence[str] writes: Properties that indicate resource write permissions.
|
|
560
|
+
app: Optional[builtins.str] = None,
|
|
561
|
+
can_change_perms: Optional[builtins.bool] = None,
|
|
562
|
+
can_share_app: Optional[builtins.bool] = None,
|
|
563
|
+
can_share_global: Optional[builtins.bool] = None,
|
|
564
|
+
can_share_user: Optional[builtins.bool] = None,
|
|
565
|
+
can_write: Optional[builtins.bool] = None,
|
|
566
|
+
owner: Optional[builtins.str] = None,
|
|
567
|
+
reads: Optional[Sequence[builtins.str]] = None,
|
|
568
|
+
removable: Optional[builtins.bool] = None,
|
|
569
|
+
sharing: Optional[builtins.str] = None,
|
|
570
|
+
writes: Optional[Sequence[builtins.str]] = None):
|
|
571
|
+
"""
|
|
572
|
+
:param builtins.str app: The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
573
|
+
:param builtins.bool can_change_perms: Indicates if the active user can change permissions for this object. Defaults to true.
|
|
574
|
+
:param builtins.bool can_share_app: Indicates if the active user can change sharing to app level. Defaults to true.
|
|
575
|
+
:param builtins.bool can_share_global: Indicates if the active user can change sharing to system level. Defaults to true.
|
|
576
|
+
:param builtins.bool can_share_user: Indicates if the active user can change sharing to user level. Defaults to true.
|
|
577
|
+
:param builtins.bool can_write: Indicates if the active user can edit this object. Defaults to true.
|
|
578
|
+
:param builtins.str owner: User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
579
|
+
:param Sequence[builtins.str] reads: Properties that indicate resource read permissions.
|
|
580
|
+
:param builtins.bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
581
|
+
:param builtins.str sharing: Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
582
|
+
:param Sequence[builtins.str] writes: Properties that indicate resource write permissions.
|
|
582
583
|
"""
|
|
583
584
|
if app is not None:
|
|
584
585
|
pulumi.set(__self__, "app", app)
|
|
@@ -605,7 +606,7 @@ class GenericAclAcl(dict):
|
|
|
605
606
|
|
|
606
607
|
@property
|
|
607
608
|
@pulumi.getter
|
|
608
|
-
def app(self) -> Optional[str]:
|
|
609
|
+
def app(self) -> Optional[builtins.str]:
|
|
609
610
|
"""
|
|
610
611
|
The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
611
612
|
"""
|
|
@@ -613,7 +614,7 @@ class GenericAclAcl(dict):
|
|
|
613
614
|
|
|
614
615
|
@property
|
|
615
616
|
@pulumi.getter(name="canChangePerms")
|
|
616
|
-
def can_change_perms(self) -> Optional[bool]:
|
|
617
|
+
def can_change_perms(self) -> Optional[builtins.bool]:
|
|
617
618
|
"""
|
|
618
619
|
Indicates if the active user can change permissions for this object. Defaults to true.
|
|
619
620
|
"""
|
|
@@ -621,7 +622,7 @@ class GenericAclAcl(dict):
|
|
|
621
622
|
|
|
622
623
|
@property
|
|
623
624
|
@pulumi.getter(name="canShareApp")
|
|
624
|
-
def can_share_app(self) -> Optional[bool]:
|
|
625
|
+
def can_share_app(self) -> Optional[builtins.bool]:
|
|
625
626
|
"""
|
|
626
627
|
Indicates if the active user can change sharing to app level. Defaults to true.
|
|
627
628
|
"""
|
|
@@ -629,7 +630,7 @@ class GenericAclAcl(dict):
|
|
|
629
630
|
|
|
630
631
|
@property
|
|
631
632
|
@pulumi.getter(name="canShareGlobal")
|
|
632
|
-
def can_share_global(self) -> Optional[bool]:
|
|
633
|
+
def can_share_global(self) -> Optional[builtins.bool]:
|
|
633
634
|
"""
|
|
634
635
|
Indicates if the active user can change sharing to system level. Defaults to true.
|
|
635
636
|
"""
|
|
@@ -637,7 +638,7 @@ class GenericAclAcl(dict):
|
|
|
637
638
|
|
|
638
639
|
@property
|
|
639
640
|
@pulumi.getter(name="canShareUser")
|
|
640
|
-
def can_share_user(self) -> Optional[bool]:
|
|
641
|
+
def can_share_user(self) -> Optional[builtins.bool]:
|
|
641
642
|
"""
|
|
642
643
|
Indicates if the active user can change sharing to user level. Defaults to true.
|
|
643
644
|
"""
|
|
@@ -645,7 +646,7 @@ class GenericAclAcl(dict):
|
|
|
645
646
|
|
|
646
647
|
@property
|
|
647
648
|
@pulumi.getter(name="canWrite")
|
|
648
|
-
def can_write(self) -> Optional[bool]:
|
|
649
|
+
def can_write(self) -> Optional[builtins.bool]:
|
|
649
650
|
"""
|
|
650
651
|
Indicates if the active user can edit this object. Defaults to true.
|
|
651
652
|
"""
|
|
@@ -653,7 +654,7 @@ class GenericAclAcl(dict):
|
|
|
653
654
|
|
|
654
655
|
@property
|
|
655
656
|
@pulumi.getter
|
|
656
|
-
def owner(self) -> Optional[str]:
|
|
657
|
+
def owner(self) -> Optional[builtins.str]:
|
|
657
658
|
"""
|
|
658
659
|
User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
659
660
|
"""
|
|
@@ -661,7 +662,7 @@ class GenericAclAcl(dict):
|
|
|
661
662
|
|
|
662
663
|
@property
|
|
663
664
|
@pulumi.getter
|
|
664
|
-
def reads(self) -> Optional[Sequence[str]]:
|
|
665
|
+
def reads(self) -> Optional[Sequence[builtins.str]]:
|
|
665
666
|
"""
|
|
666
667
|
Properties that indicate resource read permissions.
|
|
667
668
|
"""
|
|
@@ -669,7 +670,7 @@ class GenericAclAcl(dict):
|
|
|
669
670
|
|
|
670
671
|
@property
|
|
671
672
|
@pulumi.getter
|
|
672
|
-
def removable(self) -> Optional[bool]:
|
|
673
|
+
def removable(self) -> Optional[builtins.bool]:
|
|
673
674
|
"""
|
|
674
675
|
Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
675
676
|
"""
|
|
@@ -677,7 +678,7 @@ class GenericAclAcl(dict):
|
|
|
677
678
|
|
|
678
679
|
@property
|
|
679
680
|
@pulumi.getter
|
|
680
|
-
def sharing(self) -> Optional[str]:
|
|
681
|
+
def sharing(self) -> Optional[builtins.str]:
|
|
681
682
|
"""
|
|
682
683
|
Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
683
684
|
"""
|
|
@@ -685,7 +686,7 @@ class GenericAclAcl(dict):
|
|
|
685
686
|
|
|
686
687
|
@property
|
|
687
688
|
@pulumi.getter
|
|
688
|
-
def writes(self) -> Optional[Sequence[str]]:
|
|
689
|
+
def writes(self) -> Optional[Sequence[builtins.str]]:
|
|
689
690
|
"""
|
|
690
691
|
Properties that indicate resource write permissions.
|
|
691
692
|
"""
|
|
@@ -720,29 +721,29 @@ class IndexesAcl(dict):
|
|
|
720
721
|
return super().get(key, default)
|
|
721
722
|
|
|
722
723
|
def __init__(__self__, *,
|
|
723
|
-
app: Optional[str] = None,
|
|
724
|
-
can_change_perms: Optional[bool] = None,
|
|
725
|
-
can_share_app: Optional[bool] = None,
|
|
726
|
-
can_share_global: Optional[bool] = None,
|
|
727
|
-
can_share_user: Optional[bool] = None,
|
|
728
|
-
can_write: Optional[bool] = None,
|
|
729
|
-
owner: Optional[str] = None,
|
|
730
|
-
reads: Optional[Sequence[str]] = None,
|
|
731
|
-
removable: Optional[bool] = None,
|
|
732
|
-
sharing: Optional[str] = None,
|
|
733
|
-
writes: Optional[Sequence[str]] = None):
|
|
734
|
-
"""
|
|
735
|
-
:param str app: The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
736
|
-
:param bool can_change_perms: Indicates if the active user can change permissions for this object. Defaults to true.
|
|
737
|
-
:param bool can_share_app: Indicates if the active user can change sharing to app level. Defaults to true.
|
|
738
|
-
:param bool can_share_global: Indicates if the active user can change sharing to system level. Defaults to true.
|
|
739
|
-
:param bool can_share_user: Indicates if the active user can change sharing to user level. Defaults to true.
|
|
740
|
-
:param bool can_write: Indicates if the active user can edit this object. Defaults to true.
|
|
741
|
-
:param str owner: User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
742
|
-
:param Sequence[str] reads: Properties that indicate resource read permissions.
|
|
743
|
-
:param bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
744
|
-
:param str sharing: Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
745
|
-
:param Sequence[str] writes: Properties that indicate resource write permissions.
|
|
724
|
+
app: Optional[builtins.str] = None,
|
|
725
|
+
can_change_perms: Optional[builtins.bool] = None,
|
|
726
|
+
can_share_app: Optional[builtins.bool] = None,
|
|
727
|
+
can_share_global: Optional[builtins.bool] = None,
|
|
728
|
+
can_share_user: Optional[builtins.bool] = None,
|
|
729
|
+
can_write: Optional[builtins.bool] = None,
|
|
730
|
+
owner: Optional[builtins.str] = None,
|
|
731
|
+
reads: Optional[Sequence[builtins.str]] = None,
|
|
732
|
+
removable: Optional[builtins.bool] = None,
|
|
733
|
+
sharing: Optional[builtins.str] = None,
|
|
734
|
+
writes: Optional[Sequence[builtins.str]] = None):
|
|
735
|
+
"""
|
|
736
|
+
:param builtins.str app: The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
737
|
+
:param builtins.bool can_change_perms: Indicates if the active user can change permissions for this object. Defaults to true.
|
|
738
|
+
:param builtins.bool can_share_app: Indicates if the active user can change sharing to app level. Defaults to true.
|
|
739
|
+
:param builtins.bool can_share_global: Indicates if the active user can change sharing to system level. Defaults to true.
|
|
740
|
+
:param builtins.bool can_share_user: Indicates if the active user can change sharing to user level. Defaults to true.
|
|
741
|
+
:param builtins.bool can_write: Indicates if the active user can edit this object. Defaults to true.
|
|
742
|
+
:param builtins.str owner: User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
743
|
+
:param Sequence[builtins.str] reads: Properties that indicate resource read permissions.
|
|
744
|
+
:param builtins.bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
745
|
+
:param builtins.str sharing: Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
746
|
+
:param Sequence[builtins.str] writes: Properties that indicate resource write permissions.
|
|
746
747
|
"""
|
|
747
748
|
if app is not None:
|
|
748
749
|
pulumi.set(__self__, "app", app)
|
|
@@ -769,7 +770,7 @@ class IndexesAcl(dict):
|
|
|
769
770
|
|
|
770
771
|
@property
|
|
771
772
|
@pulumi.getter
|
|
772
|
-
def app(self) -> Optional[str]:
|
|
773
|
+
def app(self) -> Optional[builtins.str]:
|
|
773
774
|
"""
|
|
774
775
|
The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
775
776
|
"""
|
|
@@ -777,7 +778,7 @@ class IndexesAcl(dict):
|
|
|
777
778
|
|
|
778
779
|
@property
|
|
779
780
|
@pulumi.getter(name="canChangePerms")
|
|
780
|
-
def can_change_perms(self) -> Optional[bool]:
|
|
781
|
+
def can_change_perms(self) -> Optional[builtins.bool]:
|
|
781
782
|
"""
|
|
782
783
|
Indicates if the active user can change permissions for this object. Defaults to true.
|
|
783
784
|
"""
|
|
@@ -785,7 +786,7 @@ class IndexesAcl(dict):
|
|
|
785
786
|
|
|
786
787
|
@property
|
|
787
788
|
@pulumi.getter(name="canShareApp")
|
|
788
|
-
def can_share_app(self) -> Optional[bool]:
|
|
789
|
+
def can_share_app(self) -> Optional[builtins.bool]:
|
|
789
790
|
"""
|
|
790
791
|
Indicates if the active user can change sharing to app level. Defaults to true.
|
|
791
792
|
"""
|
|
@@ -793,7 +794,7 @@ class IndexesAcl(dict):
|
|
|
793
794
|
|
|
794
795
|
@property
|
|
795
796
|
@pulumi.getter(name="canShareGlobal")
|
|
796
|
-
def can_share_global(self) -> Optional[bool]:
|
|
797
|
+
def can_share_global(self) -> Optional[builtins.bool]:
|
|
797
798
|
"""
|
|
798
799
|
Indicates if the active user can change sharing to system level. Defaults to true.
|
|
799
800
|
"""
|
|
@@ -801,7 +802,7 @@ class IndexesAcl(dict):
|
|
|
801
802
|
|
|
802
803
|
@property
|
|
803
804
|
@pulumi.getter(name="canShareUser")
|
|
804
|
-
def can_share_user(self) -> Optional[bool]:
|
|
805
|
+
def can_share_user(self) -> Optional[builtins.bool]:
|
|
805
806
|
"""
|
|
806
807
|
Indicates if the active user can change sharing to user level. Defaults to true.
|
|
807
808
|
"""
|
|
@@ -809,7 +810,7 @@ class IndexesAcl(dict):
|
|
|
809
810
|
|
|
810
811
|
@property
|
|
811
812
|
@pulumi.getter(name="canWrite")
|
|
812
|
-
def can_write(self) -> Optional[bool]:
|
|
813
|
+
def can_write(self) -> Optional[builtins.bool]:
|
|
813
814
|
"""
|
|
814
815
|
Indicates if the active user can edit this object. Defaults to true.
|
|
815
816
|
"""
|
|
@@ -817,7 +818,7 @@ class IndexesAcl(dict):
|
|
|
817
818
|
|
|
818
819
|
@property
|
|
819
820
|
@pulumi.getter
|
|
820
|
-
def owner(self) -> Optional[str]:
|
|
821
|
+
def owner(self) -> Optional[builtins.str]:
|
|
821
822
|
"""
|
|
822
823
|
User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
823
824
|
"""
|
|
@@ -825,7 +826,7 @@ class IndexesAcl(dict):
|
|
|
825
826
|
|
|
826
827
|
@property
|
|
827
828
|
@pulumi.getter
|
|
828
|
-
def reads(self) -> Optional[Sequence[str]]:
|
|
829
|
+
def reads(self) -> Optional[Sequence[builtins.str]]:
|
|
829
830
|
"""
|
|
830
831
|
Properties that indicate resource read permissions.
|
|
831
832
|
"""
|
|
@@ -833,7 +834,7 @@ class IndexesAcl(dict):
|
|
|
833
834
|
|
|
834
835
|
@property
|
|
835
836
|
@pulumi.getter
|
|
836
|
-
def removable(self) -> Optional[bool]:
|
|
837
|
+
def removable(self) -> Optional[builtins.bool]:
|
|
837
838
|
"""
|
|
838
839
|
Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
839
840
|
"""
|
|
@@ -841,7 +842,7 @@ class IndexesAcl(dict):
|
|
|
841
842
|
|
|
842
843
|
@property
|
|
843
844
|
@pulumi.getter
|
|
844
|
-
def sharing(self) -> Optional[str]:
|
|
845
|
+
def sharing(self) -> Optional[builtins.str]:
|
|
845
846
|
"""
|
|
846
847
|
Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
847
848
|
"""
|
|
@@ -849,7 +850,7 @@ class IndexesAcl(dict):
|
|
|
849
850
|
|
|
850
851
|
@property
|
|
851
852
|
@pulumi.getter
|
|
852
|
-
def writes(self) -> Optional[Sequence[str]]:
|
|
853
|
+
def writes(self) -> Optional[Sequence[builtins.str]]:
|
|
853
854
|
"""
|
|
854
855
|
Properties that indicate resource write permissions.
|
|
855
856
|
"""
|
|
@@ -884,29 +885,29 @@ class InputsHttpEventCollectorAcl(dict):
|
|
|
884
885
|
return super().get(key, default)
|
|
885
886
|
|
|
886
887
|
def __init__(__self__, *,
|
|
887
|
-
app: Optional[str] = None,
|
|
888
|
-
can_change_perms: Optional[bool] = None,
|
|
889
|
-
can_share_app: Optional[bool] = None,
|
|
890
|
-
can_share_global: Optional[bool] = None,
|
|
891
|
-
can_share_user: Optional[bool] = None,
|
|
892
|
-
can_write: Optional[bool] = None,
|
|
893
|
-
owner: Optional[str] = None,
|
|
894
|
-
reads: Optional[Sequence[str]] = None,
|
|
895
|
-
removable: Optional[bool] = None,
|
|
896
|
-
sharing: Optional[str] = None,
|
|
897
|
-
writes: Optional[Sequence[str]] = None):
|
|
898
|
-
"""
|
|
899
|
-
:param str app: The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
900
|
-
:param bool can_change_perms: Indicates if the active user can change permissions for this object. Defaults to true.
|
|
901
|
-
:param bool can_share_app: Indicates if the active user can change sharing to app level. Defaults to true.
|
|
902
|
-
:param bool can_share_global: Indicates if the active user can change sharing to system level. Defaults to true.
|
|
903
|
-
:param bool can_share_user: Indicates if the active user can change sharing to user level. Defaults to true.
|
|
904
|
-
:param bool can_write: Indicates if the active user can edit this object. Defaults to true.
|
|
905
|
-
:param str owner: User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
906
|
-
:param Sequence[str] reads: Properties that indicate resource read permissions.
|
|
907
|
-
:param bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
908
|
-
:param str sharing: Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
909
|
-
:param Sequence[str] writes: Properties that indicate resource write permissions.
|
|
888
|
+
app: Optional[builtins.str] = None,
|
|
889
|
+
can_change_perms: Optional[builtins.bool] = None,
|
|
890
|
+
can_share_app: Optional[builtins.bool] = None,
|
|
891
|
+
can_share_global: Optional[builtins.bool] = None,
|
|
892
|
+
can_share_user: Optional[builtins.bool] = None,
|
|
893
|
+
can_write: Optional[builtins.bool] = None,
|
|
894
|
+
owner: Optional[builtins.str] = None,
|
|
895
|
+
reads: Optional[Sequence[builtins.str]] = None,
|
|
896
|
+
removable: Optional[builtins.bool] = None,
|
|
897
|
+
sharing: Optional[builtins.str] = None,
|
|
898
|
+
writes: Optional[Sequence[builtins.str]] = None):
|
|
899
|
+
"""
|
|
900
|
+
:param builtins.str app: The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
901
|
+
:param builtins.bool can_change_perms: Indicates if the active user can change permissions for this object. Defaults to true.
|
|
902
|
+
:param builtins.bool can_share_app: Indicates if the active user can change sharing to app level. Defaults to true.
|
|
903
|
+
:param builtins.bool can_share_global: Indicates if the active user can change sharing to system level. Defaults to true.
|
|
904
|
+
:param builtins.bool can_share_user: Indicates if the active user can change sharing to user level. Defaults to true.
|
|
905
|
+
:param builtins.bool can_write: Indicates if the active user can edit this object. Defaults to true.
|
|
906
|
+
:param builtins.str owner: User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
907
|
+
:param Sequence[builtins.str] reads: Properties that indicate resource read permissions.
|
|
908
|
+
:param builtins.bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
909
|
+
:param builtins.str sharing: Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
910
|
+
:param Sequence[builtins.str] writes: Properties that indicate resource write permissions.
|
|
910
911
|
"""
|
|
911
912
|
if app is not None:
|
|
912
913
|
pulumi.set(__self__, "app", app)
|
|
@@ -933,7 +934,7 @@ class InputsHttpEventCollectorAcl(dict):
|
|
|
933
934
|
|
|
934
935
|
@property
|
|
935
936
|
@pulumi.getter
|
|
936
|
-
def app(self) -> Optional[str]:
|
|
937
|
+
def app(self) -> Optional[builtins.str]:
|
|
937
938
|
"""
|
|
938
939
|
The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
939
940
|
"""
|
|
@@ -941,7 +942,7 @@ class InputsHttpEventCollectorAcl(dict):
|
|
|
941
942
|
|
|
942
943
|
@property
|
|
943
944
|
@pulumi.getter(name="canChangePerms")
|
|
944
|
-
def can_change_perms(self) -> Optional[bool]:
|
|
945
|
+
def can_change_perms(self) -> Optional[builtins.bool]:
|
|
945
946
|
"""
|
|
946
947
|
Indicates if the active user can change permissions for this object. Defaults to true.
|
|
947
948
|
"""
|
|
@@ -949,7 +950,7 @@ class InputsHttpEventCollectorAcl(dict):
|
|
|
949
950
|
|
|
950
951
|
@property
|
|
951
952
|
@pulumi.getter(name="canShareApp")
|
|
952
|
-
def can_share_app(self) -> Optional[bool]:
|
|
953
|
+
def can_share_app(self) -> Optional[builtins.bool]:
|
|
953
954
|
"""
|
|
954
955
|
Indicates if the active user can change sharing to app level. Defaults to true.
|
|
955
956
|
"""
|
|
@@ -957,7 +958,7 @@ class InputsHttpEventCollectorAcl(dict):
|
|
|
957
958
|
|
|
958
959
|
@property
|
|
959
960
|
@pulumi.getter(name="canShareGlobal")
|
|
960
|
-
def can_share_global(self) -> Optional[bool]:
|
|
961
|
+
def can_share_global(self) -> Optional[builtins.bool]:
|
|
961
962
|
"""
|
|
962
963
|
Indicates if the active user can change sharing to system level. Defaults to true.
|
|
963
964
|
"""
|
|
@@ -965,7 +966,7 @@ class InputsHttpEventCollectorAcl(dict):
|
|
|
965
966
|
|
|
966
967
|
@property
|
|
967
968
|
@pulumi.getter(name="canShareUser")
|
|
968
|
-
def can_share_user(self) -> Optional[bool]:
|
|
969
|
+
def can_share_user(self) -> Optional[builtins.bool]:
|
|
969
970
|
"""
|
|
970
971
|
Indicates if the active user can change sharing to user level. Defaults to true.
|
|
971
972
|
"""
|
|
@@ -973,7 +974,7 @@ class InputsHttpEventCollectorAcl(dict):
|
|
|
973
974
|
|
|
974
975
|
@property
|
|
975
976
|
@pulumi.getter(name="canWrite")
|
|
976
|
-
def can_write(self) -> Optional[bool]:
|
|
977
|
+
def can_write(self) -> Optional[builtins.bool]:
|
|
977
978
|
"""
|
|
978
979
|
Indicates if the active user can edit this object. Defaults to true.
|
|
979
980
|
"""
|
|
@@ -981,7 +982,7 @@ class InputsHttpEventCollectorAcl(dict):
|
|
|
981
982
|
|
|
982
983
|
@property
|
|
983
984
|
@pulumi.getter
|
|
984
|
-
def owner(self) -> Optional[str]:
|
|
985
|
+
def owner(self) -> Optional[builtins.str]:
|
|
985
986
|
"""
|
|
986
987
|
User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
987
988
|
"""
|
|
@@ -989,7 +990,7 @@ class InputsHttpEventCollectorAcl(dict):
|
|
|
989
990
|
|
|
990
991
|
@property
|
|
991
992
|
@pulumi.getter
|
|
992
|
-
def reads(self) -> Optional[Sequence[str]]:
|
|
993
|
+
def reads(self) -> Optional[Sequence[builtins.str]]:
|
|
993
994
|
"""
|
|
994
995
|
Properties that indicate resource read permissions.
|
|
995
996
|
"""
|
|
@@ -997,7 +998,7 @@ class InputsHttpEventCollectorAcl(dict):
|
|
|
997
998
|
|
|
998
999
|
@property
|
|
999
1000
|
@pulumi.getter
|
|
1000
|
-
def removable(self) -> Optional[bool]:
|
|
1001
|
+
def removable(self) -> Optional[builtins.bool]:
|
|
1001
1002
|
"""
|
|
1002
1003
|
Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
1003
1004
|
"""
|
|
@@ -1005,7 +1006,7 @@ class InputsHttpEventCollectorAcl(dict):
|
|
|
1005
1006
|
|
|
1006
1007
|
@property
|
|
1007
1008
|
@pulumi.getter
|
|
1008
|
-
def sharing(self) -> Optional[str]:
|
|
1009
|
+
def sharing(self) -> Optional[builtins.str]:
|
|
1009
1010
|
"""
|
|
1010
1011
|
Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
1011
1012
|
"""
|
|
@@ -1013,7 +1014,7 @@ class InputsHttpEventCollectorAcl(dict):
|
|
|
1013
1014
|
|
|
1014
1015
|
@property
|
|
1015
1016
|
@pulumi.getter
|
|
1016
|
-
def writes(self) -> Optional[Sequence[str]]:
|
|
1017
|
+
def writes(self) -> Optional[Sequence[builtins.str]]:
|
|
1017
1018
|
"""
|
|
1018
1019
|
Properties that indicate resource write permissions.
|
|
1019
1020
|
"""
|
|
@@ -1048,29 +1049,29 @@ class InputsMonitorAcl(dict):
|
|
|
1048
1049
|
return super().get(key, default)
|
|
1049
1050
|
|
|
1050
1051
|
def __init__(__self__, *,
|
|
1051
|
-
app: Optional[str] = None,
|
|
1052
|
-
can_change_perms: Optional[bool] = None,
|
|
1053
|
-
can_share_app: Optional[bool] = None,
|
|
1054
|
-
can_share_global: Optional[bool] = None,
|
|
1055
|
-
can_share_user: Optional[bool] = None,
|
|
1056
|
-
can_write: Optional[bool] = None,
|
|
1057
|
-
owner: Optional[str] = None,
|
|
1058
|
-
reads: Optional[Sequence[str]] = None,
|
|
1059
|
-
removable: Optional[bool] = None,
|
|
1060
|
-
sharing: Optional[str] = None,
|
|
1061
|
-
writes: Optional[Sequence[str]] = None):
|
|
1062
|
-
"""
|
|
1063
|
-
:param str app: The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
1064
|
-
:param bool can_change_perms: Indicates if the active user can change permissions for this object. Defaults to true.
|
|
1065
|
-
:param bool can_share_app: Indicates if the active user can change sharing to app level. Defaults to true.
|
|
1066
|
-
:param bool can_share_global: Indicates if the active user can change sharing to system level. Defaults to true.
|
|
1067
|
-
:param bool can_share_user: Indicates if the active user can change sharing to user level. Defaults to true.
|
|
1068
|
-
:param bool can_write: Indicates if the active user can edit this object. Defaults to true.
|
|
1069
|
-
:param str owner: User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
1070
|
-
:param Sequence[str] reads: Properties that indicate resource read permissions.
|
|
1071
|
-
:param bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
1072
|
-
:param str sharing: Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
1073
|
-
:param Sequence[str] writes: Properties that indicate resource write permissions.
|
|
1052
|
+
app: Optional[builtins.str] = None,
|
|
1053
|
+
can_change_perms: Optional[builtins.bool] = None,
|
|
1054
|
+
can_share_app: Optional[builtins.bool] = None,
|
|
1055
|
+
can_share_global: Optional[builtins.bool] = None,
|
|
1056
|
+
can_share_user: Optional[builtins.bool] = None,
|
|
1057
|
+
can_write: Optional[builtins.bool] = None,
|
|
1058
|
+
owner: Optional[builtins.str] = None,
|
|
1059
|
+
reads: Optional[Sequence[builtins.str]] = None,
|
|
1060
|
+
removable: Optional[builtins.bool] = None,
|
|
1061
|
+
sharing: Optional[builtins.str] = None,
|
|
1062
|
+
writes: Optional[Sequence[builtins.str]] = None):
|
|
1063
|
+
"""
|
|
1064
|
+
:param builtins.str app: The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
1065
|
+
:param builtins.bool can_change_perms: Indicates if the active user can change permissions for this object. Defaults to true.
|
|
1066
|
+
:param builtins.bool can_share_app: Indicates if the active user can change sharing to app level. Defaults to true.
|
|
1067
|
+
:param builtins.bool can_share_global: Indicates if the active user can change sharing to system level. Defaults to true.
|
|
1068
|
+
:param builtins.bool can_share_user: Indicates if the active user can change sharing to user level. Defaults to true.
|
|
1069
|
+
:param builtins.bool can_write: Indicates if the active user can edit this object. Defaults to true.
|
|
1070
|
+
:param builtins.str owner: User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
1071
|
+
:param Sequence[builtins.str] reads: Properties that indicate resource read permissions.
|
|
1072
|
+
:param builtins.bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
1073
|
+
:param builtins.str sharing: Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
1074
|
+
:param Sequence[builtins.str] writes: Properties that indicate resource write permissions.
|
|
1074
1075
|
"""
|
|
1075
1076
|
if app is not None:
|
|
1076
1077
|
pulumi.set(__self__, "app", app)
|
|
@@ -1097,7 +1098,7 @@ class InputsMonitorAcl(dict):
|
|
|
1097
1098
|
|
|
1098
1099
|
@property
|
|
1099
1100
|
@pulumi.getter
|
|
1100
|
-
def app(self) -> Optional[str]:
|
|
1101
|
+
def app(self) -> Optional[builtins.str]:
|
|
1101
1102
|
"""
|
|
1102
1103
|
The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
1103
1104
|
"""
|
|
@@ -1105,7 +1106,7 @@ class InputsMonitorAcl(dict):
|
|
|
1105
1106
|
|
|
1106
1107
|
@property
|
|
1107
1108
|
@pulumi.getter(name="canChangePerms")
|
|
1108
|
-
def can_change_perms(self) -> Optional[bool]:
|
|
1109
|
+
def can_change_perms(self) -> Optional[builtins.bool]:
|
|
1109
1110
|
"""
|
|
1110
1111
|
Indicates if the active user can change permissions for this object. Defaults to true.
|
|
1111
1112
|
"""
|
|
@@ -1113,7 +1114,7 @@ class InputsMonitorAcl(dict):
|
|
|
1113
1114
|
|
|
1114
1115
|
@property
|
|
1115
1116
|
@pulumi.getter(name="canShareApp")
|
|
1116
|
-
def can_share_app(self) -> Optional[bool]:
|
|
1117
|
+
def can_share_app(self) -> Optional[builtins.bool]:
|
|
1117
1118
|
"""
|
|
1118
1119
|
Indicates if the active user can change sharing to app level. Defaults to true.
|
|
1119
1120
|
"""
|
|
@@ -1121,7 +1122,7 @@ class InputsMonitorAcl(dict):
|
|
|
1121
1122
|
|
|
1122
1123
|
@property
|
|
1123
1124
|
@pulumi.getter(name="canShareGlobal")
|
|
1124
|
-
def can_share_global(self) -> Optional[bool]:
|
|
1125
|
+
def can_share_global(self) -> Optional[builtins.bool]:
|
|
1125
1126
|
"""
|
|
1126
1127
|
Indicates if the active user can change sharing to system level. Defaults to true.
|
|
1127
1128
|
"""
|
|
@@ -1129,7 +1130,7 @@ class InputsMonitorAcl(dict):
|
|
|
1129
1130
|
|
|
1130
1131
|
@property
|
|
1131
1132
|
@pulumi.getter(name="canShareUser")
|
|
1132
|
-
def can_share_user(self) -> Optional[bool]:
|
|
1133
|
+
def can_share_user(self) -> Optional[builtins.bool]:
|
|
1133
1134
|
"""
|
|
1134
1135
|
Indicates if the active user can change sharing to user level. Defaults to true.
|
|
1135
1136
|
"""
|
|
@@ -1137,7 +1138,7 @@ class InputsMonitorAcl(dict):
|
|
|
1137
1138
|
|
|
1138
1139
|
@property
|
|
1139
1140
|
@pulumi.getter(name="canWrite")
|
|
1140
|
-
def can_write(self) -> Optional[bool]:
|
|
1141
|
+
def can_write(self) -> Optional[builtins.bool]:
|
|
1141
1142
|
"""
|
|
1142
1143
|
Indicates if the active user can edit this object. Defaults to true.
|
|
1143
1144
|
"""
|
|
@@ -1145,7 +1146,7 @@ class InputsMonitorAcl(dict):
|
|
|
1145
1146
|
|
|
1146
1147
|
@property
|
|
1147
1148
|
@pulumi.getter
|
|
1148
|
-
def owner(self) -> Optional[str]:
|
|
1149
|
+
def owner(self) -> Optional[builtins.str]:
|
|
1149
1150
|
"""
|
|
1150
1151
|
User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
1151
1152
|
"""
|
|
@@ -1153,7 +1154,7 @@ class InputsMonitorAcl(dict):
|
|
|
1153
1154
|
|
|
1154
1155
|
@property
|
|
1155
1156
|
@pulumi.getter
|
|
1156
|
-
def reads(self) -> Optional[Sequence[str]]:
|
|
1157
|
+
def reads(self) -> Optional[Sequence[builtins.str]]:
|
|
1157
1158
|
"""
|
|
1158
1159
|
Properties that indicate resource read permissions.
|
|
1159
1160
|
"""
|
|
@@ -1161,7 +1162,7 @@ class InputsMonitorAcl(dict):
|
|
|
1161
1162
|
|
|
1162
1163
|
@property
|
|
1163
1164
|
@pulumi.getter
|
|
1164
|
-
def removable(self) -> Optional[bool]:
|
|
1165
|
+
def removable(self) -> Optional[builtins.bool]:
|
|
1165
1166
|
"""
|
|
1166
1167
|
Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
1167
1168
|
"""
|
|
@@ -1169,7 +1170,7 @@ class InputsMonitorAcl(dict):
|
|
|
1169
1170
|
|
|
1170
1171
|
@property
|
|
1171
1172
|
@pulumi.getter
|
|
1172
|
-
def sharing(self) -> Optional[str]:
|
|
1173
|
+
def sharing(self) -> Optional[builtins.str]:
|
|
1173
1174
|
"""
|
|
1174
1175
|
Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
1175
1176
|
"""
|
|
@@ -1177,7 +1178,7 @@ class InputsMonitorAcl(dict):
|
|
|
1177
1178
|
|
|
1178
1179
|
@property
|
|
1179
1180
|
@pulumi.getter
|
|
1180
|
-
def writes(self) -> Optional[Sequence[str]]:
|
|
1181
|
+
def writes(self) -> Optional[Sequence[builtins.str]]:
|
|
1181
1182
|
"""
|
|
1182
1183
|
Properties that indicate resource write permissions.
|
|
1183
1184
|
"""
|
|
@@ -1212,29 +1213,29 @@ class InputsScriptAcl(dict):
|
|
|
1212
1213
|
return super().get(key, default)
|
|
1213
1214
|
|
|
1214
1215
|
def __init__(__self__, *,
|
|
1215
|
-
app: Optional[str] = None,
|
|
1216
|
-
can_change_perms: Optional[bool] = None,
|
|
1217
|
-
can_share_app: Optional[bool] = None,
|
|
1218
|
-
can_share_global: Optional[bool] = None,
|
|
1219
|
-
can_share_user: Optional[bool] = None,
|
|
1220
|
-
can_write: Optional[bool] = None,
|
|
1221
|
-
owner: Optional[str] = None,
|
|
1222
|
-
reads: Optional[Sequence[str]] = None,
|
|
1223
|
-
removable: Optional[bool] = None,
|
|
1224
|
-
sharing: Optional[str] = None,
|
|
1225
|
-
writes: Optional[Sequence[str]] = None):
|
|
1226
|
-
"""
|
|
1227
|
-
:param str app: The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
1228
|
-
:param bool can_change_perms: Indicates if the active user can change permissions for this object. Defaults to true.
|
|
1229
|
-
:param bool can_share_app: Indicates if the active user can change sharing to app level. Defaults to true.
|
|
1230
|
-
:param bool can_share_global: Indicates if the active user can change sharing to system level. Defaults to true.
|
|
1231
|
-
:param bool can_share_user: Indicates if the active user can change sharing to user level. Defaults to true.
|
|
1232
|
-
:param bool can_write: Indicates if the active user can edit this object. Defaults to true.
|
|
1233
|
-
:param str owner: User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
1234
|
-
:param Sequence[str] reads: Properties that indicate resource read permissions.
|
|
1235
|
-
:param bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
1236
|
-
:param str sharing: Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
1237
|
-
:param Sequence[str] writes: Properties that indicate resource write permissions.
|
|
1216
|
+
app: Optional[builtins.str] = None,
|
|
1217
|
+
can_change_perms: Optional[builtins.bool] = None,
|
|
1218
|
+
can_share_app: Optional[builtins.bool] = None,
|
|
1219
|
+
can_share_global: Optional[builtins.bool] = None,
|
|
1220
|
+
can_share_user: Optional[builtins.bool] = None,
|
|
1221
|
+
can_write: Optional[builtins.bool] = None,
|
|
1222
|
+
owner: Optional[builtins.str] = None,
|
|
1223
|
+
reads: Optional[Sequence[builtins.str]] = None,
|
|
1224
|
+
removable: Optional[builtins.bool] = None,
|
|
1225
|
+
sharing: Optional[builtins.str] = None,
|
|
1226
|
+
writes: Optional[Sequence[builtins.str]] = None):
|
|
1227
|
+
"""
|
|
1228
|
+
:param builtins.str app: The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
1229
|
+
:param builtins.bool can_change_perms: Indicates if the active user can change permissions for this object. Defaults to true.
|
|
1230
|
+
:param builtins.bool can_share_app: Indicates if the active user can change sharing to app level. Defaults to true.
|
|
1231
|
+
:param builtins.bool can_share_global: Indicates if the active user can change sharing to system level. Defaults to true.
|
|
1232
|
+
:param builtins.bool can_share_user: Indicates if the active user can change sharing to user level. Defaults to true.
|
|
1233
|
+
:param builtins.bool can_write: Indicates if the active user can edit this object. Defaults to true.
|
|
1234
|
+
:param builtins.str owner: User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
1235
|
+
:param Sequence[builtins.str] reads: Properties that indicate resource read permissions.
|
|
1236
|
+
:param builtins.bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
1237
|
+
:param builtins.str sharing: Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
1238
|
+
:param Sequence[builtins.str] writes: Properties that indicate resource write permissions.
|
|
1238
1239
|
"""
|
|
1239
1240
|
if app is not None:
|
|
1240
1241
|
pulumi.set(__self__, "app", app)
|
|
@@ -1261,7 +1262,7 @@ class InputsScriptAcl(dict):
|
|
|
1261
1262
|
|
|
1262
1263
|
@property
|
|
1263
1264
|
@pulumi.getter
|
|
1264
|
-
def app(self) -> Optional[str]:
|
|
1265
|
+
def app(self) -> Optional[builtins.str]:
|
|
1265
1266
|
"""
|
|
1266
1267
|
The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
1267
1268
|
"""
|
|
@@ -1269,7 +1270,7 @@ class InputsScriptAcl(dict):
|
|
|
1269
1270
|
|
|
1270
1271
|
@property
|
|
1271
1272
|
@pulumi.getter(name="canChangePerms")
|
|
1272
|
-
def can_change_perms(self) -> Optional[bool]:
|
|
1273
|
+
def can_change_perms(self) -> Optional[builtins.bool]:
|
|
1273
1274
|
"""
|
|
1274
1275
|
Indicates if the active user can change permissions for this object. Defaults to true.
|
|
1275
1276
|
"""
|
|
@@ -1277,7 +1278,7 @@ class InputsScriptAcl(dict):
|
|
|
1277
1278
|
|
|
1278
1279
|
@property
|
|
1279
1280
|
@pulumi.getter(name="canShareApp")
|
|
1280
|
-
def can_share_app(self) -> Optional[bool]:
|
|
1281
|
+
def can_share_app(self) -> Optional[builtins.bool]:
|
|
1281
1282
|
"""
|
|
1282
1283
|
Indicates if the active user can change sharing to app level. Defaults to true.
|
|
1283
1284
|
"""
|
|
@@ -1285,7 +1286,7 @@ class InputsScriptAcl(dict):
|
|
|
1285
1286
|
|
|
1286
1287
|
@property
|
|
1287
1288
|
@pulumi.getter(name="canShareGlobal")
|
|
1288
|
-
def can_share_global(self) -> Optional[bool]:
|
|
1289
|
+
def can_share_global(self) -> Optional[builtins.bool]:
|
|
1289
1290
|
"""
|
|
1290
1291
|
Indicates if the active user can change sharing to system level. Defaults to true.
|
|
1291
1292
|
"""
|
|
@@ -1293,7 +1294,7 @@ class InputsScriptAcl(dict):
|
|
|
1293
1294
|
|
|
1294
1295
|
@property
|
|
1295
1296
|
@pulumi.getter(name="canShareUser")
|
|
1296
|
-
def can_share_user(self) -> Optional[bool]:
|
|
1297
|
+
def can_share_user(self) -> Optional[builtins.bool]:
|
|
1297
1298
|
"""
|
|
1298
1299
|
Indicates if the active user can change sharing to user level. Defaults to true.
|
|
1299
1300
|
"""
|
|
@@ -1301,7 +1302,7 @@ class InputsScriptAcl(dict):
|
|
|
1301
1302
|
|
|
1302
1303
|
@property
|
|
1303
1304
|
@pulumi.getter(name="canWrite")
|
|
1304
|
-
def can_write(self) -> Optional[bool]:
|
|
1305
|
+
def can_write(self) -> Optional[builtins.bool]:
|
|
1305
1306
|
"""
|
|
1306
1307
|
Indicates if the active user can edit this object. Defaults to true.
|
|
1307
1308
|
"""
|
|
@@ -1309,7 +1310,7 @@ class InputsScriptAcl(dict):
|
|
|
1309
1310
|
|
|
1310
1311
|
@property
|
|
1311
1312
|
@pulumi.getter
|
|
1312
|
-
def owner(self) -> Optional[str]:
|
|
1313
|
+
def owner(self) -> Optional[builtins.str]:
|
|
1313
1314
|
"""
|
|
1314
1315
|
User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
1315
1316
|
"""
|
|
@@ -1317,7 +1318,7 @@ class InputsScriptAcl(dict):
|
|
|
1317
1318
|
|
|
1318
1319
|
@property
|
|
1319
1320
|
@pulumi.getter
|
|
1320
|
-
def reads(self) -> Optional[Sequence[str]]:
|
|
1321
|
+
def reads(self) -> Optional[Sequence[builtins.str]]:
|
|
1321
1322
|
"""
|
|
1322
1323
|
Properties that indicate resource read permissions.
|
|
1323
1324
|
"""
|
|
@@ -1325,7 +1326,7 @@ class InputsScriptAcl(dict):
|
|
|
1325
1326
|
|
|
1326
1327
|
@property
|
|
1327
1328
|
@pulumi.getter
|
|
1328
|
-
def removable(self) -> Optional[bool]:
|
|
1329
|
+
def removable(self) -> Optional[builtins.bool]:
|
|
1329
1330
|
"""
|
|
1330
1331
|
Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
1331
1332
|
"""
|
|
@@ -1333,7 +1334,7 @@ class InputsScriptAcl(dict):
|
|
|
1333
1334
|
|
|
1334
1335
|
@property
|
|
1335
1336
|
@pulumi.getter
|
|
1336
|
-
def sharing(self) -> Optional[str]:
|
|
1337
|
+
def sharing(self) -> Optional[builtins.str]:
|
|
1337
1338
|
"""
|
|
1338
1339
|
Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
1339
1340
|
"""
|
|
@@ -1341,7 +1342,7 @@ class InputsScriptAcl(dict):
|
|
|
1341
1342
|
|
|
1342
1343
|
@property
|
|
1343
1344
|
@pulumi.getter
|
|
1344
|
-
def writes(self) -> Optional[Sequence[str]]:
|
|
1345
|
+
def writes(self) -> Optional[Sequence[builtins.str]]:
|
|
1345
1346
|
"""
|
|
1346
1347
|
Properties that indicate resource write permissions.
|
|
1347
1348
|
"""
|
|
@@ -1376,29 +1377,29 @@ class InputsTcpCookedAcl(dict):
|
|
|
1376
1377
|
return super().get(key, default)
|
|
1377
1378
|
|
|
1378
1379
|
def __init__(__self__, *,
|
|
1379
|
-
app: Optional[str] = None,
|
|
1380
|
-
can_change_perms: Optional[bool] = None,
|
|
1381
|
-
can_share_app: Optional[bool] = None,
|
|
1382
|
-
can_share_global: Optional[bool] = None,
|
|
1383
|
-
can_share_user: Optional[bool] = None,
|
|
1384
|
-
can_write: Optional[bool] = None,
|
|
1385
|
-
owner: Optional[str] = None,
|
|
1386
|
-
reads: Optional[Sequence[str]] = None,
|
|
1387
|
-
removable: Optional[bool] = None,
|
|
1388
|
-
sharing: Optional[str] = None,
|
|
1389
|
-
writes: Optional[Sequence[str]] = None):
|
|
1390
|
-
"""
|
|
1391
|
-
:param str app: The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
1392
|
-
:param bool can_change_perms: Indicates if the active user can change permissions for this object. Defaults to true.
|
|
1393
|
-
:param bool can_share_app: Indicates if the active user can change sharing to app level. Defaults to true.
|
|
1394
|
-
:param bool can_share_global: Indicates if the active user can change sharing to system level. Defaults to true.
|
|
1395
|
-
:param bool can_share_user: Indicates if the active user can change sharing to user level. Defaults to true.
|
|
1396
|
-
:param bool can_write: Indicates if the active user can edit this object. Defaults to true.
|
|
1397
|
-
:param str owner: User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
1398
|
-
:param Sequence[str] reads: Properties that indicate resource read permissions.
|
|
1399
|
-
:param bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
1400
|
-
:param str sharing: Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
1401
|
-
:param Sequence[str] writes: Properties that indicate resource write permissions.
|
|
1380
|
+
app: Optional[builtins.str] = None,
|
|
1381
|
+
can_change_perms: Optional[builtins.bool] = None,
|
|
1382
|
+
can_share_app: Optional[builtins.bool] = None,
|
|
1383
|
+
can_share_global: Optional[builtins.bool] = None,
|
|
1384
|
+
can_share_user: Optional[builtins.bool] = None,
|
|
1385
|
+
can_write: Optional[builtins.bool] = None,
|
|
1386
|
+
owner: Optional[builtins.str] = None,
|
|
1387
|
+
reads: Optional[Sequence[builtins.str]] = None,
|
|
1388
|
+
removable: Optional[builtins.bool] = None,
|
|
1389
|
+
sharing: Optional[builtins.str] = None,
|
|
1390
|
+
writes: Optional[Sequence[builtins.str]] = None):
|
|
1391
|
+
"""
|
|
1392
|
+
:param builtins.str app: The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
1393
|
+
:param builtins.bool can_change_perms: Indicates if the active user can change permissions for this object. Defaults to true.
|
|
1394
|
+
:param builtins.bool can_share_app: Indicates if the active user can change sharing to app level. Defaults to true.
|
|
1395
|
+
:param builtins.bool can_share_global: Indicates if the active user can change sharing to system level. Defaults to true.
|
|
1396
|
+
:param builtins.bool can_share_user: Indicates if the active user can change sharing to user level. Defaults to true.
|
|
1397
|
+
:param builtins.bool can_write: Indicates if the active user can edit this object. Defaults to true.
|
|
1398
|
+
:param builtins.str owner: User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
1399
|
+
:param Sequence[builtins.str] reads: Properties that indicate resource read permissions.
|
|
1400
|
+
:param builtins.bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
1401
|
+
:param builtins.str sharing: Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
1402
|
+
:param Sequence[builtins.str] writes: Properties that indicate resource write permissions.
|
|
1402
1403
|
"""
|
|
1403
1404
|
if app is not None:
|
|
1404
1405
|
pulumi.set(__self__, "app", app)
|
|
@@ -1425,7 +1426,7 @@ class InputsTcpCookedAcl(dict):
|
|
|
1425
1426
|
|
|
1426
1427
|
@property
|
|
1427
1428
|
@pulumi.getter
|
|
1428
|
-
def app(self) -> Optional[str]:
|
|
1429
|
+
def app(self) -> Optional[builtins.str]:
|
|
1429
1430
|
"""
|
|
1430
1431
|
The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
1431
1432
|
"""
|
|
@@ -1433,7 +1434,7 @@ class InputsTcpCookedAcl(dict):
|
|
|
1433
1434
|
|
|
1434
1435
|
@property
|
|
1435
1436
|
@pulumi.getter(name="canChangePerms")
|
|
1436
|
-
def can_change_perms(self) -> Optional[bool]:
|
|
1437
|
+
def can_change_perms(self) -> Optional[builtins.bool]:
|
|
1437
1438
|
"""
|
|
1438
1439
|
Indicates if the active user can change permissions for this object. Defaults to true.
|
|
1439
1440
|
"""
|
|
@@ -1441,7 +1442,7 @@ class InputsTcpCookedAcl(dict):
|
|
|
1441
1442
|
|
|
1442
1443
|
@property
|
|
1443
1444
|
@pulumi.getter(name="canShareApp")
|
|
1444
|
-
def can_share_app(self) -> Optional[bool]:
|
|
1445
|
+
def can_share_app(self) -> Optional[builtins.bool]:
|
|
1445
1446
|
"""
|
|
1446
1447
|
Indicates if the active user can change sharing to app level. Defaults to true.
|
|
1447
1448
|
"""
|
|
@@ -1449,7 +1450,7 @@ class InputsTcpCookedAcl(dict):
|
|
|
1449
1450
|
|
|
1450
1451
|
@property
|
|
1451
1452
|
@pulumi.getter(name="canShareGlobal")
|
|
1452
|
-
def can_share_global(self) -> Optional[bool]:
|
|
1453
|
+
def can_share_global(self) -> Optional[builtins.bool]:
|
|
1453
1454
|
"""
|
|
1454
1455
|
Indicates if the active user can change sharing to system level. Defaults to true.
|
|
1455
1456
|
"""
|
|
@@ -1457,7 +1458,7 @@ class InputsTcpCookedAcl(dict):
|
|
|
1457
1458
|
|
|
1458
1459
|
@property
|
|
1459
1460
|
@pulumi.getter(name="canShareUser")
|
|
1460
|
-
def can_share_user(self) -> Optional[bool]:
|
|
1461
|
+
def can_share_user(self) -> Optional[builtins.bool]:
|
|
1461
1462
|
"""
|
|
1462
1463
|
Indicates if the active user can change sharing to user level. Defaults to true.
|
|
1463
1464
|
"""
|
|
@@ -1465,7 +1466,7 @@ class InputsTcpCookedAcl(dict):
|
|
|
1465
1466
|
|
|
1466
1467
|
@property
|
|
1467
1468
|
@pulumi.getter(name="canWrite")
|
|
1468
|
-
def can_write(self) -> Optional[bool]:
|
|
1469
|
+
def can_write(self) -> Optional[builtins.bool]:
|
|
1469
1470
|
"""
|
|
1470
1471
|
Indicates if the active user can edit this object. Defaults to true.
|
|
1471
1472
|
"""
|
|
@@ -1473,7 +1474,7 @@ class InputsTcpCookedAcl(dict):
|
|
|
1473
1474
|
|
|
1474
1475
|
@property
|
|
1475
1476
|
@pulumi.getter
|
|
1476
|
-
def owner(self) -> Optional[str]:
|
|
1477
|
+
def owner(self) -> Optional[builtins.str]:
|
|
1477
1478
|
"""
|
|
1478
1479
|
User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
1479
1480
|
"""
|
|
@@ -1481,7 +1482,7 @@ class InputsTcpCookedAcl(dict):
|
|
|
1481
1482
|
|
|
1482
1483
|
@property
|
|
1483
1484
|
@pulumi.getter
|
|
1484
|
-
def reads(self) -> Optional[Sequence[str]]:
|
|
1485
|
+
def reads(self) -> Optional[Sequence[builtins.str]]:
|
|
1485
1486
|
"""
|
|
1486
1487
|
Properties that indicate resource read permissions.
|
|
1487
1488
|
"""
|
|
@@ -1489,7 +1490,7 @@ class InputsTcpCookedAcl(dict):
|
|
|
1489
1490
|
|
|
1490
1491
|
@property
|
|
1491
1492
|
@pulumi.getter
|
|
1492
|
-
def removable(self) -> Optional[bool]:
|
|
1493
|
+
def removable(self) -> Optional[builtins.bool]:
|
|
1493
1494
|
"""
|
|
1494
1495
|
Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
1495
1496
|
"""
|
|
@@ -1497,7 +1498,7 @@ class InputsTcpCookedAcl(dict):
|
|
|
1497
1498
|
|
|
1498
1499
|
@property
|
|
1499
1500
|
@pulumi.getter
|
|
1500
|
-
def sharing(self) -> Optional[str]:
|
|
1501
|
+
def sharing(self) -> Optional[builtins.str]:
|
|
1501
1502
|
"""
|
|
1502
1503
|
Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
1503
1504
|
"""
|
|
@@ -1505,7 +1506,7 @@ class InputsTcpCookedAcl(dict):
|
|
|
1505
1506
|
|
|
1506
1507
|
@property
|
|
1507
1508
|
@pulumi.getter
|
|
1508
|
-
def writes(self) -> Optional[Sequence[str]]:
|
|
1509
|
+
def writes(self) -> Optional[Sequence[builtins.str]]:
|
|
1509
1510
|
"""
|
|
1510
1511
|
Properties that indicate resource write permissions.
|
|
1511
1512
|
"""
|
|
@@ -1540,29 +1541,29 @@ class InputsTcpRawAcl(dict):
|
|
|
1540
1541
|
return super().get(key, default)
|
|
1541
1542
|
|
|
1542
1543
|
def __init__(__self__, *,
|
|
1543
|
-
app: Optional[str] = None,
|
|
1544
|
-
can_change_perms: Optional[bool] = None,
|
|
1545
|
-
can_share_app: Optional[bool] = None,
|
|
1546
|
-
can_share_global: Optional[bool] = None,
|
|
1547
|
-
can_share_user: Optional[bool] = None,
|
|
1548
|
-
can_write: Optional[bool] = None,
|
|
1549
|
-
owner: Optional[str] = None,
|
|
1550
|
-
reads: Optional[Sequence[str]] = None,
|
|
1551
|
-
removable: Optional[bool] = None,
|
|
1552
|
-
sharing: Optional[str] = None,
|
|
1553
|
-
writes: Optional[Sequence[str]] = None):
|
|
1554
|
-
"""
|
|
1555
|
-
:param str app: The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
1556
|
-
:param bool can_change_perms: Indicates if the active user can change permissions for this object. Defaults to true.
|
|
1557
|
-
:param bool can_share_app: Indicates if the active user can change sharing to app level. Defaults to true.
|
|
1558
|
-
:param bool can_share_global: Indicates if the active user can change sharing to system level. Defaults to true.
|
|
1559
|
-
:param bool can_share_user: Indicates if the active user can change sharing to user level. Defaults to true.
|
|
1560
|
-
:param bool can_write: Indicates if the active user can edit this object. Defaults to true.
|
|
1561
|
-
:param str owner: User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
1562
|
-
:param Sequence[str] reads: Properties that indicate resource read permissions.
|
|
1563
|
-
:param bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
1564
|
-
:param str sharing: Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
1565
|
-
:param Sequence[str] writes: Properties that indicate resource write permissions.
|
|
1544
|
+
app: Optional[builtins.str] = None,
|
|
1545
|
+
can_change_perms: Optional[builtins.bool] = None,
|
|
1546
|
+
can_share_app: Optional[builtins.bool] = None,
|
|
1547
|
+
can_share_global: Optional[builtins.bool] = None,
|
|
1548
|
+
can_share_user: Optional[builtins.bool] = None,
|
|
1549
|
+
can_write: Optional[builtins.bool] = None,
|
|
1550
|
+
owner: Optional[builtins.str] = None,
|
|
1551
|
+
reads: Optional[Sequence[builtins.str]] = None,
|
|
1552
|
+
removable: Optional[builtins.bool] = None,
|
|
1553
|
+
sharing: Optional[builtins.str] = None,
|
|
1554
|
+
writes: Optional[Sequence[builtins.str]] = None):
|
|
1555
|
+
"""
|
|
1556
|
+
:param builtins.str app: The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
1557
|
+
:param builtins.bool can_change_perms: Indicates if the active user can change permissions for this object. Defaults to true.
|
|
1558
|
+
:param builtins.bool can_share_app: Indicates if the active user can change sharing to app level. Defaults to true.
|
|
1559
|
+
:param builtins.bool can_share_global: Indicates if the active user can change sharing to system level. Defaults to true.
|
|
1560
|
+
:param builtins.bool can_share_user: Indicates if the active user can change sharing to user level. Defaults to true.
|
|
1561
|
+
:param builtins.bool can_write: Indicates if the active user can edit this object. Defaults to true.
|
|
1562
|
+
:param builtins.str owner: User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
1563
|
+
:param Sequence[builtins.str] reads: Properties that indicate resource read permissions.
|
|
1564
|
+
:param builtins.bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
1565
|
+
:param builtins.str sharing: Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
1566
|
+
:param Sequence[builtins.str] writes: Properties that indicate resource write permissions.
|
|
1566
1567
|
"""
|
|
1567
1568
|
if app is not None:
|
|
1568
1569
|
pulumi.set(__self__, "app", app)
|
|
@@ -1589,7 +1590,7 @@ class InputsTcpRawAcl(dict):
|
|
|
1589
1590
|
|
|
1590
1591
|
@property
|
|
1591
1592
|
@pulumi.getter
|
|
1592
|
-
def app(self) -> Optional[str]:
|
|
1593
|
+
def app(self) -> Optional[builtins.str]:
|
|
1593
1594
|
"""
|
|
1594
1595
|
The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
1595
1596
|
"""
|
|
@@ -1597,7 +1598,7 @@ class InputsTcpRawAcl(dict):
|
|
|
1597
1598
|
|
|
1598
1599
|
@property
|
|
1599
1600
|
@pulumi.getter(name="canChangePerms")
|
|
1600
|
-
def can_change_perms(self) -> Optional[bool]:
|
|
1601
|
+
def can_change_perms(self) -> Optional[builtins.bool]:
|
|
1601
1602
|
"""
|
|
1602
1603
|
Indicates if the active user can change permissions for this object. Defaults to true.
|
|
1603
1604
|
"""
|
|
@@ -1605,7 +1606,7 @@ class InputsTcpRawAcl(dict):
|
|
|
1605
1606
|
|
|
1606
1607
|
@property
|
|
1607
1608
|
@pulumi.getter(name="canShareApp")
|
|
1608
|
-
def can_share_app(self) -> Optional[bool]:
|
|
1609
|
+
def can_share_app(self) -> Optional[builtins.bool]:
|
|
1609
1610
|
"""
|
|
1610
1611
|
Indicates if the active user can change sharing to app level. Defaults to true.
|
|
1611
1612
|
"""
|
|
@@ -1613,7 +1614,7 @@ class InputsTcpRawAcl(dict):
|
|
|
1613
1614
|
|
|
1614
1615
|
@property
|
|
1615
1616
|
@pulumi.getter(name="canShareGlobal")
|
|
1616
|
-
def can_share_global(self) -> Optional[bool]:
|
|
1617
|
+
def can_share_global(self) -> Optional[builtins.bool]:
|
|
1617
1618
|
"""
|
|
1618
1619
|
Indicates if the active user can change sharing to system level. Defaults to true.
|
|
1619
1620
|
"""
|
|
@@ -1621,7 +1622,7 @@ class InputsTcpRawAcl(dict):
|
|
|
1621
1622
|
|
|
1622
1623
|
@property
|
|
1623
1624
|
@pulumi.getter(name="canShareUser")
|
|
1624
|
-
def can_share_user(self) -> Optional[bool]:
|
|
1625
|
+
def can_share_user(self) -> Optional[builtins.bool]:
|
|
1625
1626
|
"""
|
|
1626
1627
|
Indicates if the active user can change sharing to user level. Defaults to true.
|
|
1627
1628
|
"""
|
|
@@ -1629,7 +1630,7 @@ class InputsTcpRawAcl(dict):
|
|
|
1629
1630
|
|
|
1630
1631
|
@property
|
|
1631
1632
|
@pulumi.getter(name="canWrite")
|
|
1632
|
-
def can_write(self) -> Optional[bool]:
|
|
1633
|
+
def can_write(self) -> Optional[builtins.bool]:
|
|
1633
1634
|
"""
|
|
1634
1635
|
Indicates if the active user can edit this object. Defaults to true.
|
|
1635
1636
|
"""
|
|
@@ -1637,7 +1638,7 @@ class InputsTcpRawAcl(dict):
|
|
|
1637
1638
|
|
|
1638
1639
|
@property
|
|
1639
1640
|
@pulumi.getter
|
|
1640
|
-
def owner(self) -> Optional[str]:
|
|
1641
|
+
def owner(self) -> Optional[builtins.str]:
|
|
1641
1642
|
"""
|
|
1642
1643
|
User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
1643
1644
|
"""
|
|
@@ -1645,7 +1646,7 @@ class InputsTcpRawAcl(dict):
|
|
|
1645
1646
|
|
|
1646
1647
|
@property
|
|
1647
1648
|
@pulumi.getter
|
|
1648
|
-
def reads(self) -> Optional[Sequence[str]]:
|
|
1649
|
+
def reads(self) -> Optional[Sequence[builtins.str]]:
|
|
1649
1650
|
"""
|
|
1650
1651
|
Properties that indicate resource read permissions.
|
|
1651
1652
|
"""
|
|
@@ -1653,7 +1654,7 @@ class InputsTcpRawAcl(dict):
|
|
|
1653
1654
|
|
|
1654
1655
|
@property
|
|
1655
1656
|
@pulumi.getter
|
|
1656
|
-
def removable(self) -> Optional[bool]:
|
|
1657
|
+
def removable(self) -> Optional[builtins.bool]:
|
|
1657
1658
|
"""
|
|
1658
1659
|
Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
1659
1660
|
"""
|
|
@@ -1661,7 +1662,7 @@ class InputsTcpRawAcl(dict):
|
|
|
1661
1662
|
|
|
1662
1663
|
@property
|
|
1663
1664
|
@pulumi.getter
|
|
1664
|
-
def sharing(self) -> Optional[str]:
|
|
1665
|
+
def sharing(self) -> Optional[builtins.str]:
|
|
1665
1666
|
"""
|
|
1666
1667
|
Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
1667
1668
|
"""
|
|
@@ -1669,7 +1670,7 @@ class InputsTcpRawAcl(dict):
|
|
|
1669
1670
|
|
|
1670
1671
|
@property
|
|
1671
1672
|
@pulumi.getter
|
|
1672
|
-
def writes(self) -> Optional[Sequence[str]]:
|
|
1673
|
+
def writes(self) -> Optional[Sequence[builtins.str]]:
|
|
1673
1674
|
"""
|
|
1674
1675
|
Properties that indicate resource write permissions.
|
|
1675
1676
|
"""
|
|
@@ -1704,29 +1705,29 @@ class InputsTcpSplunkTcpTokenAcl(dict):
|
|
|
1704
1705
|
return super().get(key, default)
|
|
1705
1706
|
|
|
1706
1707
|
def __init__(__self__, *,
|
|
1707
|
-
app: Optional[str] = None,
|
|
1708
|
-
can_change_perms: Optional[bool] = None,
|
|
1709
|
-
can_share_app: Optional[bool] = None,
|
|
1710
|
-
can_share_global: Optional[bool] = None,
|
|
1711
|
-
can_share_user: Optional[bool] = None,
|
|
1712
|
-
can_write: Optional[bool] = None,
|
|
1713
|
-
owner: Optional[str] = None,
|
|
1714
|
-
reads: Optional[Sequence[str]] = None,
|
|
1715
|
-
removable: Optional[bool] = None,
|
|
1716
|
-
sharing: Optional[str] = None,
|
|
1717
|
-
writes: Optional[Sequence[str]] = None):
|
|
1718
|
-
"""
|
|
1719
|
-
:param str app: The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
1720
|
-
:param bool can_change_perms: Indicates if the active user can change permissions for this object. Defaults to true.
|
|
1721
|
-
:param bool can_share_app: Indicates if the active user can change sharing to app level. Defaults to true.
|
|
1722
|
-
:param bool can_share_global: Indicates if the active user can change sharing to system level. Defaults to true.
|
|
1723
|
-
:param bool can_share_user: Indicates if the active user can change sharing to user level. Defaults to true.
|
|
1724
|
-
:param bool can_write: Indicates if the active user can edit this object. Defaults to true.
|
|
1725
|
-
:param str owner: User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
1726
|
-
:param Sequence[str] reads: Properties that indicate resource read permissions.
|
|
1727
|
-
:param bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
1728
|
-
:param str sharing: Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
1729
|
-
:param Sequence[str] writes: Properties that indicate resource write permissions.
|
|
1708
|
+
app: Optional[builtins.str] = None,
|
|
1709
|
+
can_change_perms: Optional[builtins.bool] = None,
|
|
1710
|
+
can_share_app: Optional[builtins.bool] = None,
|
|
1711
|
+
can_share_global: Optional[builtins.bool] = None,
|
|
1712
|
+
can_share_user: Optional[builtins.bool] = None,
|
|
1713
|
+
can_write: Optional[builtins.bool] = None,
|
|
1714
|
+
owner: Optional[builtins.str] = None,
|
|
1715
|
+
reads: Optional[Sequence[builtins.str]] = None,
|
|
1716
|
+
removable: Optional[builtins.bool] = None,
|
|
1717
|
+
sharing: Optional[builtins.str] = None,
|
|
1718
|
+
writes: Optional[Sequence[builtins.str]] = None):
|
|
1719
|
+
"""
|
|
1720
|
+
:param builtins.str app: The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
1721
|
+
:param builtins.bool can_change_perms: Indicates if the active user can change permissions for this object. Defaults to true.
|
|
1722
|
+
:param builtins.bool can_share_app: Indicates if the active user can change sharing to app level. Defaults to true.
|
|
1723
|
+
:param builtins.bool can_share_global: Indicates if the active user can change sharing to system level. Defaults to true.
|
|
1724
|
+
:param builtins.bool can_share_user: Indicates if the active user can change sharing to user level. Defaults to true.
|
|
1725
|
+
:param builtins.bool can_write: Indicates if the active user can edit this object. Defaults to true.
|
|
1726
|
+
:param builtins.str owner: User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
1727
|
+
:param Sequence[builtins.str] reads: Properties that indicate resource read permissions.
|
|
1728
|
+
:param builtins.bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
1729
|
+
:param builtins.str sharing: Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
1730
|
+
:param Sequence[builtins.str] writes: Properties that indicate resource write permissions.
|
|
1730
1731
|
"""
|
|
1731
1732
|
if app is not None:
|
|
1732
1733
|
pulumi.set(__self__, "app", app)
|
|
@@ -1753,7 +1754,7 @@ class InputsTcpSplunkTcpTokenAcl(dict):
|
|
|
1753
1754
|
|
|
1754
1755
|
@property
|
|
1755
1756
|
@pulumi.getter
|
|
1756
|
-
def app(self) -> Optional[str]:
|
|
1757
|
+
def app(self) -> Optional[builtins.str]:
|
|
1757
1758
|
"""
|
|
1758
1759
|
The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
1759
1760
|
"""
|
|
@@ -1761,7 +1762,7 @@ class InputsTcpSplunkTcpTokenAcl(dict):
|
|
|
1761
1762
|
|
|
1762
1763
|
@property
|
|
1763
1764
|
@pulumi.getter(name="canChangePerms")
|
|
1764
|
-
def can_change_perms(self) -> Optional[bool]:
|
|
1765
|
+
def can_change_perms(self) -> Optional[builtins.bool]:
|
|
1765
1766
|
"""
|
|
1766
1767
|
Indicates if the active user can change permissions for this object. Defaults to true.
|
|
1767
1768
|
"""
|
|
@@ -1769,7 +1770,7 @@ class InputsTcpSplunkTcpTokenAcl(dict):
|
|
|
1769
1770
|
|
|
1770
1771
|
@property
|
|
1771
1772
|
@pulumi.getter(name="canShareApp")
|
|
1772
|
-
def can_share_app(self) -> Optional[bool]:
|
|
1773
|
+
def can_share_app(self) -> Optional[builtins.bool]:
|
|
1773
1774
|
"""
|
|
1774
1775
|
Indicates if the active user can change sharing to app level. Defaults to true.
|
|
1775
1776
|
"""
|
|
@@ -1777,7 +1778,7 @@ class InputsTcpSplunkTcpTokenAcl(dict):
|
|
|
1777
1778
|
|
|
1778
1779
|
@property
|
|
1779
1780
|
@pulumi.getter(name="canShareGlobal")
|
|
1780
|
-
def can_share_global(self) -> Optional[bool]:
|
|
1781
|
+
def can_share_global(self) -> Optional[builtins.bool]:
|
|
1781
1782
|
"""
|
|
1782
1783
|
Indicates if the active user can change sharing to system level. Defaults to true.
|
|
1783
1784
|
"""
|
|
@@ -1785,7 +1786,7 @@ class InputsTcpSplunkTcpTokenAcl(dict):
|
|
|
1785
1786
|
|
|
1786
1787
|
@property
|
|
1787
1788
|
@pulumi.getter(name="canShareUser")
|
|
1788
|
-
def can_share_user(self) -> Optional[bool]:
|
|
1789
|
+
def can_share_user(self) -> Optional[builtins.bool]:
|
|
1789
1790
|
"""
|
|
1790
1791
|
Indicates if the active user can change sharing to user level. Defaults to true.
|
|
1791
1792
|
"""
|
|
@@ -1793,7 +1794,7 @@ class InputsTcpSplunkTcpTokenAcl(dict):
|
|
|
1793
1794
|
|
|
1794
1795
|
@property
|
|
1795
1796
|
@pulumi.getter(name="canWrite")
|
|
1796
|
-
def can_write(self) -> Optional[bool]:
|
|
1797
|
+
def can_write(self) -> Optional[builtins.bool]:
|
|
1797
1798
|
"""
|
|
1798
1799
|
Indicates if the active user can edit this object. Defaults to true.
|
|
1799
1800
|
"""
|
|
@@ -1801,7 +1802,7 @@ class InputsTcpSplunkTcpTokenAcl(dict):
|
|
|
1801
1802
|
|
|
1802
1803
|
@property
|
|
1803
1804
|
@pulumi.getter
|
|
1804
|
-
def owner(self) -> Optional[str]:
|
|
1805
|
+
def owner(self) -> Optional[builtins.str]:
|
|
1805
1806
|
"""
|
|
1806
1807
|
User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
1807
1808
|
"""
|
|
@@ -1809,7 +1810,7 @@ class InputsTcpSplunkTcpTokenAcl(dict):
|
|
|
1809
1810
|
|
|
1810
1811
|
@property
|
|
1811
1812
|
@pulumi.getter
|
|
1812
|
-
def reads(self) -> Optional[Sequence[str]]:
|
|
1813
|
+
def reads(self) -> Optional[Sequence[builtins.str]]:
|
|
1813
1814
|
"""
|
|
1814
1815
|
Properties that indicate resource read permissions.
|
|
1815
1816
|
"""
|
|
@@ -1817,7 +1818,7 @@ class InputsTcpSplunkTcpTokenAcl(dict):
|
|
|
1817
1818
|
|
|
1818
1819
|
@property
|
|
1819
1820
|
@pulumi.getter
|
|
1820
|
-
def removable(self) -> Optional[bool]:
|
|
1821
|
+
def removable(self) -> Optional[builtins.bool]:
|
|
1821
1822
|
"""
|
|
1822
1823
|
Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
1823
1824
|
"""
|
|
@@ -1825,7 +1826,7 @@ class InputsTcpSplunkTcpTokenAcl(dict):
|
|
|
1825
1826
|
|
|
1826
1827
|
@property
|
|
1827
1828
|
@pulumi.getter
|
|
1828
|
-
def sharing(self) -> Optional[str]:
|
|
1829
|
+
def sharing(self) -> Optional[builtins.str]:
|
|
1829
1830
|
"""
|
|
1830
1831
|
Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
1831
1832
|
"""
|
|
@@ -1833,7 +1834,7 @@ class InputsTcpSplunkTcpTokenAcl(dict):
|
|
|
1833
1834
|
|
|
1834
1835
|
@property
|
|
1835
1836
|
@pulumi.getter
|
|
1836
|
-
def writes(self) -> Optional[Sequence[str]]:
|
|
1837
|
+
def writes(self) -> Optional[Sequence[builtins.str]]:
|
|
1837
1838
|
"""
|
|
1838
1839
|
Properties that indicate resource write permissions.
|
|
1839
1840
|
"""
|
|
@@ -1868,29 +1869,29 @@ class InputsUdpAcl(dict):
|
|
|
1868
1869
|
return super().get(key, default)
|
|
1869
1870
|
|
|
1870
1871
|
def __init__(__self__, *,
|
|
1871
|
-
app: Optional[str] = None,
|
|
1872
|
-
can_change_perms: Optional[bool] = None,
|
|
1873
|
-
can_share_app: Optional[bool] = None,
|
|
1874
|
-
can_share_global: Optional[bool] = None,
|
|
1875
|
-
can_share_user: Optional[bool] = None,
|
|
1876
|
-
can_write: Optional[bool] = None,
|
|
1877
|
-
owner: Optional[str] = None,
|
|
1878
|
-
reads: Optional[Sequence[str]] = None,
|
|
1879
|
-
removable: Optional[bool] = None,
|
|
1880
|
-
sharing: Optional[str] = None,
|
|
1881
|
-
writes: Optional[Sequence[str]] = None):
|
|
1882
|
-
"""
|
|
1883
|
-
:param str app: The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
1884
|
-
:param bool can_change_perms: Indicates if the active user can change permissions for this object. Defaults to true.
|
|
1885
|
-
:param bool can_share_app: Indicates if the active user can change sharing to app level. Defaults to true.
|
|
1886
|
-
:param bool can_share_global: Indicates if the active user can change sharing to system level. Defaults to true.
|
|
1887
|
-
:param bool can_share_user: Indicates if the active user can change sharing to user level. Defaults to true.
|
|
1888
|
-
:param bool can_write: Indicates if the active user can edit this object. Defaults to true.
|
|
1889
|
-
:param str owner: User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
1890
|
-
:param Sequence[str] reads: Properties that indicate resource read permissions.
|
|
1891
|
-
:param bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
1892
|
-
:param str sharing: Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
1893
|
-
:param Sequence[str] writes: Properties that indicate resource write permissions.
|
|
1872
|
+
app: Optional[builtins.str] = None,
|
|
1873
|
+
can_change_perms: Optional[builtins.bool] = None,
|
|
1874
|
+
can_share_app: Optional[builtins.bool] = None,
|
|
1875
|
+
can_share_global: Optional[builtins.bool] = None,
|
|
1876
|
+
can_share_user: Optional[builtins.bool] = None,
|
|
1877
|
+
can_write: Optional[builtins.bool] = None,
|
|
1878
|
+
owner: Optional[builtins.str] = None,
|
|
1879
|
+
reads: Optional[Sequence[builtins.str]] = None,
|
|
1880
|
+
removable: Optional[builtins.bool] = None,
|
|
1881
|
+
sharing: Optional[builtins.str] = None,
|
|
1882
|
+
writes: Optional[Sequence[builtins.str]] = None):
|
|
1883
|
+
"""
|
|
1884
|
+
:param builtins.str app: The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
1885
|
+
:param builtins.bool can_change_perms: Indicates if the active user can change permissions for this object. Defaults to true.
|
|
1886
|
+
:param builtins.bool can_share_app: Indicates if the active user can change sharing to app level. Defaults to true.
|
|
1887
|
+
:param builtins.bool can_share_global: Indicates if the active user can change sharing to system level. Defaults to true.
|
|
1888
|
+
:param builtins.bool can_share_user: Indicates if the active user can change sharing to user level. Defaults to true.
|
|
1889
|
+
:param builtins.bool can_write: Indicates if the active user can edit this object. Defaults to true.
|
|
1890
|
+
:param builtins.str owner: User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
1891
|
+
:param Sequence[builtins.str] reads: Properties that indicate resource read permissions.
|
|
1892
|
+
:param builtins.bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
1893
|
+
:param builtins.str sharing: Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
1894
|
+
:param Sequence[builtins.str] writes: Properties that indicate resource write permissions.
|
|
1894
1895
|
"""
|
|
1895
1896
|
if app is not None:
|
|
1896
1897
|
pulumi.set(__self__, "app", app)
|
|
@@ -1917,7 +1918,7 @@ class InputsUdpAcl(dict):
|
|
|
1917
1918
|
|
|
1918
1919
|
@property
|
|
1919
1920
|
@pulumi.getter
|
|
1920
|
-
def app(self) -> Optional[str]:
|
|
1921
|
+
def app(self) -> Optional[builtins.str]:
|
|
1921
1922
|
"""
|
|
1922
1923
|
The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
1923
1924
|
"""
|
|
@@ -1925,7 +1926,7 @@ class InputsUdpAcl(dict):
|
|
|
1925
1926
|
|
|
1926
1927
|
@property
|
|
1927
1928
|
@pulumi.getter(name="canChangePerms")
|
|
1928
|
-
def can_change_perms(self) -> Optional[bool]:
|
|
1929
|
+
def can_change_perms(self) -> Optional[builtins.bool]:
|
|
1929
1930
|
"""
|
|
1930
1931
|
Indicates if the active user can change permissions for this object. Defaults to true.
|
|
1931
1932
|
"""
|
|
@@ -1933,7 +1934,7 @@ class InputsUdpAcl(dict):
|
|
|
1933
1934
|
|
|
1934
1935
|
@property
|
|
1935
1936
|
@pulumi.getter(name="canShareApp")
|
|
1936
|
-
def can_share_app(self) -> Optional[bool]:
|
|
1937
|
+
def can_share_app(self) -> Optional[builtins.bool]:
|
|
1937
1938
|
"""
|
|
1938
1939
|
Indicates if the active user can change sharing to app level. Defaults to true.
|
|
1939
1940
|
"""
|
|
@@ -1941,7 +1942,7 @@ class InputsUdpAcl(dict):
|
|
|
1941
1942
|
|
|
1942
1943
|
@property
|
|
1943
1944
|
@pulumi.getter(name="canShareGlobal")
|
|
1944
|
-
def can_share_global(self) -> Optional[bool]:
|
|
1945
|
+
def can_share_global(self) -> Optional[builtins.bool]:
|
|
1945
1946
|
"""
|
|
1946
1947
|
Indicates if the active user can change sharing to system level. Defaults to true.
|
|
1947
1948
|
"""
|
|
@@ -1949,7 +1950,7 @@ class InputsUdpAcl(dict):
|
|
|
1949
1950
|
|
|
1950
1951
|
@property
|
|
1951
1952
|
@pulumi.getter(name="canShareUser")
|
|
1952
|
-
def can_share_user(self) -> Optional[bool]:
|
|
1953
|
+
def can_share_user(self) -> Optional[builtins.bool]:
|
|
1953
1954
|
"""
|
|
1954
1955
|
Indicates if the active user can change sharing to user level. Defaults to true.
|
|
1955
1956
|
"""
|
|
@@ -1957,7 +1958,7 @@ class InputsUdpAcl(dict):
|
|
|
1957
1958
|
|
|
1958
1959
|
@property
|
|
1959
1960
|
@pulumi.getter(name="canWrite")
|
|
1960
|
-
def can_write(self) -> Optional[bool]:
|
|
1961
|
+
def can_write(self) -> Optional[builtins.bool]:
|
|
1961
1962
|
"""
|
|
1962
1963
|
Indicates if the active user can edit this object. Defaults to true.
|
|
1963
1964
|
"""
|
|
@@ -1965,7 +1966,7 @@ class InputsUdpAcl(dict):
|
|
|
1965
1966
|
|
|
1966
1967
|
@property
|
|
1967
1968
|
@pulumi.getter
|
|
1968
|
-
def owner(self) -> Optional[str]:
|
|
1969
|
+
def owner(self) -> Optional[builtins.str]:
|
|
1969
1970
|
"""
|
|
1970
1971
|
User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
1971
1972
|
"""
|
|
@@ -1973,7 +1974,7 @@ class InputsUdpAcl(dict):
|
|
|
1973
1974
|
|
|
1974
1975
|
@property
|
|
1975
1976
|
@pulumi.getter
|
|
1976
|
-
def reads(self) -> Optional[Sequence[str]]:
|
|
1977
|
+
def reads(self) -> Optional[Sequence[builtins.str]]:
|
|
1977
1978
|
"""
|
|
1978
1979
|
Properties that indicate resource read permissions.
|
|
1979
1980
|
"""
|
|
@@ -1981,7 +1982,7 @@ class InputsUdpAcl(dict):
|
|
|
1981
1982
|
|
|
1982
1983
|
@property
|
|
1983
1984
|
@pulumi.getter
|
|
1984
|
-
def removable(self) -> Optional[bool]:
|
|
1985
|
+
def removable(self) -> Optional[builtins.bool]:
|
|
1985
1986
|
"""
|
|
1986
1987
|
Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
1987
1988
|
"""
|
|
@@ -1989,7 +1990,7 @@ class InputsUdpAcl(dict):
|
|
|
1989
1990
|
|
|
1990
1991
|
@property
|
|
1991
1992
|
@pulumi.getter
|
|
1992
|
-
def sharing(self) -> Optional[str]:
|
|
1993
|
+
def sharing(self) -> Optional[builtins.str]:
|
|
1993
1994
|
"""
|
|
1994
1995
|
Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
1995
1996
|
"""
|
|
@@ -1997,7 +1998,7 @@ class InputsUdpAcl(dict):
|
|
|
1997
1998
|
|
|
1998
1999
|
@property
|
|
1999
2000
|
@pulumi.getter
|
|
2000
|
-
def writes(self) -> Optional[Sequence[str]]:
|
|
2001
|
+
def writes(self) -> Optional[Sequence[builtins.str]]:
|
|
2001
2002
|
"""
|
|
2002
2003
|
Properties that indicate resource write permissions.
|
|
2003
2004
|
"""
|
|
@@ -2032,29 +2033,29 @@ class LookupDefinitionAcl(dict):
|
|
|
2032
2033
|
return super().get(key, default)
|
|
2033
2034
|
|
|
2034
2035
|
def __init__(__self__, *,
|
|
2035
|
-
app: Optional[str] = None,
|
|
2036
|
-
can_change_perms: Optional[bool] = None,
|
|
2037
|
-
can_share_app: Optional[bool] = None,
|
|
2038
|
-
can_share_global: Optional[bool] = None,
|
|
2039
|
-
can_share_user: Optional[bool] = None,
|
|
2040
|
-
can_write: Optional[bool] = None,
|
|
2041
|
-
owner: Optional[str] = None,
|
|
2042
|
-
reads: Optional[Sequence[str]] = None,
|
|
2043
|
-
removable: Optional[bool] = None,
|
|
2044
|
-
sharing: Optional[str] = None,
|
|
2045
|
-
writes: Optional[Sequence[str]] = None):
|
|
2046
|
-
"""
|
|
2047
|
-
:param str app: The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
2048
|
-
:param bool can_change_perms: Indicates if the active user can change permissions for this object. Defaults to true.
|
|
2049
|
-
:param bool can_share_app: Indicates if the active user can change sharing to app level. Defaults to true.
|
|
2050
|
-
:param bool can_share_global: Indicates if the active user can change sharing to system level. Defaults to true.
|
|
2051
|
-
:param bool can_share_user: Indicates if the active user can change sharing to user level. Defaults to true.
|
|
2052
|
-
:param bool can_write: Indicates if the active user can edit this object. Defaults to true.
|
|
2053
|
-
:param str owner: User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
2054
|
-
:param Sequence[str] reads: Properties that indicate resource read permissions.
|
|
2055
|
-
:param bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
2056
|
-
:param str sharing: Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
2057
|
-
:param Sequence[str] writes: Properties that indicate resource write permissions.
|
|
2036
|
+
app: Optional[builtins.str] = None,
|
|
2037
|
+
can_change_perms: Optional[builtins.bool] = None,
|
|
2038
|
+
can_share_app: Optional[builtins.bool] = None,
|
|
2039
|
+
can_share_global: Optional[builtins.bool] = None,
|
|
2040
|
+
can_share_user: Optional[builtins.bool] = None,
|
|
2041
|
+
can_write: Optional[builtins.bool] = None,
|
|
2042
|
+
owner: Optional[builtins.str] = None,
|
|
2043
|
+
reads: Optional[Sequence[builtins.str]] = None,
|
|
2044
|
+
removable: Optional[builtins.bool] = None,
|
|
2045
|
+
sharing: Optional[builtins.str] = None,
|
|
2046
|
+
writes: Optional[Sequence[builtins.str]] = None):
|
|
2047
|
+
"""
|
|
2048
|
+
:param builtins.str app: The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
2049
|
+
:param builtins.bool can_change_perms: Indicates if the active user can change permissions for this object. Defaults to true.
|
|
2050
|
+
:param builtins.bool can_share_app: Indicates if the active user can change sharing to app level. Defaults to true.
|
|
2051
|
+
:param builtins.bool can_share_global: Indicates if the active user can change sharing to system level. Defaults to true.
|
|
2052
|
+
:param builtins.bool can_share_user: Indicates if the active user can change sharing to user level. Defaults to true.
|
|
2053
|
+
:param builtins.bool can_write: Indicates if the active user can edit this object. Defaults to true.
|
|
2054
|
+
:param builtins.str owner: User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
2055
|
+
:param Sequence[builtins.str] reads: Properties that indicate resource read permissions.
|
|
2056
|
+
:param builtins.bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
2057
|
+
:param builtins.str sharing: Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
2058
|
+
:param Sequence[builtins.str] writes: Properties that indicate resource write permissions.
|
|
2058
2059
|
"""
|
|
2059
2060
|
if app is not None:
|
|
2060
2061
|
pulumi.set(__self__, "app", app)
|
|
@@ -2081,7 +2082,7 @@ class LookupDefinitionAcl(dict):
|
|
|
2081
2082
|
|
|
2082
2083
|
@property
|
|
2083
2084
|
@pulumi.getter
|
|
2084
|
-
def app(self) -> Optional[str]:
|
|
2085
|
+
def app(self) -> Optional[builtins.str]:
|
|
2085
2086
|
"""
|
|
2086
2087
|
The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
2087
2088
|
"""
|
|
@@ -2089,7 +2090,7 @@ class LookupDefinitionAcl(dict):
|
|
|
2089
2090
|
|
|
2090
2091
|
@property
|
|
2091
2092
|
@pulumi.getter(name="canChangePerms")
|
|
2092
|
-
def can_change_perms(self) -> Optional[bool]:
|
|
2093
|
+
def can_change_perms(self) -> Optional[builtins.bool]:
|
|
2093
2094
|
"""
|
|
2094
2095
|
Indicates if the active user can change permissions for this object. Defaults to true.
|
|
2095
2096
|
"""
|
|
@@ -2097,7 +2098,7 @@ class LookupDefinitionAcl(dict):
|
|
|
2097
2098
|
|
|
2098
2099
|
@property
|
|
2099
2100
|
@pulumi.getter(name="canShareApp")
|
|
2100
|
-
def can_share_app(self) -> Optional[bool]:
|
|
2101
|
+
def can_share_app(self) -> Optional[builtins.bool]:
|
|
2101
2102
|
"""
|
|
2102
2103
|
Indicates if the active user can change sharing to app level. Defaults to true.
|
|
2103
2104
|
"""
|
|
@@ -2105,7 +2106,7 @@ class LookupDefinitionAcl(dict):
|
|
|
2105
2106
|
|
|
2106
2107
|
@property
|
|
2107
2108
|
@pulumi.getter(name="canShareGlobal")
|
|
2108
|
-
def can_share_global(self) -> Optional[bool]:
|
|
2109
|
+
def can_share_global(self) -> Optional[builtins.bool]:
|
|
2109
2110
|
"""
|
|
2110
2111
|
Indicates if the active user can change sharing to system level. Defaults to true.
|
|
2111
2112
|
"""
|
|
@@ -2113,7 +2114,7 @@ class LookupDefinitionAcl(dict):
|
|
|
2113
2114
|
|
|
2114
2115
|
@property
|
|
2115
2116
|
@pulumi.getter(name="canShareUser")
|
|
2116
|
-
def can_share_user(self) -> Optional[bool]:
|
|
2117
|
+
def can_share_user(self) -> Optional[builtins.bool]:
|
|
2117
2118
|
"""
|
|
2118
2119
|
Indicates if the active user can change sharing to user level. Defaults to true.
|
|
2119
2120
|
"""
|
|
@@ -2121,7 +2122,7 @@ class LookupDefinitionAcl(dict):
|
|
|
2121
2122
|
|
|
2122
2123
|
@property
|
|
2123
2124
|
@pulumi.getter(name="canWrite")
|
|
2124
|
-
def can_write(self) -> Optional[bool]:
|
|
2125
|
+
def can_write(self) -> Optional[builtins.bool]:
|
|
2125
2126
|
"""
|
|
2126
2127
|
Indicates if the active user can edit this object. Defaults to true.
|
|
2127
2128
|
"""
|
|
@@ -2129,7 +2130,7 @@ class LookupDefinitionAcl(dict):
|
|
|
2129
2130
|
|
|
2130
2131
|
@property
|
|
2131
2132
|
@pulumi.getter
|
|
2132
|
-
def owner(self) -> Optional[str]:
|
|
2133
|
+
def owner(self) -> Optional[builtins.str]:
|
|
2133
2134
|
"""
|
|
2134
2135
|
User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
2135
2136
|
"""
|
|
@@ -2137,7 +2138,7 @@ class LookupDefinitionAcl(dict):
|
|
|
2137
2138
|
|
|
2138
2139
|
@property
|
|
2139
2140
|
@pulumi.getter
|
|
2140
|
-
def reads(self) -> Optional[Sequence[str]]:
|
|
2141
|
+
def reads(self) -> Optional[Sequence[builtins.str]]:
|
|
2141
2142
|
"""
|
|
2142
2143
|
Properties that indicate resource read permissions.
|
|
2143
2144
|
"""
|
|
@@ -2145,7 +2146,7 @@ class LookupDefinitionAcl(dict):
|
|
|
2145
2146
|
|
|
2146
2147
|
@property
|
|
2147
2148
|
@pulumi.getter
|
|
2148
|
-
def removable(self) -> Optional[bool]:
|
|
2149
|
+
def removable(self) -> Optional[builtins.bool]:
|
|
2149
2150
|
"""
|
|
2150
2151
|
Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
2151
2152
|
"""
|
|
@@ -2153,7 +2154,7 @@ class LookupDefinitionAcl(dict):
|
|
|
2153
2154
|
|
|
2154
2155
|
@property
|
|
2155
2156
|
@pulumi.getter
|
|
2156
|
-
def sharing(self) -> Optional[str]:
|
|
2157
|
+
def sharing(self) -> Optional[builtins.str]:
|
|
2157
2158
|
"""
|
|
2158
2159
|
Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
2159
2160
|
"""
|
|
@@ -2161,7 +2162,7 @@ class LookupDefinitionAcl(dict):
|
|
|
2161
2162
|
|
|
2162
2163
|
@property
|
|
2163
2164
|
@pulumi.getter
|
|
2164
|
-
def writes(self) -> Optional[Sequence[str]]:
|
|
2165
|
+
def writes(self) -> Optional[Sequence[builtins.str]]:
|
|
2165
2166
|
"""
|
|
2166
2167
|
Properties that indicate resource write permissions.
|
|
2167
2168
|
"""
|
|
@@ -2196,29 +2197,29 @@ class OutputsTcpDefaultAcl(dict):
|
|
|
2196
2197
|
return super().get(key, default)
|
|
2197
2198
|
|
|
2198
2199
|
def __init__(__self__, *,
|
|
2199
|
-
app: Optional[str] = None,
|
|
2200
|
-
can_change_perms: Optional[bool] = None,
|
|
2201
|
-
can_share_app: Optional[bool] = None,
|
|
2202
|
-
can_share_global: Optional[bool] = None,
|
|
2203
|
-
can_share_user: Optional[bool] = None,
|
|
2204
|
-
can_write: Optional[bool] = None,
|
|
2205
|
-
owner: Optional[str] = None,
|
|
2206
|
-
reads: Optional[Sequence[str]] = None,
|
|
2207
|
-
removable: Optional[bool] = None,
|
|
2208
|
-
sharing: Optional[str] = None,
|
|
2209
|
-
writes: Optional[Sequence[str]] = None):
|
|
2210
|
-
"""
|
|
2211
|
-
:param str app: The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
2212
|
-
:param bool can_change_perms: Indicates if the active user can change permissions for this object. Defaults to true.
|
|
2213
|
-
:param bool can_share_app: Indicates if the active user can change sharing to app level. Defaults to true.
|
|
2214
|
-
:param bool can_share_global: Indicates if the active user can change sharing to system level. Defaults to true.
|
|
2215
|
-
:param bool can_share_user: Indicates if the active user can change sharing to user level. Defaults to true.
|
|
2216
|
-
:param bool can_write: Indicates if the active user can edit this object. Defaults to true.
|
|
2217
|
-
:param str owner: User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
2218
|
-
:param Sequence[str] reads: Properties that indicate resource read permissions.
|
|
2219
|
-
:param bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
2220
|
-
:param str sharing: Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
2221
|
-
:param Sequence[str] writes: Properties that indicate resource write permissions.
|
|
2200
|
+
app: Optional[builtins.str] = None,
|
|
2201
|
+
can_change_perms: Optional[builtins.bool] = None,
|
|
2202
|
+
can_share_app: Optional[builtins.bool] = None,
|
|
2203
|
+
can_share_global: Optional[builtins.bool] = None,
|
|
2204
|
+
can_share_user: Optional[builtins.bool] = None,
|
|
2205
|
+
can_write: Optional[builtins.bool] = None,
|
|
2206
|
+
owner: Optional[builtins.str] = None,
|
|
2207
|
+
reads: Optional[Sequence[builtins.str]] = None,
|
|
2208
|
+
removable: Optional[builtins.bool] = None,
|
|
2209
|
+
sharing: Optional[builtins.str] = None,
|
|
2210
|
+
writes: Optional[Sequence[builtins.str]] = None):
|
|
2211
|
+
"""
|
|
2212
|
+
:param builtins.str app: The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
2213
|
+
:param builtins.bool can_change_perms: Indicates if the active user can change permissions for this object. Defaults to true.
|
|
2214
|
+
:param builtins.bool can_share_app: Indicates if the active user can change sharing to app level. Defaults to true.
|
|
2215
|
+
:param builtins.bool can_share_global: Indicates if the active user can change sharing to system level. Defaults to true.
|
|
2216
|
+
:param builtins.bool can_share_user: Indicates if the active user can change sharing to user level. Defaults to true.
|
|
2217
|
+
:param builtins.bool can_write: Indicates if the active user can edit this object. Defaults to true.
|
|
2218
|
+
:param builtins.str owner: User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
2219
|
+
:param Sequence[builtins.str] reads: Properties that indicate resource read permissions.
|
|
2220
|
+
:param builtins.bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
2221
|
+
:param builtins.str sharing: Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
2222
|
+
:param Sequence[builtins.str] writes: Properties that indicate resource write permissions.
|
|
2222
2223
|
"""
|
|
2223
2224
|
if app is not None:
|
|
2224
2225
|
pulumi.set(__self__, "app", app)
|
|
@@ -2245,7 +2246,7 @@ class OutputsTcpDefaultAcl(dict):
|
|
|
2245
2246
|
|
|
2246
2247
|
@property
|
|
2247
2248
|
@pulumi.getter
|
|
2248
|
-
def app(self) -> Optional[str]:
|
|
2249
|
+
def app(self) -> Optional[builtins.str]:
|
|
2249
2250
|
"""
|
|
2250
2251
|
The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
2251
2252
|
"""
|
|
@@ -2253,7 +2254,7 @@ class OutputsTcpDefaultAcl(dict):
|
|
|
2253
2254
|
|
|
2254
2255
|
@property
|
|
2255
2256
|
@pulumi.getter(name="canChangePerms")
|
|
2256
|
-
def can_change_perms(self) -> Optional[bool]:
|
|
2257
|
+
def can_change_perms(self) -> Optional[builtins.bool]:
|
|
2257
2258
|
"""
|
|
2258
2259
|
Indicates if the active user can change permissions for this object. Defaults to true.
|
|
2259
2260
|
"""
|
|
@@ -2261,7 +2262,7 @@ class OutputsTcpDefaultAcl(dict):
|
|
|
2261
2262
|
|
|
2262
2263
|
@property
|
|
2263
2264
|
@pulumi.getter(name="canShareApp")
|
|
2264
|
-
def can_share_app(self) -> Optional[bool]:
|
|
2265
|
+
def can_share_app(self) -> Optional[builtins.bool]:
|
|
2265
2266
|
"""
|
|
2266
2267
|
Indicates if the active user can change sharing to app level. Defaults to true.
|
|
2267
2268
|
"""
|
|
@@ -2269,7 +2270,7 @@ class OutputsTcpDefaultAcl(dict):
|
|
|
2269
2270
|
|
|
2270
2271
|
@property
|
|
2271
2272
|
@pulumi.getter(name="canShareGlobal")
|
|
2272
|
-
def can_share_global(self) -> Optional[bool]:
|
|
2273
|
+
def can_share_global(self) -> Optional[builtins.bool]:
|
|
2273
2274
|
"""
|
|
2274
2275
|
Indicates if the active user can change sharing to system level. Defaults to true.
|
|
2275
2276
|
"""
|
|
@@ -2277,7 +2278,7 @@ class OutputsTcpDefaultAcl(dict):
|
|
|
2277
2278
|
|
|
2278
2279
|
@property
|
|
2279
2280
|
@pulumi.getter(name="canShareUser")
|
|
2280
|
-
def can_share_user(self) -> Optional[bool]:
|
|
2281
|
+
def can_share_user(self) -> Optional[builtins.bool]:
|
|
2281
2282
|
"""
|
|
2282
2283
|
Indicates if the active user can change sharing to user level. Defaults to true.
|
|
2283
2284
|
"""
|
|
@@ -2285,7 +2286,7 @@ class OutputsTcpDefaultAcl(dict):
|
|
|
2285
2286
|
|
|
2286
2287
|
@property
|
|
2287
2288
|
@pulumi.getter(name="canWrite")
|
|
2288
|
-
def can_write(self) -> Optional[bool]:
|
|
2289
|
+
def can_write(self) -> Optional[builtins.bool]:
|
|
2289
2290
|
"""
|
|
2290
2291
|
Indicates if the active user can edit this object. Defaults to true.
|
|
2291
2292
|
"""
|
|
@@ -2293,7 +2294,7 @@ class OutputsTcpDefaultAcl(dict):
|
|
|
2293
2294
|
|
|
2294
2295
|
@property
|
|
2295
2296
|
@pulumi.getter
|
|
2296
|
-
def owner(self) -> Optional[str]:
|
|
2297
|
+
def owner(self) -> Optional[builtins.str]:
|
|
2297
2298
|
"""
|
|
2298
2299
|
User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
2299
2300
|
"""
|
|
@@ -2301,7 +2302,7 @@ class OutputsTcpDefaultAcl(dict):
|
|
|
2301
2302
|
|
|
2302
2303
|
@property
|
|
2303
2304
|
@pulumi.getter
|
|
2304
|
-
def reads(self) -> Optional[Sequence[str]]:
|
|
2305
|
+
def reads(self) -> Optional[Sequence[builtins.str]]:
|
|
2305
2306
|
"""
|
|
2306
2307
|
Properties that indicate resource read permissions.
|
|
2307
2308
|
"""
|
|
@@ -2309,7 +2310,7 @@ class OutputsTcpDefaultAcl(dict):
|
|
|
2309
2310
|
|
|
2310
2311
|
@property
|
|
2311
2312
|
@pulumi.getter
|
|
2312
|
-
def removable(self) -> Optional[bool]:
|
|
2313
|
+
def removable(self) -> Optional[builtins.bool]:
|
|
2313
2314
|
"""
|
|
2314
2315
|
Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
2315
2316
|
"""
|
|
@@ -2317,7 +2318,7 @@ class OutputsTcpDefaultAcl(dict):
|
|
|
2317
2318
|
|
|
2318
2319
|
@property
|
|
2319
2320
|
@pulumi.getter
|
|
2320
|
-
def sharing(self) -> Optional[str]:
|
|
2321
|
+
def sharing(self) -> Optional[builtins.str]:
|
|
2321
2322
|
"""
|
|
2322
2323
|
Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
2323
2324
|
"""
|
|
@@ -2325,7 +2326,7 @@ class OutputsTcpDefaultAcl(dict):
|
|
|
2325
2326
|
|
|
2326
2327
|
@property
|
|
2327
2328
|
@pulumi.getter
|
|
2328
|
-
def writes(self) -> Optional[Sequence[str]]:
|
|
2329
|
+
def writes(self) -> Optional[Sequence[builtins.str]]:
|
|
2329
2330
|
"""
|
|
2330
2331
|
Properties that indicate resource write permissions.
|
|
2331
2332
|
"""
|
|
@@ -2360,29 +2361,29 @@ class OutputsTcpGroupAcl(dict):
|
|
|
2360
2361
|
return super().get(key, default)
|
|
2361
2362
|
|
|
2362
2363
|
def __init__(__self__, *,
|
|
2363
|
-
app: Optional[str] = None,
|
|
2364
|
-
can_change_perms: Optional[bool] = None,
|
|
2365
|
-
can_share_app: Optional[bool] = None,
|
|
2366
|
-
can_share_global: Optional[bool] = None,
|
|
2367
|
-
can_share_user: Optional[bool] = None,
|
|
2368
|
-
can_write: Optional[bool] = None,
|
|
2369
|
-
owner: Optional[str] = None,
|
|
2370
|
-
reads: Optional[Sequence[str]] = None,
|
|
2371
|
-
removable: Optional[bool] = None,
|
|
2372
|
-
sharing: Optional[str] = None,
|
|
2373
|
-
writes: Optional[Sequence[str]] = None):
|
|
2374
|
-
"""
|
|
2375
|
-
:param str app: The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
2376
|
-
:param bool can_change_perms: Indicates if the active user can change permissions for this object. Defaults to true.
|
|
2377
|
-
:param bool can_share_app: Indicates if the active user can change sharing to app level. Defaults to true.
|
|
2378
|
-
:param bool can_share_global: Indicates if the active user can change sharing to system level. Defaults to true.
|
|
2379
|
-
:param bool can_share_user: Indicates if the active user can change sharing to user level. Defaults to true.
|
|
2380
|
-
:param bool can_write: Indicates if the active user can edit this object. Defaults to true.
|
|
2381
|
-
:param str owner: User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
2382
|
-
:param Sequence[str] reads: Properties that indicate resource read permissions.
|
|
2383
|
-
:param bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
2384
|
-
:param str sharing: Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
2385
|
-
:param Sequence[str] writes: Properties that indicate resource write permissions.
|
|
2364
|
+
app: Optional[builtins.str] = None,
|
|
2365
|
+
can_change_perms: Optional[builtins.bool] = None,
|
|
2366
|
+
can_share_app: Optional[builtins.bool] = None,
|
|
2367
|
+
can_share_global: Optional[builtins.bool] = None,
|
|
2368
|
+
can_share_user: Optional[builtins.bool] = None,
|
|
2369
|
+
can_write: Optional[builtins.bool] = None,
|
|
2370
|
+
owner: Optional[builtins.str] = None,
|
|
2371
|
+
reads: Optional[Sequence[builtins.str]] = None,
|
|
2372
|
+
removable: Optional[builtins.bool] = None,
|
|
2373
|
+
sharing: Optional[builtins.str] = None,
|
|
2374
|
+
writes: Optional[Sequence[builtins.str]] = None):
|
|
2375
|
+
"""
|
|
2376
|
+
:param builtins.str app: The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
2377
|
+
:param builtins.bool can_change_perms: Indicates if the active user can change permissions for this object. Defaults to true.
|
|
2378
|
+
:param builtins.bool can_share_app: Indicates if the active user can change sharing to app level. Defaults to true.
|
|
2379
|
+
:param builtins.bool can_share_global: Indicates if the active user can change sharing to system level. Defaults to true.
|
|
2380
|
+
:param builtins.bool can_share_user: Indicates if the active user can change sharing to user level. Defaults to true.
|
|
2381
|
+
:param builtins.bool can_write: Indicates if the active user can edit this object. Defaults to true.
|
|
2382
|
+
:param builtins.str owner: User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
2383
|
+
:param Sequence[builtins.str] reads: Properties that indicate resource read permissions.
|
|
2384
|
+
:param builtins.bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
2385
|
+
:param builtins.str sharing: Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
2386
|
+
:param Sequence[builtins.str] writes: Properties that indicate resource write permissions.
|
|
2386
2387
|
"""
|
|
2387
2388
|
if app is not None:
|
|
2388
2389
|
pulumi.set(__self__, "app", app)
|
|
@@ -2409,7 +2410,7 @@ class OutputsTcpGroupAcl(dict):
|
|
|
2409
2410
|
|
|
2410
2411
|
@property
|
|
2411
2412
|
@pulumi.getter
|
|
2412
|
-
def app(self) -> Optional[str]:
|
|
2413
|
+
def app(self) -> Optional[builtins.str]:
|
|
2413
2414
|
"""
|
|
2414
2415
|
The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
2415
2416
|
"""
|
|
@@ -2417,7 +2418,7 @@ class OutputsTcpGroupAcl(dict):
|
|
|
2417
2418
|
|
|
2418
2419
|
@property
|
|
2419
2420
|
@pulumi.getter(name="canChangePerms")
|
|
2420
|
-
def can_change_perms(self) -> Optional[bool]:
|
|
2421
|
+
def can_change_perms(self) -> Optional[builtins.bool]:
|
|
2421
2422
|
"""
|
|
2422
2423
|
Indicates if the active user can change permissions for this object. Defaults to true.
|
|
2423
2424
|
"""
|
|
@@ -2425,7 +2426,7 @@ class OutputsTcpGroupAcl(dict):
|
|
|
2425
2426
|
|
|
2426
2427
|
@property
|
|
2427
2428
|
@pulumi.getter(name="canShareApp")
|
|
2428
|
-
def can_share_app(self) -> Optional[bool]:
|
|
2429
|
+
def can_share_app(self) -> Optional[builtins.bool]:
|
|
2429
2430
|
"""
|
|
2430
2431
|
Indicates if the active user can change sharing to app level. Defaults to true.
|
|
2431
2432
|
"""
|
|
@@ -2433,7 +2434,7 @@ class OutputsTcpGroupAcl(dict):
|
|
|
2433
2434
|
|
|
2434
2435
|
@property
|
|
2435
2436
|
@pulumi.getter(name="canShareGlobal")
|
|
2436
|
-
def can_share_global(self) -> Optional[bool]:
|
|
2437
|
+
def can_share_global(self) -> Optional[builtins.bool]:
|
|
2437
2438
|
"""
|
|
2438
2439
|
Indicates if the active user can change sharing to system level. Defaults to true.
|
|
2439
2440
|
"""
|
|
@@ -2441,7 +2442,7 @@ class OutputsTcpGroupAcl(dict):
|
|
|
2441
2442
|
|
|
2442
2443
|
@property
|
|
2443
2444
|
@pulumi.getter(name="canShareUser")
|
|
2444
|
-
def can_share_user(self) -> Optional[bool]:
|
|
2445
|
+
def can_share_user(self) -> Optional[builtins.bool]:
|
|
2445
2446
|
"""
|
|
2446
2447
|
Indicates if the active user can change sharing to user level. Defaults to true.
|
|
2447
2448
|
"""
|
|
@@ -2449,7 +2450,7 @@ class OutputsTcpGroupAcl(dict):
|
|
|
2449
2450
|
|
|
2450
2451
|
@property
|
|
2451
2452
|
@pulumi.getter(name="canWrite")
|
|
2452
|
-
def can_write(self) -> Optional[bool]:
|
|
2453
|
+
def can_write(self) -> Optional[builtins.bool]:
|
|
2453
2454
|
"""
|
|
2454
2455
|
Indicates if the active user can edit this object. Defaults to true.
|
|
2455
2456
|
"""
|
|
@@ -2457,7 +2458,7 @@ class OutputsTcpGroupAcl(dict):
|
|
|
2457
2458
|
|
|
2458
2459
|
@property
|
|
2459
2460
|
@pulumi.getter
|
|
2460
|
-
def owner(self) -> Optional[str]:
|
|
2461
|
+
def owner(self) -> Optional[builtins.str]:
|
|
2461
2462
|
"""
|
|
2462
2463
|
User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
2463
2464
|
"""
|
|
@@ -2465,7 +2466,7 @@ class OutputsTcpGroupAcl(dict):
|
|
|
2465
2466
|
|
|
2466
2467
|
@property
|
|
2467
2468
|
@pulumi.getter
|
|
2468
|
-
def reads(self) -> Optional[Sequence[str]]:
|
|
2469
|
+
def reads(self) -> Optional[Sequence[builtins.str]]:
|
|
2469
2470
|
"""
|
|
2470
2471
|
Properties that indicate resource read permissions.
|
|
2471
2472
|
"""
|
|
@@ -2473,7 +2474,7 @@ class OutputsTcpGroupAcl(dict):
|
|
|
2473
2474
|
|
|
2474
2475
|
@property
|
|
2475
2476
|
@pulumi.getter
|
|
2476
|
-
def removable(self) -> Optional[bool]:
|
|
2477
|
+
def removable(self) -> Optional[builtins.bool]:
|
|
2477
2478
|
"""
|
|
2478
2479
|
Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
2479
2480
|
"""
|
|
@@ -2481,7 +2482,7 @@ class OutputsTcpGroupAcl(dict):
|
|
|
2481
2482
|
|
|
2482
2483
|
@property
|
|
2483
2484
|
@pulumi.getter
|
|
2484
|
-
def sharing(self) -> Optional[str]:
|
|
2485
|
+
def sharing(self) -> Optional[builtins.str]:
|
|
2485
2486
|
"""
|
|
2486
2487
|
Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
2487
2488
|
"""
|
|
@@ -2489,7 +2490,7 @@ class OutputsTcpGroupAcl(dict):
|
|
|
2489
2490
|
|
|
2490
2491
|
@property
|
|
2491
2492
|
@pulumi.getter
|
|
2492
|
-
def writes(self) -> Optional[Sequence[str]]:
|
|
2493
|
+
def writes(self) -> Optional[Sequence[builtins.str]]:
|
|
2493
2494
|
"""
|
|
2494
2495
|
Properties that indicate resource write permissions.
|
|
2495
2496
|
"""
|
|
@@ -2524,29 +2525,29 @@ class OutputsTcpServerAcl(dict):
|
|
|
2524
2525
|
return super().get(key, default)
|
|
2525
2526
|
|
|
2526
2527
|
def __init__(__self__, *,
|
|
2527
|
-
app: Optional[str] = None,
|
|
2528
|
-
can_change_perms: Optional[bool] = None,
|
|
2529
|
-
can_share_app: Optional[bool] = None,
|
|
2530
|
-
can_share_global: Optional[bool] = None,
|
|
2531
|
-
can_share_user: Optional[bool] = None,
|
|
2532
|
-
can_write: Optional[bool] = None,
|
|
2533
|
-
owner: Optional[str] = None,
|
|
2534
|
-
reads: Optional[Sequence[str]] = None,
|
|
2535
|
-
removable: Optional[bool] = None,
|
|
2536
|
-
sharing: Optional[str] = None,
|
|
2537
|
-
writes: Optional[Sequence[str]] = None):
|
|
2538
|
-
"""
|
|
2539
|
-
:param str app: The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
2540
|
-
:param bool can_change_perms: Indicates if the active user can change permissions for this object. Defaults to true.
|
|
2541
|
-
:param bool can_share_app: Indicates if the active user can change sharing to app level. Defaults to true.
|
|
2542
|
-
:param bool can_share_global: Indicates if the active user can change sharing to system level. Defaults to true.
|
|
2543
|
-
:param bool can_share_user: Indicates if the active user can change sharing to user level. Defaults to true.
|
|
2544
|
-
:param bool can_write: Indicates if the active user can edit this object. Defaults to true.
|
|
2545
|
-
:param str owner: User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
2546
|
-
:param Sequence[str] reads: Properties that indicate resource read permissions.
|
|
2547
|
-
:param bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
2548
|
-
:param str sharing: Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
2549
|
-
:param Sequence[str] writes: Properties that indicate resource write permissions.
|
|
2528
|
+
app: Optional[builtins.str] = None,
|
|
2529
|
+
can_change_perms: Optional[builtins.bool] = None,
|
|
2530
|
+
can_share_app: Optional[builtins.bool] = None,
|
|
2531
|
+
can_share_global: Optional[builtins.bool] = None,
|
|
2532
|
+
can_share_user: Optional[builtins.bool] = None,
|
|
2533
|
+
can_write: Optional[builtins.bool] = None,
|
|
2534
|
+
owner: Optional[builtins.str] = None,
|
|
2535
|
+
reads: Optional[Sequence[builtins.str]] = None,
|
|
2536
|
+
removable: Optional[builtins.bool] = None,
|
|
2537
|
+
sharing: Optional[builtins.str] = None,
|
|
2538
|
+
writes: Optional[Sequence[builtins.str]] = None):
|
|
2539
|
+
"""
|
|
2540
|
+
:param builtins.str app: The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
2541
|
+
:param builtins.bool can_change_perms: Indicates if the active user can change permissions for this object. Defaults to true.
|
|
2542
|
+
:param builtins.bool can_share_app: Indicates if the active user can change sharing to app level. Defaults to true.
|
|
2543
|
+
:param builtins.bool can_share_global: Indicates if the active user can change sharing to system level. Defaults to true.
|
|
2544
|
+
:param builtins.bool can_share_user: Indicates if the active user can change sharing to user level. Defaults to true.
|
|
2545
|
+
:param builtins.bool can_write: Indicates if the active user can edit this object. Defaults to true.
|
|
2546
|
+
:param builtins.str owner: User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
2547
|
+
:param Sequence[builtins.str] reads: Properties that indicate resource read permissions.
|
|
2548
|
+
:param builtins.bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
2549
|
+
:param builtins.str sharing: Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
2550
|
+
:param Sequence[builtins.str] writes: Properties that indicate resource write permissions.
|
|
2550
2551
|
"""
|
|
2551
2552
|
if app is not None:
|
|
2552
2553
|
pulumi.set(__self__, "app", app)
|
|
@@ -2573,7 +2574,7 @@ class OutputsTcpServerAcl(dict):
|
|
|
2573
2574
|
|
|
2574
2575
|
@property
|
|
2575
2576
|
@pulumi.getter
|
|
2576
|
-
def app(self) -> Optional[str]:
|
|
2577
|
+
def app(self) -> Optional[builtins.str]:
|
|
2577
2578
|
"""
|
|
2578
2579
|
The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
2579
2580
|
"""
|
|
@@ -2581,7 +2582,7 @@ class OutputsTcpServerAcl(dict):
|
|
|
2581
2582
|
|
|
2582
2583
|
@property
|
|
2583
2584
|
@pulumi.getter(name="canChangePerms")
|
|
2584
|
-
def can_change_perms(self) -> Optional[bool]:
|
|
2585
|
+
def can_change_perms(self) -> Optional[builtins.bool]:
|
|
2585
2586
|
"""
|
|
2586
2587
|
Indicates if the active user can change permissions for this object. Defaults to true.
|
|
2587
2588
|
"""
|
|
@@ -2589,7 +2590,7 @@ class OutputsTcpServerAcl(dict):
|
|
|
2589
2590
|
|
|
2590
2591
|
@property
|
|
2591
2592
|
@pulumi.getter(name="canShareApp")
|
|
2592
|
-
def can_share_app(self) -> Optional[bool]:
|
|
2593
|
+
def can_share_app(self) -> Optional[builtins.bool]:
|
|
2593
2594
|
"""
|
|
2594
2595
|
Indicates if the active user can change sharing to app level. Defaults to true.
|
|
2595
2596
|
"""
|
|
@@ -2597,7 +2598,7 @@ class OutputsTcpServerAcl(dict):
|
|
|
2597
2598
|
|
|
2598
2599
|
@property
|
|
2599
2600
|
@pulumi.getter(name="canShareGlobal")
|
|
2600
|
-
def can_share_global(self) -> Optional[bool]:
|
|
2601
|
+
def can_share_global(self) -> Optional[builtins.bool]:
|
|
2601
2602
|
"""
|
|
2602
2603
|
Indicates if the active user can change sharing to system level. Defaults to true.
|
|
2603
2604
|
"""
|
|
@@ -2605,7 +2606,7 @@ class OutputsTcpServerAcl(dict):
|
|
|
2605
2606
|
|
|
2606
2607
|
@property
|
|
2607
2608
|
@pulumi.getter(name="canShareUser")
|
|
2608
|
-
def can_share_user(self) -> Optional[bool]:
|
|
2609
|
+
def can_share_user(self) -> Optional[builtins.bool]:
|
|
2609
2610
|
"""
|
|
2610
2611
|
Indicates if the active user can change sharing to user level. Defaults to true.
|
|
2611
2612
|
"""
|
|
@@ -2613,7 +2614,7 @@ class OutputsTcpServerAcl(dict):
|
|
|
2613
2614
|
|
|
2614
2615
|
@property
|
|
2615
2616
|
@pulumi.getter(name="canWrite")
|
|
2616
|
-
def can_write(self) -> Optional[bool]:
|
|
2617
|
+
def can_write(self) -> Optional[builtins.bool]:
|
|
2617
2618
|
"""
|
|
2618
2619
|
Indicates if the active user can edit this object. Defaults to true.
|
|
2619
2620
|
"""
|
|
@@ -2621,7 +2622,7 @@ class OutputsTcpServerAcl(dict):
|
|
|
2621
2622
|
|
|
2622
2623
|
@property
|
|
2623
2624
|
@pulumi.getter
|
|
2624
|
-
def owner(self) -> Optional[str]:
|
|
2625
|
+
def owner(self) -> Optional[builtins.str]:
|
|
2625
2626
|
"""
|
|
2626
2627
|
User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
2627
2628
|
"""
|
|
@@ -2629,7 +2630,7 @@ class OutputsTcpServerAcl(dict):
|
|
|
2629
2630
|
|
|
2630
2631
|
@property
|
|
2631
2632
|
@pulumi.getter
|
|
2632
|
-
def reads(self) -> Optional[Sequence[str]]:
|
|
2633
|
+
def reads(self) -> Optional[Sequence[builtins.str]]:
|
|
2633
2634
|
"""
|
|
2634
2635
|
Properties that indicate resource read permissions.
|
|
2635
2636
|
"""
|
|
@@ -2637,7 +2638,7 @@ class OutputsTcpServerAcl(dict):
|
|
|
2637
2638
|
|
|
2638
2639
|
@property
|
|
2639
2640
|
@pulumi.getter
|
|
2640
|
-
def removable(self) -> Optional[bool]:
|
|
2641
|
+
def removable(self) -> Optional[builtins.bool]:
|
|
2641
2642
|
"""
|
|
2642
2643
|
Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
2643
2644
|
"""
|
|
@@ -2645,7 +2646,7 @@ class OutputsTcpServerAcl(dict):
|
|
|
2645
2646
|
|
|
2646
2647
|
@property
|
|
2647
2648
|
@pulumi.getter
|
|
2648
|
-
def sharing(self) -> Optional[str]:
|
|
2649
|
+
def sharing(self) -> Optional[builtins.str]:
|
|
2649
2650
|
"""
|
|
2650
2651
|
Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
2651
2652
|
"""
|
|
@@ -2653,7 +2654,7 @@ class OutputsTcpServerAcl(dict):
|
|
|
2653
2654
|
|
|
2654
2655
|
@property
|
|
2655
2656
|
@pulumi.getter
|
|
2656
|
-
def writes(self) -> Optional[Sequence[str]]:
|
|
2657
|
+
def writes(self) -> Optional[Sequence[builtins.str]]:
|
|
2657
2658
|
"""
|
|
2658
2659
|
Properties that indicate resource write permissions.
|
|
2659
2660
|
"""
|
|
@@ -2688,29 +2689,29 @@ class OutputsTcpSyslogAcl(dict):
|
|
|
2688
2689
|
return super().get(key, default)
|
|
2689
2690
|
|
|
2690
2691
|
def __init__(__self__, *,
|
|
2691
|
-
app: Optional[str] = None,
|
|
2692
|
-
can_change_perms: Optional[bool] = None,
|
|
2693
|
-
can_share_app: Optional[bool] = None,
|
|
2694
|
-
can_share_global: Optional[bool] = None,
|
|
2695
|
-
can_share_user: Optional[bool] = None,
|
|
2696
|
-
can_write: Optional[bool] = None,
|
|
2697
|
-
owner: Optional[str] = None,
|
|
2698
|
-
reads: Optional[Sequence[str]] = None,
|
|
2699
|
-
removable: Optional[bool] = None,
|
|
2700
|
-
sharing: Optional[str] = None,
|
|
2701
|
-
writes: Optional[Sequence[str]] = None):
|
|
2702
|
-
"""
|
|
2703
|
-
:param str app: The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
2704
|
-
:param bool can_change_perms: Indicates if the active user can change permissions for this object. Defaults to true.
|
|
2705
|
-
:param bool can_share_app: Indicates if the active user can change sharing to app level. Defaults to true.
|
|
2706
|
-
:param bool can_share_global: Indicates if the active user can change sharing to system level. Defaults to true.
|
|
2707
|
-
:param bool can_share_user: Indicates if the active user can change sharing to user level. Defaults to true.
|
|
2708
|
-
:param bool can_write: Indicates if the active user can edit this object. Defaults to true.
|
|
2709
|
-
:param str owner: User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
2710
|
-
:param Sequence[str] reads: Properties that indicate resource read permissions.
|
|
2711
|
-
:param bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
2712
|
-
:param str sharing: Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
2713
|
-
:param Sequence[str] writes: Properties that indicate resource write permissions.
|
|
2692
|
+
app: Optional[builtins.str] = None,
|
|
2693
|
+
can_change_perms: Optional[builtins.bool] = None,
|
|
2694
|
+
can_share_app: Optional[builtins.bool] = None,
|
|
2695
|
+
can_share_global: Optional[builtins.bool] = None,
|
|
2696
|
+
can_share_user: Optional[builtins.bool] = None,
|
|
2697
|
+
can_write: Optional[builtins.bool] = None,
|
|
2698
|
+
owner: Optional[builtins.str] = None,
|
|
2699
|
+
reads: Optional[Sequence[builtins.str]] = None,
|
|
2700
|
+
removable: Optional[builtins.bool] = None,
|
|
2701
|
+
sharing: Optional[builtins.str] = None,
|
|
2702
|
+
writes: Optional[Sequence[builtins.str]] = None):
|
|
2703
|
+
"""
|
|
2704
|
+
:param builtins.str app: The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
2705
|
+
:param builtins.bool can_change_perms: Indicates if the active user can change permissions for this object. Defaults to true.
|
|
2706
|
+
:param builtins.bool can_share_app: Indicates if the active user can change sharing to app level. Defaults to true.
|
|
2707
|
+
:param builtins.bool can_share_global: Indicates if the active user can change sharing to system level. Defaults to true.
|
|
2708
|
+
:param builtins.bool can_share_user: Indicates if the active user can change sharing to user level. Defaults to true.
|
|
2709
|
+
:param builtins.bool can_write: Indicates if the active user can edit this object. Defaults to true.
|
|
2710
|
+
:param builtins.str owner: User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
2711
|
+
:param Sequence[builtins.str] reads: Properties that indicate resource read permissions.
|
|
2712
|
+
:param builtins.bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
2713
|
+
:param builtins.str sharing: Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
2714
|
+
:param Sequence[builtins.str] writes: Properties that indicate resource write permissions.
|
|
2714
2715
|
"""
|
|
2715
2716
|
if app is not None:
|
|
2716
2717
|
pulumi.set(__self__, "app", app)
|
|
@@ -2737,7 +2738,7 @@ class OutputsTcpSyslogAcl(dict):
|
|
|
2737
2738
|
|
|
2738
2739
|
@property
|
|
2739
2740
|
@pulumi.getter
|
|
2740
|
-
def app(self) -> Optional[str]:
|
|
2741
|
+
def app(self) -> Optional[builtins.str]:
|
|
2741
2742
|
"""
|
|
2742
2743
|
The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
2743
2744
|
"""
|
|
@@ -2745,7 +2746,7 @@ class OutputsTcpSyslogAcl(dict):
|
|
|
2745
2746
|
|
|
2746
2747
|
@property
|
|
2747
2748
|
@pulumi.getter(name="canChangePerms")
|
|
2748
|
-
def can_change_perms(self) -> Optional[bool]:
|
|
2749
|
+
def can_change_perms(self) -> Optional[builtins.bool]:
|
|
2749
2750
|
"""
|
|
2750
2751
|
Indicates if the active user can change permissions for this object. Defaults to true.
|
|
2751
2752
|
"""
|
|
@@ -2753,7 +2754,7 @@ class OutputsTcpSyslogAcl(dict):
|
|
|
2753
2754
|
|
|
2754
2755
|
@property
|
|
2755
2756
|
@pulumi.getter(name="canShareApp")
|
|
2756
|
-
def can_share_app(self) -> Optional[bool]:
|
|
2757
|
+
def can_share_app(self) -> Optional[builtins.bool]:
|
|
2757
2758
|
"""
|
|
2758
2759
|
Indicates if the active user can change sharing to app level. Defaults to true.
|
|
2759
2760
|
"""
|
|
@@ -2761,7 +2762,7 @@ class OutputsTcpSyslogAcl(dict):
|
|
|
2761
2762
|
|
|
2762
2763
|
@property
|
|
2763
2764
|
@pulumi.getter(name="canShareGlobal")
|
|
2764
|
-
def can_share_global(self) -> Optional[bool]:
|
|
2765
|
+
def can_share_global(self) -> Optional[builtins.bool]:
|
|
2765
2766
|
"""
|
|
2766
2767
|
Indicates if the active user can change sharing to system level. Defaults to true.
|
|
2767
2768
|
"""
|
|
@@ -2769,7 +2770,7 @@ class OutputsTcpSyslogAcl(dict):
|
|
|
2769
2770
|
|
|
2770
2771
|
@property
|
|
2771
2772
|
@pulumi.getter(name="canShareUser")
|
|
2772
|
-
def can_share_user(self) -> Optional[bool]:
|
|
2773
|
+
def can_share_user(self) -> Optional[builtins.bool]:
|
|
2773
2774
|
"""
|
|
2774
2775
|
Indicates if the active user can change sharing to user level. Defaults to true.
|
|
2775
2776
|
"""
|
|
@@ -2777,7 +2778,7 @@ class OutputsTcpSyslogAcl(dict):
|
|
|
2777
2778
|
|
|
2778
2779
|
@property
|
|
2779
2780
|
@pulumi.getter(name="canWrite")
|
|
2780
|
-
def can_write(self) -> Optional[bool]:
|
|
2781
|
+
def can_write(self) -> Optional[builtins.bool]:
|
|
2781
2782
|
"""
|
|
2782
2783
|
Indicates if the active user can edit this object. Defaults to true.
|
|
2783
2784
|
"""
|
|
@@ -2785,7 +2786,7 @@ class OutputsTcpSyslogAcl(dict):
|
|
|
2785
2786
|
|
|
2786
2787
|
@property
|
|
2787
2788
|
@pulumi.getter
|
|
2788
|
-
def owner(self) -> Optional[str]:
|
|
2789
|
+
def owner(self) -> Optional[builtins.str]:
|
|
2789
2790
|
"""
|
|
2790
2791
|
User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
2791
2792
|
"""
|
|
@@ -2793,7 +2794,7 @@ class OutputsTcpSyslogAcl(dict):
|
|
|
2793
2794
|
|
|
2794
2795
|
@property
|
|
2795
2796
|
@pulumi.getter
|
|
2796
|
-
def reads(self) -> Optional[Sequence[str]]:
|
|
2797
|
+
def reads(self) -> Optional[Sequence[builtins.str]]:
|
|
2797
2798
|
"""
|
|
2798
2799
|
Properties that indicate resource read permissions.
|
|
2799
2800
|
"""
|
|
@@ -2801,7 +2802,7 @@ class OutputsTcpSyslogAcl(dict):
|
|
|
2801
2802
|
|
|
2802
2803
|
@property
|
|
2803
2804
|
@pulumi.getter
|
|
2804
|
-
def removable(self) -> Optional[bool]:
|
|
2805
|
+
def removable(self) -> Optional[builtins.bool]:
|
|
2805
2806
|
"""
|
|
2806
2807
|
Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
2807
2808
|
"""
|
|
@@ -2809,7 +2810,7 @@ class OutputsTcpSyslogAcl(dict):
|
|
|
2809
2810
|
|
|
2810
2811
|
@property
|
|
2811
2812
|
@pulumi.getter
|
|
2812
|
-
def sharing(self) -> Optional[str]:
|
|
2813
|
+
def sharing(self) -> Optional[builtins.str]:
|
|
2813
2814
|
"""
|
|
2814
2815
|
Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
2815
2816
|
"""
|
|
@@ -2817,7 +2818,7 @@ class OutputsTcpSyslogAcl(dict):
|
|
|
2817
2818
|
|
|
2818
2819
|
@property
|
|
2819
2820
|
@pulumi.getter
|
|
2820
|
-
def writes(self) -> Optional[Sequence[str]]:
|
|
2821
|
+
def writes(self) -> Optional[Sequence[builtins.str]]:
|
|
2821
2822
|
"""
|
|
2822
2823
|
Properties that indicate resource write permissions.
|
|
2823
2824
|
"""
|
|
@@ -2852,29 +2853,29 @@ class SavedSearchesAcl(dict):
|
|
|
2852
2853
|
return super().get(key, default)
|
|
2853
2854
|
|
|
2854
2855
|
def __init__(__self__, *,
|
|
2855
|
-
app: Optional[str] = None,
|
|
2856
|
-
can_change_perms: Optional[bool] = None,
|
|
2857
|
-
can_share_app: Optional[bool] = None,
|
|
2858
|
-
can_share_global: Optional[bool] = None,
|
|
2859
|
-
can_share_user: Optional[bool] = None,
|
|
2860
|
-
can_write: Optional[bool] = None,
|
|
2861
|
-
owner: Optional[str] = None,
|
|
2862
|
-
reads: Optional[Sequence[str]] = None,
|
|
2863
|
-
removable: Optional[bool] = None,
|
|
2864
|
-
sharing: Optional[str] = None,
|
|
2865
|
-
writes: Optional[Sequence[str]] = None):
|
|
2866
|
-
"""
|
|
2867
|
-
:param str app: The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
2868
|
-
:param bool can_change_perms: Indicates if the active user can change permissions for this object. Defaults to true.
|
|
2869
|
-
:param bool can_share_app: Indicates if the active user can change sharing to app level. Defaults to true.
|
|
2870
|
-
:param bool can_share_global: Indicates if the active user can change sharing to system level. Defaults to true.
|
|
2871
|
-
:param bool can_share_user: Indicates if the active user can change sharing to user level. Defaults to true.
|
|
2872
|
-
:param bool can_write: Indicates if the active user can edit this object. Defaults to true.
|
|
2873
|
-
:param str owner: User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
2874
|
-
:param Sequence[str] reads: Properties that indicate resource read permissions.
|
|
2875
|
-
:param bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
2876
|
-
:param str sharing: Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
2877
|
-
:param Sequence[str] writes: Properties that indicate resource write permissions.
|
|
2856
|
+
app: Optional[builtins.str] = None,
|
|
2857
|
+
can_change_perms: Optional[builtins.bool] = None,
|
|
2858
|
+
can_share_app: Optional[builtins.bool] = None,
|
|
2859
|
+
can_share_global: Optional[builtins.bool] = None,
|
|
2860
|
+
can_share_user: Optional[builtins.bool] = None,
|
|
2861
|
+
can_write: Optional[builtins.bool] = None,
|
|
2862
|
+
owner: Optional[builtins.str] = None,
|
|
2863
|
+
reads: Optional[Sequence[builtins.str]] = None,
|
|
2864
|
+
removable: Optional[builtins.bool] = None,
|
|
2865
|
+
sharing: Optional[builtins.str] = None,
|
|
2866
|
+
writes: Optional[Sequence[builtins.str]] = None):
|
|
2867
|
+
"""
|
|
2868
|
+
:param builtins.str app: The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
2869
|
+
:param builtins.bool can_change_perms: Indicates if the active user can change permissions for this object. Defaults to true.
|
|
2870
|
+
:param builtins.bool can_share_app: Indicates if the active user can change sharing to app level. Defaults to true.
|
|
2871
|
+
:param builtins.bool can_share_global: Indicates if the active user can change sharing to system level. Defaults to true.
|
|
2872
|
+
:param builtins.bool can_share_user: Indicates if the active user can change sharing to user level. Defaults to true.
|
|
2873
|
+
:param builtins.bool can_write: Indicates if the active user can edit this object. Defaults to true.
|
|
2874
|
+
:param builtins.str owner: User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
2875
|
+
:param Sequence[builtins.str] reads: Properties that indicate resource read permissions.
|
|
2876
|
+
:param builtins.bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
2877
|
+
:param builtins.str sharing: Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
2878
|
+
:param Sequence[builtins.str] writes: Properties that indicate resource write permissions.
|
|
2878
2879
|
"""
|
|
2879
2880
|
if app is not None:
|
|
2880
2881
|
pulumi.set(__self__, "app", app)
|
|
@@ -2901,7 +2902,7 @@ class SavedSearchesAcl(dict):
|
|
|
2901
2902
|
|
|
2902
2903
|
@property
|
|
2903
2904
|
@pulumi.getter
|
|
2904
|
-
def app(self) -> Optional[str]:
|
|
2905
|
+
def app(self) -> Optional[builtins.str]:
|
|
2905
2906
|
"""
|
|
2906
2907
|
The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
2907
2908
|
"""
|
|
@@ -2909,7 +2910,7 @@ class SavedSearchesAcl(dict):
|
|
|
2909
2910
|
|
|
2910
2911
|
@property
|
|
2911
2912
|
@pulumi.getter(name="canChangePerms")
|
|
2912
|
-
def can_change_perms(self) -> Optional[bool]:
|
|
2913
|
+
def can_change_perms(self) -> Optional[builtins.bool]:
|
|
2913
2914
|
"""
|
|
2914
2915
|
Indicates if the active user can change permissions for this object. Defaults to true.
|
|
2915
2916
|
"""
|
|
@@ -2917,7 +2918,7 @@ class SavedSearchesAcl(dict):
|
|
|
2917
2918
|
|
|
2918
2919
|
@property
|
|
2919
2920
|
@pulumi.getter(name="canShareApp")
|
|
2920
|
-
def can_share_app(self) -> Optional[bool]:
|
|
2921
|
+
def can_share_app(self) -> Optional[builtins.bool]:
|
|
2921
2922
|
"""
|
|
2922
2923
|
Indicates if the active user can change sharing to app level. Defaults to true.
|
|
2923
2924
|
"""
|
|
@@ -2925,7 +2926,7 @@ class SavedSearchesAcl(dict):
|
|
|
2925
2926
|
|
|
2926
2927
|
@property
|
|
2927
2928
|
@pulumi.getter(name="canShareGlobal")
|
|
2928
|
-
def can_share_global(self) -> Optional[bool]:
|
|
2929
|
+
def can_share_global(self) -> Optional[builtins.bool]:
|
|
2929
2930
|
"""
|
|
2930
2931
|
Indicates if the active user can change sharing to system level. Defaults to true.
|
|
2931
2932
|
"""
|
|
@@ -2933,7 +2934,7 @@ class SavedSearchesAcl(dict):
|
|
|
2933
2934
|
|
|
2934
2935
|
@property
|
|
2935
2936
|
@pulumi.getter(name="canShareUser")
|
|
2936
|
-
def can_share_user(self) -> Optional[bool]:
|
|
2937
|
+
def can_share_user(self) -> Optional[builtins.bool]:
|
|
2937
2938
|
"""
|
|
2938
2939
|
Indicates if the active user can change sharing to user level. Defaults to true.
|
|
2939
2940
|
"""
|
|
@@ -2941,7 +2942,7 @@ class SavedSearchesAcl(dict):
|
|
|
2941
2942
|
|
|
2942
2943
|
@property
|
|
2943
2944
|
@pulumi.getter(name="canWrite")
|
|
2944
|
-
def can_write(self) -> Optional[bool]:
|
|
2945
|
+
def can_write(self) -> Optional[builtins.bool]:
|
|
2945
2946
|
"""
|
|
2946
2947
|
Indicates if the active user can edit this object. Defaults to true.
|
|
2947
2948
|
"""
|
|
@@ -2949,7 +2950,7 @@ class SavedSearchesAcl(dict):
|
|
|
2949
2950
|
|
|
2950
2951
|
@property
|
|
2951
2952
|
@pulumi.getter
|
|
2952
|
-
def owner(self) -> Optional[str]:
|
|
2953
|
+
def owner(self) -> Optional[builtins.str]:
|
|
2953
2954
|
"""
|
|
2954
2955
|
User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
2955
2956
|
"""
|
|
@@ -2957,7 +2958,7 @@ class SavedSearchesAcl(dict):
|
|
|
2957
2958
|
|
|
2958
2959
|
@property
|
|
2959
2960
|
@pulumi.getter
|
|
2960
|
-
def reads(self) -> Optional[Sequence[str]]:
|
|
2961
|
+
def reads(self) -> Optional[Sequence[builtins.str]]:
|
|
2961
2962
|
"""
|
|
2962
2963
|
Properties that indicate resource read permissions.
|
|
2963
2964
|
"""
|
|
@@ -2965,7 +2966,7 @@ class SavedSearchesAcl(dict):
|
|
|
2965
2966
|
|
|
2966
2967
|
@property
|
|
2967
2968
|
@pulumi.getter
|
|
2968
|
-
def removable(self) -> Optional[bool]:
|
|
2969
|
+
def removable(self) -> Optional[builtins.bool]:
|
|
2969
2970
|
"""
|
|
2970
2971
|
Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
2971
2972
|
"""
|
|
@@ -2973,7 +2974,7 @@ class SavedSearchesAcl(dict):
|
|
|
2973
2974
|
|
|
2974
2975
|
@property
|
|
2975
2976
|
@pulumi.getter
|
|
2976
|
-
def sharing(self) -> Optional[str]:
|
|
2977
|
+
def sharing(self) -> Optional[builtins.str]:
|
|
2977
2978
|
"""
|
|
2978
2979
|
Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
2979
2980
|
"""
|
|
@@ -2981,7 +2982,7 @@ class SavedSearchesAcl(dict):
|
|
|
2981
2982
|
|
|
2982
2983
|
@property
|
|
2983
2984
|
@pulumi.getter
|
|
2984
|
-
def writes(self) -> Optional[Sequence[str]]:
|
|
2985
|
+
def writes(self) -> Optional[Sequence[builtins.str]]:
|
|
2985
2986
|
"""
|
|
2986
2987
|
Properties that indicate resource write permissions.
|
|
2987
2988
|
"""
|
|
@@ -3016,29 +3017,29 @@ class ShIndexesManagerAcl(dict):
|
|
|
3016
3017
|
return super().get(key, default)
|
|
3017
3018
|
|
|
3018
3019
|
def __init__(__self__, *,
|
|
3019
|
-
app: Optional[str] = None,
|
|
3020
|
-
can_change_perms: Optional[bool] = None,
|
|
3021
|
-
can_share_app: Optional[bool] = None,
|
|
3022
|
-
can_share_global: Optional[bool] = None,
|
|
3023
|
-
can_share_user: Optional[bool] = None,
|
|
3024
|
-
can_write: Optional[bool] = None,
|
|
3025
|
-
owner: Optional[str] = None,
|
|
3026
|
-
reads: Optional[Sequence[str]] = None,
|
|
3027
|
-
removable: Optional[bool] = None,
|
|
3028
|
-
sharing: Optional[str] = None,
|
|
3029
|
-
writes: Optional[Sequence[str]] = None):
|
|
3030
|
-
"""
|
|
3031
|
-
:param str app: The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
3032
|
-
:param bool can_change_perms: Indicates if the active user can change permissions for this object. Defaults to true.
|
|
3033
|
-
:param bool can_share_app: Indicates if the active user can change sharing to app level. Defaults to true.
|
|
3034
|
-
:param bool can_share_global: Indicates if the active user can change sharing to system level. Defaults to true.
|
|
3035
|
-
:param bool can_share_user: Indicates if the active user can change sharing to user level. Defaults to true.
|
|
3036
|
-
:param bool can_write: Indicates if the active user can edit this object. Defaults to true.
|
|
3037
|
-
:param str owner: User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
3038
|
-
:param Sequence[str] reads: Properties that indicate resource read permissions.
|
|
3039
|
-
:param bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
3040
|
-
:param str sharing: Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
3041
|
-
:param Sequence[str] writes: Properties that indicate resource write permissions.
|
|
3020
|
+
app: Optional[builtins.str] = None,
|
|
3021
|
+
can_change_perms: Optional[builtins.bool] = None,
|
|
3022
|
+
can_share_app: Optional[builtins.bool] = None,
|
|
3023
|
+
can_share_global: Optional[builtins.bool] = None,
|
|
3024
|
+
can_share_user: Optional[builtins.bool] = None,
|
|
3025
|
+
can_write: Optional[builtins.bool] = None,
|
|
3026
|
+
owner: Optional[builtins.str] = None,
|
|
3027
|
+
reads: Optional[Sequence[builtins.str]] = None,
|
|
3028
|
+
removable: Optional[builtins.bool] = None,
|
|
3029
|
+
sharing: Optional[builtins.str] = None,
|
|
3030
|
+
writes: Optional[Sequence[builtins.str]] = None):
|
|
3031
|
+
"""
|
|
3032
|
+
:param builtins.str app: The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
3033
|
+
:param builtins.bool can_change_perms: Indicates if the active user can change permissions for this object. Defaults to true.
|
|
3034
|
+
:param builtins.bool can_share_app: Indicates if the active user can change sharing to app level. Defaults to true.
|
|
3035
|
+
:param builtins.bool can_share_global: Indicates if the active user can change sharing to system level. Defaults to true.
|
|
3036
|
+
:param builtins.bool can_share_user: Indicates if the active user can change sharing to user level. Defaults to true.
|
|
3037
|
+
:param builtins.bool can_write: Indicates if the active user can edit this object. Defaults to true.
|
|
3038
|
+
:param builtins.str owner: User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
3039
|
+
:param Sequence[builtins.str] reads: Properties that indicate resource read permissions.
|
|
3040
|
+
:param builtins.bool removable: Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
3041
|
+
:param builtins.str sharing: Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
3042
|
+
:param Sequence[builtins.str] writes: Properties that indicate resource write permissions.
|
|
3042
3043
|
"""
|
|
3043
3044
|
if app is not None:
|
|
3044
3045
|
pulumi.set(__self__, "app", app)
|
|
@@ -3065,7 +3066,7 @@ class ShIndexesManagerAcl(dict):
|
|
|
3065
3066
|
|
|
3066
3067
|
@property
|
|
3067
3068
|
@pulumi.getter
|
|
3068
|
-
def app(self) -> Optional[str]:
|
|
3069
|
+
def app(self) -> Optional[builtins.str]:
|
|
3069
3070
|
"""
|
|
3070
3071
|
The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
|
|
3071
3072
|
"""
|
|
@@ -3073,7 +3074,7 @@ class ShIndexesManagerAcl(dict):
|
|
|
3073
3074
|
|
|
3074
3075
|
@property
|
|
3075
3076
|
@pulumi.getter(name="canChangePerms")
|
|
3076
|
-
def can_change_perms(self) -> Optional[bool]:
|
|
3077
|
+
def can_change_perms(self) -> Optional[builtins.bool]:
|
|
3077
3078
|
"""
|
|
3078
3079
|
Indicates if the active user can change permissions for this object. Defaults to true.
|
|
3079
3080
|
"""
|
|
@@ -3081,7 +3082,7 @@ class ShIndexesManagerAcl(dict):
|
|
|
3081
3082
|
|
|
3082
3083
|
@property
|
|
3083
3084
|
@pulumi.getter(name="canShareApp")
|
|
3084
|
-
def can_share_app(self) -> Optional[bool]:
|
|
3085
|
+
def can_share_app(self) -> Optional[builtins.bool]:
|
|
3085
3086
|
"""
|
|
3086
3087
|
Indicates if the active user can change sharing to app level. Defaults to true.
|
|
3087
3088
|
"""
|
|
@@ -3089,7 +3090,7 @@ class ShIndexesManagerAcl(dict):
|
|
|
3089
3090
|
|
|
3090
3091
|
@property
|
|
3091
3092
|
@pulumi.getter(name="canShareGlobal")
|
|
3092
|
-
def can_share_global(self) -> Optional[bool]:
|
|
3093
|
+
def can_share_global(self) -> Optional[builtins.bool]:
|
|
3093
3094
|
"""
|
|
3094
3095
|
Indicates if the active user can change sharing to system level. Defaults to true.
|
|
3095
3096
|
"""
|
|
@@ -3097,7 +3098,7 @@ class ShIndexesManagerAcl(dict):
|
|
|
3097
3098
|
|
|
3098
3099
|
@property
|
|
3099
3100
|
@pulumi.getter(name="canShareUser")
|
|
3100
|
-
def can_share_user(self) -> Optional[bool]:
|
|
3101
|
+
def can_share_user(self) -> Optional[builtins.bool]:
|
|
3101
3102
|
"""
|
|
3102
3103
|
Indicates if the active user can change sharing to user level. Defaults to true.
|
|
3103
3104
|
"""
|
|
@@ -3105,7 +3106,7 @@ class ShIndexesManagerAcl(dict):
|
|
|
3105
3106
|
|
|
3106
3107
|
@property
|
|
3107
3108
|
@pulumi.getter(name="canWrite")
|
|
3108
|
-
def can_write(self) -> Optional[bool]:
|
|
3109
|
+
def can_write(self) -> Optional[builtins.bool]:
|
|
3109
3110
|
"""
|
|
3110
3111
|
Indicates if the active user can edit this object. Defaults to true.
|
|
3111
3112
|
"""
|
|
@@ -3113,7 +3114,7 @@ class ShIndexesManagerAcl(dict):
|
|
|
3113
3114
|
|
|
3114
3115
|
@property
|
|
3115
3116
|
@pulumi.getter
|
|
3116
|
-
def owner(self) -> Optional[str]:
|
|
3117
|
+
def owner(self) -> Optional[builtins.str]:
|
|
3117
3118
|
"""
|
|
3118
3119
|
User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
|
|
3119
3120
|
"""
|
|
@@ -3121,7 +3122,7 @@ class ShIndexesManagerAcl(dict):
|
|
|
3121
3122
|
|
|
3122
3123
|
@property
|
|
3123
3124
|
@pulumi.getter
|
|
3124
|
-
def reads(self) -> Optional[Sequence[str]]:
|
|
3125
|
+
def reads(self) -> Optional[Sequence[builtins.str]]:
|
|
3125
3126
|
"""
|
|
3126
3127
|
Properties that indicate resource read permissions.
|
|
3127
3128
|
"""
|
|
@@ -3129,7 +3130,7 @@ class ShIndexesManagerAcl(dict):
|
|
|
3129
3130
|
|
|
3130
3131
|
@property
|
|
3131
3132
|
@pulumi.getter
|
|
3132
|
-
def removable(self) -> Optional[bool]:
|
|
3133
|
+
def removable(self) -> Optional[builtins.bool]:
|
|
3133
3134
|
"""
|
|
3134
3135
|
Indicates whether an admin or user with sufficient permissions can delete the entity.
|
|
3135
3136
|
"""
|
|
@@ -3137,7 +3138,7 @@ class ShIndexesManagerAcl(dict):
|
|
|
3137
3138
|
|
|
3138
3139
|
@property
|
|
3139
3140
|
@pulumi.getter
|
|
3140
|
-
def sharing(self) -> Optional[str]:
|
|
3141
|
+
def sharing(self) -> Optional[builtins.str]:
|
|
3141
3142
|
"""
|
|
3142
3143
|
Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
|
|
3143
3144
|
"""
|
|
@@ -3145,7 +3146,7 @@ class ShIndexesManagerAcl(dict):
|
|
|
3145
3146
|
|
|
3146
3147
|
@property
|
|
3147
3148
|
@pulumi.getter
|
|
3148
|
-
def writes(self) -> Optional[Sequence[str]]:
|
|
3149
|
+
def writes(self) -> Optional[Sequence[builtins.str]]:
|
|
3149
3150
|
"""
|
|
3150
3151
|
Properties that indicate resource write permissions.
|
|
3151
3152
|
"""
|