pulumi-azure-native 2.18.0__py3-none-any.whl → 2.19.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 (156) hide show
  1. pulumi_azure_native/__init__.py +54 -0
  2. pulumi_azure_native/config/__init__.pyi +83 -0
  3. pulumi_azure_native/eventhub/__init__.py +3 -0
  4. pulumi_azure_native/eventhub/application_group.py +3 -3
  5. pulumi_azure_native/eventhub/cluster.py +3 -3
  6. pulumi_azure_native/eventhub/consumer_group.py +3 -3
  7. pulumi_azure_native/eventhub/disaster_recovery_config.py +3 -3
  8. pulumi_azure_native/eventhub/event_hub.py +3 -3
  9. pulumi_azure_native/eventhub/event_hub_authorization_rule.py +3 -3
  10. pulumi_azure_native/eventhub/get_application_group.py +2 -2
  11. pulumi_azure_native/eventhub/get_cluster.py +2 -2
  12. pulumi_azure_native/eventhub/get_consumer_group.py +2 -2
  13. pulumi_azure_native/eventhub/get_disaster_recovery_config.py +2 -2
  14. pulumi_azure_native/eventhub/get_event_hub.py +2 -2
  15. pulumi_azure_native/eventhub/get_event_hub_authorization_rule.py +2 -2
  16. pulumi_azure_native/eventhub/get_namespace.py +2 -2
  17. pulumi_azure_native/eventhub/get_namespace_authorization_rule.py +2 -2
  18. pulumi_azure_native/eventhub/get_namespace_network_rule_set.py +2 -2
  19. pulumi_azure_native/eventhub/get_private_endpoint_connection.py +2 -2
  20. pulumi_azure_native/eventhub/get_schema_registry.py +2 -2
  21. pulumi_azure_native/eventhub/list_disaster_recovery_config_keys.py +2 -2
  22. pulumi_azure_native/eventhub/list_event_hub_keys.py +2 -2
  23. pulumi_azure_native/eventhub/list_namespace_keys.py +2 -2
  24. pulumi_azure_native/eventhub/namespace.py +3 -3
  25. pulumi_azure_native/eventhub/namespace_authorization_rule.py +3 -3
  26. pulumi_azure_native/eventhub/namespace_network_rule_set.py +3 -3
  27. pulumi_azure_native/eventhub/private_endpoint_connection.py +3 -3
  28. pulumi_azure_native/eventhub/schema_registry.py +3 -3
  29. pulumi_azure_native/eventhub/v20221001preview/application_group.py +1 -1
  30. pulumi_azure_native/eventhub/v20221001preview/cluster.py +1 -1
  31. pulumi_azure_native/eventhub/v20221001preview/consumer_group.py +1 -1
  32. pulumi_azure_native/eventhub/v20221001preview/disaster_recovery_config.py +1 -1
  33. pulumi_azure_native/eventhub/v20221001preview/event_hub.py +1 -1
  34. pulumi_azure_native/eventhub/v20221001preview/event_hub_authorization_rule.py +1 -1
  35. pulumi_azure_native/eventhub/v20221001preview/namespace.py +1 -1
  36. pulumi_azure_native/eventhub/v20221001preview/namespace_authorization_rule.py +1 -1
  37. pulumi_azure_native/eventhub/v20221001preview/namespace_network_rule_set.py +1 -1
  38. pulumi_azure_native/eventhub/v20221001preview/private_endpoint_connection.py +1 -1
  39. pulumi_azure_native/eventhub/v20221001preview/schema_registry.py +1 -1
  40. pulumi_azure_native/eventhub/v20230101preview/application_group.py +1 -1
  41. pulumi_azure_native/eventhub/v20230101preview/cluster.py +1 -1
  42. pulumi_azure_native/eventhub/v20230101preview/consumer_group.py +1 -1
  43. pulumi_azure_native/eventhub/v20230101preview/disaster_recovery_config.py +1 -1
  44. pulumi_azure_native/eventhub/v20230101preview/event_hub.py +1 -1
  45. pulumi_azure_native/eventhub/v20230101preview/event_hub_authorization_rule.py +1 -1
  46. pulumi_azure_native/eventhub/v20230101preview/namespace.py +1 -1
  47. pulumi_azure_native/eventhub/v20230101preview/namespace_authorization_rule.py +1 -1
  48. pulumi_azure_native/eventhub/v20230101preview/namespace_network_rule_set.py +1 -1
  49. pulumi_azure_native/eventhub/v20230101preview/private_endpoint_connection.py +1 -1
  50. pulumi_azure_native/eventhub/v20230101preview/schema_registry.py +1 -1
  51. pulumi_azure_native/eventhub/v20240101/__init__.py +35 -0
  52. pulumi_azure_native/eventhub/v20240101/_enums.py +223 -0
  53. pulumi_azure_native/eventhub/v20240101/_inputs.py +986 -0
  54. pulumi_azure_native/eventhub/v20240101/application_group.py +285 -0
  55. pulumi_azure_native/eventhub/v20240101/cluster.py +361 -0
  56. pulumi_azure_native/eventhub/v20240101/consumer_group.py +265 -0
  57. pulumi_azure_native/eventhub/v20240101/disaster_recovery_config.py +283 -0
  58. pulumi_azure_native/eventhub/v20240101/event_hub.py +372 -0
  59. pulumi_azure_native/eventhub/v20240101/event_hub_authorization_rule.py +247 -0
  60. pulumi_azure_native/eventhub/v20240101/get_application_group.py +175 -0
  61. pulumi_azure_native/eventhub/v20240101/get_cluster.py +248 -0
  62. pulumi_azure_native/eventhub/v20240101/get_consumer_group.py +180 -0
  63. pulumi_azure_native/eventhub/v20240101/get_disaster_recovery_config.py +201 -0
  64. pulumi_azure_native/eventhub/v20240101/get_event_hub.py +240 -0
  65. pulumi_azure_native/eventhub/v20240101/get_event_hub_authorization_rule.py +154 -0
  66. pulumi_azure_native/eventhub/v20240101/get_namespace.py +391 -0
  67. pulumi_azure_native/eventhub/v20240101/get_namespace_authorization_rule.py +149 -0
  68. pulumi_azure_native/eventhub/v20240101/get_namespace_network_rule_set.py +196 -0
  69. pulumi_azure_native/eventhub/v20240101/get_private_endpoint_connection.py +175 -0
  70. pulumi_azure_native/eventhub/v20240101/get_schema_registry.py +208 -0
  71. pulumi_azure_native/eventhub/v20240101/list_disaster_recovery_config_keys.py +166 -0
  72. pulumi_azure_native/eventhub/v20240101/list_event_hub_keys.py +166 -0
  73. pulumi_azure_native/eventhub/v20240101/list_namespace_keys.py +161 -0
  74. pulumi_azure_native/eventhub/v20240101/namespace.py +668 -0
  75. pulumi_azure_native/eventhub/v20240101/namespace_authorization_rule.py +226 -0
  76. pulumi_azure_native/eventhub/v20240101/namespace_network_rule_set.py +326 -0
  77. pulumi_azure_native/eventhub/v20240101/outputs.py +1336 -0
  78. pulumi_azure_native/eventhub/v20240101/private_endpoint_connection.py +284 -0
  79. pulumi_azure_native/eventhub/v20240101/schema_registry.py +297 -0
  80. pulumi_azure_native/healthcareapis/__init__.py +3 -0
  81. pulumi_azure_native/healthcareapis/dicom_service.py +3 -3
  82. pulumi_azure_native/healthcareapis/fhir_service.py +3 -3
  83. pulumi_azure_native/healthcareapis/get_dicom_service.py +2 -2
  84. pulumi_azure_native/healthcareapis/get_fhir_service.py +2 -2
  85. pulumi_azure_native/healthcareapis/get_iot_connector.py +2 -2
  86. pulumi_azure_native/healthcareapis/get_iot_connector_fhir_destination.py +2 -2
  87. pulumi_azure_native/healthcareapis/get_private_endpoint_connection.py +2 -2
  88. pulumi_azure_native/healthcareapis/get_service.py +2 -2
  89. pulumi_azure_native/healthcareapis/get_workspace.py +2 -2
  90. pulumi_azure_native/healthcareapis/get_workspace_private_endpoint_connection.py +2 -2
  91. pulumi_azure_native/healthcareapis/iot_connector.py +3 -3
  92. pulumi_azure_native/healthcareapis/iot_connector_fhir_destination.py +3 -3
  93. pulumi_azure_native/healthcareapis/private_endpoint_connection.py +3 -3
  94. pulumi_azure_native/healthcareapis/service.py +3 -3
  95. pulumi_azure_native/healthcareapis/v20230228/dicom_service.py +1 -1
  96. pulumi_azure_native/healthcareapis/v20230228/fhir_service.py +1 -1
  97. pulumi_azure_native/healthcareapis/v20230228/iot_connector.py +1 -1
  98. pulumi_azure_native/healthcareapis/v20230228/iot_connector_fhir_destination.py +1 -1
  99. pulumi_azure_native/healthcareapis/v20230228/private_endpoint_connection.py +1 -1
  100. pulumi_azure_native/healthcareapis/v20230228/service.py +1 -1
  101. pulumi_azure_native/healthcareapis/v20230228/workspace.py +1 -1
  102. pulumi_azure_native/healthcareapis/v20230228/workspace_private_endpoint_connection.py +1 -1
  103. pulumi_azure_native/healthcareapis/v20230906/dicom_service.py +1 -1
  104. pulumi_azure_native/healthcareapis/v20230906/fhir_service.py +1 -1
  105. pulumi_azure_native/healthcareapis/v20230906/iot_connector.py +1 -1
  106. pulumi_azure_native/healthcareapis/v20230906/iot_connector_fhir_destination.py +1 -1
  107. pulumi_azure_native/healthcareapis/v20230906/private_endpoint_connection.py +1 -1
  108. pulumi_azure_native/healthcareapis/v20230906/service.py +1 -1
  109. pulumi_azure_native/healthcareapis/v20230906/workspace.py +1 -1
  110. pulumi_azure_native/healthcareapis/v20230906/workspace_private_endpoint_connection.py +1 -1
  111. pulumi_azure_native/healthcareapis/v20231101/__init__.py +26 -0
  112. pulumi_azure_native/healthcareapis/v20231101/_enums.py +85 -0
  113. pulumi_azure_native/healthcareapis/v20231101/_inputs.py +1277 -0
  114. pulumi_azure_native/healthcareapis/v20231101/dicom_service.py +402 -0
  115. pulumi_azure_native/healthcareapis/v20231101/fhir_service.py +585 -0
  116. pulumi_azure_native/healthcareapis/v20231101/get_dicom_service.py +279 -0
  117. pulumi_azure_native/healthcareapis/v20231101/get_fhir_service.py +344 -0
  118. pulumi_azure_native/healthcareapis/v20231101/get_iot_connector.py +214 -0
  119. pulumi_azure_native/healthcareapis/v20231101/get_iot_connector_fhir_destination.py +193 -0
  120. pulumi_azure_native/healthcareapis/v20231101/get_private_endpoint_connection.py +162 -0
  121. pulumi_azure_native/healthcareapis/v20231101/get_service.py +196 -0
  122. pulumi_azure_native/healthcareapis/v20231101/get_workspace.py +170 -0
  123. pulumi_azure_native/healthcareapis/v20231101/get_workspace_private_endpoint_connection.py +162 -0
  124. pulumi_azure_native/healthcareapis/v20231101/iot_connector.py +352 -0
  125. pulumi_azure_native/healthcareapis/v20231101/iot_connector_fhir_destination.py +337 -0
  126. pulumi_azure_native/healthcareapis/v20231101/outputs.py +1951 -0
  127. pulumi_azure_native/healthcareapis/v20231101/private_endpoint_connection.py +237 -0
  128. pulumi_azure_native/healthcareapis/v20231101/service.py +322 -0
  129. pulumi_azure_native/healthcareapis/v20231101/workspace.py +242 -0
  130. pulumi_azure_native/healthcareapis/v20231101/workspace_private_endpoint_connection.py +237 -0
  131. pulumi_azure_native/healthcareapis/workspace.py +3 -3
  132. pulumi_azure_native/healthcareapis/workspace_private_endpoint_connection.py +3 -3
  133. pulumi_azure_native/offazurespringboot/__init__.py +22 -0
  134. pulumi_azure_native/offazurespringboot/_enums.py +22 -0
  135. pulumi_azure_native/offazurespringboot/_inputs.py +402 -0
  136. pulumi_azure_native/offazurespringboot/get_springbootserver.py +151 -0
  137. pulumi_azure_native/offazurespringboot/get_springbootsite.py +172 -0
  138. pulumi_azure_native/offazurespringboot/outputs.py +509 -0
  139. pulumi_azure_native/offazurespringboot/springbootserver.py +247 -0
  140. pulumi_azure_native/offazurespringboot/springbootsite.py +284 -0
  141. pulumi_azure_native/offazurespringboot/v20230101preview/__init__.py +14 -0
  142. pulumi_azure_native/offazurespringboot/v20230101preview/_enums.py +22 -0
  143. pulumi_azure_native/offazurespringboot/v20230101preview/_inputs.py +402 -0
  144. pulumi_azure_native/offazurespringboot/v20230101preview/get_springbootserver.py +149 -0
  145. pulumi_azure_native/offazurespringboot/v20230101preview/get_springbootsite.py +170 -0
  146. pulumi_azure_native/offazurespringboot/v20230101preview/outputs.py +509 -0
  147. pulumi_azure_native/offazurespringboot/v20230101preview/springbootserver.py +245 -0
  148. pulumi_azure_native/offazurespringboot/v20230101preview/springbootsite.py +282 -0
  149. pulumi_azure_native/security/alerts_suppression_rule.py +4 -4
  150. pulumi_azure_native/security/get_alerts_suppression_rule.py +1 -1
  151. pulumi_azure_native/security/v20190101preview/alerts_suppression_rule.py +4 -4
  152. pulumi_azure_native/security/v20190101preview/get_alerts_suppression_rule.py +1 -1
  153. {pulumi_azure_native-2.18.0.dist-info → pulumi_azure_native-2.19.0.dist-info}/METADATA +1 -1
  154. {pulumi_azure_native-2.18.0.dist-info → pulumi_azure_native-2.19.0.dist-info}/RECORD +156 -90
  155. {pulumi_azure_native-2.18.0.dist-info → pulumi_azure_native-2.19.0.dist-info}/WHEEL +0 -0
  156. {pulumi_azure_native-2.18.0.dist-info → pulumi_azure_native-2.19.0.dist-info}/top_level.txt +0 -0
@@ -1,4 +1,4 @@
1
- pulumi_azure_native/__init__.py,sha256=SffQeB8NDEGa9Nwrv2Z-CGuSgpopPGPZksrZ_kyhOa8,699182
1
+ pulumi_azure_native/__init__.py,sha256=wRUkb6SZ8dzGOnC1fB_XyKKQbYANUVcf09_b_RxDBGY,701807
2
2
  pulumi_azure_native/_utilities.py,sha256=bVTUBZrGEPrLrx_Z2uOcnDsyyk96e-XJPWK0c5DSLG0,8063
3
3
  pulumi_azure_native/provider.py,sha256=CcHbWiH-Apr--k6EZNGtNEvJbBFDO0ZxxzwjwkQBxOg,20974
4
4
  pulumi_azure_native/pulumi-plugin.json,sha256=V6SbnACkF8XN-KxV-K5PJhTTTqe9VRprRxzLHQ9nkO8,49
@@ -3689,6 +3689,7 @@ pulumi_azure_native/confidentialledger/v20230628preview/ledger.py,sha256=6sKA9hD
3689
3689
  pulumi_azure_native/confidentialledger/v20230628preview/managed_ccf.py,sha256=JMKhIo7K4LzDCDchMnL31Rgc3xomPdvb6EX8jLIN0FE,10422
3690
3690
  pulumi_azure_native/confidentialledger/v20230628preview/outputs.py,sha256=M_mCJhjqMrLCcv2e3s9IuOR_TivrtaBiAi5TaGvWH38,24377
3691
3691
  pulumi_azure_native/config/__init__.py,sha256=YdGLR92OvYD0CYDgt_FTaHJOb_VzW8fto_Cgx6fLd3k,267
3692
+ pulumi_azure_native/config/__init__.pyi,sha256=mEPQebYSclT8eZo4JiRmKQzITDWM7UR8CJbumYf-lz8,2071
3692
3693
  pulumi_azure_native/config/vars.py,sha256=iNhCT6dkV2ZOMEpao5KUb64BGF8BJ4bxA1SRfQmZQPg,3740
3693
3694
  pulumi_azure_native/confluent/__init__.py,sha256=nL7Ilhvn_YxVAUlDwwfBFujf9hLzQCLZaCszwYqrEsU,1222
3694
3695
  pulumi_azure_native/confluent/_inputs.py,sha256=e0habkzYelR6ik6PNNwLWYzoT3Q82IQnOF0UR0ocbYw,4484
@@ -7515,39 +7516,39 @@ pulumi_azure_native/eventgrid/v20231215preview/system_topic_event_subscription.p
7515
7516
  pulumi_azure_native/eventgrid/v20231215preview/topic.py,sha256=dX5sZev0v_ZecpLxe04vPlMN5woQvknuSBv4sxhZEvA,32454
7516
7517
  pulumi_azure_native/eventgrid/v20231215preview/topic_event_subscription.py,sha256=dcyuMbptp4jz6FgDlYdhFLlkdBRia035tJGAagQUm4s,30975
7517
7518
  pulumi_azure_native/eventgrid/v20231215preview/topic_space.py,sha256=xvjuTC4NNNWyuu1_F986AOgb20GlKPDfqKn9FJ_2wbA,11440
7518
- pulumi_azure_native/eventhub/__init__.py,sha256=A0J2ZmqIvlJDVij-BtEzo7477B4GWQqjcyC7yA6I11s,2133
7519
+ pulumi_azure_native/eventhub/__init__.py,sha256=3Sqb114bb0KBoEZ7AyvV2aDobuaJp1C1qL8SlEAYlU0,2307
7519
7520
  pulumi_azure_native/eventhub/_enums.py,sha256=csDfQ46fCvEG8_RUGx4d-sHaWThRDFzj-0ESmJyq06E,4786
7520
7521
  pulumi_azure_native/eventhub/_inputs.py,sha256=Jnq-ctpWYqBgRyo7zk8z3Qp1-PhFiE5wc-sVx8XZhKw,36843
7521
- pulumi_azure_native/eventhub/application_group.py,sha256=hcgM61ukVxZvfnNu2JCk5c1ZERiT0iQhWfM1Nmsc8jc,14329
7522
- pulumi_azure_native/eventhub/cluster.py,sha256=vJJDZzoMBkvRPAGBgmM8Xnw8w4QlOGzTzZSC67k2kh0,13265
7523
- pulumi_azure_native/eventhub/consumer_group.py,sha256=UhvaK8He7LwZzTI7DbSrBEyYSKggAGochZZ9edb8-8Q,12647
7524
- pulumi_azure_native/eventhub/disaster_recovery_config.py,sha256=xyB4e_6gYJdR1D5rS2kPF-Gq3tLaRsMa-fx_r4CCp2I,13025
7525
- pulumi_azure_native/eventhub/event_hub.py,sha256=YFpMRo_Gb0N1A_Efvm17SHPky4cca9Y-N5jmqum51HU,17287
7526
- pulumi_azure_native/eventhub/event_hub_authorization_rule.py,sha256=At_bl2T74EnAUOMgzw99r49WXKqTsoJUeD4EbbvYN3I,11821
7527
- pulumi_azure_native/eventhub/get_application_group.py,sha256=0tQsAogf0C7SnE5GX9Ep4sa1GypcsBt8eNcLe1qa66c,7383
7528
- pulumi_azure_native/eventhub/get_cluster.py,sha256=JOIq0NevNx0clS9YWaHQf2xelVn-bU-krScU8otHfmQ,8256
7529
- pulumi_azure_native/eventhub/get_consumer_group.py,sha256=MAqNxz-Dx2CYPYInmfgcnrxGodJ4jNzwA3ZaBdZITuU,7284
7530
- pulumi_azure_native/eventhub/get_disaster_recovery_config.py,sha256=fvGUuvxSlixcxHIf3NeayM17nm25viK23F8WqDd3Dx0,8709
7531
- pulumi_azure_native/eventhub/get_event_hub.py,sha256=ovogozHb8T2av8_r4FdqGa3Us0_Z7YA41ve2bqtrDYQ,9854
7532
- pulumi_azure_native/eventhub/get_event_hub_authorization_rule.py,sha256=p1vXqcjQQulgS1AVfkXu6Rs0LrWIKw4Ew989rBbS_Dw,6333
7533
- pulumi_azure_native/eventhub/get_namespace.py,sha256=C24zEDT0rotdkAoYoqs-HVEnng0bh7f0YsRs5J11eqk,16468
7534
- pulumi_azure_native/eventhub/get_namespace_authorization_rule.py,sha256=o2uXENPpgJE_I6j9W_OQGFLzCkgSb42MVoudgaC2r8w,6025
7522
+ pulumi_azure_native/eventhub/application_group.py,sha256=WZtBTHdKlUs-cmADwNGQ5XXSF4bsVw5OwQA2X-EcRAQ,14425
7523
+ pulumi_azure_native/eventhub/cluster.py,sha256=ndfNzgosMnDOI-yJT6opXrL5zWv_SZGj27YUhUbUwb8,13352
7524
+ pulumi_azure_native/eventhub/consumer_group.py,sha256=KhRjB5RiPNqIp5mGtZ1ewtsAC-QzdobbvhqbQsPCKqQ,12740
7525
+ pulumi_azure_native/eventhub/disaster_recovery_config.py,sha256=hF2mbrK81gJpNQ0zpakiGZu3KfpPbfBfJcSvpMTgNw4,13127
7526
+ pulumi_azure_native/eventhub/event_hub.py,sha256=aCITyIiCyo8k0TjYh59JmoXgiLKkf4m20-ByKxKdmxU,17375
7527
+ pulumi_azure_native/eventhub/event_hub_authorization_rule.py,sha256=0Ir93sf17M9EH5Alm5WouhRn5AvkiuYjigNJEaEpXNs,11926
7528
+ pulumi_azure_native/eventhub/get_application_group.py,sha256=tr1g3WBW4M25avXF13tOnbjkEqsdqhgUnEKiOvfobR4,7407
7529
+ pulumi_azure_native/eventhub/get_cluster.py,sha256=dQkRGTTKA72x6-PcAJr2BtsIETwwpRiP3t7J4u872Gc,8280
7530
+ pulumi_azure_native/eventhub/get_consumer_group.py,sha256=gp5ANLX-Heb1o9TJgRSTlyg8wrggKNdc0VPO4hXQCsM,7308
7531
+ pulumi_azure_native/eventhub/get_disaster_recovery_config.py,sha256=56ipesy6ghnviLvaEOMTdiMDScq6sOmbWN-rbeKOzvg,8733
7532
+ pulumi_azure_native/eventhub/get_event_hub.py,sha256=HxMoKFouagzh9hGG9MTmXWSPri5jayy2aWJ9R5GlWK4,9878
7533
+ pulumi_azure_native/eventhub/get_event_hub_authorization_rule.py,sha256=spoqEfEUbLzyLipD1OHo-EvFCVDUkuI5Tnv3MdAk9AA,6357
7534
+ pulumi_azure_native/eventhub/get_namespace.py,sha256=PMARRTfF3Pba5Rdgo8UgKN43dHEiXYhgnxuXQl7ERaw,16492
7535
+ pulumi_azure_native/eventhub/get_namespace_authorization_rule.py,sha256=eA5NigxcqaNjKVEYEpodf5rYB3gsNn-ZyirsyAnGi-M,6049
7535
7536
  pulumi_azure_native/eventhub/get_namespace_ip_filter_rule.py,sha256=IFQHw8-hzM9x34Vg0m_qr3cLXcEjne6OcqNYZYc5pd0,5632
7536
- pulumi_azure_native/eventhub/get_namespace_network_rule_set.py,sha256=CdEG-sIN2RnjVOtvQJeQwAbzFIlO1deNJh7mvOumfjM,8461
7537
+ pulumi_azure_native/eventhub/get_namespace_network_rule_set.py,sha256=qE87lvcUzqWpZ1OJAMVkbVkXIn93kXpDaSDAhgDIFXU,8485
7537
7538
  pulumi_azure_native/eventhub/get_namespace_virtual_network_rule.py,sha256=sokVecRGRZqUuDgB4bE47qqzctOGjDs-Gela_X1Dxvk,5160
7538
- pulumi_azure_native/eventhub/get_private_endpoint_connection.py,sha256=UlTD0gA11ojbm4rlb3DlWgTOGDwFApwkEIu713D6w1w,7776
7539
- pulumi_azure_native/eventhub/get_schema_registry.py,sha256=cuvTisT2X4XXE9pgYekmEa_R0lAbHbUvqscZ7EXQUwA,8366
7540
- pulumi_azure_native/eventhub/list_disaster_recovery_config_keys.py,sha256=9pc8mrGsKKXVHZv3BetiAV-JOnQJKme8N16bR0gxtvs,8175
7541
- pulumi_azure_native/eventhub/list_event_hub_keys.py,sha256=qedypW7_fzI1sFaBMtNUrZQ07LtY0WtvYGRqb0tiaiI,7838
7542
- pulumi_azure_native/eventhub/list_namespace_keys.py,sha256=a9564631bK7ybbfOWR7-VIhYGCOGa0Zy2F-ARLPl2Gg,7578
7543
- pulumi_azure_native/eventhub/namespace.py,sha256=MGmN4y5CPVPHrUziqJDtpwtIEoUoDr6V3y8w0-DPu-0,31537
7544
- pulumi_azure_native/eventhub/namespace_authorization_rule.py,sha256=daKHdITlQI4DA0QZAxDBzJ41HiiwpbyNTzKcEtmXe_M,10918
7539
+ pulumi_azure_native/eventhub/get_private_endpoint_connection.py,sha256=gBea99ouB_EBO8Yjwr-X-DWGAiITIjAuxHXBWVvN1JY,7800
7540
+ pulumi_azure_native/eventhub/get_schema_registry.py,sha256=a1tY07wzAM0iWhXIL3b1Z5YwLsvcGU6qLTNZZVQtC28,8390
7541
+ pulumi_azure_native/eventhub/list_disaster_recovery_config_keys.py,sha256=JdC-Dwq0Esg6zv-JVoKfTboZkX2cjiAEfxGHdvj48b4,8199
7542
+ pulumi_azure_native/eventhub/list_event_hub_keys.py,sha256=ia_iFUxz2keQapu8Z9vShQEeyN1gQShAPqOL3dg2QZg,7862
7543
+ pulumi_azure_native/eventhub/list_namespace_keys.py,sha256=vSeWjqC81_wyHmKxhY2hCyjgAd_Yva4UOC4PjHq6myI,7602
7544
+ pulumi_azure_native/eventhub/namespace.py,sha256=8C7s0JtagOaw9qRX7voOylgaJEASBhNwkeHNH6FobqU,31626
7545
+ pulumi_azure_native/eventhub/namespace_authorization_rule.py,sha256=nzcTk2OtXkZ5-a9urMEhRta56qL8hJ1PNs-Qu91YIKc,11024
7545
7546
  pulumi_azure_native/eventhub/namespace_ip_filter_rule.py,sha256=chlyOVSZEbQHZ_Vu4oEVkXbchmNCCDJ4mYz74tsf1U0,10900
7546
- pulumi_azure_native/eventhub/namespace_network_rule_set.py,sha256=LsH-Bky1Vr0TCuGFHZoeHYhEh6rBfDAe-ZTeJpmDuZE,17015
7547
+ pulumi_azure_native/eventhub/namespace_network_rule_set.py,sha256=2wu7nHwTQ0efzDq5HmibcehvAZ45g3PYHXCjW78pmi0,17118
7547
7548
  pulumi_azure_native/eventhub/namespace_virtual_network_rule.py,sha256=F2S_WxYPBqu8ICr5w_5cgXheNk-RJ29oc8IOCMnaQ3Y,9395
7548
7549
  pulumi_azure_native/eventhub/outputs.py,sha256=00Zdj-okveu7UpFuMLBpCJGcNnvQqQLp4b_rdkX02DA,45391
7549
- pulumi_azure_native/eventhub/private_endpoint_connection.py,sha256=XsJDjA-MD-p0jd-W0YyM6b0hZEqXPh_fsDm-Yk2hvv0,14487
7550
- pulumi_azure_native/eventhub/schema_registry.py,sha256=NqFwcJo35c_UrSVS00tnLI7XB2dytKzpjyiOKk_0JcM,13209
7550
+ pulumi_azure_native/eventhub/private_endpoint_connection.py,sha256=g3izbOMaOL2blnWax-W3yipsI9qtS25rvRVye5_15_s,14592
7551
+ pulumi_azure_native/eventhub/schema_registry.py,sha256=Tuw3djflQ6A1kDmahdNZnH7iDCO-k4Xmk4dEsBA1pyQ,13303
7551
7552
  pulumi_azure_native/eventhub/v20180101preview/__init__.py,sha256=qDBN2eN4KsEzfZ7xFYvI-IHcgbXrS3BcpcAtFptKWUA,454
7552
7553
  pulumi_azure_native/eventhub/v20180101preview/_enums.py,sha256=ke6a9co-wbH5SyEYSWD2b5WMOdZlEl31Qrwrgq-O6UU,334
7553
7554
  pulumi_azure_native/eventhub/v20180101preview/get_namespace_ip_filter_rule.py,sha256=SfY0LHET-lMR9klVQOGijsG471pXBppVLcfpP6ErYZA,5554
@@ -7557,12 +7558,12 @@ pulumi_azure_native/eventhub/v20180101preview/namespace_virtual_network_rule.py,
7557
7558
  pulumi_azure_native/eventhub/v20221001preview/__init__.py,sha256=7LATOuRD8COlrOcwcXJZGQokFlt1m37v-O_k_SXfxUI,1243
7558
7559
  pulumi_azure_native/eventhub/v20221001preview/_enums.py,sha256=-YSrT64QGpJn9BoOhdumVNQfw0fJKsz_38bug2eOynY,4656
7559
7560
  pulumi_azure_native/eventhub/v20221001preview/_inputs.py,sha256=-AzIEG-Vuv_KjUI7yO9mYFTwn_QifkxX34jHrUKzc0g,36844
7560
- pulumi_azure_native/eventhub/v20221001preview/application_group.py,sha256=0q6IG_nZZNzTXhN7jDvL15u8Zgv5OG-oL6WmYeeEYus,13990
7561
- pulumi_azure_native/eventhub/v20221001preview/cluster.py,sha256=ns_HiXLnf55T9dXJN1_EKgCe7m5kCtAd_BKTVYErnvk,12926
7562
- pulumi_azure_native/eventhub/v20221001preview/consumer_group.py,sha256=uUjzh_2h2w84MuD8UwQ2zdjusdO2aC8nWDwK8lQiXMk,12300
7563
- pulumi_azure_native/eventhub/v20221001preview/disaster_recovery_config.py,sha256=Y325XzPV4__5jJKpywiklwiCsXELpx0DeknqQkBmPDY,12702
7564
- pulumi_azure_native/eventhub/v20221001preview/event_hub.py,sha256=KaPYoe2B5Lnex_O8iu1CoXPIwjnrdOrbx4qLHZG2Dz4,16940
7565
- pulumi_azure_native/eventhub/v20221001preview/event_hub_authorization_rule.py,sha256=f0BnalrZjyKokU9w-gTQfYIrVLDX9ruks0Po3dWW0T4,11474
7561
+ pulumi_azure_native/eventhub/v20221001preview/application_group.py,sha256=M8jqVUU7G3VbSrtdeeLw_097SaFbtG8t_tCbmOBVWX0,14062
7562
+ pulumi_azure_native/eventhub/v20221001preview/cluster.py,sha256=VYT-TDAueEwj8USEs1l2JsTpLZWjXlrdb-_4MGShWA4,12989
7563
+ pulumi_azure_native/eventhub/v20221001preview/consumer_group.py,sha256=Mju3oTvWnbEX43bPiZgx1OeOJ7wXvlkDgsVIlrBI6sU,12369
7564
+ pulumi_azure_native/eventhub/v20221001preview/disaster_recovery_config.py,sha256=7umAxfQ3tTfEP2ZIJBuYAhCuUSlkJGSpcs8NTjB78w8,12780
7565
+ pulumi_azure_native/eventhub/v20221001preview/event_hub.py,sha256=MWQqNBY3fS-bpTNfkjGq0jeRt7q7jiXHa2gTzRMjvKQ,17004
7566
+ pulumi_azure_native/eventhub/v20221001preview/event_hub_authorization_rule.py,sha256=_3OXiXi2HIv-pK84nWEsiQpIlTlbdunHVRmHX5ifFck,11555
7566
7567
  pulumi_azure_native/eventhub/v20221001preview/get_application_group.py,sha256=RxIazGYN8BS4Q6BbabFbDGtU9Q7oNiSp_b5a8iEyNdY,7195
7567
7568
  pulumi_azure_native/eventhub/v20221001preview/get_cluster.py,sha256=X02f5UueHQwRUgz73dk0G3w5iRq_EjeTWEjC76GMieo,8068
7568
7569
  pulumi_azure_native/eventhub/v20221001preview/get_consumer_group.py,sha256=g71k2s38QNzDR66zOhoT6OT63ZEtrRPKkf_dQvg8D-0,7072
@@ -7577,21 +7578,21 @@ pulumi_azure_native/eventhub/v20221001preview/get_schema_registry.py,sha256=Foif
7577
7578
  pulumi_azure_native/eventhub/v20221001preview/list_disaster_recovery_config_keys.py,sha256=K0M3kCKBU1znbBV0YgIkh3s6f9Ra1eEmxL5R1Ng7XC8,7987
7578
7579
  pulumi_azure_native/eventhub/v20221001preview/list_event_hub_keys.py,sha256=R6lSjkB87vQdzt9URUxfhAL2YH1n-ML25e_QEWT5tSo,7626
7579
7580
  pulumi_azure_native/eventhub/v20221001preview/list_namespace_keys.py,sha256=zv2hmQB9W2MmnopvqN40fcjMatJs5lkboPcUbKpmWEo,7366
7580
- pulumi_azure_native/eventhub/v20221001preview/namespace.py,sha256=WO06vAyB7LONNM7UqmAowBj4zBINKu8EYhUonQqEBEo,31190
7581
- pulumi_azure_native/eventhub/v20221001preview/namespace_authorization_rule.py,sha256=7Z-j3fVzY3FxGmLGT5Hsfb8E_LzeavPQG9g3G0oPNe8,10571
7582
- pulumi_azure_native/eventhub/v20221001preview/namespace_network_rule_set.py,sha256=jjqchsu-SI2B8ZPx5dxvDnDn6ePRr48RJNfamU63uhE,16692
7581
+ pulumi_azure_native/eventhub/v20221001preview/namespace.py,sha256=mSQ1dUvj7DlwyQKGhl-0f0abMlKaaXvsztKNMc_Et6I,31255
7582
+ pulumi_azure_native/eventhub/v20221001preview/namespace_authorization_rule.py,sha256=H8aFhQChEVDO9EImQJZXl6mIS5-XZWApaYBN-qcHpCY,10653
7583
+ pulumi_azure_native/eventhub/v20221001preview/namespace_network_rule_set.py,sha256=dZYan9a8apPwR9SfcxsicFXESiWhfd9Tx977bSqI7fw,16771
7583
7584
  pulumi_azure_native/eventhub/v20221001preview/outputs.py,sha256=j0DenPzViM7YYP3IYA7_3Tuioc8Oq9-F-6mILXPppSM,45392
7584
- pulumi_azure_native/eventhub/v20221001preview/private_endpoint_connection.py,sha256=FsNTdhN8i1AFhhO7FZ8-CVnNlGKJAkaSKV0XtgIFOsc,14148
7585
- pulumi_azure_native/eventhub/v20221001preview/schema_registry.py,sha256=yK6u4ELluMfgYkbjZi7hG0qBb2GWEhVvzC_Go_hqw1E,12870
7585
+ pulumi_azure_native/eventhub/v20221001preview/private_endpoint_connection.py,sha256=UCfC3MD3Ec0zkPH_WokafydFcI1WvZ9JmAykCpUYsPg,14229
7586
+ pulumi_azure_native/eventhub/v20221001preview/schema_registry.py,sha256=TOFXAUXBOHs0UTywgSRkl6dMgUET_27M-7aS4K8gNyM,12940
7586
7587
  pulumi_azure_native/eventhub/v20230101preview/__init__.py,sha256=7LATOuRD8COlrOcwcXJZGQokFlt1m37v-O_k_SXfxUI,1243
7587
7588
  pulumi_azure_native/eventhub/v20230101preview/_enums.py,sha256=NP37eNWH4Ynp5cj9KoY4bz_lg_XrYSnjbLMjH3vbp88,5010
7588
7589
  pulumi_azure_native/eventhub/v20230101preview/_inputs.py,sha256=W9SwUxBRXdt3eA8DOvG90n5K3D6EbskYxuMYW9WnqKc,44160
7589
- pulumi_azure_native/eventhub/v20230101preview/application_group.py,sha256=88eP5jjzrnMWCSs2JYsHRP6w1cqy10XOrQyA9KK6E2c,13990
7590
- pulumi_azure_native/eventhub/v20230101preview/cluster.py,sha256=bk-9WXXXbD_5HMNyg_ZNsvsp7pu40MVYvi-a3nLMwVw,13279
7591
- pulumi_azure_native/eventhub/v20230101preview/consumer_group.py,sha256=Q8C3jjSVHc6GwKwZQnL9Bg_P75yrTB7stXOB1VcM-1c,12300
7592
- pulumi_azure_native/eventhub/v20230101preview/disaster_recovery_config.py,sha256=nmdzLw_-2vjrifhFDJkcgQNNs6N4ppEn6B5auXc8P4A,12702
7593
- pulumi_azure_native/eventhub/v20230101preview/event_hub.py,sha256=TYuDzAPLxZ1D8VVO7iOXrnSt-wJhGJ0Q7d0hMdSruLg,16940
7594
- pulumi_azure_native/eventhub/v20230101preview/event_hub_authorization_rule.py,sha256=9wn39Gh9qtKzd2ZKwwBjFfqztIqu6h0zLSydKiCrgjM,11474
7590
+ pulumi_azure_native/eventhub/v20230101preview/application_group.py,sha256=8YhmzSNyswrMphaYbH22jPtlGqFyZVPqzK6N_bjPZs8,14062
7591
+ pulumi_azure_native/eventhub/v20230101preview/cluster.py,sha256=s50FYVCNRc8oUZoTpKVvLQ3ahm2KjFRPNh7FEzPvpeQ,13342
7592
+ pulumi_azure_native/eventhub/v20230101preview/consumer_group.py,sha256=slHq8-a3yMz_b4POBiwDXDvnKNDQ5aKCRU7RUR0bXKY,12369
7593
+ pulumi_azure_native/eventhub/v20230101preview/disaster_recovery_config.py,sha256=fLUEPbw5LLdKzbNvDonpMbSlNULvI9m284qfiDzgtKk,12780
7594
+ pulumi_azure_native/eventhub/v20230101preview/event_hub.py,sha256=DUpFVANmFjjSrgx7DCjIpNX_gJERnjUwleN2ELRPas0,17004
7595
+ pulumi_azure_native/eventhub/v20230101preview/event_hub_authorization_rule.py,sha256=uxQvFQ35l0luxDZdK-o53D-mI8lBRoQ29yxYg6y_l1A,11555
7595
7596
  pulumi_azure_native/eventhub/v20230101preview/get_application_group.py,sha256=NZ_3-z3_VBQXLTSMuJj22eGJ7twZ-Dh5-3eGlAM4oOU,7195
7596
7597
  pulumi_azure_native/eventhub/v20230101preview/get_cluster.py,sha256=8nqxgasogF_A5KKS4AKIDjMB_wxVIaBep2h-1-vAWQw,8669
7597
7598
  pulumi_azure_native/eventhub/v20230101preview/get_consumer_group.py,sha256=wVn1xa7g_jcANTbqHT5gkGl_prL2UIuPKXvsmXCWHd0,7072
@@ -7606,12 +7607,41 @@ pulumi_azure_native/eventhub/v20230101preview/get_schema_registry.py,sha256=AMLg
7606
7607
  pulumi_azure_native/eventhub/v20230101preview/list_disaster_recovery_config_keys.py,sha256=qn4YsRphBP1_XqAuHwpIWt_0stqDWEqMSWrlNkXPIpQ,7987
7607
7608
  pulumi_azure_native/eventhub/v20230101preview/list_event_hub_keys.py,sha256=i-oIvD1894SEZOYBI8eDkz72cV9q5VNK0bEm8WuLhTE,7626
7608
7609
  pulumi_azure_native/eventhub/v20230101preview/list_namespace_keys.py,sha256=7BF0CHscF_zavbklsj70pRLlVqKVhuFocVj330X20cU,7366
7609
- pulumi_azure_native/eventhub/v20230101preview/namespace.py,sha256=sZhWjNN_sZPHbN83XrUwJe_CrQzkQ9wGEEqRJnUdFgI,32886
7610
- pulumi_azure_native/eventhub/v20230101preview/namespace_authorization_rule.py,sha256=QsctYvjF-7PvFCDOtzHoV95964jbfcJW_kLF50mZKLo,10571
7611
- pulumi_azure_native/eventhub/v20230101preview/namespace_network_rule_set.py,sha256=H1i091pnJCmLXx0_vinK-fQ0csS_GsuJix5HHma8pXE,16692
7610
+ pulumi_azure_native/eventhub/v20230101preview/namespace.py,sha256=1pwuf2mGYFZd9h9NYXUTZvMRxvI-91cf6Rft3E3FUgY,32951
7611
+ pulumi_azure_native/eventhub/v20230101preview/namespace_authorization_rule.py,sha256=AkaXvfkENO-ROHd9Wc8Q2PsjFND8Sg0zn-44k3im3ss,10653
7612
+ pulumi_azure_native/eventhub/v20230101preview/namespace_network_rule_set.py,sha256=v76CrTVFD--01z1GRSeo4Jw07GnoU974ATdZKqAYeOk,16771
7612
7613
  pulumi_azure_native/eventhub/v20230101preview/outputs.py,sha256=b70fYDU4FSbFkOyqRpj5fO8l3dz5EgiMVeV1Zi6ZuNw,53260
7613
- pulumi_azure_native/eventhub/v20230101preview/private_endpoint_connection.py,sha256=yo7sFXFyTDU6Bw4nHX4ieN1ChNE7T2rcG8Zoz-wythE,14148
7614
- pulumi_azure_native/eventhub/v20230101preview/schema_registry.py,sha256=osG1Bf9xsPdLFwxkbHAwpZU5IzWwFoO3qlUR7LFnlTY,12870
7614
+ pulumi_azure_native/eventhub/v20230101preview/private_endpoint_connection.py,sha256=2vNgT0GCIbvZHt6aVBG-9XHHgdx0MQguZN7gA1Yq9K4,14229
7615
+ pulumi_azure_native/eventhub/v20230101preview/schema_registry.py,sha256=3IA657UMm2EtkI8Cm6yFiljz7tqEZ2EXVcaM0GStDiY,12940
7616
+ pulumi_azure_native/eventhub/v20240101/__init__.py,sha256=7LATOuRD8COlrOcwcXJZGQokFlt1m37v-O_k_SXfxUI,1243
7617
+ pulumi_azure_native/eventhub/v20240101/_enums.py,sha256=d06FyVhVZp-Pt87FrhYTofBxpt3SXcsr0K1NtLzkUrM,5252
7618
+ pulumi_azure_native/eventhub/v20240101/_inputs.py,sha256=J9lqT0LzxeTGGBAps8zMqtX-SX2FPlhJZmg1dLm9xGM,41255
7619
+ pulumi_azure_native/eventhub/v20240101/application_group.py,sha256=DBLODu60pHOjDEBhOkOBbxRlsOykbtlIxv40xnaEaEc,14062
7620
+ pulumi_azure_native/eventhub/v20240101/cluster.py,sha256=EPyzOmoyWLvQa_k-zz8RVUmVQk1szhiai7MFjDRfPvo,14936
7621
+ pulumi_azure_native/eventhub/v20240101/consumer_group.py,sha256=OyXVc-7Oh7-gwDh0iCpps0MI68KUfySfvAup1Cq89cQ,12369
7622
+ pulumi_azure_native/eventhub/v20240101/disaster_recovery_config.py,sha256=xVAcoVOINRQIiq2nIyuQa8DwjOBKD0Jq7OPawOgikuk,12780
7623
+ pulumi_azure_native/eventhub/v20240101/event_hub.py,sha256=uvcNzh3d-6O_9yVhGdadlIEewnxjq5riBNccB4eHqNg,17004
7624
+ pulumi_azure_native/eventhub/v20240101/event_hub_authorization_rule.py,sha256=1BMMNU7H3wlpdh_6ipzxsz7yJaoW6Akq8UFVMjbzWTk,11555
7625
+ pulumi_azure_native/eventhub/v20240101/get_application_group.py,sha256=e4Up5KQl98IecLdIyFuyPL3v9KmMhIaavX_V7y_ocBo,7188
7626
+ pulumi_azure_native/eventhub/v20240101/get_cluster.py,sha256=8Vc5rcaTXev7ST9ms1wITpgWYAW-sBUXlTFjPWxYkFI,9333
7627
+ pulumi_azure_native/eventhub/v20240101/get_consumer_group.py,sha256=eUmFhlqeewbBaEVprOgEQw-Y_JdYXekOHwTOfe0WYrg,7065
7628
+ pulumi_azure_native/eventhub/v20240101/get_disaster_recovery_config.py,sha256=KldQDUrWqlfZAzIgEpsSnULHG7mm8o6QQ5bKxoqeBGQ,8514
7629
+ pulumi_azure_native/eventhub/v20240101/get_event_hub.py,sha256=tWqYJTxQjBQzGaEs26ihN95kCEX_C1aI_db9r2A0pn4,9635
7630
+ pulumi_azure_native/eventhub/v20240101/get_event_hub_authorization_rule.py,sha256=c9XYXzFELvOG0IRXHoOnFCLz_fYJytJtJI1Dw7DlfHY,6114
7631
+ pulumi_azure_native/eventhub/v20240101/get_namespace.py,sha256=7LJNFp6rZnUbO7r2dVbZykhHIUNgnYAOnqfH5CWG4uQ,16249
7632
+ pulumi_azure_native/eventhub/v20240101/get_namespace_authorization_rule.py,sha256=NfF5uVUMqNvN-C8tqoUN0kfkHLtGHSXPltdvba2e2Pw,5806
7633
+ pulumi_azure_native/eventhub/v20240101/get_namespace_network_rule_set.py,sha256=9L_XXRww_TNZ96UmiucAru-XB8szxiDwsNIjGWyOj_Q,8266
7634
+ pulumi_azure_native/eventhub/v20240101/get_private_endpoint_connection.py,sha256=xxMTGbk_N7rDQ7DHCWuWjOdXNIlNA8N6lvjABI6EpmU,7581
7635
+ pulumi_azure_native/eventhub/v20240101/get_schema_registry.py,sha256=sYKgJLH8zt2muHPt6UNjrjBTfQC-lKk4T1GR9UD02os,8171
7636
+ pulumi_azure_native/eventhub/v20240101/list_disaster_recovery_config_keys.py,sha256=LNFsyPYu6MqFEhKDZIzwlFlvazJb6NUHtarnKuINB8M,7980
7637
+ pulumi_azure_native/eventhub/v20240101/list_event_hub_keys.py,sha256=PikAeFbdYMjl_DoR0XOSrh8_-b7IrMl4WNAGex2SbcA,7619
7638
+ pulumi_azure_native/eventhub/v20240101/list_namespace_keys.py,sha256=Ic7XtVQ0ob32LSl1zoEk4B9_9HRFOOP-tsTe3fjDzo4,7359
7639
+ pulumi_azure_native/eventhub/v20240101/namespace.py,sha256=Y5yHuoR6BAtnkd9ED9gKFz-EjeX9m9U9dtlc6iNWBno,31255
7640
+ pulumi_azure_native/eventhub/v20240101/namespace_authorization_rule.py,sha256=nEGti9unuylSu7JtqqxJf2ie7eQ5gySoTXb7weVP2XE,10653
7641
+ pulumi_azure_native/eventhub/v20240101/namespace_network_rule_set.py,sha256=fEBmPwsfjNexInS0oS1ZejK2fYh16wnd1CDzT-mmhW8,16771
7642
+ pulumi_azure_native/eventhub/v20240101/outputs.py,sha256=13iyjKqWO_AELt4B7TKrqsqmwbtMVoCzVXnCiE13qQE,50202
7643
+ pulumi_azure_native/eventhub/v20240101/private_endpoint_connection.py,sha256=BV2CCyee7F5F5qFdA2cF79A9J8o9aFs1LyRzcz80abw,14229
7644
+ pulumi_azure_native/eventhub/v20240101/schema_registry.py,sha256=t3a5plFGcjJ4sm3C_7t_di5R5KF_w37m0ucJJxI9X7o,12940
7615
7645
  pulumi_azure_native/extendedlocation/__init__.py,sha256=JGAv84TGVLv3u3UY0GCv6ldc33IPoaapUouhAVMMdaU,941
7616
7646
  pulumi_azure_native/extendedlocation/_enums.py,sha256=aFUBygUDbWzQW9uynoou3KnYyS6DTvL6bVNhs8gHnyg,535
7617
7647
  pulumi_azure_native/extendedlocation/_inputs.py,sha256=88Ak984cSpq18JLGXf7-IKAwzAetqdIkivrWqn063rs,4439
@@ -7814,28 +7844,28 @@ pulumi_azure_native/healthbot/v20230501/bot.py,sha256=a2r6kgNJk5YfQCDg-WnY03roEY
7814
7844
  pulumi_azure_native/healthbot/v20230501/get_bot.py,sha256=XFnv0PDqTPzoKroPMgqd_oh6L60Rb9Z71PAZTpvyglc,6043
7815
7845
  pulumi_azure_native/healthbot/v20230501/list_bot_secrets.py,sha256=PBSmdDB1anntJ8I4MwpKLRRb4R5DBIhJ4RXBDHEw01M,2646
7816
7846
  pulumi_azure_native/healthbot/v20230501/outputs.py,sha256=PLUHE40pajzAqNZaDJsGkZ_NS33L8GnQrmj9ieJRxTU,17208
7817
- pulumi_azure_native/healthcareapis/__init__.py,sha256=LZOBb7m4-ieZqd2ghpQ9Hxr6ug9gtENh0rFtBMiU_Hg,1639
7847
+ pulumi_azure_native/healthcareapis/__init__.py,sha256=8ESI40-A07o92UWbItc86FQ2kf5S0_OjoAi1AouNeHk,1825
7818
7848
  pulumi_azure_native/healthcareapis/_enums.py,sha256=cRFAQ16f_n0JnuD999x6Z818EVpLMHyjBFh1lKAvmik,2746
7819
7849
  pulumi_azure_native/healthcareapis/_inputs.py,sha256=tl-v2IjSTRg5eiMlwDc4lWQi0VbkIFCQiIG_IgKTs7c,58458
7820
7850
  pulumi_azure_native/healthcareapis/analytics_connector.py,sha256=T8MWO5dLxXHFta73EfUHQZ-FS-XUnk-fCHV9rV35we4,18428
7821
- pulumi_azure_native/healthcareapis/dicom_service.py,sha256=M1m784QN1RNOuFmGhANUUw7QAZGo-chOnEA73UKORww,16600
7822
- pulumi_azure_native/healthcareapis/fhir_service.py,sha256=oH4tWVszNLFmzOzISCzigznei7T0wXtZOBIebaNODho,29638
7851
+ pulumi_azure_native/healthcareapis/dicom_service.py,sha256=ZY9vFZMrfn1PQQwHxxN_S5b8OdwQZT2mgISVyl_ZENM,16698
7852
+ pulumi_azure_native/healthcareapis/fhir_service.py,sha256=1I56Xjj2Tx7Zf9xNm8OqsSVTpmnU6M5JMIEk2qDFK9A,29735
7823
7853
  pulumi_azure_native/healthcareapis/get_analytics_connector.py,sha256=IkjgTJumT9apvHPJfzLqcG-UNREs4AFiMFLEZRma8j0,9469
7824
- pulumi_azure_native/healthcareapis/get_dicom_service.py,sha256=qFqvE3Pv2reA6uTQIo5HmK7-X0AAtQHKLzedMHn_x1g,10995
7825
- pulumi_azure_native/healthcareapis/get_fhir_service.py,sha256=Rffg_mb-ab2OwSdt0CCw2jqQFfx1e3xZsHSmKpp6i4M,15321
7826
- pulumi_azure_native/healthcareapis/get_iot_connector.py,sha256=clWy3lggp7uwo04D_KAjEuw3xOdoL1XR8UdZk6JP3Wk,8404
7827
- pulumi_azure_native/healthcareapis/get_iot_connector_fhir_destination.py,sha256=9M-PPilMmVRwtO-64af99dbM4FNEbJpce2D-VpEX22E,8329
7828
- pulumi_azure_native/healthcareapis/get_private_endpoint_connection.py,sha256=MfvrXDkDIfPAlQggfnxakHcsYewq2P_Ol6GZMtVJnLA,7499
7829
- pulumi_azure_native/healthcareapis/get_service.py,sha256=a_4nKMip-QZ6o3EoPN4ZsKb4FbWscN3lyR7hB65zQ_o,6849
7830
- pulumi_azure_native/healthcareapis/get_workspace.py,sha256=sYa49ZFsMoNkHJzbCWFX6h_sVnU_LlNu5X2aHPHJmg8,5933
7831
- pulumi_azure_native/healthcareapis/get_workspace_private_endpoint_connection.py,sha256=Eoq48zSko9wYwVSZ0urXxLtACF6mP49_D02Ys5uJkOs,7714
7832
- pulumi_azure_native/healthcareapis/iot_connector.py,sha256=iEAf6f43DIm5Mc2a8YGqhGWcsR0Mz1ud_hi7nrAZTjY,16359
7833
- pulumi_azure_native/healthcareapis/iot_connector_fhir_destination.py,sha256=mWVwt84jaqyH2D5QP43EaoQaP3knkT1WLRCh-me_IHg,16544
7854
+ pulumi_azure_native/healthcareapis/get_dicom_service.py,sha256=FnmdT5Zofw_v61-Ko6A3I7TEGV-koiNkbh69mxFWXSo,11019
7855
+ pulumi_azure_native/healthcareapis/get_fhir_service.py,sha256=66-b_VOQYfp3ehZhgUXRtkKDPhpeFbNMnjMfYwATN4A,15345
7856
+ pulumi_azure_native/healthcareapis/get_iot_connector.py,sha256=6M0X8Ams8MGGBghQi2h3GlnpEZE46CiQcfK-0vQgAqE,8428
7857
+ pulumi_azure_native/healthcareapis/get_iot_connector_fhir_destination.py,sha256=qUL77U5a8ZtoGU__GT7-izfqE6BiVFEw5jHhpINebkU,8353
7858
+ pulumi_azure_native/healthcareapis/get_private_endpoint_connection.py,sha256=Gk3bBPlwpgV_Pe4GU1wunbycutlNOaDV4NHHobIIR1I,7523
7859
+ pulumi_azure_native/healthcareapis/get_service.py,sha256=I8n3jf3ylw-5PyIVvKOWkyGKr7RnuYieu97ufy3aT6Q,6873
7860
+ pulumi_azure_native/healthcareapis/get_workspace.py,sha256=cGZoActXOEPjaYMkWGjw0X7Yfr59lAxo-F2He8V7D8Y,5957
7861
+ pulumi_azure_native/healthcareapis/get_workspace_private_endpoint_connection.py,sha256=4_tSPUkzlFGGkiD0MD_YL8VUZueleOU9JedXRZ0w7yw,7738
7862
+ pulumi_azure_native/healthcareapis/iot_connector.py,sha256=rZpYBFpdxVmo63LAO9dWKu-_Dlo0pKsqSvEMprNWazE,16457
7863
+ pulumi_azure_native/healthcareapis/iot_connector_fhir_destination.py,sha256=aTxxl6nDst6pFV3SDuMDtgMkNspbdiDDVfzsGQCiTKE,16657
7834
7864
  pulumi_azure_native/healthcareapis/outputs.py,sha256=LVS1dYVN8mNpOrF_lyoRaJLwC8igI3N6reTUtLRGPfo,78378
7835
- pulumi_azure_native/healthcareapis/private_endpoint_connection.py,sha256=LrG2b3HakwCT8eQNHHND0sYgNDRFMYhbrQsTu3S-zVc,12790
7836
- pulumi_azure_native/healthcareapis/service.py,sha256=uuHfHf7r8QvrlFN47eFYFa0AmYXKZLMXs7nMiRkHMe8,14183
7837
- pulumi_azure_native/healthcareapis/workspace.py,sha256=V4A9nymEsLhvW3GB3JcwfgBoOnIxTh0qB5Zi9zqgD54,10268
7838
- pulumi_azure_native/healthcareapis/workspace_private_endpoint_connection.py,sha256=1Dc8qluqh36KmA7MV5cNXIqV8R48X3vJyO6wgX3PF-g,12716
7865
+ pulumi_azure_native/healthcareapis/private_endpoint_connection.py,sha256=xQTCR4rTYn05eukTPceQIzk-KQ0LsP1y7kUMJRfoyJY,12901
7866
+ pulumi_azure_native/healthcareapis/service.py,sha256=Ld1r233tOvZqfEGU4na7AtswZfchaOgFjKMi5VoEFvA,14276
7867
+ pulumi_azure_native/healthcareapis/workspace.py,sha256=WQEZ-DOQ4P_mFvn8Rq960P35UV752mW9ZDCmvIo2FYc,10363
7868
+ pulumi_azure_native/healthcareapis/workspace_private_endpoint_connection.py,sha256=U9-inHrXfR9Ybid_qKexgDMjpc_irrUhOurvC1-wZ_Q,12836
7839
7869
  pulumi_azure_native/healthcareapis/v20221001preview/__init__.py,sha256=T7gF1s-sYIPjr-OLr1Cd5XMeTo4dr9QdI_-sz-FIpvg,393
7840
7870
  pulumi_azure_native/healthcareapis/v20221001preview/_enums.py,sha256=hp-dQ2hhio159UBGfskKMmdaUCETSNbWlR4yQccFQr8,1195
7841
7871
  pulumi_azure_native/healthcareapis/v20221001preview/_inputs.py,sha256=u9kuIkBYSHTVqKI5t4pe_J1VeoiznMTRZMQMxSd1lUU,8675
@@ -7845,8 +7875,8 @@ pulumi_azure_native/healthcareapis/v20221001preview/outputs.py,sha256=Ml9HHtZN4y
7845
7875
  pulumi_azure_native/healthcareapis/v20230228/__init__.py,sha256=bGtUvXILxImi5fHOapmY1cqzZvqjvIhc7w_dp1nozJA,903
7846
7876
  pulumi_azure_native/healthcareapis/v20230228/_enums.py,sha256=EbZmj4V8Yn6UN-y3sLzvzIvBj4MjUWc-JBv6Sbzr6dg,2095
7847
7877
  pulumi_azure_native/healthcareapis/v20230228/_inputs.py,sha256=me--IGPR7dZfEADbqonAJ2cVgXg-aEQI-sbOD01tJ-w,52558
7848
- pulumi_azure_native/healthcareapis/v20230228/dicom_service.py,sha256=RsKQe1fnL7co6HfkZTu6SSCf7uVxuOJGCNi6NaCckSU,16309
7849
- pulumi_azure_native/healthcareapis/v20230228/fhir_service.py,sha256=JHfheaQXcGHzPHG3eCpgDGctzG8YM_zuJ1IJ-gHW-s4,29347
7878
+ pulumi_azure_native/healthcareapis/v20230228/dicom_service.py,sha256=zwUw0zrfINDHW3axG0qLeWMxU8tWdBvOdbFwE6rMlBI,16383
7879
+ pulumi_azure_native/healthcareapis/v20230228/fhir_service.py,sha256=RGB3k_nC0hpZRwSagT-wCp26NJl90KmeHBfh7yuvP10,29420
7850
7880
  pulumi_azure_native/healthcareapis/v20230228/get_dicom_service.py,sha256=RZGggQ_iV0EAtriDMVz_XMTOql4ViCgt4iyXpr_BbYo,10832
7851
7881
  pulumi_azure_native/healthcareapis/v20230228/get_fhir_service.py,sha256=gl81ay7c26KHtgML3s-fQFzho2jR1jcH8uuIv5zEqEw,15158
7852
7882
  pulumi_azure_native/healthcareapis/v20230228/get_iot_connector.py,sha256=j4Otf6l3r1FJXrwNVRQFq9R1cvR3p4g4qPIpnM9sDUA,8241
@@ -7855,18 +7885,18 @@ pulumi_azure_native/healthcareapis/v20230228/get_private_endpoint_connection.py,
7855
7885
  pulumi_azure_native/healthcareapis/v20230228/get_service.py,sha256=Rrpdz5-URCNhFzTsBmrE_vAd1biySNLTyuzlfBj5934,6662
7856
7886
  pulumi_azure_native/healthcareapis/v20230228/get_workspace.py,sha256=B_pJcqNOJU-AFRHZdU3g_2oBc-NVd4e5yyiHzwafyDI,5770
7857
7887
  pulumi_azure_native/healthcareapis/v20230228/get_workspace_private_endpoint_connection.py,sha256=r71sAcljHS8qEOhlzt4XUS6KOGWz-wyrsKw3S8VCmcY,7551
7858
- pulumi_azure_native/healthcareapis/v20230228/iot_connector.py,sha256=AXTG1g39PiXF5bjLjLgj80G3AJXbrgnGTkWe6f8lWA8,16068
7859
- pulumi_azure_native/healthcareapis/v20230228/iot_connector_fhir_destination.py,sha256=PRoIfdYVgKxxcrv6fdrkDieJxl4omrcj3dTxPwvj8x4,16253
7888
+ pulumi_azure_native/healthcareapis/v20230228/iot_connector.py,sha256=PipQgHEzKKpb3xrDxV5WRE1LS0_yi_U48Dn5GD2_7ug,16142
7889
+ pulumi_azure_native/healthcareapis/v20230228/iot_connector_fhir_destination.py,sha256=rm5M4hRwaCQaPoBcrfIA3yQu9N0YdOOgi_w-TgsfYac,16342
7860
7890
  pulumi_azure_native/healthcareapis/v20230228/outputs.py,sha256=j_CorF6KoVgf5OfaHRW4ypz9Tktqv7B93laIvb-5wG0,72363
7861
- pulumi_azure_native/healthcareapis/v20230228/private_endpoint_connection.py,sha256=L6l_lBMG4lZTe9fS88GUfU3fH-HzTTgA5wRIeP2Alck,12499
7862
- pulumi_azure_native/healthcareapis/v20230228/service.py,sha256=o7ZqTcETgSc3fzNBka88qBUlCgg7crAo0aodgvXKmQo,13868
7863
- pulumi_azure_native/healthcareapis/v20230228/workspace.py,sha256=KyetNvrndZyOYKvIs0kkKJCegE41NpplmCaflKTt5Yw,9977
7864
- pulumi_azure_native/healthcareapis/v20230228/workspace_private_endpoint_connection.py,sha256=Z-5hl8plvy-v9r71JbhYPw7VmvEcCZTWyeDyQnpganE,12425
7891
+ pulumi_azure_native/healthcareapis/v20230228/private_endpoint_connection.py,sha256=d-ZfTtuNkOn9l-kaG-7ee2_kSl0ZvfeE9tQ_QPKZPvM,12586
7892
+ pulumi_azure_native/healthcareapis/v20230228/service.py,sha256=8j4m1HRCM_Znwwa1LlBTZIucycDEl-ha7O7pqXiFi1E,13937
7893
+ pulumi_azure_native/healthcareapis/v20230228/workspace.py,sha256=X_q_4U5pH78AUkjVcQiBmITL9x4Mjs_TdT3lQaJpopU,10048
7894
+ pulumi_azure_native/healthcareapis/v20230228/workspace_private_endpoint_connection.py,sha256=_D8M3Vtmhh-v-NBIGXN4pz1c9uFF8CIjMoV72TwgBjk,12521
7865
7895
  pulumi_azure_native/healthcareapis/v20230906/__init__.py,sha256=bGtUvXILxImi5fHOapmY1cqzZvqjvIhc7w_dp1nozJA,903
7866
7896
  pulumi_azure_native/healthcareapis/v20230906/_enums.py,sha256=EbZmj4V8Yn6UN-y3sLzvzIvBj4MjUWc-JBv6Sbzr6dg,2095
7867
7897
  pulumi_azure_native/healthcareapis/v20230906/_inputs.py,sha256=GWHE6zbahwk1rL7itEBf_osNvQzUCmtNNV7AOFGr6mQ,51771
7868
- pulumi_azure_native/healthcareapis/v20230906/dicom_service.py,sha256=iSNtJiGNzc-mai_rROVjKjPKp2ClX8cB--Ww6vIIq88,16309
7869
- pulumi_azure_native/healthcareapis/v20230906/fhir_service.py,sha256=RdXOp37JwXnDaOtvkTvLQyGEgc1Pj9OPJP2kSl-h9YA,27643
7898
+ pulumi_azure_native/healthcareapis/v20230906/dicom_service.py,sha256=6ZSv02QgZm_vWJVJ_pyqFI1y6NuUrDfDAKFe2tZzqBI,16383
7899
+ pulumi_azure_native/healthcareapis/v20230906/fhir_service.py,sha256=99xkT1chCT3vaisvfJRBhTNs7Qm54mXGZVKwVtX60ro,27716
7870
7900
  pulumi_azure_native/healthcareapis/v20230906/get_dicom_service.py,sha256=85NA3e8l43oybj0k8qEt8ipwerqzFNLYKMyixk9nbtE,10832
7871
7901
  pulumi_azure_native/healthcareapis/v20230906/get_fhir_service.py,sha256=1r50-u48bCwSaacn7R0uyW5z9kWZTPZAVDNWoThXyb4,14536
7872
7902
  pulumi_azure_native/healthcareapis/v20230906/get_iot_connector.py,sha256=Dpl2s-RiUEj8qx00qi4aScQfvw7PO7PIOs6049KsQcE,8241
@@ -7875,13 +7905,33 @@ pulumi_azure_native/healthcareapis/v20230906/get_private_endpoint_connection.py,
7875
7905
  pulumi_azure_native/healthcareapis/v20230906/get_service.py,sha256=7l8kSEXLN1dAY_SiclhqIVOYFz7kRrf8NnOkz1qZb8A,6662
7876
7906
  pulumi_azure_native/healthcareapis/v20230906/get_workspace.py,sha256=ApCUPXtg8tHcjp6pD2hZa_fZWtrzi49slnMCaZk99WM,5770
7877
7907
  pulumi_azure_native/healthcareapis/v20230906/get_workspace_private_endpoint_connection.py,sha256=-GDQElIw0d-RJ2X7SgckLHRrw_vsLA-Xbkgmr_kDBMw,7551
7878
- pulumi_azure_native/healthcareapis/v20230906/iot_connector.py,sha256=mhWtNANZ2F_EtV6vP_BxBW9Pu7tsu-QSp_5ORmL_MdU,16068
7879
- pulumi_azure_native/healthcareapis/v20230906/iot_connector_fhir_destination.py,sha256=P6mrypKV_fS3Bh7SbCGmjmBU78dwCVwn3cfKc58V5Ws,16253
7908
+ pulumi_azure_native/healthcareapis/v20230906/iot_connector.py,sha256=n0G4wyn4-ZszwAnJSFMg8XZtYNF2DnaJuOA80jolf9A,16142
7909
+ pulumi_azure_native/healthcareapis/v20230906/iot_connector_fhir_destination.py,sha256=GpJQ2HZFsWLHx-67VRcGW_EJzVte1en0lsmexUKmKdM,16342
7880
7910
  pulumi_azure_native/healthcareapis/v20230906/outputs.py,sha256=v_59yil-g-2wN4wcHQqN5iY76GsF1lapasKG6p4rYgI,71054
7881
- pulumi_azure_native/healthcareapis/v20230906/private_endpoint_connection.py,sha256=e0wjex-8GhlHG758qVLl6yHBawt5oK0JqIbAflF4_Qo,12499
7882
- pulumi_azure_native/healthcareapis/v20230906/service.py,sha256=bEWaZgND0DIq_NC-66jdeso_RqsAkm84HH5aYPoJeZw,13868
7883
- pulumi_azure_native/healthcareapis/v20230906/workspace.py,sha256=_bBNPbl4ZfNzx1XpEVseoSZ-MUoR3KjWIsNIpFUyWKY,9977
7884
- pulumi_azure_native/healthcareapis/v20230906/workspace_private_endpoint_connection.py,sha256=bh0pTKQvc3-VMIxPKvuNPNufiQtxabK9unCww1PO3so,12425
7911
+ pulumi_azure_native/healthcareapis/v20230906/private_endpoint_connection.py,sha256=NIXfLMdPg2k4ssv8y6Sdt3KKw4nA1FXHSo735fYCGmI,12586
7912
+ pulumi_azure_native/healthcareapis/v20230906/service.py,sha256=0qPmZe4VOwYJpm3TcLWRZhn76Rvn1bhjEd_D1d_gEiY,13937
7913
+ pulumi_azure_native/healthcareapis/v20230906/workspace.py,sha256=NzgfTf-IyL7rGwwR9t-gw_ltgRzqWp1_-WuoicVobZY,10048
7914
+ pulumi_azure_native/healthcareapis/v20230906/workspace_private_endpoint_connection.py,sha256=t5jcuozfPZf9GkwxA2S41fgagAMb1JGJaOdOGILnPtQ,12521
7915
+ pulumi_azure_native/healthcareapis/v20231101/__init__.py,sha256=bGtUvXILxImi5fHOapmY1cqzZvqjvIhc7w_dp1nozJA,903
7916
+ pulumi_azure_native/healthcareapis/v20231101/_enums.py,sha256=EbZmj4V8Yn6UN-y3sLzvzIvBj4MjUWc-JBv6Sbzr6dg,2095
7917
+ pulumi_azure_native/healthcareapis/v20231101/_inputs.py,sha256=5grD_gN149bHEYZnFiDR8RMdf_tNwY3OJ6rTIgWLsiU,53923
7918
+ pulumi_azure_native/healthcareapis/v20231101/dicom_service.py,sha256=NCnkvYvwdJc4GDOmr9XJjwfm2a-pB33cbiSwAxp2mpw,17689
7919
+ pulumi_azure_native/healthcareapis/v20231101/fhir_service.py,sha256=q8LEetY5Ny3F60M7JNHo7ZLnqZiNnrdo5RAF2sl5aQw,29018
7920
+ pulumi_azure_native/healthcareapis/v20231101/get_dicom_service.py,sha256=X_JwihXDWcO1FBaUJXGZaWEc4Pd9_vH33TKSsewIFgc,11358
7921
+ pulumi_azure_native/healthcareapis/v20231101/get_fhir_service.py,sha256=EbjE-4bGdUtyCEMIVSJi7DVOX46JzGozeoGIQNw3yVg,15061
7922
+ pulumi_azure_native/healthcareapis/v20231101/get_iot_connector.py,sha256=Qq87TTqSUD_welZnNoKC-MwlyaoqMLYE71dRLD8HRIA,8241
7923
+ pulumi_azure_native/healthcareapis/v20231101/get_iot_connector_fhir_destination.py,sha256=YxD-DHFlOmrbfC11Vvl4jahThEe5QqXI4JkMPTYNE1U,8166
7924
+ pulumi_azure_native/healthcareapis/v20231101/get_private_endpoint_connection.py,sha256=7OjBL_Lq6JRlSt-_d1Ebrgouy6Eu-KLM-dO9Z2IpmTk,7336
7925
+ pulumi_azure_native/healthcareapis/v20231101/get_service.py,sha256=UAuZFL3glKqaNtrSFVNRgZ4AKet5RID9Do8XIDrGUYY,6662
7926
+ pulumi_azure_native/healthcareapis/v20231101/get_workspace.py,sha256=VudK0xQeA0AUPiMqRcdOoQs19gEjL-BIsMTZYR-6vmw,5770
7927
+ pulumi_azure_native/healthcareapis/v20231101/get_workspace_private_endpoint_connection.py,sha256=olXMUtVxCoZycYeZFTPk4_SDCoQZYz0jzeT-XNNs05I,7551
7928
+ pulumi_azure_native/healthcareapis/v20231101/iot_connector.py,sha256=9MVMDclS9NXTuuUvpEBzOyDaWLNJEUuyb0I41_6SS-c,16142
7929
+ pulumi_azure_native/healthcareapis/v20231101/iot_connector_fhir_destination.py,sha256=Xe5VzOFZsvpDejCFtPI_8EHm6oh41dpqV-WT1PqgRag,16342
7930
+ pulumi_azure_native/healthcareapis/v20231101/outputs.py,sha256=3WqhlOx3wvAFfEBvsOvU-bro7h29N4WCG_1w6icpt-0,74189
7931
+ pulumi_azure_native/healthcareapis/v20231101/private_endpoint_connection.py,sha256=ANgryar5L1paiAmlxJoqSZctSfWwK-QD3vlXNJVYVTM,12586
7932
+ pulumi_azure_native/healthcareapis/v20231101/service.py,sha256=-Dg1da_JCppvolMUCH1kj1iIECU_LpPg5G_xXJ-8rfA,13937
7933
+ pulumi_azure_native/healthcareapis/v20231101/workspace.py,sha256=xeo51hgbT2KAmtVny6gVOyfFPPP1qcl0TcftPL2rrbs,10048
7934
+ pulumi_azure_native/healthcareapis/v20231101/workspace_private_endpoint_connection.py,sha256=edjZzDGqdtJhtoqzXkAL97HKz0wuCxqXl5bnH9DeiSU,12521
7885
7935
  pulumi_azure_native/hybridcloud/__init__.py,sha256=xHn3vVDsGVIM3t3Qxk46IWCLZMHLFaVCH38YejC4gIU,737
7886
7936
  pulumi_azure_native/hybridcloud/_enums.py,sha256=nCDNDrcj7vHhaAfq67qEMwMqiSWWAzwxeS63caZtD7E,313
7887
7937
  pulumi_azure_native/hybridcloud/_inputs.py,sha256=bp5BM2JAE9kjDArDRH6zPfIGP7QbfRW-1RL8KLbwc_0,988
@@ -12931,6 +12981,22 @@ pulumi_azure_native/offazure/v20230606/sql_sites_controller.py,sha256=7nnZj9Gixi
12931
12981
  pulumi_azure_native/offazure/v20230606/vcenter_controller.py,sha256=n6zbfGoEPFDkxxZTM4l7iLAxpcedbWZnf-W6x-fkH_A,15900
12932
12982
  pulumi_azure_native/offazure/v20230606/web_app_discovery_site_data_sources_controller.py,sha256=9fJwPPpsHdb8aayQtvmGcHax3RadGzg1aMy62jlvlUc,10900
12933
12983
  pulumi_azure_native/offazure/v20230606/web_app_sites_controller.py,sha256=ZJYaGy5Cp43Q5KNGpxwEVSMekYzK2OIO2rndbvxlAJ8,12508
12984
+ pulumi_azure_native/offazurespringboot/__init__.py,sha256=o_oM3mm_tL1eNSqgIwHWF_tUEUj_Cz5m9VjTc_hEn-o,749
12985
+ pulumi_azure_native/offazurespringboot/_enums.py,sha256=edWqxRQk69EhcZ7lXEqgiixaa-W80wGQTFdtIVUJ1tk,506
12986
+ pulumi_azure_native/offazurespringboot/_inputs.py,sha256=DmTk4NmobQv13WF_WllNpqSfyX4yc59_pSPMZwJJ3Uo,14832
12987
+ pulumi_azure_native/offazurespringboot/get_springbootserver.py,sha256=bQOIPg9Ww_inGPEJ_GSLVLoDFv1-OazOzZxIQmtWBww,5660
12988
+ pulumi_azure_native/offazurespringboot/get_springbootsite.py,sha256=QRiMjlKAGjXeNiiJnh77o-w6Iq6oW68jDHi-pLRdZXE,6431
12989
+ pulumi_azure_native/offazurespringboot/outputs.py,sha256=peZcbnhGdhX2lHnOKe58cg7nzWTJT8ldPyGrOZniIeA,17633
12990
+ pulumi_azure_native/offazurespringboot/springbootserver.py,sha256=FBhavGb7ojbiI-XfbbdXG7KvES5ZWFVXGfw4uzr5I6k,10713
12991
+ pulumi_azure_native/offazurespringboot/springbootsite.py,sha256=d4MgIhO0VslcxDao9xrfprk-H_oTMhSdlXffRhg6pLE,12468
12992
+ pulumi_azure_native/offazurespringboot/v20230101preview/__init__.py,sha256=iwFWTeQ4WS2RIUjFvxxL6tvHWvwMfmypXDaQ1qaTjZQ,451
12993
+ pulumi_azure_native/offazurespringboot/v20230101preview/_enums.py,sha256=edWqxRQk69EhcZ7lXEqgiixaa-W80wGQTFdtIVUJ1tk,506
12994
+ pulumi_azure_native/offazurespringboot/v20230101preview/_inputs.py,sha256=iCaRyQt_AGqjWL0bpff2T-dl6AywWvsSPLJvEgjXmd0,14833
12995
+ pulumi_azure_native/offazurespringboot/v20230101preview/get_springbootserver.py,sha256=kdISmkZwwFnEbDL1dFBC3E1fRQbjGrklFJ02oxjSHPU,5582
12996
+ pulumi_azure_native/offazurespringboot/v20230101preview/get_springbootsite.py,sha256=JT0oRfcIo0v1ye6Q3N0Skpknn4pFvxlxUEAt6lnqZ74,6353
12997
+ pulumi_azure_native/offazurespringboot/v20230101preview/outputs.py,sha256=jj2KVVcAcvLS4Smk5WBLXa67bPlKBxfDAhXpLAaOIlU,17634
12998
+ pulumi_azure_native/offazurespringboot/v20230101preview/springbootserver.py,sha256=WEP-drrCl9-evS_9lAzMeqcxfcS2fjYvBuW5kpOMcMM,10610
12999
+ pulumi_azure_native/offazurespringboot/v20230101preview/springbootsite.py,sha256=UR6yXEr-nmql6Uy5j43XuVkzEMgiL9LztUtAMfaE3eQ,12365
12934
13000
  pulumi_azure_native/openenergyplatform/__init__.py,sha256=5n6_Kq-I2K7CIDW34yol1nYLASfFNY9smYiFgSi7ztY,705
12935
13001
  pulumi_azure_native/openenergyplatform/_inputs.py,sha256=vzlTMu5Tg5ad9OsA-XDZaCVAk2iOY14ZtkaJ3DVOmQI,2178
12936
13002
  pulumi_azure_native/openenergyplatform/energy_service.py,sha256=s31TqcusJwLG9gM8FBHij88qDvBO3sHZEjAT3dmM92E,10168
@@ -14104,7 +14170,7 @@ pulumi_azure_native/security/_enums.py,sha256=kJeL4Umnv_jdoA66ZHmnErTdXGnKeucQb-
14104
14170
  pulumi_azure_native/security/_inputs.py,sha256=y5GtogOErOTWL28Cm9h2A5EgMLCaQ7c6Z7UD6Up5DKw,255360
14105
14171
  pulumi_azure_native/security/adaptive_application_control.py,sha256=GImlm9Hn9d_87B3uPixnFBaskTtSKCYc6PMwevqtV7M,14280
14106
14172
  pulumi_azure_native/security/advanced_threat_protection.py,sha256=hyphxoKVBX21w2zrFaYh2W61z-2P90k_rLKKNyztKh4,7738
14107
- pulumi_azure_native/security/alerts_suppression_rule.py,sha256=O-RSJKUjIZ2Dka2b9kNWwgYr6vqUmPk-nOh3wqoOA8U,14091
14173
+ pulumi_azure_native/security/alerts_suppression_rule.py,sha256=1PMkhq4O9MUL8eC1TuW8viNXjxq8uOEj60Zldy7ekcA,13963
14108
14174
  pulumi_azure_native/security/api_collection.py,sha256=j8hp-Vs1Ny7d4gd4Ax4otLzsNCgkk2pMwyzVmRAcOeE,8570
14109
14175
  pulumi_azure_native/security/api_collection_by_azure_api_management_service.py,sha256=Hk-SwyUiRDh4j5cRE0gg46Y9-OWx9nqDG8WGY5zsS0s,12527
14110
14176
  pulumi_azure_native/security/application.py,sha256=_mK2CVw0XHgZ056LvuYPD3B3bD05B8tTCTgh4v5r10U,9461
@@ -14121,7 +14187,7 @@ pulumi_azure_native/security/dev_ops_configuration.py,sha256=6nS4J8QbOCc7kGRhUJJ
14121
14187
  pulumi_azure_native/security/device_security_group.py,sha256=u2iNv7roP5UUe1ZMNsyb8yDbjBJvSGPO61lmuTCkcxU,13717
14122
14188
  pulumi_azure_native/security/get_adaptive_application_control.py,sha256=4SZhSg_l0uiauGNKCr5xSWqwXb-u6IB1S36BfWlABkk,9093
14123
14189
  pulumi_azure_native/security/get_advanced_threat_protection.py,sha256=SQ7l1GGP-wHMLBdt9vp0MXDtF7rSc5_Gp6no0AECPx8,4169
14124
- pulumi_azure_native/security/get_alerts_suppression_rule.py,sha256=yHA9FzGdYXPwmQHgGrgcGz2Wyv_sFxgYam-7JSTWrbg,7280
14190
+ pulumi_azure_native/security/get_alerts_suppression_rule.py,sha256=J_KA11qh6FGPbxpxFh9Br-_NKlfHTWBGwsYuvHVAfaM,7248
14125
14191
  pulumi_azure_native/security/get_api_collection.py,sha256=PJ3RxH20r7rmoKl-FOsTRg05LS5OLg5jAN7B2QZcvos,5725
14126
14192
  pulumi_azure_native/security/get_api_collection_by_azure_api_management_service.py,sha256=OICWhpHEi5d66JlZeks2uwOXpgL_unsj7bi06ZZ7w44,12559
14127
14193
  pulumi_azure_native/security/get_application.py,sha256=w3WSLjBb6uWPVXuC_RsHkMUQdBP0ScsJ2JJDEF42KAQ,4820
@@ -14181,10 +14247,10 @@ pulumi_azure_native/security/v20190101/get_advanced_threat_protection.py,sha256=
14181
14247
  pulumi_azure_native/security/v20190101preview/__init__.py,sha256=zz61c9jWrbPFLkGkHgZ7OD6rpX79-P3ddJJLS_-DPPs,559
14182
14248
  pulumi_azure_native/security/v20190101preview/_enums.py,sha256=0sgmUNEWyqOcc9JCzq8HbAs-n64U2Bv9VCAk4US6n9E,4385
14183
14249
  pulumi_azure_native/security/v20190101preview/_inputs.py,sha256=plpOBzPPy8TiG6D_XMVwz6-ql5D7OFU0ELkGo3oLSj8,16915
14184
- pulumi_azure_native/security/v20190101preview/alerts_suppression_rule.py,sha256=p4r9GgGtYY3S7PdhuW7inUuZGv0r0v-nA36_DRlfZj4,13870
14250
+ pulumi_azure_native/security/v20190101preview/alerts_suppression_rule.py,sha256=2fUGbhSv9IwF4G9sccmgq37xFRLA-oyyPyHygrnvJBQ,13742
14185
14251
  pulumi_azure_native/security/v20190101preview/assessments_metadata_subscription.py,sha256=nY-SO-KBeYQQcAhTvHY8e2TSqdzpN19rCVoLgho5pKI,19452
14186
14252
  pulumi_azure_native/security/v20190101preview/automation.py,sha256=n7eBN2aOHBMNfLcnjRMqKraCdzaz0QnVOTmYdpIj_bA,18574
14187
- pulumi_azure_native/security/v20190101preview/get_alerts_suppression_rule.py,sha256=cyFH3HWEzcZqzjnO-hVUFc0o5tFBNvHsY_fLOZsAYoQ,7202
14253
+ pulumi_azure_native/security/v20190101preview/get_alerts_suppression_rule.py,sha256=Rqm6ZAs6mjPd85shBUjv3LJtK-6zvqtbwgM8abfeJJY,7170
14188
14254
  pulumi_azure_native/security/v20190101preview/get_assessments_metadata_subscription.py,sha256=Rq7LppDKKMF0GTdbIoJxP1J22noqlmSB9iDOnWtzCW8,9534
14189
14255
  pulumi_azure_native/security/v20190101preview/get_automation.py,sha256=Jr3UiXSBIMuz3A2jGBAS0j-1S97_bxGjM0qpnp7Y3YM,8039
14190
14256
  pulumi_azure_native/security/v20190101preview/outputs.py,sha256=o5LE_wxly0iSi-yROA8gYwKZ9bN9nj6kzA0zZ5js6F8,20394
@@ -18425,7 +18491,7 @@ pulumi_azure_native/workloads/v20231001preview/sap_central_instance.py,sha256=Ke
18425
18491
  pulumi_azure_native/workloads/v20231001preview/sap_database_instance.py,sha256=-aR0aCgupI8LNymrLC6Llgkky68v4ZTd2mawd9Lj13U,13907
18426
18492
  pulumi_azure_native/workloads/v20231001preview/sap_landscape_monitor.py,sha256=kh_uPVrU8zJqqfe7v2--2sR1w5evu1dVlo0K44bTAQ0,11157
18427
18493
  pulumi_azure_native/workloads/v20231001preview/sap_virtual_instance.py,sha256=dMa-ylYX90O5UGT8A5yheKhQqS2_1pLbw3OhbgCfLMQ,24031
18428
- pulumi_azure_native-2.18.0.dist-info/METADATA,sha256=yiK5llRA-WEnSaZ03SlBm7XTzgSqaeUDfMLTvPlJp0E,3556
18429
- pulumi_azure_native-2.18.0.dist-info/WHEEL,sha256=Xo9-1PvkuimrydujYJAjF7pCkriuXBpUPEjma1nZyJ0,92
18430
- pulumi_azure_native-2.18.0.dist-info/top_level.txt,sha256=8Vl7910-df5jOZ9lvILrFhlMOEUrsaaX2dkztIt4Pkw,20
18431
- pulumi_azure_native-2.18.0.dist-info/RECORD,,
18494
+ pulumi_azure_native-2.19.0.dist-info/METADATA,sha256=Y6_hje1hFPtXgH_6rLxIAuh4s0LNdpgvYslxbmGowbQ,3556
18495
+ pulumi_azure_native-2.19.0.dist-info/WHEEL,sha256=Xo9-1PvkuimrydujYJAjF7pCkriuXBpUPEjma1nZyJ0,92
18496
+ pulumi_azure_native-2.19.0.dist-info/top_level.txt,sha256=8Vl7910-df5jOZ9lvILrFhlMOEUrsaaX2dkztIt4Pkw,20
18497
+ pulumi_azure_native-2.19.0.dist-info/RECORD,,