pulumi-azure-native 2.55.0a1723193023__py3-none-any.whl → 2.56.0a1723657983__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-azure-native might be problematic. Click here for more details.

Files changed (234) hide show
  1. pulumi_azure_native/__init__.py +52 -1
  2. pulumi_azure_native/cdn/__init__.py +7 -0
  3. pulumi_azure_native/cdn/_enums.py +8 -0
  4. pulumi_azure_native/cdn/_inputs.py +58 -0
  5. pulumi_azure_native/cdn/afd_custom_domain.py +3 -3
  6. pulumi_azure_native/cdn/afd_endpoint.py +3 -3
  7. pulumi_azure_native/cdn/afd_origin.py +3 -3
  8. pulumi_azure_native/cdn/afd_origin_group.py +3 -3
  9. pulumi_azure_native/cdn/afd_target_group.py +240 -0
  10. pulumi_azure_native/cdn/custom_domain.py +3 -3
  11. pulumi_azure_native/cdn/endpoint.py +3 -3
  12. pulumi_azure_native/cdn/get_afd_custom_domain.py +2 -2
  13. pulumi_azure_native/cdn/get_afd_endpoint.py +2 -2
  14. pulumi_azure_native/cdn/get_afd_origin.py +2 -2
  15. pulumi_azure_native/cdn/get_afd_origin_group.py +2 -2
  16. pulumi_azure_native/cdn/get_afd_target_group.py +166 -0
  17. pulumi_azure_native/cdn/get_custom_domain.py +2 -2
  18. pulumi_azure_native/cdn/get_endpoint.py +2 -2
  19. pulumi_azure_native/cdn/get_key_group.py +2 -2
  20. pulumi_azure_native/cdn/get_origin.py +2 -2
  21. pulumi_azure_native/cdn/get_origin_group.py +2 -2
  22. pulumi_azure_native/cdn/get_policy.py +2 -2
  23. pulumi_azure_native/cdn/get_profile.py +2 -2
  24. pulumi_azure_native/cdn/get_profile_supported_optimization_types.py +2 -2
  25. pulumi_azure_native/cdn/get_route.py +2 -2
  26. pulumi_azure_native/cdn/get_rule.py +2 -2
  27. pulumi_azure_native/cdn/get_rule_set.py +2 -2
  28. pulumi_azure_native/cdn/get_secret.py +2 -2
  29. pulumi_azure_native/cdn/get_security_policy.py +2 -2
  30. pulumi_azure_native/cdn/get_tunnel_policy.py +192 -0
  31. pulumi_azure_native/cdn/key_group.py +3 -3
  32. pulumi_azure_native/cdn/origin.py +3 -3
  33. pulumi_azure_native/cdn/origin_group.py +3 -3
  34. pulumi_azure_native/cdn/outputs.py +53 -0
  35. pulumi_azure_native/cdn/policy.py +3 -3
  36. pulumi_azure_native/cdn/profile.py +3 -3
  37. pulumi_azure_native/cdn/route.py +3 -3
  38. pulumi_azure_native/cdn/rule.py +3 -3
  39. pulumi_azure_native/cdn/rule_set.py +3 -3
  40. pulumi_azure_native/cdn/secret.py +3 -3
  41. pulumi_azure_native/cdn/security_policy.py +3 -3
  42. pulumi_azure_native/cdn/tunnel_policy.py +299 -0
  43. pulumi_azure_native/cdn/v20200901/afd_endpoint.py +1 -1
  44. pulumi_azure_native/cdn/v20200901/afd_origin_group.py +1 -1
  45. pulumi_azure_native/cdn/v20200901/profile.py +1 -1
  46. pulumi_azure_native/cdn/v20200901/route.py +1 -1
  47. pulumi_azure_native/cdn/v20230501/afd_custom_domain.py +1 -1
  48. pulumi_azure_native/cdn/v20230501/afd_endpoint.py +1 -1
  49. pulumi_azure_native/cdn/v20230501/afd_origin.py +1 -1
  50. pulumi_azure_native/cdn/v20230501/afd_origin_group.py +1 -1
  51. pulumi_azure_native/cdn/v20230501/custom_domain.py +1 -1
  52. pulumi_azure_native/cdn/v20230501/endpoint.py +1 -1
  53. pulumi_azure_native/cdn/v20230501/origin.py +1 -1
  54. pulumi_azure_native/cdn/v20230501/origin_group.py +1 -1
  55. pulumi_azure_native/cdn/v20230501/policy.py +1 -1
  56. pulumi_azure_native/cdn/v20230501/profile.py +1 -1
  57. pulumi_azure_native/cdn/v20230501/route.py +1 -1
  58. pulumi_azure_native/cdn/v20230501/rule.py +1 -1
  59. pulumi_azure_native/cdn/v20230501/rule_set.py +1 -1
  60. pulumi_azure_native/cdn/v20230501/secret.py +1 -1
  61. pulumi_azure_native/cdn/v20230501/security_policy.py +1 -1
  62. pulumi_azure_native/cdn/v20230701preview/afd_custom_domain.py +1 -1
  63. pulumi_azure_native/cdn/v20230701preview/afd_endpoint.py +1 -1
  64. pulumi_azure_native/cdn/v20230701preview/afd_origin.py +1 -1
  65. pulumi_azure_native/cdn/v20230701preview/afd_origin_group.py +1 -1
  66. pulumi_azure_native/cdn/v20230701preview/custom_domain.py +1 -1
  67. pulumi_azure_native/cdn/v20230701preview/endpoint.py +1 -1
  68. pulumi_azure_native/cdn/v20230701preview/key_group.py +1 -1
  69. pulumi_azure_native/cdn/v20230701preview/origin.py +1 -1
  70. pulumi_azure_native/cdn/v20230701preview/origin_group.py +1 -1
  71. pulumi_azure_native/cdn/v20230701preview/policy.py +1 -1
  72. pulumi_azure_native/cdn/v20230701preview/profile.py +1 -1
  73. pulumi_azure_native/cdn/v20230701preview/route.py +1 -1
  74. pulumi_azure_native/cdn/v20230701preview/rule.py +1 -1
  75. pulumi_azure_native/cdn/v20230701preview/rule_set.py +1 -1
  76. pulumi_azure_native/cdn/v20230701preview/secret.py +1 -1
  77. pulumi_azure_native/cdn/v20230701preview/security_policy.py +1 -1
  78. pulumi_azure_native/cdn/v20240201/afd_custom_domain.py +1 -1
  79. pulumi_azure_native/cdn/v20240201/afd_endpoint.py +1 -1
  80. pulumi_azure_native/cdn/v20240201/afd_origin.py +1 -1
  81. pulumi_azure_native/cdn/v20240201/afd_origin_group.py +1 -1
  82. pulumi_azure_native/cdn/v20240201/custom_domain.py +1 -1
  83. pulumi_azure_native/cdn/v20240201/endpoint.py +1 -1
  84. pulumi_azure_native/cdn/v20240201/origin.py +1 -1
  85. pulumi_azure_native/cdn/v20240201/origin_group.py +1 -1
  86. pulumi_azure_native/cdn/v20240201/policy.py +1 -1
  87. pulumi_azure_native/cdn/v20240201/profile.py +1 -1
  88. pulumi_azure_native/cdn/v20240201/route.py +1 -1
  89. pulumi_azure_native/cdn/v20240201/rule.py +1 -1
  90. pulumi_azure_native/cdn/v20240201/rule_set.py +1 -1
  91. pulumi_azure_native/cdn/v20240201/secret.py +1 -1
  92. pulumi_azure_native/cdn/v20240201/security_policy.py +1 -1
  93. pulumi_azure_native/cdn/v20240501preview/afd_custom_domain.py +1 -1
  94. pulumi_azure_native/cdn/v20240501preview/afd_endpoint.py +1 -1
  95. pulumi_azure_native/cdn/v20240501preview/afd_origin.py +1 -1
  96. pulumi_azure_native/cdn/v20240501preview/afd_origin_group.py +1 -1
  97. pulumi_azure_native/cdn/v20240501preview/custom_domain.py +1 -1
  98. pulumi_azure_native/cdn/v20240501preview/endpoint.py +1 -1
  99. pulumi_azure_native/cdn/v20240501preview/key_group.py +1 -1
  100. pulumi_azure_native/cdn/v20240501preview/origin.py +1 -1
  101. pulumi_azure_native/cdn/v20240501preview/origin_group.py +1 -1
  102. pulumi_azure_native/cdn/v20240501preview/policy.py +1 -1
  103. pulumi_azure_native/cdn/v20240501preview/profile.py +1 -1
  104. pulumi_azure_native/cdn/v20240501preview/route.py +1 -1
  105. pulumi_azure_native/cdn/v20240501preview/rule.py +1 -1
  106. pulumi_azure_native/cdn/v20240501preview/rule_set.py +1 -1
  107. pulumi_azure_native/cdn/v20240501preview/secret.py +1 -1
  108. pulumi_azure_native/cdn/v20240501preview/security_policy.py +1 -1
  109. pulumi_azure_native/cdn/v20240601preview/__init__.py +47 -0
  110. pulumi_azure_native/cdn/v20240601preview/_enums.py +910 -0
  111. pulumi_azure_native/cdn/v20240601preview/_inputs.py +8517 -0
  112. pulumi_azure_native/cdn/v20240601preview/afd_custom_domain.py +423 -0
  113. pulumi_azure_native/cdn/v20240601preview/afd_endpoint.py +343 -0
  114. pulumi_azure_native/cdn/v20240601preview/afd_origin.py +542 -0
  115. pulumi_azure_native/cdn/v20240601preview/afd_origin_group.py +334 -0
  116. pulumi_azure_native/cdn/v20240601preview/afd_target_group.py +238 -0
  117. pulumi_azure_native/cdn/v20240601preview/custom_domain.py +301 -0
  118. pulumi_azure_native/cdn/v20240601preview/endpoint.py +767 -0
  119. pulumi_azure_native/cdn/v20240601preview/get_afd_custom_domain.py +281 -0
  120. pulumi_azure_native/cdn/v20240601preview/get_afd_endpoint.py +229 -0
  121. pulumi_azure_native/cdn/v20240601preview/get_afd_origin.py +299 -0
  122. pulumi_azure_native/cdn/v20240601preview/get_afd_origin_group.py +216 -0
  123. pulumi_azure_native/cdn/v20240601preview/get_afd_target_group.py +164 -0
  124. pulumi_azure_native/cdn/v20240601preview/get_custom_domain.py +224 -0
  125. pulumi_azure_native/cdn/v20240601preview/get_endpoint.py +414 -0
  126. pulumi_azure_native/cdn/v20240601preview/get_key_group.py +164 -0
  127. pulumi_azure_native/cdn/v20240601preview/get_origin.py +315 -0
  128. pulumi_azure_native/cdn/v20240601preview/get_origin_group.py +211 -0
  129. pulumi_azure_native/cdn/v20240601preview/get_policy.py +276 -0
  130. pulumi_azure_native/cdn/v20240601preview/get_profile.py +266 -0
  131. pulumi_azure_native/cdn/v20240601preview/get_profile_supported_optimization_types.py +83 -0
  132. pulumi_azure_native/cdn/v20240601preview/get_route.py +325 -0
  133. pulumi_azure_native/cdn/v20240601preview/get_rule.py +221 -0
  134. pulumi_azure_native/cdn/v20240601preview/get_rule_set.py +164 -0
  135. pulumi_azure_native/cdn/v20240601preview/get_secret.py +177 -0
  136. pulumi_azure_native/cdn/v20240601preview/get_security_policy.py +177 -0
  137. pulumi_azure_native/cdn/v20240601preview/get_tunnel_policy.py +190 -0
  138. pulumi_azure_native/cdn/v20240601preview/key_group.py +237 -0
  139. pulumi_azure_native/cdn/v20240601preview/origin.py +561 -0
  140. pulumi_azure_native/cdn/v20240601preview/origin_group.py +350 -0
  141. pulumi_azure_native/cdn/v20240601preview/outputs.py +7442 -0
  142. pulumi_azure_native/cdn/v20240601preview/policy.py +441 -0
  143. pulumi_azure_native/cdn/v20240601preview/profile.py +396 -0
  144. pulumi_azure_native/cdn/v20240601preview/route.py +600 -0
  145. pulumi_azure_native/cdn/v20240601preview/rule.py +361 -0
  146. pulumi_azure_native/cdn/v20240601preview/rule_set.py +216 -0
  147. pulumi_azure_native/cdn/v20240601preview/secret.py +246 -0
  148. pulumi_azure_native/cdn/v20240601preview/security_policy.py +246 -0
  149. pulumi_azure_native/cdn/v20240601preview/tunnel_policy.py +297 -0
  150. pulumi_azure_native/confidentialledger/__init__.py +3 -0
  151. pulumi_azure_native/confidentialledger/get_ledger.py +2 -2
  152. pulumi_azure_native/confidentialledger/get_managed_ccf.py +2 -2
  153. pulumi_azure_native/confidentialledger/ledger.py +3 -3
  154. pulumi_azure_native/confidentialledger/managed_ccf.py +3 -3
  155. pulumi_azure_native/confidentialledger/v20220513/ledger.py +1 -1
  156. pulumi_azure_native/confidentialledger/v20230126preview/ledger.py +1 -1
  157. pulumi_azure_native/confidentialledger/v20230126preview/managed_ccf.py +1 -1
  158. pulumi_azure_native/confidentialledger/v20230628preview/ledger.py +1 -1
  159. pulumi_azure_native/confidentialledger/v20230628preview/managed_ccf.py +1 -1
  160. pulumi_azure_native/confidentialledger/v20240709preview/__init__.py +14 -0
  161. pulumi_azure_native/confidentialledger/v20240709preview/_enums.py +59 -0
  162. pulumi_azure_native/confidentialledger/v20240709preview/_inputs.py +621 -0
  163. pulumi_azure_native/confidentialledger/v20240709preview/get_ledger.py +162 -0
  164. pulumi_azure_native/confidentialledger/v20240709preview/get_managed_ccf.py +162 -0
  165. pulumi_azure_native/confidentialledger/v20240709preview/ledger.py +258 -0
  166. pulumi_azure_native/confidentialledger/v20240709preview/managed_ccf.py +258 -0
  167. pulumi_azure_native/confidentialledger/v20240709preview/outputs.py +730 -0
  168. pulumi_azure_native/pulumi-plugin.json +1 -1
  169. pulumi_azure_native/resources/__init__.py +3 -0
  170. pulumi_azure_native/resources/deployment.py +3 -3
  171. pulumi_azure_native/resources/deployment_at_management_group_scope.py +3 -3
  172. pulumi_azure_native/resources/deployment_at_scope.py +3 -3
  173. pulumi_azure_native/resources/deployment_at_subscription_scope.py +3 -3
  174. pulumi_azure_native/resources/deployment_at_tenant_scope.py +3 -3
  175. pulumi_azure_native/resources/get_deployment.py +2 -2
  176. pulumi_azure_native/resources/get_deployment_at_management_group_scope.py +2 -2
  177. pulumi_azure_native/resources/get_deployment_at_scope.py +2 -2
  178. pulumi_azure_native/resources/get_deployment_at_subscription_scope.py +2 -2
  179. pulumi_azure_native/resources/get_deployment_at_tenant_scope.py +2 -2
  180. pulumi_azure_native/resources/get_resource.py +2 -2
  181. pulumi_azure_native/resources/get_resource_group.py +2 -2
  182. pulumi_azure_native/resources/get_tag_at_scope.py +2 -2
  183. pulumi_azure_native/resources/resource.py +3 -3
  184. pulumi_azure_native/resources/resource_group.py +3 -3
  185. pulumi_azure_native/resources/tag_at_scope.py +3 -3
  186. pulumi_azure_native/resources/v20220901/deployment.py +1 -1
  187. pulumi_azure_native/resources/v20220901/deployment_at_management_group_scope.py +1 -1
  188. pulumi_azure_native/resources/v20220901/deployment_at_scope.py +1 -1
  189. pulumi_azure_native/resources/v20220901/deployment_at_subscription_scope.py +1 -1
  190. pulumi_azure_native/resources/v20220901/deployment_at_tenant_scope.py +1 -1
  191. pulumi_azure_native/resources/v20220901/resource.py +1 -1
  192. pulumi_azure_native/resources/v20220901/resource_group.py +1 -1
  193. pulumi_azure_native/resources/v20220901/tag_at_scope.py +1 -1
  194. pulumi_azure_native/resources/v20230701/deployment.py +1 -1
  195. pulumi_azure_native/resources/v20230701/deployment_at_management_group_scope.py +1 -1
  196. pulumi_azure_native/resources/v20230701/deployment_at_scope.py +1 -1
  197. pulumi_azure_native/resources/v20230701/deployment_at_subscription_scope.py +1 -1
  198. pulumi_azure_native/resources/v20230701/deployment_at_tenant_scope.py +1 -1
  199. pulumi_azure_native/resources/v20230701/resource.py +1 -1
  200. pulumi_azure_native/resources/v20230701/resource_group.py +1 -1
  201. pulumi_azure_native/resources/v20230701/tag_at_scope.py +1 -1
  202. pulumi_azure_native/resources/v20240301/deployment.py +1 -1
  203. pulumi_azure_native/resources/v20240301/deployment_at_management_group_scope.py +1 -1
  204. pulumi_azure_native/resources/v20240301/deployment_at_scope.py +1 -1
  205. pulumi_azure_native/resources/v20240301/deployment_at_subscription_scope.py +1 -1
  206. pulumi_azure_native/resources/v20240301/deployment_at_tenant_scope.py +1 -1
  207. pulumi_azure_native/resources/v20240301/resource.py +1 -1
  208. pulumi_azure_native/resources/v20240301/resource_group.py +1 -1
  209. pulumi_azure_native/resources/v20240301/tag_at_scope.py +1 -1
  210. pulumi_azure_native/resources/v20240701/__init__.py +26 -0
  211. pulumi_azure_native/resources/v20240701/_enums.py +55 -0
  212. pulumi_azure_native/resources/v20240701/_inputs.py +1082 -0
  213. pulumi_azure_native/resources/v20240701/deployment.py +249 -0
  214. pulumi_azure_native/resources/v20240701/deployment_at_management_group_scope.py +249 -0
  215. pulumi_azure_native/resources/v20240701/deployment_at_scope.py +249 -0
  216. pulumi_azure_native/resources/v20240701/deployment_at_subscription_scope.py +228 -0
  217. pulumi_azure_native/resources/v20240701/deployment_at_tenant_scope.py +228 -0
  218. pulumi_azure_native/resources/v20240701/get_deployment.py +149 -0
  219. pulumi_azure_native/resources/v20240701/get_deployment_at_management_group_scope.py +149 -0
  220. pulumi_azure_native/resources/v20240701/get_deployment_at_scope.py +149 -0
  221. pulumi_azure_native/resources/v20240701/get_deployment_at_subscription_scope.py +144 -0
  222. pulumi_azure_native/resources/v20240701/get_deployment_at_tenant_scope.py +144 -0
  223. pulumi_azure_native/resources/v20240701/get_resource.py +242 -0
  224. pulumi_azure_native/resources/v20240701/get_resource_group.py +157 -0
  225. pulumi_azure_native/resources/v20240701/get_tag_at_scope.py +118 -0
  226. pulumi_azure_native/resources/v20240701/outputs.py +1938 -0
  227. pulumi_azure_native/resources/v20240701/resource.py +485 -0
  228. pulumi_azure_native/resources/v20240701/resource_group.py +235 -0
  229. pulumi_azure_native/resources/v20240701/tag_at_scope.py +170 -0
  230. pulumi_azure_native/storage/blob.py +3 -3
  231. {pulumi_azure_native-2.55.0a1723193023.dist-info → pulumi_azure_native-2.56.0a1723657983.dist-info}/METADATA +1 -1
  232. {pulumi_azure_native-2.55.0a1723193023.dist-info → pulumi_azure_native-2.56.0a1723657983.dist-info}/RECORD +234 -161
  233. {pulumi_azure_native-2.55.0a1723193023.dist-info → pulumi_azure_native-2.56.0a1723657983.dist-info}/WHEEL +1 -1
  234. {pulumi_azure_native-2.55.0a1723193023.dist-info → pulumi_azure_native-2.56.0a1723657983.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,730 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
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 sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from ... import _utilities
16
+ from . import outputs
17
+ from ._enums import *
18
+
19
+ __all__ = [
20
+ 'AADBasedSecurityPrincipalResponse',
21
+ 'CertBasedSecurityPrincipalResponse',
22
+ 'CertificateTagsResponse',
23
+ 'DeploymentTypeResponse',
24
+ 'LedgerPropertiesResponse',
25
+ 'ManagedCCFPropertiesResponse',
26
+ 'MemberIdentityCertificateResponse',
27
+ 'SystemDataResponse',
28
+ ]
29
+
30
+ @pulumi.output_type
31
+ class AADBasedSecurityPrincipalResponse(dict):
32
+ """
33
+ AAD based security principal with associated Ledger RoleName
34
+ """
35
+ @staticmethod
36
+ def __key_warning(key: str):
37
+ suggest = None
38
+ if key == "ledgerRoleName":
39
+ suggest = "ledger_role_name"
40
+ elif key == "principalId":
41
+ suggest = "principal_id"
42
+ elif key == "tenantId":
43
+ suggest = "tenant_id"
44
+
45
+ if suggest:
46
+ pulumi.log.warn(f"Key '{key}' not found in AADBasedSecurityPrincipalResponse. Access the value via the '{suggest}' property getter instead.")
47
+
48
+ def __getitem__(self, key: str) -> Any:
49
+ AADBasedSecurityPrincipalResponse.__key_warning(key)
50
+ return super().__getitem__(key)
51
+
52
+ def get(self, key: str, default = None) -> Any:
53
+ AADBasedSecurityPrincipalResponse.__key_warning(key)
54
+ return super().get(key, default)
55
+
56
+ def __init__(__self__, *,
57
+ ledger_role_name: Optional[str] = None,
58
+ principal_id: Optional[str] = None,
59
+ tenant_id: Optional[str] = None):
60
+ """
61
+ AAD based security principal with associated Ledger RoleName
62
+ :param str ledger_role_name: LedgerRole associated with the Security Principal of Ledger
63
+ :param str principal_id: UUID/GUID based Principal Id of the Security Principal
64
+ :param str tenant_id: UUID/GUID based Tenant Id of the Security Principal
65
+ """
66
+ if ledger_role_name is not None:
67
+ pulumi.set(__self__, "ledger_role_name", ledger_role_name)
68
+ if principal_id is not None:
69
+ pulumi.set(__self__, "principal_id", principal_id)
70
+ if tenant_id is not None:
71
+ pulumi.set(__self__, "tenant_id", tenant_id)
72
+
73
+ @property
74
+ @pulumi.getter(name="ledgerRoleName")
75
+ def ledger_role_name(self) -> Optional[str]:
76
+ """
77
+ LedgerRole associated with the Security Principal of Ledger
78
+ """
79
+ return pulumi.get(self, "ledger_role_name")
80
+
81
+ @property
82
+ @pulumi.getter(name="principalId")
83
+ def principal_id(self) -> Optional[str]:
84
+ """
85
+ UUID/GUID based Principal Id of the Security Principal
86
+ """
87
+ return pulumi.get(self, "principal_id")
88
+
89
+ @property
90
+ @pulumi.getter(name="tenantId")
91
+ def tenant_id(self) -> Optional[str]:
92
+ """
93
+ UUID/GUID based Tenant Id of the Security Principal
94
+ """
95
+ return pulumi.get(self, "tenant_id")
96
+
97
+
98
+ @pulumi.output_type
99
+ class CertBasedSecurityPrincipalResponse(dict):
100
+ """
101
+ Cert based security principal with Ledger RoleName
102
+ """
103
+ @staticmethod
104
+ def __key_warning(key: str):
105
+ suggest = None
106
+ if key == "ledgerRoleName":
107
+ suggest = "ledger_role_name"
108
+
109
+ if suggest:
110
+ pulumi.log.warn(f"Key '{key}' not found in CertBasedSecurityPrincipalResponse. Access the value via the '{suggest}' property getter instead.")
111
+
112
+ def __getitem__(self, key: str) -> Any:
113
+ CertBasedSecurityPrincipalResponse.__key_warning(key)
114
+ return super().__getitem__(key)
115
+
116
+ def get(self, key: str, default = None) -> Any:
117
+ CertBasedSecurityPrincipalResponse.__key_warning(key)
118
+ return super().get(key, default)
119
+
120
+ def __init__(__self__, *,
121
+ cert: Optional[str] = None,
122
+ ledger_role_name: Optional[str] = None):
123
+ """
124
+ Cert based security principal with Ledger RoleName
125
+ :param str cert: Public key of the user cert (.pem or .cer)
126
+ :param str ledger_role_name: LedgerRole associated with the Security Principal of Ledger
127
+ """
128
+ if cert is not None:
129
+ pulumi.set(__self__, "cert", cert)
130
+ if ledger_role_name is not None:
131
+ pulumi.set(__self__, "ledger_role_name", ledger_role_name)
132
+
133
+ @property
134
+ @pulumi.getter
135
+ def cert(self) -> Optional[str]:
136
+ """
137
+ Public key of the user cert (.pem or .cer)
138
+ """
139
+ return pulumi.get(self, "cert")
140
+
141
+ @property
142
+ @pulumi.getter(name="ledgerRoleName")
143
+ def ledger_role_name(self) -> Optional[str]:
144
+ """
145
+ LedgerRole associated with the Security Principal of Ledger
146
+ """
147
+ return pulumi.get(self, "ledger_role_name")
148
+
149
+
150
+ @pulumi.output_type
151
+ class CertificateTagsResponse(dict):
152
+ """
153
+ Tags for Managed CCF Certificates
154
+ """
155
+ def __init__(__self__, *,
156
+ tags: Optional[Mapping[str, str]] = None):
157
+ """
158
+ Tags for Managed CCF Certificates
159
+ :param Mapping[str, str] tags: Additional tags for Managed CCF Certificates
160
+ """
161
+ if tags is not None:
162
+ pulumi.set(__self__, "tags", tags)
163
+
164
+ @property
165
+ @pulumi.getter
166
+ def tags(self) -> Optional[Mapping[str, str]]:
167
+ """
168
+ Additional tags for Managed CCF Certificates
169
+ """
170
+ return pulumi.get(self, "tags")
171
+
172
+
173
+ @pulumi.output_type
174
+ class DeploymentTypeResponse(dict):
175
+ """
176
+ Object representing DeploymentType for Managed CCF.
177
+ """
178
+ @staticmethod
179
+ def __key_warning(key: str):
180
+ suggest = None
181
+ if key == "appSourceUri":
182
+ suggest = "app_source_uri"
183
+ elif key == "languageRuntime":
184
+ suggest = "language_runtime"
185
+
186
+ if suggest:
187
+ pulumi.log.warn(f"Key '{key}' not found in DeploymentTypeResponse. Access the value via the '{suggest}' property getter instead.")
188
+
189
+ def __getitem__(self, key: str) -> Any:
190
+ DeploymentTypeResponse.__key_warning(key)
191
+ return super().__getitem__(key)
192
+
193
+ def get(self, key: str, default = None) -> Any:
194
+ DeploymentTypeResponse.__key_warning(key)
195
+ return super().get(key, default)
196
+
197
+ def __init__(__self__, *,
198
+ app_source_uri: Optional[str] = None,
199
+ language_runtime: Optional[str] = None):
200
+ """
201
+ Object representing DeploymentType for Managed CCF.
202
+ :param str app_source_uri: Source Uri containing ManagedCCF code
203
+ :param str language_runtime: Unique name for the Managed CCF.
204
+ """
205
+ if app_source_uri is not None:
206
+ pulumi.set(__self__, "app_source_uri", app_source_uri)
207
+ if language_runtime is not None:
208
+ pulumi.set(__self__, "language_runtime", language_runtime)
209
+
210
+ @property
211
+ @pulumi.getter(name="appSourceUri")
212
+ def app_source_uri(self) -> Optional[str]:
213
+ """
214
+ Source Uri containing ManagedCCF code
215
+ """
216
+ return pulumi.get(self, "app_source_uri")
217
+
218
+ @property
219
+ @pulumi.getter(name="languageRuntime")
220
+ def language_runtime(self) -> Optional[str]:
221
+ """
222
+ Unique name for the Managed CCF.
223
+ """
224
+ return pulumi.get(self, "language_runtime")
225
+
226
+
227
+ @pulumi.output_type
228
+ class LedgerPropertiesResponse(dict):
229
+ """
230
+ Additional Confidential Ledger properties.
231
+ """
232
+ @staticmethod
233
+ def __key_warning(key: str):
234
+ suggest = None
235
+ if key == "identityServiceUri":
236
+ suggest = "identity_service_uri"
237
+ elif key == "ledgerInternalNamespace":
238
+ suggest = "ledger_internal_namespace"
239
+ elif key == "ledgerName":
240
+ suggest = "ledger_name"
241
+ elif key == "ledgerUri":
242
+ suggest = "ledger_uri"
243
+ elif key == "provisioningState":
244
+ suggest = "provisioning_state"
245
+ elif key == "aadBasedSecurityPrincipals":
246
+ suggest = "aad_based_security_principals"
247
+ elif key == "certBasedSecurityPrincipals":
248
+ suggest = "cert_based_security_principals"
249
+ elif key == "hostLevel":
250
+ suggest = "host_level"
251
+ elif key == "ledgerSku":
252
+ suggest = "ledger_sku"
253
+ elif key == "ledgerType":
254
+ suggest = "ledger_type"
255
+ elif key == "maxBodySizeInMb":
256
+ suggest = "max_body_size_in_mb"
257
+ elif key == "nodeCount":
258
+ suggest = "node_count"
259
+ elif key == "runningState":
260
+ suggest = "running_state"
261
+ elif key == "subjectName":
262
+ suggest = "subject_name"
263
+
264
+ if suggest:
265
+ pulumi.log.warn(f"Key '{key}' not found in LedgerPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
266
+
267
+ def __getitem__(self, key: str) -> Any:
268
+ LedgerPropertiesResponse.__key_warning(key)
269
+ return super().__getitem__(key)
270
+
271
+ def get(self, key: str, default = None) -> Any:
272
+ LedgerPropertiesResponse.__key_warning(key)
273
+ return super().get(key, default)
274
+
275
+ def __init__(__self__, *,
276
+ identity_service_uri: str,
277
+ ledger_internal_namespace: str,
278
+ ledger_name: str,
279
+ ledger_uri: str,
280
+ provisioning_state: str,
281
+ aad_based_security_principals: Optional[Sequence['outputs.AADBasedSecurityPrincipalResponse']] = None,
282
+ cert_based_security_principals: Optional[Sequence['outputs.CertBasedSecurityPrincipalResponse']] = None,
283
+ host_level: Optional[str] = None,
284
+ ledger_sku: Optional[str] = None,
285
+ ledger_type: Optional[str] = None,
286
+ max_body_size_in_mb: Optional[int] = None,
287
+ node_count: Optional[int] = None,
288
+ running_state: Optional[str] = None,
289
+ subject_name: Optional[str] = None):
290
+ """
291
+ Additional Confidential Ledger properties.
292
+ :param str identity_service_uri: Endpoint for accessing network identity.
293
+ :param str ledger_internal_namespace: Internal namespace for the Ledger
294
+ :param str ledger_name: Unique name for the Confidential Ledger.
295
+ :param str ledger_uri: Endpoint for calling Ledger Service.
296
+ :param str provisioning_state: Provisioning state of Ledger Resource
297
+ :param Sequence['AADBasedSecurityPrincipalResponse'] aad_based_security_principals: Array of all AAD based Security Principals.
298
+ :param Sequence['CertBasedSecurityPrincipalResponse'] cert_based_security_principals: Array of all cert based Security Principals.
299
+ :param str host_level: CCF Property for the logging level for the untrusted host: Trace, Debug, Info, Fail, Fatal.
300
+ :param str ledger_sku: SKU associated with the ledger
301
+ :param str ledger_type: Type of Confidential Ledger
302
+ :param int max_body_size_in_mb: CCF Property for the maximum size of the http request body: 1MB, 5MB, 10MB.
303
+ :param int node_count: Number of CCF nodes in the ACC Ledger.
304
+ :param str running_state: Object representing RunningState for Ledger.
305
+ :param str subject_name: CCF Property for the subject name to include in the node certificate. Default: CN=CCF Node.
306
+ """
307
+ pulumi.set(__self__, "identity_service_uri", identity_service_uri)
308
+ pulumi.set(__self__, "ledger_internal_namespace", ledger_internal_namespace)
309
+ pulumi.set(__self__, "ledger_name", ledger_name)
310
+ pulumi.set(__self__, "ledger_uri", ledger_uri)
311
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
312
+ if aad_based_security_principals is not None:
313
+ pulumi.set(__self__, "aad_based_security_principals", aad_based_security_principals)
314
+ if cert_based_security_principals is not None:
315
+ pulumi.set(__self__, "cert_based_security_principals", cert_based_security_principals)
316
+ if host_level is not None:
317
+ pulumi.set(__self__, "host_level", host_level)
318
+ if ledger_sku is not None:
319
+ pulumi.set(__self__, "ledger_sku", ledger_sku)
320
+ if ledger_type is not None:
321
+ pulumi.set(__self__, "ledger_type", ledger_type)
322
+ if max_body_size_in_mb is not None:
323
+ pulumi.set(__self__, "max_body_size_in_mb", max_body_size_in_mb)
324
+ if node_count is not None:
325
+ pulumi.set(__self__, "node_count", node_count)
326
+ if running_state is not None:
327
+ pulumi.set(__self__, "running_state", running_state)
328
+ if subject_name is not None:
329
+ pulumi.set(__self__, "subject_name", subject_name)
330
+
331
+ @property
332
+ @pulumi.getter(name="identityServiceUri")
333
+ def identity_service_uri(self) -> str:
334
+ """
335
+ Endpoint for accessing network identity.
336
+ """
337
+ return pulumi.get(self, "identity_service_uri")
338
+
339
+ @property
340
+ @pulumi.getter(name="ledgerInternalNamespace")
341
+ def ledger_internal_namespace(self) -> str:
342
+ """
343
+ Internal namespace for the Ledger
344
+ """
345
+ return pulumi.get(self, "ledger_internal_namespace")
346
+
347
+ @property
348
+ @pulumi.getter(name="ledgerName")
349
+ def ledger_name(self) -> str:
350
+ """
351
+ Unique name for the Confidential Ledger.
352
+ """
353
+ return pulumi.get(self, "ledger_name")
354
+
355
+ @property
356
+ @pulumi.getter(name="ledgerUri")
357
+ def ledger_uri(self) -> str:
358
+ """
359
+ Endpoint for calling Ledger Service.
360
+ """
361
+ return pulumi.get(self, "ledger_uri")
362
+
363
+ @property
364
+ @pulumi.getter(name="provisioningState")
365
+ def provisioning_state(self) -> str:
366
+ """
367
+ Provisioning state of Ledger Resource
368
+ """
369
+ return pulumi.get(self, "provisioning_state")
370
+
371
+ @property
372
+ @pulumi.getter(name="aadBasedSecurityPrincipals")
373
+ def aad_based_security_principals(self) -> Optional[Sequence['outputs.AADBasedSecurityPrincipalResponse']]:
374
+ """
375
+ Array of all AAD based Security Principals.
376
+ """
377
+ return pulumi.get(self, "aad_based_security_principals")
378
+
379
+ @property
380
+ @pulumi.getter(name="certBasedSecurityPrincipals")
381
+ def cert_based_security_principals(self) -> Optional[Sequence['outputs.CertBasedSecurityPrincipalResponse']]:
382
+ """
383
+ Array of all cert based Security Principals.
384
+ """
385
+ return pulumi.get(self, "cert_based_security_principals")
386
+
387
+ @property
388
+ @pulumi.getter(name="hostLevel")
389
+ def host_level(self) -> Optional[str]:
390
+ """
391
+ CCF Property for the logging level for the untrusted host: Trace, Debug, Info, Fail, Fatal.
392
+ """
393
+ return pulumi.get(self, "host_level")
394
+
395
+ @property
396
+ @pulumi.getter(name="ledgerSku")
397
+ def ledger_sku(self) -> Optional[str]:
398
+ """
399
+ SKU associated with the ledger
400
+ """
401
+ return pulumi.get(self, "ledger_sku")
402
+
403
+ @property
404
+ @pulumi.getter(name="ledgerType")
405
+ def ledger_type(self) -> Optional[str]:
406
+ """
407
+ Type of Confidential Ledger
408
+ """
409
+ return pulumi.get(self, "ledger_type")
410
+
411
+ @property
412
+ @pulumi.getter(name="maxBodySizeInMb")
413
+ def max_body_size_in_mb(self) -> Optional[int]:
414
+ """
415
+ CCF Property for the maximum size of the http request body: 1MB, 5MB, 10MB.
416
+ """
417
+ return pulumi.get(self, "max_body_size_in_mb")
418
+
419
+ @property
420
+ @pulumi.getter(name="nodeCount")
421
+ def node_count(self) -> Optional[int]:
422
+ """
423
+ Number of CCF nodes in the ACC Ledger.
424
+ """
425
+ return pulumi.get(self, "node_count")
426
+
427
+ @property
428
+ @pulumi.getter(name="runningState")
429
+ def running_state(self) -> Optional[str]:
430
+ """
431
+ Object representing RunningState for Ledger.
432
+ """
433
+ return pulumi.get(self, "running_state")
434
+
435
+ @property
436
+ @pulumi.getter(name="subjectName")
437
+ def subject_name(self) -> Optional[str]:
438
+ """
439
+ CCF Property for the subject name to include in the node certificate. Default: CN=CCF Node.
440
+ """
441
+ return pulumi.get(self, "subject_name")
442
+
443
+
444
+ @pulumi.output_type
445
+ class ManagedCCFPropertiesResponse(dict):
446
+ """
447
+ Additional Managed CCF properties.
448
+ """
449
+ @staticmethod
450
+ def __key_warning(key: str):
451
+ suggest = None
452
+ if key == "appName":
453
+ suggest = "app_name"
454
+ elif key == "appUri":
455
+ suggest = "app_uri"
456
+ elif key == "identityServiceUri":
457
+ suggest = "identity_service_uri"
458
+ elif key == "provisioningState":
459
+ suggest = "provisioning_state"
460
+ elif key == "deploymentType":
461
+ suggest = "deployment_type"
462
+ elif key == "memberIdentityCertificates":
463
+ suggest = "member_identity_certificates"
464
+ elif key == "nodeCount":
465
+ suggest = "node_count"
466
+ elif key == "runningState":
467
+ suggest = "running_state"
468
+
469
+ if suggest:
470
+ pulumi.log.warn(f"Key '{key}' not found in ManagedCCFPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
471
+
472
+ def __getitem__(self, key: str) -> Any:
473
+ ManagedCCFPropertiesResponse.__key_warning(key)
474
+ return super().__getitem__(key)
475
+
476
+ def get(self, key: str, default = None) -> Any:
477
+ ManagedCCFPropertiesResponse.__key_warning(key)
478
+ return super().get(key, default)
479
+
480
+ def __init__(__self__, *,
481
+ app_name: str,
482
+ app_uri: str,
483
+ identity_service_uri: str,
484
+ provisioning_state: str,
485
+ deployment_type: Optional['outputs.DeploymentTypeResponse'] = None,
486
+ member_identity_certificates: Optional[Sequence['outputs.MemberIdentityCertificateResponse']] = None,
487
+ node_count: Optional[int] = None,
488
+ running_state: Optional[str] = None):
489
+ """
490
+ Additional Managed CCF properties.
491
+ :param str app_name: Unique name for the Managed CCF.
492
+ :param str app_uri: Endpoint for calling Managed CCF Service.
493
+ :param str identity_service_uri: Endpoint for accessing network identity.
494
+ :param str provisioning_state: Provisioning state of Managed CCF Resource
495
+ :param 'DeploymentTypeResponse' deployment_type: Deployment Type of Managed CCF
496
+ :param Sequence['MemberIdentityCertificateResponse'] member_identity_certificates: List of member identity certificates for Managed CCF
497
+ :param int node_count: Number of CCF nodes in the Managed CCF.
498
+ :param str running_state: Object representing RunningState for Managed CCF.
499
+ """
500
+ pulumi.set(__self__, "app_name", app_name)
501
+ pulumi.set(__self__, "app_uri", app_uri)
502
+ pulumi.set(__self__, "identity_service_uri", identity_service_uri)
503
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
504
+ if deployment_type is not None:
505
+ pulumi.set(__self__, "deployment_type", deployment_type)
506
+ if member_identity_certificates is not None:
507
+ pulumi.set(__self__, "member_identity_certificates", member_identity_certificates)
508
+ if node_count is not None:
509
+ pulumi.set(__self__, "node_count", node_count)
510
+ if running_state is not None:
511
+ pulumi.set(__self__, "running_state", running_state)
512
+
513
+ @property
514
+ @pulumi.getter(name="appName")
515
+ def app_name(self) -> str:
516
+ """
517
+ Unique name for the Managed CCF.
518
+ """
519
+ return pulumi.get(self, "app_name")
520
+
521
+ @property
522
+ @pulumi.getter(name="appUri")
523
+ def app_uri(self) -> str:
524
+ """
525
+ Endpoint for calling Managed CCF Service.
526
+ """
527
+ return pulumi.get(self, "app_uri")
528
+
529
+ @property
530
+ @pulumi.getter(name="identityServiceUri")
531
+ def identity_service_uri(self) -> str:
532
+ """
533
+ Endpoint for accessing network identity.
534
+ """
535
+ return pulumi.get(self, "identity_service_uri")
536
+
537
+ @property
538
+ @pulumi.getter(name="provisioningState")
539
+ def provisioning_state(self) -> str:
540
+ """
541
+ Provisioning state of Managed CCF Resource
542
+ """
543
+ return pulumi.get(self, "provisioning_state")
544
+
545
+ @property
546
+ @pulumi.getter(name="deploymentType")
547
+ def deployment_type(self) -> Optional['outputs.DeploymentTypeResponse']:
548
+ """
549
+ Deployment Type of Managed CCF
550
+ """
551
+ return pulumi.get(self, "deployment_type")
552
+
553
+ @property
554
+ @pulumi.getter(name="memberIdentityCertificates")
555
+ def member_identity_certificates(self) -> Optional[Sequence['outputs.MemberIdentityCertificateResponse']]:
556
+ """
557
+ List of member identity certificates for Managed CCF
558
+ """
559
+ return pulumi.get(self, "member_identity_certificates")
560
+
561
+ @property
562
+ @pulumi.getter(name="nodeCount")
563
+ def node_count(self) -> Optional[int]:
564
+ """
565
+ Number of CCF nodes in the Managed CCF.
566
+ """
567
+ return pulumi.get(self, "node_count")
568
+
569
+ @property
570
+ @pulumi.getter(name="runningState")
571
+ def running_state(self) -> Optional[str]:
572
+ """
573
+ Object representing RunningState for Managed CCF.
574
+ """
575
+ return pulumi.get(self, "running_state")
576
+
577
+
578
+ @pulumi.output_type
579
+ class MemberIdentityCertificateResponse(dict):
580
+ """
581
+ Object representing MemberIdentityCertificate for Managed CCF.
582
+ """
583
+ def __init__(__self__, *,
584
+ certificate: Optional[str] = None,
585
+ encryptionkey: Optional[str] = None,
586
+ tags: Optional[Sequence['outputs.CertificateTagsResponse']] = None):
587
+ """
588
+ Object representing MemberIdentityCertificate for Managed CCF.
589
+ :param str certificate: Member Identity Certificate
590
+ :param str encryptionkey: Member Identity Certificate Encryption Key
591
+ """
592
+ if certificate is not None:
593
+ pulumi.set(__self__, "certificate", certificate)
594
+ if encryptionkey is not None:
595
+ pulumi.set(__self__, "encryptionkey", encryptionkey)
596
+ if tags is not None:
597
+ pulumi.set(__self__, "tags", tags)
598
+
599
+ @property
600
+ @pulumi.getter
601
+ def certificate(self) -> Optional[str]:
602
+ """
603
+ Member Identity Certificate
604
+ """
605
+ return pulumi.get(self, "certificate")
606
+
607
+ @property
608
+ @pulumi.getter
609
+ def encryptionkey(self) -> Optional[str]:
610
+ """
611
+ Member Identity Certificate Encryption Key
612
+ """
613
+ return pulumi.get(self, "encryptionkey")
614
+
615
+ @property
616
+ @pulumi.getter
617
+ def tags(self) -> Optional[Sequence['outputs.CertificateTagsResponse']]:
618
+ return pulumi.get(self, "tags")
619
+
620
+
621
+ @pulumi.output_type
622
+ class SystemDataResponse(dict):
623
+ """
624
+ Metadata pertaining to creation and last modification of the resource.
625
+ """
626
+ @staticmethod
627
+ def __key_warning(key: str):
628
+ suggest = None
629
+ if key == "createdAt":
630
+ suggest = "created_at"
631
+ elif key == "createdBy":
632
+ suggest = "created_by"
633
+ elif key == "createdByType":
634
+ suggest = "created_by_type"
635
+ elif key == "lastModifiedAt":
636
+ suggest = "last_modified_at"
637
+ elif key == "lastModifiedBy":
638
+ suggest = "last_modified_by"
639
+ elif key == "lastModifiedByType":
640
+ suggest = "last_modified_by_type"
641
+
642
+ if suggest:
643
+ pulumi.log.warn(f"Key '{key}' not found in SystemDataResponse. Access the value via the '{suggest}' property getter instead.")
644
+
645
+ def __getitem__(self, key: str) -> Any:
646
+ SystemDataResponse.__key_warning(key)
647
+ return super().__getitem__(key)
648
+
649
+ def get(self, key: str, default = None) -> Any:
650
+ SystemDataResponse.__key_warning(key)
651
+ return super().get(key, default)
652
+
653
+ def __init__(__self__, *,
654
+ created_at: Optional[str] = None,
655
+ created_by: Optional[str] = None,
656
+ created_by_type: Optional[str] = None,
657
+ last_modified_at: Optional[str] = None,
658
+ last_modified_by: Optional[str] = None,
659
+ last_modified_by_type: Optional[str] = None):
660
+ """
661
+ Metadata pertaining to creation and last modification of the resource.
662
+ :param str created_at: The timestamp of resource creation (UTC).
663
+ :param str created_by: The identity that created the resource.
664
+ :param str created_by_type: The type of identity that created the resource.
665
+ :param str last_modified_at: The timestamp of resource last modification (UTC)
666
+ :param str last_modified_by: The identity that last modified the resource.
667
+ :param str last_modified_by_type: The type of identity that last modified the resource.
668
+ """
669
+ if created_at is not None:
670
+ pulumi.set(__self__, "created_at", created_at)
671
+ if created_by is not None:
672
+ pulumi.set(__self__, "created_by", created_by)
673
+ if created_by_type is not None:
674
+ pulumi.set(__self__, "created_by_type", created_by_type)
675
+ if last_modified_at is not None:
676
+ pulumi.set(__self__, "last_modified_at", last_modified_at)
677
+ if last_modified_by is not None:
678
+ pulumi.set(__self__, "last_modified_by", last_modified_by)
679
+ if last_modified_by_type is not None:
680
+ pulumi.set(__self__, "last_modified_by_type", last_modified_by_type)
681
+
682
+ @property
683
+ @pulumi.getter(name="createdAt")
684
+ def created_at(self) -> Optional[str]:
685
+ """
686
+ The timestamp of resource creation (UTC).
687
+ """
688
+ return pulumi.get(self, "created_at")
689
+
690
+ @property
691
+ @pulumi.getter(name="createdBy")
692
+ def created_by(self) -> Optional[str]:
693
+ """
694
+ The identity that created the resource.
695
+ """
696
+ return pulumi.get(self, "created_by")
697
+
698
+ @property
699
+ @pulumi.getter(name="createdByType")
700
+ def created_by_type(self) -> Optional[str]:
701
+ """
702
+ The type of identity that created the resource.
703
+ """
704
+ return pulumi.get(self, "created_by_type")
705
+
706
+ @property
707
+ @pulumi.getter(name="lastModifiedAt")
708
+ def last_modified_at(self) -> Optional[str]:
709
+ """
710
+ The timestamp of resource last modification (UTC)
711
+ """
712
+ return pulumi.get(self, "last_modified_at")
713
+
714
+ @property
715
+ @pulumi.getter(name="lastModifiedBy")
716
+ def last_modified_by(self) -> Optional[str]:
717
+ """
718
+ The identity that last modified the resource.
719
+ """
720
+ return pulumi.get(self, "last_modified_by")
721
+
722
+ @property
723
+ @pulumi.getter(name="lastModifiedByType")
724
+ def last_modified_by_type(self) -> Optional[str]:
725
+ """
726
+ The type of identity that last modified the resource.
727
+ """
728
+ return pulumi.get(self, "last_modified_by_type")
729
+
730
+