pulumi-azure-native 2.41.0a1715664832__py3-none-any.whl → 2.42.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.

Potentially problematic release.


This version of pulumi-azure-native might be problematic. Click here for more details.

Files changed (421) hide show
  1. pulumi_azure_native/__init__.py +63 -0
  2. pulumi_azure_native/alertsmanagement/__init__.py +3 -0
  3. pulumi_azure_native/alertsmanagement/action_rule_by_name.py +1 -1
  4. pulumi_azure_native/alertsmanagement/alert_processing_rule_by_name.py +3 -3
  5. pulumi_azure_native/alertsmanagement/get_alert_processing_rule_by_name.py +2 -2
  6. pulumi_azure_native/alertsmanagement/v20190505preview/action_rule_by_name.py +1 -1
  7. pulumi_azure_native/alertsmanagement/v20210808/alert_processing_rule_by_name.py +1 -1
  8. pulumi_azure_native/alertsmanagement/v20230501preview/alert_processing_rule_by_name.py +1 -1
  9. pulumi_azure_native/alertsmanagement/v20240301preview/__init__.py +12 -0
  10. pulumi_azure_native/alertsmanagement/v20240301preview/_enums.py +88 -0
  11. pulumi_azure_native/alertsmanagement/v20240301preview/_inputs.py +705 -0
  12. pulumi_azure_native/alertsmanagement/v20240301preview/alert_processing_rule_by_name.py +253 -0
  13. pulumi_azure_native/alertsmanagement/v20240301preview/get_alert_processing_rule_by_name.py +157 -0
  14. pulumi_azure_native/alertsmanagement/v20240301preview/outputs.py +872 -0
  15. pulumi_azure_native/app/container_app.py +4 -0
  16. pulumi_azure_native/cache/__init__.py +3 -0
  17. pulumi_azure_native/cache/access_policy.py +3 -3
  18. pulumi_azure_native/cache/access_policy_assignment.py +3 -3
  19. pulumi_azure_native/cache/firewall_rule.py +3 -3
  20. pulumi_azure_native/cache/get_access_policy.py +2 -2
  21. pulumi_azure_native/cache/get_access_policy_assignment.py +2 -2
  22. pulumi_azure_native/cache/get_firewall_rule.py +2 -2
  23. pulumi_azure_native/cache/get_linked_server.py +2 -2
  24. pulumi_azure_native/cache/get_patch_schedule.py +2 -2
  25. pulumi_azure_native/cache/get_private_endpoint_connection.py +2 -2
  26. pulumi_azure_native/cache/get_redis.py +2 -2
  27. pulumi_azure_native/cache/linked_server.py +3 -3
  28. pulumi_azure_native/cache/list_redis_keys.py +2 -2
  29. pulumi_azure_native/cache/patch_schedule.py +3 -3
  30. pulumi_azure_native/cache/private_endpoint_connection.py +3 -3
  31. pulumi_azure_native/cache/redis.py +3 -3
  32. pulumi_azure_native/cache/v20200601/redis.py +1 -1
  33. pulumi_azure_native/cache/v20230401/firewall_rule.py +1 -1
  34. pulumi_azure_native/cache/v20230401/linked_server.py +1 -1
  35. pulumi_azure_native/cache/v20230401/patch_schedule.py +1 -1
  36. pulumi_azure_native/cache/v20230401/private_endpoint_connection.py +1 -1
  37. pulumi_azure_native/cache/v20230401/redis.py +1 -1
  38. pulumi_azure_native/cache/v20230501preview/access_policy.py +1 -1
  39. pulumi_azure_native/cache/v20230501preview/access_policy_assignment.py +1 -1
  40. pulumi_azure_native/cache/v20230501preview/firewall_rule.py +1 -1
  41. pulumi_azure_native/cache/v20230501preview/linked_server.py +1 -1
  42. pulumi_azure_native/cache/v20230501preview/patch_schedule.py +1 -1
  43. pulumi_azure_native/cache/v20230501preview/private_endpoint_connection.py +1 -1
  44. pulumi_azure_native/cache/v20230501preview/redis.py +1 -1
  45. pulumi_azure_native/cache/v20230801/access_policy.py +1 -1
  46. pulumi_azure_native/cache/v20230801/access_policy_assignment.py +1 -1
  47. pulumi_azure_native/cache/v20230801/firewall_rule.py +1 -1
  48. pulumi_azure_native/cache/v20230801/linked_server.py +1 -1
  49. pulumi_azure_native/cache/v20230801/patch_schedule.py +1 -1
  50. pulumi_azure_native/cache/v20230801/private_endpoint_connection.py +1 -1
  51. pulumi_azure_native/cache/v20230801/redis.py +1 -1
  52. pulumi_azure_native/cache/v20240301/__init__.py +25 -0
  53. pulumi_azure_native/cache/v20240301/_enums.py +101 -0
  54. pulumi_azure_native/cache/v20240301/_inputs.py +486 -0
  55. pulumi_azure_native/cache/v20240301/access_policy.py +214 -0
  56. pulumi_azure_native/cache/v20240301/access_policy_assignment.py +274 -0
  57. pulumi_azure_native/cache/v20240301/firewall_rule.py +234 -0
  58. pulumi_azure_native/cache/v20240301/get_access_policy.py +135 -0
  59. pulumi_azure_native/cache/v20240301/get_access_policy_assignment.py +161 -0
  60. pulumi_azure_native/cache/v20240301/get_firewall_rule.py +135 -0
  61. pulumi_azure_native/cache/v20240301/get_linked_server.py +187 -0
  62. pulumi_azure_native/cache/v20240301/get_patch_schedule.py +136 -0
  63. pulumi_azure_native/cache/v20240301/get_private_endpoint_connection.py +149 -0
  64. pulumi_azure_native/cache/v20240301/get_redis.py +443 -0
  65. pulumi_azure_native/cache/v20240301/linked_server.py +294 -0
  66. pulumi_azure_native/cache/v20240301/list_redis_keys.py +91 -0
  67. pulumi_azure_native/cache/v20240301/outputs.py +912 -0
  68. pulumi_azure_native/cache/v20240301/patch_schedule.py +216 -0
  69. pulumi_azure_native/cache/v20240301/private_endpoint_connection.py +227 -0
  70. pulumi_azure_native/cache/v20240301/redis.py +770 -0
  71. pulumi_azure_native/documentdb/__init__.py +3 -0
  72. pulumi_azure_native/documentdb/cassandra_cluster.py +3 -3
  73. pulumi_azure_native/documentdb/cassandra_data_center.py +3 -3
  74. pulumi_azure_native/documentdb/cassandra_resource_cassandra_keyspace.py +3 -3
  75. pulumi_azure_native/documentdb/cassandra_resource_cassandra_table.py +3 -3
  76. pulumi_azure_native/documentdb/database_account.py +3 -3
  77. pulumi_azure_native/documentdb/get_cassandra_cluster.py +2 -2
  78. pulumi_azure_native/documentdb/get_cassandra_data_center.py +2 -2
  79. pulumi_azure_native/documentdb/get_cassandra_resource_cassandra_keyspace.py +2 -2
  80. pulumi_azure_native/documentdb/get_cassandra_resource_cassandra_table.py +2 -2
  81. pulumi_azure_native/documentdb/get_database_account.py +2 -2
  82. pulumi_azure_native/documentdb/get_gremlin_resource_gremlin_database.py +2 -2
  83. pulumi_azure_native/documentdb/get_gremlin_resource_gremlin_graph.py +2 -2
  84. pulumi_azure_native/documentdb/get_mongo_db_resource_mongo_db_collection.py +2 -2
  85. pulumi_azure_native/documentdb/get_mongo_db_resource_mongo_db_database.py +2 -2
  86. pulumi_azure_native/documentdb/get_mongo_db_resource_mongo_role_definition.py +2 -2
  87. pulumi_azure_native/documentdb/get_mongo_db_resource_mongo_user_definition.py +2 -2
  88. pulumi_azure_native/documentdb/get_notebook_workspace.py +2 -2
  89. pulumi_azure_native/documentdb/get_private_endpoint_connection.py +2 -2
  90. pulumi_azure_native/documentdb/get_service.py +2 -2
  91. pulumi_azure_native/documentdb/get_sql_resource_sql_container.py +2 -2
  92. pulumi_azure_native/documentdb/get_sql_resource_sql_database.py +2 -2
  93. pulumi_azure_native/documentdb/get_sql_resource_sql_role_assignment.py +2 -2
  94. pulumi_azure_native/documentdb/get_sql_resource_sql_role_definition.py +2 -2
  95. pulumi_azure_native/documentdb/get_sql_resource_sql_stored_procedure.py +2 -2
  96. pulumi_azure_native/documentdb/get_sql_resource_sql_trigger.py +2 -2
  97. pulumi_azure_native/documentdb/get_sql_resource_sql_user_defined_function.py +2 -2
  98. pulumi_azure_native/documentdb/get_table_resource_table.py +2 -2
  99. pulumi_azure_native/documentdb/gremlin_resource_gremlin_database.py +3 -3
  100. pulumi_azure_native/documentdb/gremlin_resource_gremlin_graph.py +3 -3
  101. pulumi_azure_native/documentdb/list_database_account_connection_strings.py +2 -2
  102. pulumi_azure_native/documentdb/list_database_account_keys.py +2 -2
  103. pulumi_azure_native/documentdb/list_notebook_workspace_connection_info.py +2 -2
  104. pulumi_azure_native/documentdb/mongo_db_resource_mongo_db_collection.py +3 -3
  105. pulumi_azure_native/documentdb/mongo_db_resource_mongo_db_database.py +3 -3
  106. pulumi_azure_native/documentdb/mongo_db_resource_mongo_role_definition.py +3 -3
  107. pulumi_azure_native/documentdb/mongo_db_resource_mongo_user_definition.py +3 -3
  108. pulumi_azure_native/documentdb/notebook_workspace.py +3 -3
  109. pulumi_azure_native/documentdb/private_endpoint_connection.py +3 -3
  110. pulumi_azure_native/documentdb/service.py +3 -3
  111. pulumi_azure_native/documentdb/sql_resource_sql_container.py +3 -3
  112. pulumi_azure_native/documentdb/sql_resource_sql_database.py +3 -3
  113. pulumi_azure_native/documentdb/sql_resource_sql_role_assignment.py +3 -3
  114. pulumi_azure_native/documentdb/sql_resource_sql_role_definition.py +3 -3
  115. pulumi_azure_native/documentdb/sql_resource_sql_stored_procedure.py +3 -3
  116. pulumi_azure_native/documentdb/sql_resource_sql_trigger.py +3 -3
  117. pulumi_azure_native/documentdb/sql_resource_sql_user_defined_function.py +3 -3
  118. pulumi_azure_native/documentdb/table_resource_table.py +3 -3
  119. pulumi_azure_native/documentdb/v20210401preview/database_account.py +1 -1
  120. pulumi_azure_native/documentdb/v20210701preview/cassandra_cluster.py +1 -1
  121. pulumi_azure_native/documentdb/v20230301preview/mongo_db_resource_mongo_role_definition.py +1 -1
  122. pulumi_azure_native/documentdb/v20230315preview/cassandra_resource_cassandra_keyspace.py +1 -1
  123. pulumi_azure_native/documentdb/v20230315preview/cassandra_resource_cassandra_table.py +1 -1
  124. pulumi_azure_native/documentdb/v20230315preview/database_account.py +1 -1
  125. pulumi_azure_native/documentdb/v20230315preview/gremlin_resource_gremlin_database.py +1 -1
  126. pulumi_azure_native/documentdb/v20230315preview/gremlin_resource_gremlin_graph.py +1 -1
  127. pulumi_azure_native/documentdb/v20230315preview/mongo_db_resource_mongo_db_collection.py +1 -1
  128. pulumi_azure_native/documentdb/v20230315preview/mongo_db_resource_mongo_db_database.py +1 -1
  129. pulumi_azure_native/documentdb/v20230315preview/sql_resource_sql_container.py +1 -1
  130. pulumi_azure_native/documentdb/v20230315preview/sql_resource_sql_database.py +1 -1
  131. pulumi_azure_native/documentdb/v20230315preview/sql_resource_sql_stored_procedure.py +1 -1
  132. pulumi_azure_native/documentdb/v20230315preview/sql_resource_sql_trigger.py +1 -1
  133. pulumi_azure_native/documentdb/v20230315preview/sql_resource_sql_user_defined_function.py +1 -1
  134. pulumi_azure_native/documentdb/v20230315preview/table_resource_table.py +1 -1
  135. pulumi_azure_native/documentdb/v20230415/cassandra_cluster.py +1 -1
  136. pulumi_azure_native/documentdb/v20230415/cassandra_data_center.py +1 -1
  137. pulumi_azure_native/documentdb/v20230415/cassandra_resource_cassandra_keyspace.py +1 -1
  138. pulumi_azure_native/documentdb/v20230415/cassandra_resource_cassandra_table.py +1 -1
  139. pulumi_azure_native/documentdb/v20230415/database_account.py +1 -1
  140. pulumi_azure_native/documentdb/v20230415/gremlin_resource_gremlin_database.py +1 -1
  141. pulumi_azure_native/documentdb/v20230415/gremlin_resource_gremlin_graph.py +1 -1
  142. pulumi_azure_native/documentdb/v20230415/mongo_db_resource_mongo_db_collection.py +1 -1
  143. pulumi_azure_native/documentdb/v20230415/mongo_db_resource_mongo_db_database.py +1 -1
  144. pulumi_azure_native/documentdb/v20230415/mongo_db_resource_mongo_role_definition.py +1 -1
  145. pulumi_azure_native/documentdb/v20230415/mongo_db_resource_mongo_user_definition.py +1 -1
  146. pulumi_azure_native/documentdb/v20230415/notebook_workspace.py +1 -1
  147. pulumi_azure_native/documentdb/v20230415/private_endpoint_connection.py +1 -1
  148. pulumi_azure_native/documentdb/v20230415/service.py +1 -1
  149. pulumi_azure_native/documentdb/v20230415/sql_resource_sql_container.py +1 -1
  150. pulumi_azure_native/documentdb/v20230415/sql_resource_sql_database.py +1 -1
  151. pulumi_azure_native/documentdb/v20230415/sql_resource_sql_role_assignment.py +1 -1
  152. pulumi_azure_native/documentdb/v20230415/sql_resource_sql_role_definition.py +1 -1
  153. pulumi_azure_native/documentdb/v20230415/sql_resource_sql_stored_procedure.py +1 -1
  154. pulumi_azure_native/documentdb/v20230415/sql_resource_sql_trigger.py +1 -1
  155. pulumi_azure_native/documentdb/v20230415/sql_resource_sql_user_defined_function.py +1 -1
  156. pulumi_azure_native/documentdb/v20230415/table_resource_table.py +1 -1
  157. pulumi_azure_native/documentdb/v20230915/cassandra_cluster.py +1 -1
  158. pulumi_azure_native/documentdb/v20230915/cassandra_data_center.py +1 -1
  159. pulumi_azure_native/documentdb/v20230915/cassandra_resource_cassandra_keyspace.py +1 -1
  160. pulumi_azure_native/documentdb/v20230915/cassandra_resource_cassandra_table.py +1 -1
  161. pulumi_azure_native/documentdb/v20230915/database_account.py +1 -1
  162. pulumi_azure_native/documentdb/v20230915/gremlin_resource_gremlin_database.py +1 -1
  163. pulumi_azure_native/documentdb/v20230915/gremlin_resource_gremlin_graph.py +1 -1
  164. pulumi_azure_native/documentdb/v20230915/mongo_db_resource_mongo_db_collection.py +1 -1
  165. pulumi_azure_native/documentdb/v20230915/mongo_db_resource_mongo_db_database.py +1 -1
  166. pulumi_azure_native/documentdb/v20230915/mongo_db_resource_mongo_role_definition.py +1 -1
  167. pulumi_azure_native/documentdb/v20230915/mongo_db_resource_mongo_user_definition.py +1 -1
  168. pulumi_azure_native/documentdb/v20230915/notebook_workspace.py +1 -1
  169. pulumi_azure_native/documentdb/v20230915/private_endpoint_connection.py +1 -1
  170. pulumi_azure_native/documentdb/v20230915/service.py +1 -1
  171. pulumi_azure_native/documentdb/v20230915/sql_resource_sql_container.py +1 -1
  172. pulumi_azure_native/documentdb/v20230915/sql_resource_sql_database.py +1 -1
  173. pulumi_azure_native/documentdb/v20230915/sql_resource_sql_role_assignment.py +1 -1
  174. pulumi_azure_native/documentdb/v20230915/sql_resource_sql_role_definition.py +1 -1
  175. pulumi_azure_native/documentdb/v20230915/sql_resource_sql_stored_procedure.py +1 -1
  176. pulumi_azure_native/documentdb/v20230915/sql_resource_sql_trigger.py +1 -1
  177. pulumi_azure_native/documentdb/v20230915/sql_resource_sql_user_defined_function.py +1 -1
  178. pulumi_azure_native/documentdb/v20230915/table_resource_table.py +1 -1
  179. pulumi_azure_native/documentdb/v20230915preview/cassandra_cluster.py +1 -1
  180. pulumi_azure_native/documentdb/v20230915preview/cassandra_data_center.py +1 -1
  181. pulumi_azure_native/documentdb/v20230915preview/cassandra_resource_cassandra_keyspace.py +1 -1
  182. pulumi_azure_native/documentdb/v20230915preview/cassandra_resource_cassandra_table.py +1 -1
  183. pulumi_azure_native/documentdb/v20230915preview/database_account.py +1 -1
  184. pulumi_azure_native/documentdb/v20230915preview/gremlin_resource_gremlin_database.py +1 -1
  185. pulumi_azure_native/documentdb/v20230915preview/gremlin_resource_gremlin_graph.py +1 -1
  186. pulumi_azure_native/documentdb/v20230915preview/mongo_db_resource_mongo_db_collection.py +1 -1
  187. pulumi_azure_native/documentdb/v20230915preview/mongo_db_resource_mongo_db_database.py +1 -1
  188. pulumi_azure_native/documentdb/v20230915preview/mongo_db_resource_mongo_role_definition.py +1 -1
  189. pulumi_azure_native/documentdb/v20230915preview/mongo_db_resource_mongo_user_definition.py +1 -1
  190. pulumi_azure_native/documentdb/v20230915preview/notebook_workspace.py +1 -1
  191. pulumi_azure_native/documentdb/v20230915preview/private_endpoint_connection.py +1 -1
  192. pulumi_azure_native/documentdb/v20230915preview/service.py +1 -1
  193. pulumi_azure_native/documentdb/v20230915preview/sql_resource_sql_container.py +1 -1
  194. pulumi_azure_native/documentdb/v20230915preview/sql_resource_sql_database.py +1 -1
  195. pulumi_azure_native/documentdb/v20230915preview/sql_resource_sql_role_assignment.py +1 -1
  196. pulumi_azure_native/documentdb/v20230915preview/sql_resource_sql_role_definition.py +1 -1
  197. pulumi_azure_native/documentdb/v20230915preview/sql_resource_sql_stored_procedure.py +1 -1
  198. pulumi_azure_native/documentdb/v20230915preview/sql_resource_sql_trigger.py +1 -1
  199. pulumi_azure_native/documentdb/v20230915preview/sql_resource_sql_user_defined_function.py +1 -1
  200. pulumi_azure_native/documentdb/v20230915preview/table_resource_table.py +1 -1
  201. pulumi_azure_native/documentdb/v20231115/cassandra_cluster.py +1 -1
  202. pulumi_azure_native/documentdb/v20231115/cassandra_data_center.py +1 -1
  203. pulumi_azure_native/documentdb/v20231115/cassandra_resource_cassandra_keyspace.py +1 -1
  204. pulumi_azure_native/documentdb/v20231115/cassandra_resource_cassandra_table.py +1 -1
  205. pulumi_azure_native/documentdb/v20231115/database_account.py +1 -1
  206. pulumi_azure_native/documentdb/v20231115/gremlin_resource_gremlin_database.py +1 -1
  207. pulumi_azure_native/documentdb/v20231115/gremlin_resource_gremlin_graph.py +1 -1
  208. pulumi_azure_native/documentdb/v20231115/mongo_db_resource_mongo_db_collection.py +1 -1
  209. pulumi_azure_native/documentdb/v20231115/mongo_db_resource_mongo_db_database.py +1 -1
  210. pulumi_azure_native/documentdb/v20231115/mongo_db_resource_mongo_role_definition.py +1 -1
  211. pulumi_azure_native/documentdb/v20231115/mongo_db_resource_mongo_user_definition.py +1 -1
  212. pulumi_azure_native/documentdb/v20231115/notebook_workspace.py +1 -1
  213. pulumi_azure_native/documentdb/v20231115/private_endpoint_connection.py +1 -1
  214. pulumi_azure_native/documentdb/v20231115/service.py +1 -1
  215. pulumi_azure_native/documentdb/v20231115/sql_resource_sql_container.py +1 -1
  216. pulumi_azure_native/documentdb/v20231115/sql_resource_sql_database.py +1 -1
  217. pulumi_azure_native/documentdb/v20231115/sql_resource_sql_role_assignment.py +1 -1
  218. pulumi_azure_native/documentdb/v20231115/sql_resource_sql_role_definition.py +1 -1
  219. pulumi_azure_native/documentdb/v20231115/sql_resource_sql_stored_procedure.py +1 -1
  220. pulumi_azure_native/documentdb/v20231115/sql_resource_sql_trigger.py +1 -1
  221. pulumi_azure_native/documentdb/v20231115/sql_resource_sql_user_defined_function.py +1 -1
  222. pulumi_azure_native/documentdb/v20231115/table_resource_table.py +1 -1
  223. pulumi_azure_native/documentdb/v20231115preview/cassandra_cluster.py +1 -1
  224. pulumi_azure_native/documentdb/v20231115preview/cassandra_data_center.py +1 -1
  225. pulumi_azure_native/documentdb/v20231115preview/cassandra_resource_cassandra_keyspace.py +1 -1
  226. pulumi_azure_native/documentdb/v20231115preview/cassandra_resource_cassandra_table.py +1 -1
  227. pulumi_azure_native/documentdb/v20231115preview/database_account.py +1 -1
  228. pulumi_azure_native/documentdb/v20231115preview/gremlin_resource_gremlin_database.py +1 -1
  229. pulumi_azure_native/documentdb/v20231115preview/gremlin_resource_gremlin_graph.py +1 -1
  230. pulumi_azure_native/documentdb/v20231115preview/mongo_db_resource_mongo_db_collection.py +1 -1
  231. pulumi_azure_native/documentdb/v20231115preview/mongo_db_resource_mongo_db_database.py +1 -1
  232. pulumi_azure_native/documentdb/v20231115preview/mongo_db_resource_mongo_role_definition.py +1 -1
  233. pulumi_azure_native/documentdb/v20231115preview/mongo_db_resource_mongo_user_definition.py +1 -1
  234. pulumi_azure_native/documentdb/v20231115preview/notebook_workspace.py +1 -1
  235. pulumi_azure_native/documentdb/v20231115preview/private_endpoint_connection.py +1 -1
  236. pulumi_azure_native/documentdb/v20231115preview/service.py +1 -1
  237. pulumi_azure_native/documentdb/v20231115preview/sql_resource_sql_container.py +1 -1
  238. pulumi_azure_native/documentdb/v20231115preview/sql_resource_sql_database.py +1 -1
  239. pulumi_azure_native/documentdb/v20231115preview/sql_resource_sql_role_assignment.py +1 -1
  240. pulumi_azure_native/documentdb/v20231115preview/sql_resource_sql_role_definition.py +1 -1
  241. pulumi_azure_native/documentdb/v20231115preview/sql_resource_sql_stored_procedure.py +1 -1
  242. pulumi_azure_native/documentdb/v20231115preview/sql_resource_sql_trigger.py +1 -1
  243. pulumi_azure_native/documentdb/v20231115preview/sql_resource_sql_user_defined_function.py +1 -1
  244. pulumi_azure_native/documentdb/v20231115preview/table_resource_table.py +1 -1
  245. pulumi_azure_native/documentdb/v20240215preview/cassandra_cluster.py +1 -1
  246. pulumi_azure_native/documentdb/v20240215preview/cassandra_data_center.py +1 -1
  247. pulumi_azure_native/documentdb/v20240215preview/cassandra_resource_cassandra_keyspace.py +1 -1
  248. pulumi_azure_native/documentdb/v20240215preview/cassandra_resource_cassandra_table.py +1 -1
  249. pulumi_azure_native/documentdb/v20240215preview/database_account.py +1 -1
  250. pulumi_azure_native/documentdb/v20240215preview/gremlin_resource_gremlin_database.py +1 -1
  251. pulumi_azure_native/documentdb/v20240215preview/gremlin_resource_gremlin_graph.py +1 -1
  252. pulumi_azure_native/documentdb/v20240215preview/mongo_db_resource_mongo_db_collection.py +1 -1
  253. pulumi_azure_native/documentdb/v20240215preview/mongo_db_resource_mongo_db_database.py +1 -1
  254. pulumi_azure_native/documentdb/v20240215preview/mongo_db_resource_mongo_role_definition.py +1 -1
  255. pulumi_azure_native/documentdb/v20240215preview/mongo_db_resource_mongo_user_definition.py +1 -1
  256. pulumi_azure_native/documentdb/v20240215preview/notebook_workspace.py +1 -1
  257. pulumi_azure_native/documentdb/v20240215preview/private_endpoint_connection.py +1 -1
  258. pulumi_azure_native/documentdb/v20240215preview/service.py +1 -1
  259. pulumi_azure_native/documentdb/v20240215preview/sql_resource_sql_container.py +1 -1
  260. pulumi_azure_native/documentdb/v20240215preview/sql_resource_sql_database.py +1 -1
  261. pulumi_azure_native/documentdb/v20240215preview/sql_resource_sql_role_assignment.py +1 -1
  262. pulumi_azure_native/documentdb/v20240215preview/sql_resource_sql_role_definition.py +1 -1
  263. pulumi_azure_native/documentdb/v20240215preview/sql_resource_sql_stored_procedure.py +1 -1
  264. pulumi_azure_native/documentdb/v20240215preview/sql_resource_sql_trigger.py +1 -1
  265. pulumi_azure_native/documentdb/v20240215preview/sql_resource_sql_user_defined_function.py +1 -1
  266. pulumi_azure_native/documentdb/v20240215preview/table_resource_table.py +1 -1
  267. pulumi_azure_native/documentdb/v20240515/__init__.py +57 -0
  268. pulumi_azure_native/documentdb/v20240515/_enums.py +337 -0
  269. pulumi_azure_native/documentdb/v20240515/_inputs.py +3821 -0
  270. pulumi_azure_native/documentdb/v20240515/cassandra_cluster.py +272 -0
  271. pulumi_azure_native/documentdb/v20240515/cassandra_data_center.py +206 -0
  272. pulumi_azure_native/documentdb/v20240515/cassandra_resource_cassandra_keyspace.py +287 -0
  273. pulumi_azure_native/documentdb/v20240515/cassandra_resource_cassandra_table.py +308 -0
  274. pulumi_azure_native/documentdb/v20240515/database_account.py +1271 -0
  275. pulumi_azure_native/documentdb/v20240515/get_cassandra_cluster.py +157 -0
  276. pulumi_azure_native/documentdb/v20240515/get_cassandra_data_center.py +123 -0
  277. pulumi_azure_native/documentdb/v20240515/get_cassandra_resource_cassandra_keyspace.py +156 -0
  278. pulumi_azure_native/documentdb/v20240515/get_cassandra_resource_cassandra_table.py +161 -0
  279. pulumi_azure_native/documentdb/v20240515/get_database_account.py +677 -0
  280. pulumi_azure_native/documentdb/v20240515/get_gremlin_resource_gremlin_database.py +156 -0
  281. pulumi_azure_native/documentdb/v20240515/get_gremlin_resource_gremlin_graph.py +161 -0
  282. pulumi_azure_native/documentdb/v20240515/get_mongo_db_resource_mongo_db_collection.py +161 -0
  283. pulumi_azure_native/documentdb/v20240515/get_mongo_db_resource_mongo_db_database.py +156 -0
  284. pulumi_azure_native/documentdb/v20240515/get_mongo_db_resource_mongo_role_definition.py +162 -0
  285. pulumi_azure_native/documentdb/v20240515/get_mongo_db_resource_mongo_user_definition.py +188 -0
  286. pulumi_azure_native/documentdb/v20240515/get_notebook_workspace.py +135 -0
  287. pulumi_azure_native/documentdb/v20240515/get_private_endpoint_connection.py +162 -0
  288. pulumi_azure_native/documentdb/v20240515/get_service.py +123 -0
  289. pulumi_azure_native/documentdb/v20240515/get_sql_resource_sql_container.py +161 -0
  290. pulumi_azure_native/documentdb/v20240515/get_sql_resource_sql_database.py +156 -0
  291. pulumi_azure_native/documentdb/v20240515/get_sql_resource_sql_role_assignment.py +148 -0
  292. pulumi_azure_native/documentdb/v20240515/get_sql_resource_sql_role_definition.py +149 -0
  293. pulumi_azure_native/documentdb/v20240515/get_sql_resource_sql_stored_procedure.py +156 -0
  294. pulumi_azure_native/documentdb/v20240515/get_sql_resource_sql_trigger.py +156 -0
  295. pulumi_azure_native/documentdb/v20240515/get_sql_resource_sql_user_defined_function.py +156 -0
  296. pulumi_azure_native/documentdb/v20240515/get_table_resource_table.py +156 -0
  297. pulumi_azure_native/documentdb/v20240515/gremlin_resource_gremlin_database.py +288 -0
  298. pulumi_azure_native/documentdb/v20240515/gremlin_resource_gremlin_graph.py +309 -0
  299. pulumi_azure_native/documentdb/v20240515/list_database_account_connection_strings.py +79 -0
  300. pulumi_azure_native/documentdb/v20240515/list_database_account_keys.py +117 -0
  301. pulumi_azure_native/documentdb/v20240515/list_notebook_workspace_connection_info.py +96 -0
  302. pulumi_azure_native/documentdb/v20240515/mongo_db_resource_mongo_db_collection.py +309 -0
  303. pulumi_azure_native/documentdb/v20240515/mongo_db_resource_mongo_db_database.py +288 -0
  304. pulumi_azure_native/documentdb/v20240515/mongo_db_resource_mongo_role_definition.py +312 -0
  305. pulumi_azure_native/documentdb/v20240515/mongo_db_resource_mongo_user_definition.py +350 -0
  306. pulumi_azure_native/documentdb/v20240515/notebook_workspace.py +194 -0
  307. pulumi_azure_native/documentdb/v20240515/outputs.py +6258 -0
  308. pulumi_azure_native/documentdb/v20240515/private_endpoint_connection.py +292 -0
  309. pulumi_azure_native/documentdb/v20240515/service.py +247 -0
  310. pulumi_azure_native/documentdb/v20240515/sql_resource_sql_container.py +309 -0
  311. pulumi_azure_native/documentdb/v20240515/sql_resource_sql_database.py +288 -0
  312. pulumi_azure_native/documentdb/v20240515/sql_resource_sql_role_assignment.py +261 -0
  313. pulumi_azure_native/documentdb/v20240515/sql_resource_sql_role_definition.py +283 -0
  314. pulumi_azure_native/documentdb/v20240515/sql_resource_sql_stored_procedure.py +323 -0
  315. pulumi_azure_native/documentdb/v20240515/sql_resource_sql_trigger.py +324 -0
  316. pulumi_azure_native/documentdb/v20240515/sql_resource_sql_user_defined_function.py +323 -0
  317. pulumi_azure_native/documentdb/v20240515/table_resource_table.py +288 -0
  318. pulumi_azure_native/eventhub/v20240501preview/_enums.py +4 -4
  319. pulumi_azure_native/eventhub/v20240501preview/_inputs.py +31 -6
  320. pulumi_azure_native/eventhub/v20240501preview/event_hub.py +20 -20
  321. pulumi_azure_native/eventhub/v20240501preview/get_event_hub.py +10 -10
  322. pulumi_azure_native/eventhub/v20240501preview/outputs.py +47 -6
  323. pulumi_azure_native/pulumi-plugin.json +2 -1
  324. pulumi_azure_native/recoveryservices/__init__.py +2 -0
  325. pulumi_azure_native/recoveryservices/_enums.py +27 -0
  326. pulumi_azure_native/recoveryservices/_inputs.py +10445 -8193
  327. pulumi_azure_native/recoveryservices/get_replication_fabric.py +2 -2
  328. pulumi_azure_native/recoveryservices/get_replication_migration_item.py +2 -2
  329. pulumi_azure_native/recoveryservices/get_replication_network_mapping.py +2 -2
  330. pulumi_azure_native/recoveryservices/get_replication_policy.py +2 -2
  331. pulumi_azure_native/recoveryservices/get_replication_protected_item.py +2 -2
  332. pulumi_azure_native/recoveryservices/get_replication_protection_cluster.py +135 -0
  333. pulumi_azure_native/recoveryservices/get_replication_protection_container_mapping.py +2 -2
  334. pulumi_azure_native/recoveryservices/get_replication_recovery_plan.py +2 -2
  335. pulumi_azure_native/recoveryservices/get_replication_recovery_services_provider.py +2 -2
  336. pulumi_azure_native/recoveryservices/get_replication_storage_classification_mapping.py +2 -2
  337. pulumi_azure_native/recoveryservices/get_replicationv_center.py +2 -2
  338. pulumi_azure_native/recoveryservices/outputs.py +7969 -6691
  339. pulumi_azure_native/recoveryservices/replication_fabric.py +3 -3
  340. pulumi_azure_native/recoveryservices/replication_migration_item.py +3 -3
  341. pulumi_azure_native/recoveryservices/replication_network_mapping.py +3 -3
  342. pulumi_azure_native/recoveryservices/replication_policy.py +3 -3
  343. pulumi_azure_native/recoveryservices/replication_protected_item.py +3 -3
  344. pulumi_azure_native/recoveryservices/replication_protection_cluster.py +250 -0
  345. pulumi_azure_native/recoveryservices/replication_protection_container_mapping.py +3 -3
  346. pulumi_azure_native/recoveryservices/replication_recovery_plan.py +3 -3
  347. pulumi_azure_native/recoveryservices/replication_recovery_services_provider.py +3 -3
  348. pulumi_azure_native/recoveryservices/replication_storage_classification_mapping.py +3 -3
  349. pulumi_azure_native/recoveryservices/replicationv_center.py +3 -3
  350. pulumi_azure_native/recoveryservices/v20210301/replication_network_mapping.py +1 -1
  351. pulumi_azure_native/recoveryservices/v20210301/replicationv_center.py +1 -1
  352. pulumi_azure_native/recoveryservices/v20230401/replication_fabric.py +1 -1
  353. pulumi_azure_native/recoveryservices/v20230401/replication_migration_item.py +1 -1
  354. pulumi_azure_native/recoveryservices/v20230401/replication_network_mapping.py +1 -1
  355. pulumi_azure_native/recoveryservices/v20230401/replication_policy.py +1 -1
  356. pulumi_azure_native/recoveryservices/v20230401/replication_protected_item.py +1 -1
  357. pulumi_azure_native/recoveryservices/v20230401/replication_protection_container_mapping.py +1 -1
  358. pulumi_azure_native/recoveryservices/v20230401/replication_recovery_plan.py +1 -1
  359. pulumi_azure_native/recoveryservices/v20230401/replication_recovery_services_provider.py +1 -1
  360. pulumi_azure_native/recoveryservices/v20230401/replication_storage_classification_mapping.py +1 -1
  361. pulumi_azure_native/recoveryservices/v20230401/replicationv_center.py +1 -1
  362. pulumi_azure_native/recoveryservices/v20230601/replication_fabric.py +1 -1
  363. pulumi_azure_native/recoveryservices/v20230601/replication_migration_item.py +1 -1
  364. pulumi_azure_native/recoveryservices/v20230601/replication_network_mapping.py +1 -1
  365. pulumi_azure_native/recoveryservices/v20230601/replication_policy.py +1 -1
  366. pulumi_azure_native/recoveryservices/v20230601/replication_protected_item.py +1 -1
  367. pulumi_azure_native/recoveryservices/v20230601/replication_protection_container_mapping.py +1 -1
  368. pulumi_azure_native/recoveryservices/v20230601/replication_recovery_plan.py +1 -1
  369. pulumi_azure_native/recoveryservices/v20230601/replication_recovery_services_provider.py +1 -1
  370. pulumi_azure_native/recoveryservices/v20230601/replication_storage_classification_mapping.py +1 -1
  371. pulumi_azure_native/recoveryservices/v20230601/replicationv_center.py +1 -1
  372. pulumi_azure_native/recoveryservices/v20230801/replication_fabric.py +1 -1
  373. pulumi_azure_native/recoveryservices/v20230801/replication_migration_item.py +1 -1
  374. pulumi_azure_native/recoveryservices/v20230801/replication_network_mapping.py +1 -1
  375. pulumi_azure_native/recoveryservices/v20230801/replication_policy.py +1 -1
  376. pulumi_azure_native/recoveryservices/v20230801/replication_protected_item.py +1 -1
  377. pulumi_azure_native/recoveryservices/v20230801/replication_protection_container_mapping.py +1 -1
  378. pulumi_azure_native/recoveryservices/v20230801/replication_recovery_plan.py +1 -1
  379. pulumi_azure_native/recoveryservices/v20230801/replication_recovery_services_provider.py +1 -1
  380. pulumi_azure_native/recoveryservices/v20230801/replication_storage_classification_mapping.py +1 -1
  381. pulumi_azure_native/recoveryservices/v20230801/replicationv_center.py +1 -1
  382. pulumi_azure_native/recoveryservices/v20240101/replication_fabric.py +1 -1
  383. pulumi_azure_native/recoveryservices/v20240101/replication_migration_item.py +1 -1
  384. pulumi_azure_native/recoveryservices/v20240101/replication_network_mapping.py +1 -1
  385. pulumi_azure_native/recoveryservices/v20240101/replication_policy.py +1 -1
  386. pulumi_azure_native/recoveryservices/v20240101/replication_protected_item.py +1 -1
  387. pulumi_azure_native/recoveryservices/v20240101/replication_protection_container_mapping.py +1 -1
  388. pulumi_azure_native/recoveryservices/v20240101/replication_recovery_plan.py +1 -1
  389. pulumi_azure_native/recoveryservices/v20240101/replication_recovery_services_provider.py +1 -1
  390. pulumi_azure_native/recoveryservices/v20240101/replication_storage_classification_mapping.py +1 -1
  391. pulumi_azure_native/recoveryservices/v20240101/replicationv_center.py +1 -1
  392. pulumi_azure_native/recoveryservices/v20240201/__init__.py +22 -0
  393. pulumi_azure_native/recoveryservices/v20240201/_enums.py +179 -0
  394. pulumi_azure_native/recoveryservices/v20240201/_inputs.py +15590 -7231
  395. pulumi_azure_native/recoveryservices/v20240201/get_replication_fabric.py +141 -0
  396. pulumi_azure_native/recoveryservices/v20240201/get_replication_migration_item.py +146 -0
  397. pulumi_azure_native/recoveryservices/v20240201/get_replication_network_mapping.py +146 -0
  398. pulumi_azure_native/recoveryservices/v20240201/get_replication_policy.py +136 -0
  399. pulumi_azure_native/recoveryservices/v20240201/get_replication_protected_item.py +146 -0
  400. pulumi_azure_native/recoveryservices/v20240201/get_replication_protection_cluster.py +133 -0
  401. pulumi_azure_native/recoveryservices/v20240201/get_replication_protection_container_mapping.py +146 -0
  402. pulumi_azure_native/recoveryservices/v20240201/get_replication_recovery_plan.py +136 -0
  403. pulumi_azure_native/recoveryservices/v20240201/get_replication_recovery_services_provider.py +141 -0
  404. pulumi_azure_native/recoveryservices/v20240201/get_replication_storage_classification_mapping.py +146 -0
  405. pulumi_azure_native/recoveryservices/v20240201/get_replicationv_center.py +141 -0
  406. pulumi_azure_native/recoveryservices/v20240201/outputs.py +30462 -8186
  407. pulumi_azure_native/recoveryservices/v20240201/replication_fabric.py +215 -0
  408. pulumi_azure_native/recoveryservices/v20240201/replication_migration_item.py +259 -0
  409. pulumi_azure_native/recoveryservices/v20240201/replication_network_mapping.py +258 -0
  410. pulumi_azure_native/recoveryservices/v20240201/replication_policy.py +216 -0
  411. pulumi_azure_native/recoveryservices/v20240201/replication_protected_item.py +258 -0
  412. pulumi_azure_native/recoveryservices/v20240201/replication_protection_cluster.py +248 -0
  413. pulumi_azure_native/recoveryservices/v20240201/replication_protection_container_mapping.py +258 -0
  414. pulumi_azure_native/recoveryservices/v20240201/replication_recovery_plan.py +217 -0
  415. pulumi_azure_native/recoveryservices/v20240201/replication_recovery_services_provider.py +237 -0
  416. pulumi_azure_native/recoveryservices/v20240201/replication_storage_classification_mapping.py +257 -0
  417. pulumi_azure_native/recoveryservices/v20240201/replicationv_center.py +236 -0
  418. {pulumi_azure_native-2.41.0a1715664832.dist-info → pulumi_azure_native-2.42.0.dist-info}/METADATA +1 -1
  419. {pulumi_azure_native-2.41.0a1715664832.dist-info → pulumi_azure_native-2.42.0.dist-info}/RECORD +421 -321
  420. {pulumi_azure_native-2.41.0a1715664832.dist-info → pulumi_azure_native-2.42.0.dist-info}/WHEEL +0 -0
  421. {pulumi_azure_native-2.41.0a1715664832.dist-info → pulumi_azure_native-2.42.0.dist-info}/top_level.txt +0 -0
@@ -20,6 +20,7 @@ __all__ = [
20
20
  'GeoDataReplicationPropertiesArgs',
21
21
  'IdentityArgs',
22
22
  'KeyVaultPropertiesArgs',
23
+ 'MessageTimestampDescriptionArgs',
23
24
  'NWRuleSetIpRulesArgs',
24
25
  'NWRuleSetVirtualNetworkRulesArgs',
25
26
  'NamespaceReplicaLocationArgs',
@@ -597,6 +598,30 @@ class KeyVaultPropertiesArgs:
597
598
  pulumi.set(self, "key_version", value)
598
599
 
599
600
 
601
+ @pulumi.input_type
602
+ class MessageTimestampDescriptionArgs:
603
+ def __init__(__self__, *,
604
+ timestamp_type: Optional[pulumi.Input[Union[str, 'TimestampType']]] = None):
605
+ """
606
+ Properties of MessageTimestamp Description
607
+ :param pulumi.Input[Union[str, 'TimestampType']] timestamp_type: Denotes the type of timestamp the message will hold.Two types of timestamp types - "AppendTime" and "CreateTime". AppendTime refers the time in which message got appended inside broker log. CreateTime refers to the time in which the message was generated on source side and producers can set this timestamp while sending the message. Default value is AppendTime. If you are using AMQP protocol, CreateTime equals AppendTime and its behavior remains the same.
608
+ """
609
+ if timestamp_type is not None:
610
+ pulumi.set(__self__, "timestamp_type", timestamp_type)
611
+
612
+ @property
613
+ @pulumi.getter(name="timestampType")
614
+ def timestamp_type(self) -> Optional[pulumi.Input[Union[str, 'TimestampType']]]:
615
+ """
616
+ Denotes the type of timestamp the message will hold.Two types of timestamp types - "AppendTime" and "CreateTime". AppendTime refers the time in which message got appended inside broker log. CreateTime refers to the time in which the message was generated on source side and producers can set this timestamp while sending the message. Default value is AppendTime. If you are using AMQP protocol, CreateTime equals AppendTime and its behavior remains the same.
617
+ """
618
+ return pulumi.get(self, "timestamp_type")
619
+
620
+ @timestamp_type.setter
621
+ def timestamp_type(self, value: Optional[pulumi.Input[Union[str, 'TimestampType']]]):
622
+ pulumi.set(self, "timestamp_type", value)
623
+
624
+
600
625
  @pulumi.input_type
601
626
  class NWRuleSetIpRulesArgs:
602
627
  def __init__(__self__, *,
@@ -823,9 +848,9 @@ class RetentionDescriptionArgs:
823
848
  """
824
849
  Properties to configure retention settings for the eventhub
825
850
  :param pulumi.Input[Union[str, 'CleanupPolicyRetentionDescription']] cleanup_policy: Enumerates the possible values for cleanup policy
826
- :param pulumi.Input[float] min_compaction_lag_in_mins: The minimum time a message will remain ineligible for compaction in the log. Only applicable for logs that are being compacted.
827
- :param pulumi.Input[float] retention_time_in_hours: Number of hours to retain the events for this Event Hub. If cleanupPolicy is Compact the returned value of this property is Long.MaxValue
828
- :param pulumi.Input[int] tombstone_retention_time_in_hours: Number of hours to retain the tombstone markers of a compacted Event Hub. This value is only used when cleanupPolicy is Compact. Consumer must complete reading the tombstone marker within this specified amount of time if consumer begins from starting offset to ensure they get a valid snapshot for the specific key described by the tombstone marker within the compacted Event Hub
851
+ :param pulumi.Input[float] min_compaction_lag_in_mins: The minimum time a message will remain ineligible for compaction in the log. This value is used when cleanupPolicy is Compact or DeleteOrCompact.
852
+ :param pulumi.Input[float] retention_time_in_hours: Number of hours to retain the events for this Event Hub. This should be positive value upto namespace SKU max. -1 is a special case where retention time is infinite, but the size of an entity is restricted and its size depends on namespace SKU type.
853
+ :param pulumi.Input[int] tombstone_retention_time_in_hours: Number of hours to retain the tombstone markers of a compacted Event Hub. This value is used when cleanupPolicy is Compact or DeleteOrCompact. Consumer must complete reading the tombstone marker within this specified amount of time if consumer begins from starting offset to ensure they get a valid snapshot for the specific key described by the tombstone marker within the compacted Event Hub
829
854
  """
830
855
  if cleanup_policy is not None:
831
856
  pulumi.set(__self__, "cleanup_policy", cleanup_policy)
@@ -852,7 +877,7 @@ class RetentionDescriptionArgs:
852
877
  @pulumi.getter(name="minCompactionLagInMins")
853
878
  def min_compaction_lag_in_mins(self) -> Optional[pulumi.Input[float]]:
854
879
  """
855
- The minimum time a message will remain ineligible for compaction in the log. Only applicable for logs that are being compacted.
880
+ The minimum time a message will remain ineligible for compaction in the log. This value is used when cleanupPolicy is Compact or DeleteOrCompact.
856
881
  """
857
882
  return pulumi.get(self, "min_compaction_lag_in_mins")
858
883
 
@@ -864,7 +889,7 @@ class RetentionDescriptionArgs:
864
889
  @pulumi.getter(name="retentionTimeInHours")
865
890
  def retention_time_in_hours(self) -> Optional[pulumi.Input[float]]:
866
891
  """
867
- Number of hours to retain the events for this Event Hub. If cleanupPolicy is Compact the returned value of this property is Long.MaxValue
892
+ Number of hours to retain the events for this Event Hub. This should be positive value upto namespace SKU max. -1 is a special case where retention time is infinite, but the size of an entity is restricted and its size depends on namespace SKU type.
868
893
  """
869
894
  return pulumi.get(self, "retention_time_in_hours")
870
895
 
@@ -876,7 +901,7 @@ class RetentionDescriptionArgs:
876
901
  @pulumi.getter(name="tombstoneRetentionTimeInHours")
877
902
  def tombstone_retention_time_in_hours(self) -> Optional[pulumi.Input[int]]:
878
903
  """
879
- Number of hours to retain the tombstone markers of a compacted Event Hub. This value is only used when cleanupPolicy is Compact. Consumer must complete reading the tombstone marker within this specified amount of time if consumer begins from starting offset to ensure they get a valid snapshot for the specific key described by the tombstone marker within the compacted Event Hub
904
+ Number of hours to retain the tombstone markers of a compacted Event Hub. This value is used when cleanupPolicy is Compact or DeleteOrCompact. Consumer must complete reading the tombstone marker within this specified amount of time if consumer begins from starting offset to ensure they get a valid snapshot for the specific key described by the tombstone marker within the compacted Event Hub
880
905
  """
881
906
  return pulumi.get(self, "tombstone_retention_time_in_hours")
882
907
 
@@ -22,7 +22,7 @@ class EventHubArgs:
22
22
  capture_description: Optional[pulumi.Input['CaptureDescriptionArgs']] = None,
23
23
  event_hub_name: Optional[pulumi.Input[str]] = None,
24
24
  message_retention_in_days: Optional[pulumi.Input[float]] = None,
25
- message_timestamp_type: Optional[pulumi.Input[Union[str, 'TimestampType']]] = None,
25
+ message_timestamp_description: Optional[pulumi.Input['MessageTimestampDescriptionArgs']] = None,
26
26
  partition_count: Optional[pulumi.Input[float]] = None,
27
27
  retention_description: Optional[pulumi.Input['RetentionDescriptionArgs']] = None,
28
28
  status: Optional[pulumi.Input['EntityStatus']] = None,
@@ -34,7 +34,7 @@ class EventHubArgs:
34
34
  :param pulumi.Input['CaptureDescriptionArgs'] capture_description: Properties of capture description
35
35
  :param pulumi.Input[str] event_hub_name: The Event Hub name
36
36
  :param pulumi.Input[float] message_retention_in_days: Number of days to retain the events for this Event Hub, value should be 1 to 7 days
37
- :param pulumi.Input[Union[str, 'TimestampType']] message_timestamp_type: Denotes the type of timestamp the message will hold. Two types of timestamp types AppendTime, CreateTime. AppendTime refers the time in which message got appended inside broker log. CreateTime refers to the time in which the message was generated on source side and producers can set this timestamp while sending the message. Default value is AppendTime. If you are using AMQP protocol, CreateTime equals AppendTime for now and will full have runtime support later.
37
+ :param pulumi.Input['MessageTimestampDescriptionArgs'] message_timestamp_description: Properties of MessageTimestamp Description
38
38
  :param pulumi.Input[float] partition_count: Number of partitions created for the Event Hub, allowed values are from 1 to 32 partitions.
39
39
  :param pulumi.Input['RetentionDescriptionArgs'] retention_description: Event Hub retention settings
40
40
  :param pulumi.Input['EntityStatus'] status: Enumerates the possible values for the status of the Event Hub.
@@ -48,8 +48,8 @@ class EventHubArgs:
48
48
  pulumi.set(__self__, "event_hub_name", event_hub_name)
49
49
  if message_retention_in_days is not None:
50
50
  pulumi.set(__self__, "message_retention_in_days", message_retention_in_days)
51
- if message_timestamp_type is not None:
52
- pulumi.set(__self__, "message_timestamp_type", message_timestamp_type)
51
+ if message_timestamp_description is not None:
52
+ pulumi.set(__self__, "message_timestamp_description", message_timestamp_description)
53
53
  if partition_count is not None:
54
54
  pulumi.set(__self__, "partition_count", partition_count)
55
55
  if retention_description is not None:
@@ -120,16 +120,16 @@ class EventHubArgs:
120
120
  pulumi.set(self, "message_retention_in_days", value)
121
121
 
122
122
  @property
123
- @pulumi.getter(name="messageTimestampType")
124
- def message_timestamp_type(self) -> Optional[pulumi.Input[Union[str, 'TimestampType']]]:
123
+ @pulumi.getter(name="messageTimestampDescription")
124
+ def message_timestamp_description(self) -> Optional[pulumi.Input['MessageTimestampDescriptionArgs']]:
125
125
  """
126
- Denotes the type of timestamp the message will hold. Two types of timestamp types AppendTime, CreateTime. AppendTime refers the time in which message got appended inside broker log. CreateTime refers to the time in which the message was generated on source side and producers can set this timestamp while sending the message. Default value is AppendTime. If you are using AMQP protocol, CreateTime equals AppendTime for now and will full have runtime support later.
126
+ Properties of MessageTimestamp Description
127
127
  """
128
- return pulumi.get(self, "message_timestamp_type")
128
+ return pulumi.get(self, "message_timestamp_description")
129
129
 
130
- @message_timestamp_type.setter
131
- def message_timestamp_type(self, value: Optional[pulumi.Input[Union[str, 'TimestampType']]]):
132
- pulumi.set(self, "message_timestamp_type", value)
130
+ @message_timestamp_description.setter
131
+ def message_timestamp_description(self, value: Optional[pulumi.Input['MessageTimestampDescriptionArgs']]):
132
+ pulumi.set(self, "message_timestamp_description", value)
133
133
 
134
134
  @property
135
135
  @pulumi.getter(name="partitionCount")
@@ -188,7 +188,7 @@ class EventHub(pulumi.CustomResource):
188
188
  capture_description: Optional[pulumi.Input[pulumi.InputType['CaptureDescriptionArgs']]] = None,
189
189
  event_hub_name: Optional[pulumi.Input[str]] = None,
190
190
  message_retention_in_days: Optional[pulumi.Input[float]] = None,
191
- message_timestamp_type: Optional[pulumi.Input[Union[str, 'TimestampType']]] = None,
191
+ message_timestamp_description: Optional[pulumi.Input[pulumi.InputType['MessageTimestampDescriptionArgs']]] = None,
192
192
  namespace_name: Optional[pulumi.Input[str]] = None,
193
193
  partition_count: Optional[pulumi.Input[float]] = None,
194
194
  resource_group_name: Optional[pulumi.Input[str]] = None,
@@ -204,7 +204,7 @@ class EventHub(pulumi.CustomResource):
204
204
  :param pulumi.Input[pulumi.InputType['CaptureDescriptionArgs']] capture_description: Properties of capture description
205
205
  :param pulumi.Input[str] event_hub_name: The Event Hub name
206
206
  :param pulumi.Input[float] message_retention_in_days: Number of days to retain the events for this Event Hub, value should be 1 to 7 days
207
- :param pulumi.Input[Union[str, 'TimestampType']] message_timestamp_type: Denotes the type of timestamp the message will hold. Two types of timestamp types AppendTime, CreateTime. AppendTime refers the time in which message got appended inside broker log. CreateTime refers to the time in which the message was generated on source side and producers can set this timestamp while sending the message. Default value is AppendTime. If you are using AMQP protocol, CreateTime equals AppendTime for now and will full have runtime support later.
207
+ :param pulumi.Input[pulumi.InputType['MessageTimestampDescriptionArgs']] message_timestamp_description: Properties of MessageTimestamp Description
208
208
  :param pulumi.Input[str] namespace_name: The Namespace name
209
209
  :param pulumi.Input[float] partition_count: Number of partitions created for the Event Hub, allowed values are from 1 to 32 partitions.
210
210
  :param pulumi.Input[str] resource_group_name: Name of the resource group within the azure subscription.
@@ -239,7 +239,7 @@ class EventHub(pulumi.CustomResource):
239
239
  capture_description: Optional[pulumi.Input[pulumi.InputType['CaptureDescriptionArgs']]] = None,
240
240
  event_hub_name: Optional[pulumi.Input[str]] = None,
241
241
  message_retention_in_days: Optional[pulumi.Input[float]] = None,
242
- message_timestamp_type: Optional[pulumi.Input[Union[str, 'TimestampType']]] = None,
242
+ message_timestamp_description: Optional[pulumi.Input[pulumi.InputType['MessageTimestampDescriptionArgs']]] = None,
243
243
  namespace_name: Optional[pulumi.Input[str]] = None,
244
244
  partition_count: Optional[pulumi.Input[float]] = None,
245
245
  resource_group_name: Optional[pulumi.Input[str]] = None,
@@ -258,7 +258,7 @@ class EventHub(pulumi.CustomResource):
258
258
  __props__.__dict__["capture_description"] = capture_description
259
259
  __props__.__dict__["event_hub_name"] = event_hub_name
260
260
  __props__.__dict__["message_retention_in_days"] = message_retention_in_days
261
- __props__.__dict__["message_timestamp_type"] = message_timestamp_type
261
+ __props__.__dict__["message_timestamp_description"] = message_timestamp_description
262
262
  if namespace_name is None and not opts.urn:
263
263
  raise TypeError("Missing required property 'namespace_name'")
264
264
  __props__.__dict__["namespace_name"] = namespace_name
@@ -306,7 +306,7 @@ class EventHub(pulumi.CustomResource):
306
306
  __props__.__dict__["identifier"] = None
307
307
  __props__.__dict__["location"] = None
308
308
  __props__.__dict__["message_retention_in_days"] = None
309
- __props__.__dict__["message_timestamp_type"] = None
309
+ __props__.__dict__["message_timestamp_description"] = None
310
310
  __props__.__dict__["name"] = None
311
311
  __props__.__dict__["partition_count"] = None
312
312
  __props__.__dict__["partition_ids"] = None
@@ -359,12 +359,12 @@ class EventHub(pulumi.CustomResource):
359
359
  return pulumi.get(self, "message_retention_in_days")
360
360
 
361
361
  @property
362
- @pulumi.getter(name="messageTimestampType")
363
- def message_timestamp_type(self) -> pulumi.Output[Optional[str]]:
362
+ @pulumi.getter(name="messageTimestampDescription")
363
+ def message_timestamp_description(self) -> pulumi.Output[Optional['outputs.MessageTimestampDescriptionResponse']]:
364
364
  """
365
- Denotes the type of timestamp the message will hold. Two types of timestamp types AppendTime, CreateTime. AppendTime refers the time in which message got appended inside broker log. CreateTime refers to the time in which the message was generated on source side and producers can set this timestamp while sending the message. Default value is AppendTime. If you are using AMQP protocol, CreateTime equals AppendTime for now and will full have runtime support later.
365
+ Properties of MessageTimestamp Description
366
366
  """
367
- return pulumi.get(self, "message_timestamp_type")
367
+ return pulumi.get(self, "message_timestamp_description")
368
368
 
369
369
  @property
370
370
  @pulumi.getter
@@ -22,7 +22,7 @@ class GetEventHubResult:
22
22
  """
23
23
  Single item in List or Get Event Hub operation
24
24
  """
25
- def __init__(__self__, capture_description=None, created_at=None, id=None, identifier=None, location=None, message_retention_in_days=None, message_timestamp_type=None, name=None, partition_count=None, partition_ids=None, retention_description=None, status=None, system_data=None, type=None, updated_at=None, user_metadata=None):
25
+ def __init__(__self__, capture_description=None, created_at=None, id=None, identifier=None, location=None, message_retention_in_days=None, message_timestamp_description=None, name=None, partition_count=None, partition_ids=None, retention_description=None, status=None, system_data=None, type=None, updated_at=None, user_metadata=None):
26
26
  if capture_description and not isinstance(capture_description, dict):
27
27
  raise TypeError("Expected argument 'capture_description' to be a dict")
28
28
  pulumi.set(__self__, "capture_description", capture_description)
@@ -41,9 +41,9 @@ class GetEventHubResult:
41
41
  if message_retention_in_days and not isinstance(message_retention_in_days, float):
42
42
  raise TypeError("Expected argument 'message_retention_in_days' to be a float")
43
43
  pulumi.set(__self__, "message_retention_in_days", message_retention_in_days)
44
- if message_timestamp_type and not isinstance(message_timestamp_type, str):
45
- raise TypeError("Expected argument 'message_timestamp_type' to be a str")
46
- pulumi.set(__self__, "message_timestamp_type", message_timestamp_type)
44
+ if message_timestamp_description and not isinstance(message_timestamp_description, dict):
45
+ raise TypeError("Expected argument 'message_timestamp_description' to be a dict")
46
+ pulumi.set(__self__, "message_timestamp_description", message_timestamp_description)
47
47
  if name and not isinstance(name, str):
48
48
  raise TypeError("Expected argument 'name' to be a str")
49
49
  pulumi.set(__self__, "name", name)
@@ -121,12 +121,12 @@ class GetEventHubResult:
121
121
  return pulumi.get(self, "message_retention_in_days")
122
122
 
123
123
  @property
124
- @pulumi.getter(name="messageTimestampType")
125
- def message_timestamp_type(self) -> Optional[str]:
124
+ @pulumi.getter(name="messageTimestampDescription")
125
+ def message_timestamp_description(self) -> Optional['outputs.MessageTimestampDescriptionResponse']:
126
126
  """
127
- Denotes the type of timestamp the message will hold. Two types of timestamp types AppendTime, CreateTime. AppendTime refers the time in which message got appended inside broker log. CreateTime refers to the time in which the message was generated on source side and producers can set this timestamp while sending the message. Default value is AppendTime. If you are using AMQP protocol, CreateTime equals AppendTime for now and will full have runtime support later.
127
+ Properties of MessageTimestamp Description
128
128
  """
129
- return pulumi.get(self, "message_timestamp_type")
129
+ return pulumi.get(self, "message_timestamp_description")
130
130
 
131
131
  @property
132
132
  @pulumi.getter
@@ -213,7 +213,7 @@ class AwaitableGetEventHubResult(GetEventHubResult):
213
213
  identifier=self.identifier,
214
214
  location=self.location,
215
215
  message_retention_in_days=self.message_retention_in_days,
216
- message_timestamp_type=self.message_timestamp_type,
216
+ message_timestamp_description=self.message_timestamp_description,
217
217
  name=self.name,
218
218
  partition_count=self.partition_count,
219
219
  partition_ids=self.partition_ids,
@@ -251,7 +251,7 @@ def get_event_hub(event_hub_name: Optional[str] = None,
251
251
  identifier=pulumi.get(__ret__, 'identifier'),
252
252
  location=pulumi.get(__ret__, 'location'),
253
253
  message_retention_in_days=pulumi.get(__ret__, 'message_retention_in_days'),
254
- message_timestamp_type=pulumi.get(__ret__, 'message_timestamp_type'),
254
+ message_timestamp_description=pulumi.get(__ret__, 'message_timestamp_description'),
255
255
  name=pulumi.get(__ret__, 'name'),
256
256
  partition_count=pulumi.get(__ret__, 'partition_count'),
257
257
  partition_ids=pulumi.get(__ret__, 'partition_ids'),
@@ -21,6 +21,7 @@ __all__ = [
21
21
  'GeoDataReplicationPropertiesResponse',
22
22
  'IdentityResponse',
23
23
  'KeyVaultPropertiesResponse',
24
+ 'MessageTimestampDescriptionResponse',
24
25
  'NWRuleSetIpRulesResponse',
25
26
  'NWRuleSetVirtualNetworkRulesResponse',
26
27
  'NamespaceReplicaLocationResponse',
@@ -670,6 +671,46 @@ class KeyVaultPropertiesResponse(dict):
670
671
  return pulumi.get(self, "key_version")
671
672
 
672
673
 
674
+ @pulumi.output_type
675
+ class MessageTimestampDescriptionResponse(dict):
676
+ """
677
+ Properties of MessageTimestamp Description
678
+ """
679
+ @staticmethod
680
+ def __key_warning(key: str):
681
+ suggest = None
682
+ if key == "timestampType":
683
+ suggest = "timestamp_type"
684
+
685
+ if suggest:
686
+ pulumi.log.warn(f"Key '{key}' not found in MessageTimestampDescriptionResponse. Access the value via the '{suggest}' property getter instead.")
687
+
688
+ def __getitem__(self, key: str) -> Any:
689
+ MessageTimestampDescriptionResponse.__key_warning(key)
690
+ return super().__getitem__(key)
691
+
692
+ def get(self, key: str, default = None) -> Any:
693
+ MessageTimestampDescriptionResponse.__key_warning(key)
694
+ return super().get(key, default)
695
+
696
+ def __init__(__self__, *,
697
+ timestamp_type: Optional[str] = None):
698
+ """
699
+ Properties of MessageTimestamp Description
700
+ :param str timestamp_type: Denotes the type of timestamp the message will hold.Two types of timestamp types - "AppendTime" and "CreateTime". AppendTime refers the time in which message got appended inside broker log. CreateTime refers to the time in which the message was generated on source side and producers can set this timestamp while sending the message. Default value is AppendTime. If you are using AMQP protocol, CreateTime equals AppendTime and its behavior remains the same.
701
+ """
702
+ if timestamp_type is not None:
703
+ pulumi.set(__self__, "timestamp_type", timestamp_type)
704
+
705
+ @property
706
+ @pulumi.getter(name="timestampType")
707
+ def timestamp_type(self) -> Optional[str]:
708
+ """
709
+ Denotes the type of timestamp the message will hold.Two types of timestamp types - "AppendTime" and "CreateTime". AppendTime refers the time in which message got appended inside broker log. CreateTime refers to the time in which the message was generated on source side and producers can set this timestamp while sending the message. Default value is AppendTime. If you are using AMQP protocol, CreateTime equals AppendTime and its behavior remains the same.
710
+ """
711
+ return pulumi.get(self, "timestamp_type")
712
+
713
+
673
714
  @pulumi.output_type
674
715
  class NWRuleSetIpRulesResponse(dict):
675
716
  """
@@ -1039,9 +1080,9 @@ class RetentionDescriptionResponse(dict):
1039
1080
  """
1040
1081
  Properties to configure retention settings for the eventhub
1041
1082
  :param str cleanup_policy: Enumerates the possible values for cleanup policy
1042
- :param float min_compaction_lag_in_mins: The minimum time a message will remain ineligible for compaction in the log. Only applicable for logs that are being compacted.
1043
- :param float retention_time_in_hours: Number of hours to retain the events for this Event Hub. If cleanupPolicy is Compact the returned value of this property is Long.MaxValue
1044
- :param int tombstone_retention_time_in_hours: Number of hours to retain the tombstone markers of a compacted Event Hub. This value is only used when cleanupPolicy is Compact. Consumer must complete reading the tombstone marker within this specified amount of time if consumer begins from starting offset to ensure they get a valid snapshot for the specific key described by the tombstone marker within the compacted Event Hub
1083
+ :param float min_compaction_lag_in_mins: The minimum time a message will remain ineligible for compaction in the log. This value is used when cleanupPolicy is Compact or DeleteOrCompact.
1084
+ :param float retention_time_in_hours: Number of hours to retain the events for this Event Hub. This should be positive value upto namespace SKU max. -1 is a special case where retention time is infinite, but the size of an entity is restricted and its size depends on namespace SKU type.
1085
+ :param int tombstone_retention_time_in_hours: Number of hours to retain the tombstone markers of a compacted Event Hub. This value is used when cleanupPolicy is Compact or DeleteOrCompact. Consumer must complete reading the tombstone marker within this specified amount of time if consumer begins from starting offset to ensure they get a valid snapshot for the specific key described by the tombstone marker within the compacted Event Hub
1045
1086
  """
1046
1087
  if cleanup_policy is not None:
1047
1088
  pulumi.set(__self__, "cleanup_policy", cleanup_policy)
@@ -1064,7 +1105,7 @@ class RetentionDescriptionResponse(dict):
1064
1105
  @pulumi.getter(name="minCompactionLagInMins")
1065
1106
  def min_compaction_lag_in_mins(self) -> Optional[float]:
1066
1107
  """
1067
- The minimum time a message will remain ineligible for compaction in the log. Only applicable for logs that are being compacted.
1108
+ The minimum time a message will remain ineligible for compaction in the log. This value is used when cleanupPolicy is Compact or DeleteOrCompact.
1068
1109
  """
1069
1110
  return pulumi.get(self, "min_compaction_lag_in_mins")
1070
1111
 
@@ -1072,7 +1113,7 @@ class RetentionDescriptionResponse(dict):
1072
1113
  @pulumi.getter(name="retentionTimeInHours")
1073
1114
  def retention_time_in_hours(self) -> Optional[float]:
1074
1115
  """
1075
- Number of hours to retain the events for this Event Hub. If cleanupPolicy is Compact the returned value of this property is Long.MaxValue
1116
+ Number of hours to retain the events for this Event Hub. This should be positive value upto namespace SKU max. -1 is a special case where retention time is infinite, but the size of an entity is restricted and its size depends on namespace SKU type.
1076
1117
  """
1077
1118
  return pulumi.get(self, "retention_time_in_hours")
1078
1119
 
@@ -1080,7 +1121,7 @@ class RetentionDescriptionResponse(dict):
1080
1121
  @pulumi.getter(name="tombstoneRetentionTimeInHours")
1081
1122
  def tombstone_retention_time_in_hours(self) -> Optional[int]:
1082
1123
  """
1083
- Number of hours to retain the tombstone markers of a compacted Event Hub. This value is only used when cleanupPolicy is Compact. Consumer must complete reading the tombstone marker within this specified amount of time if consumer begins from starting offset to ensure they get a valid snapshot for the specific key described by the tombstone marker within the compacted Event Hub
1124
+ Number of hours to retain the tombstone markers of a compacted Event Hub. This value is used when cleanupPolicy is Compact or DeleteOrCompact. Consumer must complete reading the tombstone marker within this specified amount of time if consumer begins from starting offset to ensure they get a valid snapshot for the specific key described by the tombstone marker within the compacted Event Hub
1084
1125
  """
1085
1126
  return pulumi.get(self, "tombstone_retention_time_in_hours")
1086
1127
 
@@ -1,4 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
- "name": "azure-native"
3
+ "name": "azure-native",
4
+ "version": "2.42.0"
4
5
  }
@@ -17,6 +17,7 @@ from .get_replication_migration_item import *
17
17
  from .get_replication_network_mapping import *
18
18
  from .get_replication_policy import *
19
19
  from .get_replication_protected_item import *
20
+ from .get_replication_protection_cluster import *
20
21
  from .get_replication_protection_container_mapping import *
21
22
  from .get_replication_recovery_plan import *
22
23
  from .get_replication_recovery_services_provider import *
@@ -34,6 +35,7 @@ from .replication_migration_item import *
34
35
  from .replication_network_mapping import *
35
36
  from .replication_policy import *
36
37
  from .replication_protected_item import *
38
+ from .replication_protection_cluster import *
37
39
  from .replication_protection_container_mapping import *
38
40
  from .replication_recovery_plan import *
39
41
  from .replication_recovery_services_provider import *
@@ -8,6 +8,7 @@ __all__ = [
8
8
  'AcquireStorageAccountLock',
9
9
  'AgentAutoUpdateStatus',
10
10
  'AlertsState',
11
+ 'AutoProtectionOfDataDisk',
11
12
  'AutomationAccountAuthenticationType',
12
13
  'BackupItemType',
13
14
  'BackupManagementType',
@@ -17,12 +18,14 @@ __all__ = [
17
18
  'DiskAccountType',
18
19
  'ExtendedLocationType',
19
20
  'FailoverDeploymentModel',
21
+ 'HealthErrorCustomerResolvability',
20
22
  'IAASVMPolicyType',
21
23
  'ImmutabilityState',
22
24
  'InfrastructureEncryptionState',
23
25
  'LastBackupStatus',
24
26
  'LicenseType',
25
27
  'MonthOfYear',
28
+ 'MultiVmGroupCreateOption',
26
29
  'OperationType',
27
30
  'PolicyType',
28
31
  'PossibleOperationsDirections',
@@ -77,6 +80,14 @@ class AlertsState(str, Enum):
77
80
  DISABLED = "Disabled"
78
81
 
79
82
 
83
+ class AutoProtectionOfDataDisk(str, Enum):
84
+ """
85
+ A value indicating whether the disk auto protection is enabled.
86
+ """
87
+ DISABLED = "Disabled"
88
+ ENABLED = "Enabled"
89
+
90
+
80
91
  class AutomationAccountAuthenticationType(str, Enum):
81
92
  """
82
93
  A value indicating the type authentication to use for automation Account.
@@ -172,6 +183,14 @@ class FailoverDeploymentModel(str, Enum):
172
183
  RESOURCE_MANAGER = "ResourceManager"
173
184
 
174
185
 
186
+ class HealthErrorCustomerResolvability(str, Enum):
187
+ """
188
+ Value indicating whether the health error is customer resolvable.
189
+ """
190
+ ALLOWED = "Allowed"
191
+ NOT_ALLOWED = "NotAllowed"
192
+
193
+
175
194
  class IAASVMPolicyType(str, Enum):
176
195
  INVALID = "Invalid"
177
196
  V1 = "V1"
@@ -227,6 +246,14 @@ class MonthOfYear(str, Enum):
227
246
  DECEMBER = "December"
228
247
 
229
248
 
249
+ class MultiVmGroupCreateOption(str, Enum):
250
+ """
251
+ Whether Multi VM group is auto created or specified by user.
252
+ """
253
+ AUTO_CREATED = "AutoCreated"
254
+ USER_SPECIFIED = "UserSpecified"
255
+
256
+
230
257
  class OperationType(str, Enum):
231
258
  """
232
259
  Re-Do Operation