pulumi-ise 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (105) hide show
  1. pulumi_ise/__init__.py +362 -0
  2. pulumi_ise/_utilities.py +291 -0
  3. pulumi_ise/config/__init__.py +8 -0
  4. pulumi_ise/config/__init__.pyi +36 -0
  5. pulumi_ise/config/vars.py +52 -0
  6. pulumi_ise/deviceadmin/__init__.py +29 -0
  7. pulumi_ise/deviceadmin/_inputs.py +1952 -0
  8. pulumi_ise/deviceadmin/allowed_protocols_tacacs.py +376 -0
  9. pulumi_ise/deviceadmin/authentication_rule.py +1045 -0
  10. pulumi_ise/deviceadmin/authorization_exception_rule.py +937 -0
  11. pulumi_ise/deviceadmin/authorization_global_exception_rule.py +887 -0
  12. pulumi_ise/deviceadmin/authorization_rule.py +937 -0
  13. pulumi_ise/deviceadmin/condition.py +645 -0
  14. pulumi_ise/deviceadmin/get_allowed_protocols_tacacs.py +161 -0
  15. pulumi_ise/deviceadmin/get_authentication_rule.py +338 -0
  16. pulumi_ise/deviceadmin/get_authorization_exception_rule.py +312 -0
  17. pulumi_ise/deviceadmin/get_authorization_global_exception_rule.py +292 -0
  18. pulumi_ise/deviceadmin/get_authorization_rule.py +312 -0
  19. pulumi_ise/deviceadmin/get_condition.py +227 -0
  20. pulumi_ise/deviceadmin/get_policy_set.py +305 -0
  21. pulumi_ise/deviceadmin/get_tacacs_command_set.py +146 -0
  22. pulumi_ise/deviceadmin/get_tacacs_profile.py +133 -0
  23. pulumi_ise/deviceadmin/get_time_and_date_condition.py +265 -0
  24. pulumi_ise/deviceadmin/outputs.py +3173 -0
  25. pulumi_ise/deviceadmin/policy_set.py +942 -0
  26. pulumi_ise/deviceadmin/tacacs_command_set.py +321 -0
  27. pulumi_ise/deviceadmin/tacacs_profile.py +272 -0
  28. pulumi_ise/deviceadmin/time_and_date_condition.py +765 -0
  29. pulumi_ise/identitymanagement/__init__.py +26 -0
  30. pulumi_ise/identitymanagement/_inputs.py +313 -0
  31. pulumi_ise/identitymanagement/active_directory_add_groups.py +478 -0
  32. pulumi_ise/identitymanagement/active_directory_join_domain_with_all_nodes.py +211 -0
  33. pulumi_ise/identitymanagement/active_directory_join_point.py +1671 -0
  34. pulumi_ise/identitymanagement/certificate_authentication_profile.py +520 -0
  35. pulumi_ise/identitymanagement/endpoint.py +1371 -0
  36. pulumi_ise/identitymanagement/endpoint_identity_group.py +322 -0
  37. pulumi_ise/identitymanagement/get_active_directory_groups_by_domain.py +198 -0
  38. pulumi_ise/identitymanagement/get_active_directory_join_point.py +518 -0
  39. pulumi_ise/identitymanagement/get_certificate_authentication_profile.py +187 -0
  40. pulumi_ise/identitymanagement/get_endpoint.py +434 -0
  41. pulumi_ise/identitymanagement/get_endpoint_identity_group.py +148 -0
  42. pulumi_ise/identitymanagement/get_identity_source_sequence.py +159 -0
  43. pulumi_ise/identitymanagement/get_internal_user.py +278 -0
  44. pulumi_ise/identitymanagement/get_user_identity_group.py +135 -0
  45. pulumi_ise/identitymanagement/identity_source_sequence.py +371 -0
  46. pulumi_ise/identitymanagement/internal_user.py +825 -0
  47. pulumi_ise/identitymanagement/outputs.py +486 -0
  48. pulumi_ise/identitymanagement/user_identity_group.py +275 -0
  49. pulumi_ise/network/__init__.py +13 -0
  50. pulumi_ise/network/_inputs.py +69 -0
  51. pulumi_ise/network/device.py +2189 -0
  52. pulumi_ise/network/device_group.py +276 -0
  53. pulumi_ise/network/get_device.py +643 -0
  54. pulumi_ise/network/get_device_group.py +135 -0
  55. pulumi_ise/network/outputs.py +115 -0
  56. pulumi_ise/networkaccess/__init__.py +31 -0
  57. pulumi_ise/networkaccess/_inputs.py +1948 -0
  58. pulumi_ise/networkaccess/allowed_protocols.py +3962 -0
  59. pulumi_ise/networkaccess/authentication_rule.py +1045 -0
  60. pulumi_ise/networkaccess/authorization_exception_rule.py +937 -0
  61. pulumi_ise/networkaccess/authorization_global_exception_rule.py +887 -0
  62. pulumi_ise/networkaccess/authorization_profile.py +1677 -0
  63. pulumi_ise/networkaccess/authorization_rule.py +937 -0
  64. pulumi_ise/networkaccess/condition.py +645 -0
  65. pulumi_ise/networkaccess/dictionary.py +326 -0
  66. pulumi_ise/networkaccess/downloadable_acl.py +325 -0
  67. pulumi_ise/networkaccess/get_allowed_protocols.py +1097 -0
  68. pulumi_ise/networkaccess/get_authentication_rule.py +338 -0
  69. pulumi_ise/networkaccess/get_authorization_exception_rule.py +312 -0
  70. pulumi_ise/networkaccess/get_authorization_global_exception_rule.py +292 -0
  71. pulumi_ise/networkaccess/get_authorization_profile.py +526 -0
  72. pulumi_ise/networkaccess/get_authorization_rule.py +312 -0
  73. pulumi_ise/networkaccess/get_condition.py +227 -0
  74. pulumi_ise/networkaccess/get_dictionary.py +148 -0
  75. pulumi_ise/networkaccess/get_downloadable_acl.py +148 -0
  76. pulumi_ise/networkaccess/get_policy_set.py +305 -0
  77. pulumi_ise/networkaccess/get_time_and_date_condition.py +265 -0
  78. pulumi_ise/networkaccess/outputs.py +3188 -0
  79. pulumi_ise/networkaccess/policy_set.py +942 -0
  80. pulumi_ise/networkaccess/time_and_date_condition.py +765 -0
  81. pulumi_ise/provider.py +204 -0
  82. pulumi_ise/pulumi-plugin.json +4 -0
  83. pulumi_ise/py.typed +0 -0
  84. pulumi_ise/system/__init__.py +13 -0
  85. pulumi_ise/system/_inputs.py +56 -0
  86. pulumi_ise/system/get_license_tier_state.py +105 -0
  87. pulumi_ise/system/get_repository.py +187 -0
  88. pulumi_ise/system/license_tier_state.py +184 -0
  89. pulumi_ise/system/outputs.py +78 -0
  90. pulumi_ise/system/repository.py +473 -0
  91. pulumi_ise/trustsec/__init__.py +17 -0
  92. pulumi_ise/trustsec/egress_matrix_cell.py +424 -0
  93. pulumi_ise/trustsec/get_egress_matrix_cell.py +169 -0
  94. pulumi_ise/trustsec/get_ip_to_sgt_mapping.py +200 -0
  95. pulumi_ise/trustsec/get_ip_to_sgt_mapping_group.py +161 -0
  96. pulumi_ise/trustsec/get_security_group.py +161 -0
  97. pulumi_ise/trustsec/get_security_group_acl.py +161 -0
  98. pulumi_ise/trustsec/ip_to_sgt_mapping.py +512 -0
  99. pulumi_ise/trustsec/ip_to_sgt_mapping_group.py +371 -0
  100. pulumi_ise/trustsec/security_group.py +374 -0
  101. pulumi_ise/trustsec/security_group_acl.py +374 -0
  102. pulumi_ise-0.1.0.dist-info/METADATA +63 -0
  103. pulumi_ise-0.1.0.dist-info/RECORD +105 -0
  104. pulumi_ise-0.1.0.dist-info/WHEEL +5 -0
  105. pulumi_ise-0.1.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,486 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import pulumi
8
+ import pulumi.runtime
9
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
+ from .. import _utilities
11
+
12
+ __all__ = [
13
+ 'ActiveDirectoryAddGroupsGroup',
14
+ 'ActiveDirectoryJoinDomainWithAllNodesAdditionalData',
15
+ 'ActiveDirectoryJoinPointAttribute',
16
+ 'ActiveDirectoryJoinPointGroup',
17
+ 'ActiveDirectoryJoinPointRewriteRule',
18
+ 'IdentitySourceSequenceIdentitySource',
19
+ 'GetActiveDirectoryGroupsByDomainGroupResult',
20
+ 'GetActiveDirectoryJoinPointAttributeResult',
21
+ 'GetActiveDirectoryJoinPointGroupResult',
22
+ 'GetActiveDirectoryJoinPointRewriteRuleResult',
23
+ 'GetIdentitySourceSequenceIdentitySourceResult',
24
+ ]
25
+
26
+ @pulumi.output_type
27
+ class ActiveDirectoryAddGroupsGroup(dict):
28
+ def __init__(__self__, *,
29
+ name: str,
30
+ sid: str,
31
+ type: Optional[str] = None):
32
+ """
33
+ :param str name: Required for each group in the group list with no duplication between groups
34
+ :param str sid: Required for each group in the group list with no duplication between groups
35
+ """
36
+ pulumi.set(__self__, "name", name)
37
+ pulumi.set(__self__, "sid", sid)
38
+ if type is not None:
39
+ pulumi.set(__self__, "type", type)
40
+
41
+ @property
42
+ @pulumi.getter
43
+ def name(self) -> str:
44
+ """
45
+ Required for each group in the group list with no duplication between groups
46
+ """
47
+ return pulumi.get(self, "name")
48
+
49
+ @property
50
+ @pulumi.getter
51
+ def sid(self) -> str:
52
+ """
53
+ Required for each group in the group list with no duplication between groups
54
+ """
55
+ return pulumi.get(self, "sid")
56
+
57
+ @property
58
+ @pulumi.getter
59
+ def type(self) -> Optional[str]:
60
+ return pulumi.get(self, "type")
61
+
62
+
63
+ @pulumi.output_type
64
+ class ActiveDirectoryJoinDomainWithAllNodesAdditionalData(dict):
65
+ def __init__(__self__, *,
66
+ name: str,
67
+ value: str):
68
+ """
69
+ :param str name: Additional attribute name
70
+ :param str value: Additional attribute value
71
+ """
72
+ pulumi.set(__self__, "name", name)
73
+ pulumi.set(__self__, "value", value)
74
+
75
+ @property
76
+ @pulumi.getter
77
+ def name(self) -> str:
78
+ """
79
+ Additional attribute name
80
+ """
81
+ return pulumi.get(self, "name")
82
+
83
+ @property
84
+ @pulumi.getter
85
+ def value(self) -> str:
86
+ """
87
+ Additional attribute value
88
+ """
89
+ return pulumi.get(self, "value")
90
+
91
+
92
+ @pulumi.output_type
93
+ class ActiveDirectoryJoinPointAttribute(dict):
94
+ @staticmethod
95
+ def __key_warning(key: str):
96
+ suggest = None
97
+ if key == "defaultValue":
98
+ suggest = "default_value"
99
+ elif key == "internalName":
100
+ suggest = "internal_name"
101
+
102
+ if suggest:
103
+ pulumi.log.warn(f"Key '{key}' not found in ActiveDirectoryJoinPointAttribute. Access the value via the '{suggest}' property getter instead.")
104
+
105
+ def __getitem__(self, key: str) -> Any:
106
+ ActiveDirectoryJoinPointAttribute.__key_warning(key)
107
+ return super().__getitem__(key)
108
+
109
+ def get(self, key: str, default = None) -> Any:
110
+ ActiveDirectoryJoinPointAttribute.__key_warning(key)
111
+ return super().get(key, default)
112
+
113
+ def __init__(__self__, *,
114
+ default_value: str,
115
+ internal_name: str,
116
+ name: str,
117
+ type: str):
118
+ """
119
+ :param str default_value: Required for each attribute in the attribute list. Can contain an empty string.
120
+ :param str internal_name: Required for each attribute in the attribute list
121
+ :param str name: Required for each attribute in the attribute list with no duplication between attributes
122
+ :param str type: Required for each group in the group list
123
+ - Choices: `STRING`, `IP`, `BOOLEAN`, `INT`, `OCTET_STRING`
124
+ """
125
+ pulumi.set(__self__, "default_value", default_value)
126
+ pulumi.set(__self__, "internal_name", internal_name)
127
+ pulumi.set(__self__, "name", name)
128
+ pulumi.set(__self__, "type", type)
129
+
130
+ @property
131
+ @pulumi.getter(name="defaultValue")
132
+ def default_value(self) -> str:
133
+ """
134
+ Required for each attribute in the attribute list. Can contain an empty string.
135
+ """
136
+ return pulumi.get(self, "default_value")
137
+
138
+ @property
139
+ @pulumi.getter(name="internalName")
140
+ def internal_name(self) -> str:
141
+ """
142
+ Required for each attribute in the attribute list
143
+ """
144
+ return pulumi.get(self, "internal_name")
145
+
146
+ @property
147
+ @pulumi.getter
148
+ def name(self) -> str:
149
+ """
150
+ Required for each attribute in the attribute list with no duplication between attributes
151
+ """
152
+ return pulumi.get(self, "name")
153
+
154
+ @property
155
+ @pulumi.getter
156
+ def type(self) -> str:
157
+ """
158
+ Required for each group in the group list
159
+ - Choices: `STRING`, `IP`, `BOOLEAN`, `INT`, `OCTET_STRING`
160
+ """
161
+ return pulumi.get(self, "type")
162
+
163
+
164
+ @pulumi.output_type
165
+ class ActiveDirectoryJoinPointGroup(dict):
166
+ def __init__(__self__, *,
167
+ name: str,
168
+ sid: str,
169
+ type: Optional[str] = None):
170
+ """
171
+ :param str name: Required for each group in the group list with no duplication between groups
172
+ :param str sid: Required for each group in the group list with no duplication between groups
173
+ """
174
+ pulumi.set(__self__, "name", name)
175
+ pulumi.set(__self__, "sid", sid)
176
+ if type is not None:
177
+ pulumi.set(__self__, "type", type)
178
+
179
+ @property
180
+ @pulumi.getter
181
+ def name(self) -> str:
182
+ """
183
+ Required for each group in the group list with no duplication between groups
184
+ """
185
+ return pulumi.get(self, "name")
186
+
187
+ @property
188
+ @pulumi.getter
189
+ def sid(self) -> str:
190
+ """
191
+ Required for each group in the group list with no duplication between groups
192
+ """
193
+ return pulumi.get(self, "sid")
194
+
195
+ @property
196
+ @pulumi.getter
197
+ def type(self) -> Optional[str]:
198
+ return pulumi.get(self, "type")
199
+
200
+
201
+ @pulumi.output_type
202
+ class ActiveDirectoryJoinPointRewriteRule(dict):
203
+ @staticmethod
204
+ def __key_warning(key: str):
205
+ suggest = None
206
+ if key == "rewriteMatch":
207
+ suggest = "rewrite_match"
208
+ elif key == "rewriteResult":
209
+ suggest = "rewrite_result"
210
+ elif key == "rowId":
211
+ suggest = "row_id"
212
+
213
+ if suggest:
214
+ pulumi.log.warn(f"Key '{key}' not found in ActiveDirectoryJoinPointRewriteRule. Access the value via the '{suggest}' property getter instead.")
215
+
216
+ def __getitem__(self, key: str) -> Any:
217
+ ActiveDirectoryJoinPointRewriteRule.__key_warning(key)
218
+ return super().__getitem__(key)
219
+
220
+ def get(self, key: str, default = None) -> Any:
221
+ ActiveDirectoryJoinPointRewriteRule.__key_warning(key)
222
+ return super().get(key, default)
223
+
224
+ def __init__(__self__, *,
225
+ rewrite_match: str,
226
+ rewrite_result: str,
227
+ row_id: str):
228
+ """
229
+ :param str rewrite_match: Required for each rule in the list with no duplication between rules
230
+ :param str rewrite_result: Required for each rule in the list
231
+ :param str row_id: Required for each rule in the list in serial order
232
+ """
233
+ pulumi.set(__self__, "rewrite_match", rewrite_match)
234
+ pulumi.set(__self__, "rewrite_result", rewrite_result)
235
+ pulumi.set(__self__, "row_id", row_id)
236
+
237
+ @property
238
+ @pulumi.getter(name="rewriteMatch")
239
+ def rewrite_match(self) -> str:
240
+ """
241
+ Required for each rule in the list with no duplication between rules
242
+ """
243
+ return pulumi.get(self, "rewrite_match")
244
+
245
+ @property
246
+ @pulumi.getter(name="rewriteResult")
247
+ def rewrite_result(self) -> str:
248
+ """
249
+ Required for each rule in the list
250
+ """
251
+ return pulumi.get(self, "rewrite_result")
252
+
253
+ @property
254
+ @pulumi.getter(name="rowId")
255
+ def row_id(self) -> str:
256
+ """
257
+ Required for each rule in the list in serial order
258
+ """
259
+ return pulumi.get(self, "row_id")
260
+
261
+
262
+ @pulumi.output_type
263
+ class IdentitySourceSequenceIdentitySource(dict):
264
+ def __init__(__self__, *,
265
+ name: str,
266
+ order: int):
267
+ """
268
+ :param str name: Name of the identity source
269
+ :param int order: Order of the identity source in the sequence
270
+ """
271
+ pulumi.set(__self__, "name", name)
272
+ pulumi.set(__self__, "order", order)
273
+
274
+ @property
275
+ @pulumi.getter
276
+ def name(self) -> str:
277
+ """
278
+ Name of the identity source
279
+ """
280
+ return pulumi.get(self, "name")
281
+
282
+ @property
283
+ @pulumi.getter
284
+ def order(self) -> int:
285
+ """
286
+ Order of the identity source in the sequence
287
+ """
288
+ return pulumi.get(self, "order")
289
+
290
+
291
+ @pulumi.output_type
292
+ class GetActiveDirectoryGroupsByDomainGroupResult(dict):
293
+ def __init__(__self__, *,
294
+ name: str,
295
+ sid: str,
296
+ type: str):
297
+ """
298
+ :param str name: Group name
299
+ :param str sid: Group SID
300
+ :param str type: Group type
301
+ """
302
+ pulumi.set(__self__, "name", name)
303
+ pulumi.set(__self__, "sid", sid)
304
+ pulumi.set(__self__, "type", type)
305
+
306
+ @property
307
+ @pulumi.getter
308
+ def name(self) -> str:
309
+ """
310
+ Group name
311
+ """
312
+ return pulumi.get(self, "name")
313
+
314
+ @property
315
+ @pulumi.getter
316
+ def sid(self) -> str:
317
+ """
318
+ Group SID
319
+ """
320
+ return pulumi.get(self, "sid")
321
+
322
+ @property
323
+ @pulumi.getter
324
+ def type(self) -> str:
325
+ """
326
+ Group type
327
+ """
328
+ return pulumi.get(self, "type")
329
+
330
+
331
+ @pulumi.output_type
332
+ class GetActiveDirectoryJoinPointAttributeResult(dict):
333
+ def __init__(__self__, *,
334
+ default_value: str,
335
+ internal_name: str,
336
+ name: str,
337
+ type: str):
338
+ """
339
+ :param str default_value: Required for each attribute in the attribute list. Can contain an empty string.
340
+ :param str internal_name: Required for each attribute in the attribute list
341
+ :param str name: Required for each attribute in the attribute list with no duplication between attributes
342
+ :param str type: Required for each group in the group list
343
+ """
344
+ pulumi.set(__self__, "default_value", default_value)
345
+ pulumi.set(__self__, "internal_name", internal_name)
346
+ pulumi.set(__self__, "name", name)
347
+ pulumi.set(__self__, "type", type)
348
+
349
+ @property
350
+ @pulumi.getter(name="defaultValue")
351
+ def default_value(self) -> str:
352
+ """
353
+ Required for each attribute in the attribute list. Can contain an empty string.
354
+ """
355
+ return pulumi.get(self, "default_value")
356
+
357
+ @property
358
+ @pulumi.getter(name="internalName")
359
+ def internal_name(self) -> str:
360
+ """
361
+ Required for each attribute in the attribute list
362
+ """
363
+ return pulumi.get(self, "internal_name")
364
+
365
+ @property
366
+ @pulumi.getter
367
+ def name(self) -> str:
368
+ """
369
+ Required for each attribute in the attribute list with no duplication between attributes
370
+ """
371
+ return pulumi.get(self, "name")
372
+
373
+ @property
374
+ @pulumi.getter
375
+ def type(self) -> str:
376
+ """
377
+ Required for each group in the group list
378
+ """
379
+ return pulumi.get(self, "type")
380
+
381
+
382
+ @pulumi.output_type
383
+ class GetActiveDirectoryJoinPointGroupResult(dict):
384
+ def __init__(__self__, *,
385
+ name: str,
386
+ sid: str,
387
+ type: str):
388
+ """
389
+ :param str name: Required for each group in the group list with no duplication between groups
390
+ :param str sid: Required for each group in the group list with no duplication between groups
391
+ """
392
+ pulumi.set(__self__, "name", name)
393
+ pulumi.set(__self__, "sid", sid)
394
+ pulumi.set(__self__, "type", type)
395
+
396
+ @property
397
+ @pulumi.getter
398
+ def name(self) -> str:
399
+ """
400
+ Required for each group in the group list with no duplication between groups
401
+ """
402
+ return pulumi.get(self, "name")
403
+
404
+ @property
405
+ @pulumi.getter
406
+ def sid(self) -> str:
407
+ """
408
+ Required for each group in the group list with no duplication between groups
409
+ """
410
+ return pulumi.get(self, "sid")
411
+
412
+ @property
413
+ @pulumi.getter
414
+ def type(self) -> str:
415
+ return pulumi.get(self, "type")
416
+
417
+
418
+ @pulumi.output_type
419
+ class GetActiveDirectoryJoinPointRewriteRuleResult(dict):
420
+ def __init__(__self__, *,
421
+ rewrite_match: str,
422
+ rewrite_result: str,
423
+ row_id: str):
424
+ """
425
+ :param str rewrite_match: Required for each rule in the list with no duplication between rules
426
+ :param str rewrite_result: Required for each rule in the list
427
+ :param str row_id: Required for each rule in the list in serial order
428
+ """
429
+ pulumi.set(__self__, "rewrite_match", rewrite_match)
430
+ pulumi.set(__self__, "rewrite_result", rewrite_result)
431
+ pulumi.set(__self__, "row_id", row_id)
432
+
433
+ @property
434
+ @pulumi.getter(name="rewriteMatch")
435
+ def rewrite_match(self) -> str:
436
+ """
437
+ Required for each rule in the list with no duplication between rules
438
+ """
439
+ return pulumi.get(self, "rewrite_match")
440
+
441
+ @property
442
+ @pulumi.getter(name="rewriteResult")
443
+ def rewrite_result(self) -> str:
444
+ """
445
+ Required for each rule in the list
446
+ """
447
+ return pulumi.get(self, "rewrite_result")
448
+
449
+ @property
450
+ @pulumi.getter(name="rowId")
451
+ def row_id(self) -> str:
452
+ """
453
+ Required for each rule in the list in serial order
454
+ """
455
+ return pulumi.get(self, "row_id")
456
+
457
+
458
+ @pulumi.output_type
459
+ class GetIdentitySourceSequenceIdentitySourceResult(dict):
460
+ def __init__(__self__, *,
461
+ name: str,
462
+ order: int):
463
+ """
464
+ :param str name: Name of the identity source
465
+ :param int order: Order of the identity source in the sequence
466
+ """
467
+ pulumi.set(__self__, "name", name)
468
+ pulumi.set(__self__, "order", order)
469
+
470
+ @property
471
+ @pulumi.getter
472
+ def name(self) -> str:
473
+ """
474
+ Name of the identity source
475
+ """
476
+ return pulumi.get(self, "name")
477
+
478
+ @property
479
+ @pulumi.getter
480
+ def order(self) -> int:
481
+ """
482
+ Order of the identity source in the sequence
483
+ """
484
+ return pulumi.get(self, "order")
485
+
486
+