pulumi-azure-native 2.55.0a1723193023__py3-none-any.whl → 2.56.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 (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.0.dist-info}/METADATA +1 -1
  232. {pulumi_azure_native-2.55.0a1723193023.dist-info → pulumi_azure_native-2.56.0.dist-info}/RECORD +234 -161
  233. {pulumi_azure_native-2.55.0a1723193023.dist-info → pulumi_azure_native-2.56.0.dist-info}/WHEEL +1 -1
  234. {pulumi_azure_native-2.55.0a1723193023.dist-info → pulumi_azure_native-2.56.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,281 @@
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
+
18
+ __all__ = [
19
+ 'GetAFDCustomDomainResult',
20
+ 'AwaitableGetAFDCustomDomainResult',
21
+ 'get_afd_custom_domain',
22
+ 'get_afd_custom_domain_output',
23
+ ]
24
+
25
+ @pulumi.output_type
26
+ class GetAFDCustomDomainResult:
27
+ """
28
+ Friendly domain name mapping to the endpoint hostname that the customer provides for branding purposes, e.g. www.contoso.com.
29
+ """
30
+ def __init__(__self__, azure_dns_zone=None, deployment_status=None, domain_validation_state=None, extended_properties=None, host_name=None, id=None, mtls_settings=None, name=None, pre_validated_custom_domain_resource_id=None, profile_name=None, provisioning_state=None, referenced_route_paths=None, system_data=None, tls_settings=None, type=None, validation_properties=None):
31
+ if azure_dns_zone and not isinstance(azure_dns_zone, dict):
32
+ raise TypeError("Expected argument 'azure_dns_zone' to be a dict")
33
+ pulumi.set(__self__, "azure_dns_zone", azure_dns_zone)
34
+ if deployment_status and not isinstance(deployment_status, str):
35
+ raise TypeError("Expected argument 'deployment_status' to be a str")
36
+ pulumi.set(__self__, "deployment_status", deployment_status)
37
+ if domain_validation_state and not isinstance(domain_validation_state, str):
38
+ raise TypeError("Expected argument 'domain_validation_state' to be a str")
39
+ pulumi.set(__self__, "domain_validation_state", domain_validation_state)
40
+ if extended_properties and not isinstance(extended_properties, dict):
41
+ raise TypeError("Expected argument 'extended_properties' to be a dict")
42
+ pulumi.set(__self__, "extended_properties", extended_properties)
43
+ if host_name and not isinstance(host_name, str):
44
+ raise TypeError("Expected argument 'host_name' to be a str")
45
+ pulumi.set(__self__, "host_name", host_name)
46
+ if id and not isinstance(id, str):
47
+ raise TypeError("Expected argument 'id' to be a str")
48
+ pulumi.set(__self__, "id", id)
49
+ if mtls_settings and not isinstance(mtls_settings, dict):
50
+ raise TypeError("Expected argument 'mtls_settings' to be a dict")
51
+ pulumi.set(__self__, "mtls_settings", mtls_settings)
52
+ if name and not isinstance(name, str):
53
+ raise TypeError("Expected argument 'name' to be a str")
54
+ pulumi.set(__self__, "name", name)
55
+ if pre_validated_custom_domain_resource_id and not isinstance(pre_validated_custom_domain_resource_id, dict):
56
+ raise TypeError("Expected argument 'pre_validated_custom_domain_resource_id' to be a dict")
57
+ pulumi.set(__self__, "pre_validated_custom_domain_resource_id", pre_validated_custom_domain_resource_id)
58
+ if profile_name and not isinstance(profile_name, str):
59
+ raise TypeError("Expected argument 'profile_name' to be a str")
60
+ pulumi.set(__self__, "profile_name", profile_name)
61
+ if provisioning_state and not isinstance(provisioning_state, str):
62
+ raise TypeError("Expected argument 'provisioning_state' to be a str")
63
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
64
+ if referenced_route_paths and not isinstance(referenced_route_paths, list):
65
+ raise TypeError("Expected argument 'referenced_route_paths' to be a list")
66
+ pulumi.set(__self__, "referenced_route_paths", referenced_route_paths)
67
+ if system_data and not isinstance(system_data, dict):
68
+ raise TypeError("Expected argument 'system_data' to be a dict")
69
+ pulumi.set(__self__, "system_data", system_data)
70
+ if tls_settings and not isinstance(tls_settings, dict):
71
+ raise TypeError("Expected argument 'tls_settings' to be a dict")
72
+ pulumi.set(__self__, "tls_settings", tls_settings)
73
+ if type and not isinstance(type, str):
74
+ raise TypeError("Expected argument 'type' to be a str")
75
+ pulumi.set(__self__, "type", type)
76
+ if validation_properties and not isinstance(validation_properties, dict):
77
+ raise TypeError("Expected argument 'validation_properties' to be a dict")
78
+ pulumi.set(__self__, "validation_properties", validation_properties)
79
+
80
+ @property
81
+ @pulumi.getter(name="azureDnsZone")
82
+ def azure_dns_zone(self) -> Optional['outputs.ResourceReferenceResponse']:
83
+ """
84
+ Resource reference to the Azure DNS zone
85
+ """
86
+ return pulumi.get(self, "azure_dns_zone")
87
+
88
+ @property
89
+ @pulumi.getter(name="deploymentStatus")
90
+ def deployment_status(self) -> str:
91
+ return pulumi.get(self, "deployment_status")
92
+
93
+ @property
94
+ @pulumi.getter(name="domainValidationState")
95
+ def domain_validation_state(self) -> str:
96
+ """
97
+ Provisioning substate shows the progress of custom HTTPS enabling/disabling process step by step. DCV stands for DomainControlValidation.
98
+ """
99
+ return pulumi.get(self, "domain_validation_state")
100
+
101
+ @property
102
+ @pulumi.getter(name="extendedProperties")
103
+ def extended_properties(self) -> Optional[Mapping[str, str]]:
104
+ """
105
+ Key-Value pair representing migration properties for domains.
106
+ """
107
+ return pulumi.get(self, "extended_properties")
108
+
109
+ @property
110
+ @pulumi.getter(name="hostName")
111
+ def host_name(self) -> str:
112
+ """
113
+ The host name of the domain. Must be a domain name.
114
+ """
115
+ return pulumi.get(self, "host_name")
116
+
117
+ @property
118
+ @pulumi.getter
119
+ def id(self) -> str:
120
+ """
121
+ Resource ID.
122
+ """
123
+ return pulumi.get(self, "id")
124
+
125
+ @property
126
+ @pulumi.getter(name="mtlsSettings")
127
+ def mtls_settings(self) -> Optional['outputs.AFDDomainMtlsParametersResponse']:
128
+ """
129
+ The configuration specifying how to enable mutual TLS for the domain, including specifying allowed FQDN and which server certificate(s) to use.
130
+ """
131
+ return pulumi.get(self, "mtls_settings")
132
+
133
+ @property
134
+ @pulumi.getter
135
+ def name(self) -> str:
136
+ """
137
+ Resource name.
138
+ """
139
+ return pulumi.get(self, "name")
140
+
141
+ @property
142
+ @pulumi.getter(name="preValidatedCustomDomainResourceId")
143
+ def pre_validated_custom_domain_resource_id(self) -> Optional['outputs.ResourceReferenceResponse']:
144
+ """
145
+ Resource reference to the Azure resource where custom domain ownership was prevalidated
146
+ """
147
+ return pulumi.get(self, "pre_validated_custom_domain_resource_id")
148
+
149
+ @property
150
+ @pulumi.getter(name="profileName")
151
+ def profile_name(self) -> str:
152
+ """
153
+ The name of the profile which holds the domain.
154
+ """
155
+ return pulumi.get(self, "profile_name")
156
+
157
+ @property
158
+ @pulumi.getter(name="provisioningState")
159
+ def provisioning_state(self) -> str:
160
+ """
161
+ Provisioning status
162
+ """
163
+ return pulumi.get(self, "provisioning_state")
164
+
165
+ @property
166
+ @pulumi.getter(name="referencedRoutePaths")
167
+ def referenced_route_paths(self) -> Sequence['outputs.AFDDomainReferencedRoutePathResponse']:
168
+ """
169
+ The JSON object list that contains the overall picture of how routes are used for the shared custom domain across different profiles.
170
+ """
171
+ return pulumi.get(self, "referenced_route_paths")
172
+
173
+ @property
174
+ @pulumi.getter(name="systemData")
175
+ def system_data(self) -> 'outputs.SystemDataResponse':
176
+ """
177
+ Read only system data
178
+ """
179
+ return pulumi.get(self, "system_data")
180
+
181
+ @property
182
+ @pulumi.getter(name="tlsSettings")
183
+ def tls_settings(self) -> Optional['outputs.AFDDomainHttpsParametersResponse']:
184
+ """
185
+ The configuration specifying how to enable HTTPS for the domain - using AzureFrontDoor managed certificate or user's own certificate. If not specified, enabling ssl uses AzureFrontDoor managed certificate by default.
186
+ """
187
+ return pulumi.get(self, "tls_settings")
188
+
189
+ @property
190
+ @pulumi.getter
191
+ def type(self) -> str:
192
+ """
193
+ Resource type.
194
+ """
195
+ return pulumi.get(self, "type")
196
+
197
+ @property
198
+ @pulumi.getter(name="validationProperties")
199
+ def validation_properties(self) -> 'outputs.DomainValidationPropertiesResponse':
200
+ """
201
+ Values the customer needs to validate domain ownership
202
+ """
203
+ return pulumi.get(self, "validation_properties")
204
+
205
+
206
+ class AwaitableGetAFDCustomDomainResult(GetAFDCustomDomainResult):
207
+ # pylint: disable=using-constant-test
208
+ def __await__(self):
209
+ if False:
210
+ yield self
211
+ return GetAFDCustomDomainResult(
212
+ azure_dns_zone=self.azure_dns_zone,
213
+ deployment_status=self.deployment_status,
214
+ domain_validation_state=self.domain_validation_state,
215
+ extended_properties=self.extended_properties,
216
+ host_name=self.host_name,
217
+ id=self.id,
218
+ mtls_settings=self.mtls_settings,
219
+ name=self.name,
220
+ pre_validated_custom_domain_resource_id=self.pre_validated_custom_domain_resource_id,
221
+ profile_name=self.profile_name,
222
+ provisioning_state=self.provisioning_state,
223
+ referenced_route_paths=self.referenced_route_paths,
224
+ system_data=self.system_data,
225
+ tls_settings=self.tls_settings,
226
+ type=self.type,
227
+ validation_properties=self.validation_properties)
228
+
229
+
230
+ def get_afd_custom_domain(custom_domain_name: Optional[str] = None,
231
+ profile_name: Optional[str] = None,
232
+ resource_group_name: Optional[str] = None,
233
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetAFDCustomDomainResult:
234
+ """
235
+ Gets an existing AzureFrontDoor domain with the specified domain name under the specified subscription, resource group and profile.
236
+
237
+
238
+ :param str custom_domain_name: Name of the domain under the profile which is unique globally.
239
+ :param str profile_name: Name of the Azure Front Door Standard or Azure Front Door Premium profile which is unique within the resource group.
240
+ :param str resource_group_name: Name of the Resource group within the Azure subscription.
241
+ """
242
+ __args__ = dict()
243
+ __args__['customDomainName'] = custom_domain_name
244
+ __args__['profileName'] = profile_name
245
+ __args__['resourceGroupName'] = resource_group_name
246
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
247
+ __ret__ = pulumi.runtime.invoke('azure-native:cdn/v20240601preview:getAFDCustomDomain', __args__, opts=opts, typ=GetAFDCustomDomainResult).value
248
+
249
+ return AwaitableGetAFDCustomDomainResult(
250
+ azure_dns_zone=pulumi.get(__ret__, 'azure_dns_zone'),
251
+ deployment_status=pulumi.get(__ret__, 'deployment_status'),
252
+ domain_validation_state=pulumi.get(__ret__, 'domain_validation_state'),
253
+ extended_properties=pulumi.get(__ret__, 'extended_properties'),
254
+ host_name=pulumi.get(__ret__, 'host_name'),
255
+ id=pulumi.get(__ret__, 'id'),
256
+ mtls_settings=pulumi.get(__ret__, 'mtls_settings'),
257
+ name=pulumi.get(__ret__, 'name'),
258
+ pre_validated_custom_domain_resource_id=pulumi.get(__ret__, 'pre_validated_custom_domain_resource_id'),
259
+ profile_name=pulumi.get(__ret__, 'profile_name'),
260
+ provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
261
+ referenced_route_paths=pulumi.get(__ret__, 'referenced_route_paths'),
262
+ system_data=pulumi.get(__ret__, 'system_data'),
263
+ tls_settings=pulumi.get(__ret__, 'tls_settings'),
264
+ type=pulumi.get(__ret__, 'type'),
265
+ validation_properties=pulumi.get(__ret__, 'validation_properties'))
266
+
267
+
268
+ @_utilities.lift_output_func(get_afd_custom_domain)
269
+ def get_afd_custom_domain_output(custom_domain_name: Optional[pulumi.Input[str]] = None,
270
+ profile_name: Optional[pulumi.Input[str]] = None,
271
+ resource_group_name: Optional[pulumi.Input[str]] = None,
272
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetAFDCustomDomainResult]:
273
+ """
274
+ Gets an existing AzureFrontDoor domain with the specified domain name under the specified subscription, resource group and profile.
275
+
276
+
277
+ :param str custom_domain_name: Name of the domain under the profile which is unique globally.
278
+ :param str profile_name: Name of the Azure Front Door Standard or Azure Front Door Premium profile which is unique within the resource group.
279
+ :param str resource_group_name: Name of the Resource group within the Azure subscription.
280
+ """
281
+ ...
@@ -0,0 +1,229 @@
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
+
18
+ __all__ = [
19
+ 'GetAFDEndpointResult',
20
+ 'AwaitableGetAFDEndpointResult',
21
+ 'get_afd_endpoint',
22
+ 'get_afd_endpoint_output',
23
+ ]
24
+
25
+ @pulumi.output_type
26
+ class GetAFDEndpointResult:
27
+ """
28
+ Azure Front Door endpoint is the entity within a Azure Front Door profile containing configuration information such as origin, protocol, content caching and delivery behavior. The AzureFrontDoor endpoint uses the URL format <endpointname>.azureedge.net.
29
+ """
30
+ def __init__(__self__, auto_generated_domain_name_label_scope=None, deployment_status=None, enabled_state=None, host_name=None, id=None, location=None, name=None, profile_name=None, provisioning_state=None, system_data=None, tags=None, type=None):
31
+ if auto_generated_domain_name_label_scope and not isinstance(auto_generated_domain_name_label_scope, str):
32
+ raise TypeError("Expected argument 'auto_generated_domain_name_label_scope' to be a str")
33
+ pulumi.set(__self__, "auto_generated_domain_name_label_scope", auto_generated_domain_name_label_scope)
34
+ if deployment_status and not isinstance(deployment_status, str):
35
+ raise TypeError("Expected argument 'deployment_status' to be a str")
36
+ pulumi.set(__self__, "deployment_status", deployment_status)
37
+ if enabled_state and not isinstance(enabled_state, str):
38
+ raise TypeError("Expected argument 'enabled_state' to be a str")
39
+ pulumi.set(__self__, "enabled_state", enabled_state)
40
+ if host_name and not isinstance(host_name, str):
41
+ raise TypeError("Expected argument 'host_name' to be a str")
42
+ pulumi.set(__self__, "host_name", host_name)
43
+ if id and not isinstance(id, str):
44
+ raise TypeError("Expected argument 'id' to be a str")
45
+ pulumi.set(__self__, "id", id)
46
+ if location and not isinstance(location, str):
47
+ raise TypeError("Expected argument 'location' to be a str")
48
+ pulumi.set(__self__, "location", location)
49
+ if name and not isinstance(name, str):
50
+ raise TypeError("Expected argument 'name' to be a str")
51
+ pulumi.set(__self__, "name", name)
52
+ if profile_name and not isinstance(profile_name, str):
53
+ raise TypeError("Expected argument 'profile_name' to be a str")
54
+ pulumi.set(__self__, "profile_name", profile_name)
55
+ if provisioning_state and not isinstance(provisioning_state, str):
56
+ raise TypeError("Expected argument 'provisioning_state' to be a str")
57
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
58
+ if system_data and not isinstance(system_data, dict):
59
+ raise TypeError("Expected argument 'system_data' to be a dict")
60
+ pulumi.set(__self__, "system_data", system_data)
61
+ if tags and not isinstance(tags, dict):
62
+ raise TypeError("Expected argument 'tags' to be a dict")
63
+ pulumi.set(__self__, "tags", tags)
64
+ if type and not isinstance(type, str):
65
+ raise TypeError("Expected argument 'type' to be a str")
66
+ pulumi.set(__self__, "type", type)
67
+
68
+ @property
69
+ @pulumi.getter(name="autoGeneratedDomainNameLabelScope")
70
+ def auto_generated_domain_name_label_scope(self) -> Optional[str]:
71
+ """
72
+ Indicates the endpoint name reuse scope. The default value is TenantReuse.
73
+ """
74
+ return pulumi.get(self, "auto_generated_domain_name_label_scope")
75
+
76
+ @property
77
+ @pulumi.getter(name="deploymentStatus")
78
+ def deployment_status(self) -> str:
79
+ return pulumi.get(self, "deployment_status")
80
+
81
+ @property
82
+ @pulumi.getter(name="enabledState")
83
+ def enabled_state(self) -> Optional[str]:
84
+ """
85
+ Whether to enable use of this rule. Permitted values are 'Enabled' or 'Disabled'
86
+ """
87
+ return pulumi.get(self, "enabled_state")
88
+
89
+ @property
90
+ @pulumi.getter(name="hostName")
91
+ def host_name(self) -> str:
92
+ """
93
+ The host name of the endpoint structured as {endpointName}.{DNSZone}, e.g. contoso.azureedge.net
94
+ """
95
+ return pulumi.get(self, "host_name")
96
+
97
+ @property
98
+ @pulumi.getter
99
+ def id(self) -> str:
100
+ """
101
+ Resource ID.
102
+ """
103
+ return pulumi.get(self, "id")
104
+
105
+ @property
106
+ @pulumi.getter
107
+ def location(self) -> str:
108
+ """
109
+ Resource location.
110
+ """
111
+ return pulumi.get(self, "location")
112
+
113
+ @property
114
+ @pulumi.getter
115
+ def name(self) -> str:
116
+ """
117
+ Resource name.
118
+ """
119
+ return pulumi.get(self, "name")
120
+
121
+ @property
122
+ @pulumi.getter(name="profileName")
123
+ def profile_name(self) -> str:
124
+ """
125
+ The name of the profile which holds the endpoint.
126
+ """
127
+ return pulumi.get(self, "profile_name")
128
+
129
+ @property
130
+ @pulumi.getter(name="provisioningState")
131
+ def provisioning_state(self) -> str:
132
+ """
133
+ Provisioning status
134
+ """
135
+ return pulumi.get(self, "provisioning_state")
136
+
137
+ @property
138
+ @pulumi.getter(name="systemData")
139
+ def system_data(self) -> 'outputs.SystemDataResponse':
140
+ """
141
+ Read only system data
142
+ """
143
+ return pulumi.get(self, "system_data")
144
+
145
+ @property
146
+ @pulumi.getter
147
+ def tags(self) -> Optional[Mapping[str, str]]:
148
+ """
149
+ Resource tags.
150
+ """
151
+ return pulumi.get(self, "tags")
152
+
153
+ @property
154
+ @pulumi.getter
155
+ def type(self) -> str:
156
+ """
157
+ Resource type.
158
+ """
159
+ return pulumi.get(self, "type")
160
+
161
+
162
+ class AwaitableGetAFDEndpointResult(GetAFDEndpointResult):
163
+ # pylint: disable=using-constant-test
164
+ def __await__(self):
165
+ if False:
166
+ yield self
167
+ return GetAFDEndpointResult(
168
+ auto_generated_domain_name_label_scope=self.auto_generated_domain_name_label_scope,
169
+ deployment_status=self.deployment_status,
170
+ enabled_state=self.enabled_state,
171
+ host_name=self.host_name,
172
+ id=self.id,
173
+ location=self.location,
174
+ name=self.name,
175
+ profile_name=self.profile_name,
176
+ provisioning_state=self.provisioning_state,
177
+ system_data=self.system_data,
178
+ tags=self.tags,
179
+ type=self.type)
180
+
181
+
182
+ def get_afd_endpoint(endpoint_name: Optional[str] = None,
183
+ profile_name: Optional[str] = None,
184
+ resource_group_name: Optional[str] = None,
185
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetAFDEndpointResult:
186
+ """
187
+ Gets an existing AzureFrontDoor endpoint with the specified endpoint name under the specified subscription, resource group and profile.
188
+
189
+
190
+ :param str endpoint_name: Name of the endpoint under the profile which is unique globally.
191
+ :param str profile_name: Name of the Azure Front Door Standard or Azure Front Door Premium profile which is unique within the resource group.
192
+ :param str resource_group_name: Name of the Resource group within the Azure subscription.
193
+ """
194
+ __args__ = dict()
195
+ __args__['endpointName'] = endpoint_name
196
+ __args__['profileName'] = profile_name
197
+ __args__['resourceGroupName'] = resource_group_name
198
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
199
+ __ret__ = pulumi.runtime.invoke('azure-native:cdn/v20240601preview:getAFDEndpoint', __args__, opts=opts, typ=GetAFDEndpointResult).value
200
+
201
+ return AwaitableGetAFDEndpointResult(
202
+ auto_generated_domain_name_label_scope=pulumi.get(__ret__, 'auto_generated_domain_name_label_scope'),
203
+ deployment_status=pulumi.get(__ret__, 'deployment_status'),
204
+ enabled_state=pulumi.get(__ret__, 'enabled_state'),
205
+ host_name=pulumi.get(__ret__, 'host_name'),
206
+ id=pulumi.get(__ret__, 'id'),
207
+ location=pulumi.get(__ret__, 'location'),
208
+ name=pulumi.get(__ret__, 'name'),
209
+ profile_name=pulumi.get(__ret__, 'profile_name'),
210
+ provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
211
+ system_data=pulumi.get(__ret__, 'system_data'),
212
+ tags=pulumi.get(__ret__, 'tags'),
213
+ type=pulumi.get(__ret__, 'type'))
214
+
215
+
216
+ @_utilities.lift_output_func(get_afd_endpoint)
217
+ def get_afd_endpoint_output(endpoint_name: Optional[pulumi.Input[str]] = None,
218
+ profile_name: Optional[pulumi.Input[str]] = None,
219
+ resource_group_name: Optional[pulumi.Input[str]] = None,
220
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetAFDEndpointResult]:
221
+ """
222
+ Gets an existing AzureFrontDoor endpoint with the specified endpoint name under the specified subscription, resource group and profile.
223
+
224
+
225
+ :param str endpoint_name: Name of the endpoint under the profile which is unique globally.
226
+ :param str profile_name: Name of the Azure Front Door Standard or Azure Front Door Premium profile which is unique within the resource group.
227
+ :param str resource_group_name: Name of the Resource group within the Azure subscription.
228
+ """
229
+ ...