pulumi-azure-native 3.8.0a1755616596__py3-none-any.whl → 3.9.0a1757522298__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 (80) hide show
  1. pulumi_azure_native/cloudngfw/__init__.py +3 -3
  2. pulumi_azure_native/cloudngfw/certificate_object_global_rulestack.py +4 -4
  3. pulumi_azure_native/cloudngfw/certificate_object_local_rulestack.py +4 -4
  4. pulumi_azure_native/cloudngfw/firewall.py +4 -4
  5. pulumi_azure_native/cloudngfw/fqdn_list_global_rulestack.py +4 -4
  6. pulumi_azure_native/cloudngfw/fqdn_list_local_rulestack.py +4 -4
  7. pulumi_azure_native/cloudngfw/get_certificate_object_global_rulestack.py +4 -4
  8. pulumi_azure_native/cloudngfw/get_certificate_object_local_rulestack.py +4 -4
  9. pulumi_azure_native/cloudngfw/get_firewall.py +4 -4
  10. pulumi_azure_native/cloudngfw/get_firewall_global_rulestack.py +4 -4
  11. pulumi_azure_native/cloudngfw/get_firewall_log_profile.py +4 -4
  12. pulumi_azure_native/cloudngfw/get_firewall_support_info.py +6 -34
  13. pulumi_azure_native/cloudngfw/get_fqdn_list_global_rulestack.py +4 -4
  14. pulumi_azure_native/cloudngfw/get_fqdn_list_local_rulestack.py +4 -4
  15. pulumi_azure_native/cloudngfw/get_global_rulestack.py +4 -4
  16. pulumi_azure_native/cloudngfw/get_global_rulestack_change_log.py +4 -4
  17. pulumi_azure_native/cloudngfw/get_local_rule.py +4 -4
  18. pulumi_azure_native/cloudngfw/get_local_rule_counters.py +4 -4
  19. pulumi_azure_native/cloudngfw/get_local_rulestack.py +4 -4
  20. pulumi_azure_native/cloudngfw/get_local_rulestack_change_log.py +4 -4
  21. pulumi_azure_native/cloudngfw/get_local_rulestack_support_info.py +6 -34
  22. pulumi_azure_native/cloudngfw/get_post_rule.py +4 -4
  23. pulumi_azure_native/cloudngfw/get_post_rule_counters.py +4 -4
  24. pulumi_azure_native/cloudngfw/get_pre_rule.py +4 -4
  25. pulumi_azure_native/cloudngfw/get_pre_rule_counters.py +4 -4
  26. pulumi_azure_native/cloudngfw/get_prefix_list_global_rulestack.py +4 -4
  27. pulumi_azure_native/cloudngfw/get_prefix_list_local_rulestack.py +4 -4
  28. pulumi_azure_native/cloudngfw/global_rulestack.py +4 -4
  29. pulumi_azure_native/cloudngfw/list_global_rulestack_advanced_security_objects.py +4 -4
  30. pulumi_azure_native/cloudngfw/list_global_rulestack_app_ids.py +4 -4
  31. pulumi_azure_native/cloudngfw/list_global_rulestack_countries.py +4 -4
  32. pulumi_azure_native/cloudngfw/list_global_rulestack_firewalls.py +4 -4
  33. pulumi_azure_native/cloudngfw/list_global_rulestack_predefined_url_categories.py +4 -4
  34. pulumi_azure_native/cloudngfw/list_global_rulestack_security_services.py +4 -4
  35. pulumi_azure_native/cloudngfw/list_local_rulestack_advanced_security_objects.py +4 -4
  36. pulumi_azure_native/cloudngfw/list_local_rulestack_app_ids.py +4 -4
  37. pulumi_azure_native/cloudngfw/list_local_rulestack_countries.py +4 -4
  38. pulumi_azure_native/cloudngfw/list_local_rulestack_firewalls.py +4 -4
  39. pulumi_azure_native/cloudngfw/list_local_rulestack_predefined_url_categories.py +4 -4
  40. pulumi_azure_native/cloudngfw/list_local_rulestack_security_services.py +4 -4
  41. pulumi_azure_native/cloudngfw/{list_palo_alto_networks_cloudngfw_cloud_manager_tenants.py → list_palo_alto_networks_cloudngfw_operation_cloud_manager_tenants.py} +17 -17
  42. pulumi_azure_native/cloudngfw/{list_palo_alto_networks_cloudngfw_product_serial_number_status.py → list_palo_alto_networks_cloudngfw_operation_product_serial_number_status.py} +17 -17
  43. pulumi_azure_native/cloudngfw/{list_palo_alto_networks_cloudngfw_support_info.py → list_palo_alto_networks_cloudngfw_operation_support_info.py} +19 -47
  44. pulumi_azure_native/cloudngfw/local_rule.py +4 -4
  45. pulumi_azure_native/cloudngfw/local_rulestack.py +4 -4
  46. pulumi_azure_native/cloudngfw/post_rule.py +4 -4
  47. pulumi_azure_native/cloudngfw/pre_rule.py +4 -4
  48. pulumi_azure_native/cloudngfw/prefix_list_global_rulestack.py +4 -4
  49. pulumi_azure_native/cloudngfw/prefix_list_local_rulestack.py +4 -4
  50. pulumi_azure_native/config/__init__.pyi +11 -1
  51. pulumi_azure_native/config/vars.py +15 -1
  52. pulumi_azure_native/provider.py +43 -3
  53. pulumi_azure_native/pulumi-plugin.json +1 -1
  54. pulumi_azure_native/redisenterprise/_enums.py +82 -5
  55. pulumi_azure_native/redisenterprise/_inputs.py +19 -19
  56. pulumi_azure_native/redisenterprise/access_policy_assignment.py +7 -7
  57. pulumi_azure_native/redisenterprise/database.py +56 -17
  58. pulumi_azure_native/redisenterprise/get_access_policy_assignment.py +6 -6
  59. pulumi_azure_native/redisenterprise/get_database.py +40 -12
  60. pulumi_azure_native/redisenterprise/get_private_endpoint_connection.py +8 -8
  61. pulumi_azure_native/redisenterprise/get_redis_enterprise.py +54 -12
  62. pulumi_azure_native/redisenterprise/list_database_keys.py +8 -8
  63. pulumi_azure_native/redisenterprise/outputs.py +125 -14
  64. pulumi_azure_native/redisenterprise/private_endpoint_connection.py +7 -7
  65. pulumi_azure_native/redisenterprise/redis_enterprise.py +63 -14
  66. pulumi_azure_native/search/_enums.py +121 -10
  67. pulumi_azure_native/search/_inputs.py +109 -69
  68. pulumi_azure_native/search/get_private_endpoint_connection.py +26 -12
  69. pulumi_azure_native/search/get_service.py +117 -19
  70. pulumi_azure_native/search/get_shared_private_link_resource.py +26 -12
  71. pulumi_azure_native/search/list_admin_key.py +9 -9
  72. pulumi_azure_native/search/list_query_key_by_search_service.py +10 -10
  73. pulumi_azure_native/search/outputs.py +303 -57
  74. pulumi_azure_native/search/private_endpoint_connection.py +26 -16
  75. pulumi_azure_native/search/service.py +179 -33
  76. pulumi_azure_native/search/shared_private_link_resource.py +26 -16
  77. {pulumi_azure_native-3.8.0a1755616596.dist-info → pulumi_azure_native-3.9.0a1757522298.dist-info}/METADATA +1 -1
  78. {pulumi_azure_native-3.8.0a1755616596.dist-info → pulumi_azure_native-3.9.0a1757522298.dist-info}/RECORD +80 -80
  79. {pulumi_azure_native-3.8.0a1755616596.dist-info → pulumi_azure_native-3.9.0a1757522298.dist-info}/WHEEL +0 -0
  80. {pulumi_azure_native-3.8.0a1755616596.dist-info → pulumi_azure_native-3.9.0a1757522298.dist-info}/top_level.txt +0 -0
@@ -46,9 +46,9 @@ from .list_local_rulestack_countries import *
46
46
  from .list_local_rulestack_firewalls import *
47
47
  from .list_local_rulestack_predefined_url_categories import *
48
48
  from .list_local_rulestack_security_services import *
49
- from .list_palo_alto_networks_cloudngfw_cloud_manager_tenants import *
50
- from .list_palo_alto_networks_cloudngfw_product_serial_number_status import *
51
- from .list_palo_alto_networks_cloudngfw_support_info import *
49
+ from .list_palo_alto_networks_cloudngfw_operation_cloud_manager_tenants import *
50
+ from .list_palo_alto_networks_cloudngfw_operation_product_serial_number_status import *
51
+ from .list_palo_alto_networks_cloudngfw_operation_support_info import *
52
52
  from .local_rule import *
53
53
  from .local_rulestack import *
54
54
  from .post_rule import *
@@ -137,9 +137,9 @@ class CertificateObjectGlobalRulestack(pulumi.CustomResource):
137
137
  """
138
138
  GlobalRulestack Certificate Object
139
139
 
140
- Uses Azure REST API version 2025-02-06-preview. In version 2.x of the Azure Native provider, it used API version 2023-09-01.
140
+ Uses Azure REST API version 2025-05-23. In version 2.x of the Azure Native provider, it used API version 2023-09-01.
141
141
 
142
- Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
142
+ Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-02-06-preview, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
143
143
 
144
144
  :param str resource_name: The name of the resource.
145
145
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -159,9 +159,9 @@ class CertificateObjectGlobalRulestack(pulumi.CustomResource):
159
159
  """
160
160
  GlobalRulestack Certificate Object
161
161
 
162
- Uses Azure REST API version 2025-02-06-preview. In version 2.x of the Azure Native provider, it used API version 2023-09-01.
162
+ Uses Azure REST API version 2025-05-23. In version 2.x of the Azure Native provider, it used API version 2023-09-01.
163
163
 
164
- Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
164
+ Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-02-06-preview, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
165
165
 
166
166
  :param str resource_name: The name of the resource.
167
167
  :param CertificateObjectGlobalRulestackArgs args: The arguments to use to populate this resource's properties.
@@ -153,9 +153,9 @@ class CertificateObjectLocalRulestack(pulumi.CustomResource):
153
153
  """
154
154
  LocalRulestack Certificate Object
155
155
 
156
- Uses Azure REST API version 2025-02-06-preview. In version 2.x of the Azure Native provider, it used API version 2023-09-01.
156
+ Uses Azure REST API version 2025-05-23. In version 2.x of the Azure Native provider, it used API version 2023-09-01.
157
157
 
158
- Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
158
+ Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-02-06-preview, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
159
159
 
160
160
  :param str resource_name: The name of the resource.
161
161
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -176,9 +176,9 @@ class CertificateObjectLocalRulestack(pulumi.CustomResource):
176
176
  """
177
177
  LocalRulestack Certificate Object
178
178
 
179
- Uses Azure REST API version 2025-02-06-preview. In version 2.x of the Azure Native provider, it used API version 2023-09-01.
179
+ Uses Azure REST API version 2025-05-23. In version 2.x of the Azure Native provider, it used API version 2023-09-01.
180
180
 
181
- Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
181
+ Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-02-06-preview, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
182
182
 
183
183
  :param str resource_name: The name of the resource.
184
184
  :param CertificateObjectLocalRulestackArgs args: The arguments to use to populate this resource's properties.
@@ -305,9 +305,9 @@ class Firewall(pulumi.CustomResource):
305
305
  """
306
306
  PaloAltoNetworks Firewall
307
307
 
308
- Uses Azure REST API version 2025-02-06-preview. In version 2.x of the Azure Native provider, it used API version 2023-09-01.
308
+ Uses Azure REST API version 2025-05-23. In version 2.x of the Azure Native provider, it used API version 2023-09-01.
309
309
 
310
- Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
310
+ Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-02-06-preview, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
311
311
 
312
312
  :param str resource_name: The name of the resource.
313
313
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -337,9 +337,9 @@ class Firewall(pulumi.CustomResource):
337
337
  """
338
338
  PaloAltoNetworks Firewall
339
339
 
340
- Uses Azure REST API version 2025-02-06-preview. In version 2.x of the Azure Native provider, it used API version 2023-09-01.
340
+ Uses Azure REST API version 2025-05-23. In version 2.x of the Azure Native provider, it used API version 2023-09-01.
341
341
 
342
- Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
342
+ Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-02-06-preview, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
343
343
 
344
344
  :param str resource_name: The name of the resource.
345
345
  :param FirewallArgs args: The arguments to use to populate this resource's properties.
@@ -119,9 +119,9 @@ class FqdnListGlobalRulestack(pulumi.CustomResource):
119
119
  """
120
120
  GlobalRulestack fqdnList
121
121
 
122
- Uses Azure REST API version 2025-02-06-preview. In version 2.x of the Azure Native provider, it used API version 2023-09-01.
122
+ Uses Azure REST API version 2025-05-23. In version 2.x of the Azure Native provider, it used API version 2023-09-01.
123
123
 
124
- Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
124
+ Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-02-06-preview, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
125
125
 
126
126
  :param str resource_name: The name of the resource.
127
127
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -140,9 +140,9 @@ class FqdnListGlobalRulestack(pulumi.CustomResource):
140
140
  """
141
141
  GlobalRulestack fqdnList
142
142
 
143
- Uses Azure REST API version 2025-02-06-preview. In version 2.x of the Azure Native provider, it used API version 2023-09-01.
143
+ Uses Azure REST API version 2025-05-23. In version 2.x of the Azure Native provider, it used API version 2023-09-01.
144
144
 
145
- Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
145
+ Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-02-06-preview, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
146
146
 
147
147
  :param str resource_name: The name of the resource.
148
148
  :param FqdnListGlobalRulestackArgs args: The arguments to use to populate this resource's properties.
@@ -135,9 +135,9 @@ class FqdnListLocalRulestack(pulumi.CustomResource):
135
135
  """
136
136
  LocalRulestack fqdnList
137
137
 
138
- Uses Azure REST API version 2025-02-06-preview. In version 2.x of the Azure Native provider, it used API version 2023-09-01.
138
+ Uses Azure REST API version 2025-05-23. In version 2.x of the Azure Native provider, it used API version 2023-09-01.
139
139
 
140
- Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
140
+ Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-02-06-preview, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
141
141
 
142
142
  :param str resource_name: The name of the resource.
143
143
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -157,9 +157,9 @@ class FqdnListLocalRulestack(pulumi.CustomResource):
157
157
  """
158
158
  LocalRulestack fqdnList
159
159
 
160
- Uses Azure REST API version 2025-02-06-preview. In version 2.x of the Azure Native provider, it used API version 2023-09-01.
160
+ Uses Azure REST API version 2025-05-23. In version 2.x of the Azure Native provider, it used API version 2023-09-01.
161
161
 
162
- Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
162
+ Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-02-06-preview, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
163
163
 
164
164
  :param str resource_name: The name of the resource.
165
165
  :param FqdnListLocalRulestackArgs args: The arguments to use to populate this resource's properties.
@@ -177,9 +177,9 @@ def get_certificate_object_global_rulestack(global_rulestack_name: Optional[buil
177
177
  """
178
178
  Get a CertificateObjectGlobalRulestackResource
179
179
 
180
- Uses Azure REST API version 2025-02-06-preview.
180
+ Uses Azure REST API version 2025-05-23.
181
181
 
182
- Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
182
+ Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-02-06-preview, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
183
183
 
184
184
 
185
185
  :param builtins.str global_rulestack_name: GlobalRulestack resource name
@@ -209,9 +209,9 @@ def get_certificate_object_global_rulestack_output(global_rulestack_name: Option
209
209
  """
210
210
  Get a CertificateObjectGlobalRulestackResource
211
211
 
212
- Uses Azure REST API version 2025-02-06-preview.
212
+ Uses Azure REST API version 2025-05-23.
213
213
 
214
- Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
214
+ Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-02-06-preview, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
215
215
 
216
216
 
217
217
  :param builtins.str global_rulestack_name: GlobalRulestack resource name
@@ -178,9 +178,9 @@ def get_certificate_object_local_rulestack(local_rulestack_name: Optional[builti
178
178
  """
179
179
  Get a CertificateObjectLocalRulestackResource
180
180
 
181
- Uses Azure REST API version 2025-02-06-preview.
181
+ Uses Azure REST API version 2025-05-23.
182
182
 
183
- Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
183
+ Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-02-06-preview, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
184
184
 
185
185
 
186
186
  :param builtins.str local_rulestack_name: LocalRulestack resource name
@@ -213,9 +213,9 @@ def get_certificate_object_local_rulestack_output(local_rulestack_name: Optional
213
213
  """
214
214
  Get a CertificateObjectLocalRulestackResource
215
215
 
216
- Uses Azure REST API version 2025-02-06-preview.
216
+ Uses Azure REST API version 2025-05-23.
217
217
 
218
- Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
218
+ Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-02-06-preview, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
219
219
 
220
220
 
221
221
  :param builtins.str local_rulestack_name: LocalRulestack resource name
@@ -285,9 +285,9 @@ def get_firewall(firewall_name: Optional[builtins.str] = None,
285
285
  """
286
286
  Get a FirewallResource
287
287
 
288
- Uses Azure REST API version 2025-02-06-preview.
288
+ Uses Azure REST API version 2025-05-23.
289
289
 
290
- Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
290
+ Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-02-06-preview, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
291
291
 
292
292
 
293
293
  :param builtins.str firewall_name: Firewall resource name
@@ -326,9 +326,9 @@ def get_firewall_output(firewall_name: Optional[pulumi.Input[builtins.str]] = No
326
326
  """
327
327
  Get a FirewallResource
328
328
 
329
- Uses Azure REST API version 2025-02-06-preview.
329
+ Uses Azure REST API version 2025-05-23.
330
330
 
331
- Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
331
+ Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-02-06-preview, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
332
332
 
333
333
 
334
334
  :param builtins.str firewall_name: Firewall resource name
@@ -56,9 +56,9 @@ def get_firewall_global_rulestack(firewall_name: Optional[builtins.str] = None,
56
56
  """
57
57
  Get Global Rulestack associated with the Firewall
58
58
 
59
- Uses Azure REST API version 2025-02-06-preview.
59
+ Uses Azure REST API version 2025-05-23.
60
60
 
61
- Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
61
+ Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-02-06-preview, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
62
62
 
63
63
 
64
64
  :param builtins.str firewall_name: Firewall resource name
@@ -78,9 +78,9 @@ def get_firewall_global_rulestack_output(firewall_name: Optional[pulumi.Input[bu
78
78
  """
79
79
  Get Global Rulestack associated with the Firewall
80
80
 
81
- Uses Azure REST API version 2025-02-06-preview.
81
+ Uses Azure REST API version 2025-05-23.
82
82
 
83
- Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
83
+ Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-02-06-preview, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
84
84
 
85
85
 
86
86
  :param builtins.str firewall_name: Firewall resource name
@@ -129,9 +129,9 @@ def get_firewall_log_profile(firewall_name: Optional[builtins.str] = None,
129
129
  """
130
130
  Log Profile for Firewall
131
131
 
132
- Uses Azure REST API version 2025-02-06-preview.
132
+ Uses Azure REST API version 2025-05-23.
133
133
 
134
- Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
134
+ Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-02-06-preview, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
135
135
 
136
136
 
137
137
  :param builtins.str firewall_name: Firewall resource name
@@ -157,9 +157,9 @@ def get_firewall_log_profile_output(firewall_name: Optional[pulumi.Input[builtin
157
157
  """
158
158
  Log Profile for Firewall
159
159
 
160
- Uses Azure REST API version 2025-02-06-preview.
160
+ Uses Azure REST API version 2025-05-23.
161
161
 
162
- Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
162
+ Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-02-06-preview, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
163
163
 
164
164
 
165
165
  :param builtins.str firewall_name: Firewall resource name
@@ -27,19 +27,13 @@ class GetFirewallSupportInfoResult:
27
27
  """
28
28
  Support information for the resource
29
29
  """
30
- def __init__(__self__, account_id=None, account_id_for_billing=None, account_registered=None, association_type=None, free_trial=None, free_trial_credit_left=None, free_trial_days_left=None, help_url=None, product_serial=None, product_sku=None, register_url=None, support_url=None, user_domain_supported=None, user_registered=None):
30
+ def __init__(__self__, account_id=None, account_registered=None, free_trial=None, free_trial_credit_left=None, free_trial_days_left=None, help_url=None, product_serial=None, product_sku=None, register_url=None, support_url=None, user_domain_supported=None, user_registered=None):
31
31
  if account_id and not isinstance(account_id, str):
32
32
  raise TypeError("Expected argument 'account_id' to be a str")
33
33
  pulumi.set(__self__, "account_id", account_id)
34
- if account_id_for_billing and not isinstance(account_id_for_billing, str):
35
- raise TypeError("Expected argument 'account_id_for_billing' to be a str")
36
- pulumi.set(__self__, "account_id_for_billing", account_id_for_billing)
37
34
  if account_registered and not isinstance(account_registered, str):
38
35
  raise TypeError("Expected argument 'account_registered' to be a str")
39
36
  pulumi.set(__self__, "account_registered", account_registered)
40
- if association_type and not isinstance(association_type, str):
41
- raise TypeError("Expected argument 'association_type' to be a str")
42
- pulumi.set(__self__, "association_type", association_type)
43
37
  if free_trial and not isinstance(free_trial, str):
44
38
  raise TypeError("Expected argument 'free_trial' to be a str")
45
39
  pulumi.set(__self__, "free_trial", free_trial)
@@ -75,18 +69,10 @@ class GetFirewallSupportInfoResult:
75
69
  @pulumi.getter(name="accountId")
76
70
  def account_id(self) -> Optional[builtins.str]:
77
71
  """
78
- Support account associated with given resource when association type is tenant
72
+ Support account associated with given resource
79
73
  """
80
74
  return pulumi.get(self, "account_id")
81
75
 
82
- @property
83
- @pulumi.getter(name="accountIdForBilling")
84
- def account_id_for_billing(self) -> Optional[builtins.str]:
85
- """
86
- Support account associated with given resource when association type is billing
87
- """
88
- return pulumi.get(self, "account_id_for_billing")
89
-
90
76
  @property
91
77
  @pulumi.getter(name="accountRegistered")
92
78
  def account_registered(self) -> Optional[builtins.str]:
@@ -95,14 +81,6 @@ class GetFirewallSupportInfoResult:
95
81
  """
96
82
  return pulumi.get(self, "account_registered")
97
83
 
98
- @property
99
- @pulumi.getter(name="associationType")
100
- def association_type(self) -> Optional[builtins.str]:
101
- """
102
- Association Type
103
- """
104
- return pulumi.get(self, "association_type")
105
-
106
84
  @property
107
85
  @pulumi.getter(name="freeTrial")
108
86
  def free_trial(self) -> Optional[builtins.str]:
@@ -191,9 +169,7 @@ class AwaitableGetFirewallSupportInfoResult(GetFirewallSupportInfoResult):
191
169
  yield self
192
170
  return GetFirewallSupportInfoResult(
193
171
  account_id=self.account_id,
194
- account_id_for_billing=self.account_id_for_billing,
195
172
  account_registered=self.account_registered,
196
- association_type=self.association_type,
197
173
  free_trial=self.free_trial,
198
174
  free_trial_credit_left=self.free_trial_credit_left,
199
175
  free_trial_days_left=self.free_trial_days_left,
@@ -213,9 +189,9 @@ def get_firewall_support_info(email: Optional[builtins.str] = None,
213
189
  """
214
190
  support info for firewall.
215
191
 
216
- Uses Azure REST API version 2025-02-06-preview.
192
+ Uses Azure REST API version 2025-05-23.
217
193
 
218
- Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
194
+ Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-02-06-preview, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
219
195
 
220
196
 
221
197
  :param builtins.str email: email address on behalf of which this API called
@@ -231,9 +207,7 @@ def get_firewall_support_info(email: Optional[builtins.str] = None,
231
207
 
232
208
  return AwaitableGetFirewallSupportInfoResult(
233
209
  account_id=pulumi.get(__ret__, 'account_id'),
234
- account_id_for_billing=pulumi.get(__ret__, 'account_id_for_billing'),
235
210
  account_registered=pulumi.get(__ret__, 'account_registered'),
236
- association_type=pulumi.get(__ret__, 'association_type'),
237
211
  free_trial=pulumi.get(__ret__, 'free_trial'),
238
212
  free_trial_credit_left=pulumi.get(__ret__, 'free_trial_credit_left'),
239
213
  free_trial_days_left=pulumi.get(__ret__, 'free_trial_days_left'),
@@ -251,9 +225,9 @@ def get_firewall_support_info_output(email: Optional[pulumi.Input[Optional[built
251
225
  """
252
226
  support info for firewall.
253
227
 
254
- Uses Azure REST API version 2025-02-06-preview.
228
+ Uses Azure REST API version 2025-05-23.
255
229
 
256
- Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
230
+ Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-02-06-preview, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
257
231
 
258
232
 
259
233
  :param builtins.str email: email address on behalf of which this API called
@@ -268,9 +242,7 @@ def get_firewall_support_info_output(email: Optional[pulumi.Input[Optional[built
268
242
  __ret__ = pulumi.runtime.invoke_output('azure-native:cloudngfw:getFirewallSupportInfo', __args__, opts=opts, typ=GetFirewallSupportInfoResult)
269
243
  return __ret__.apply(lambda __response__: GetFirewallSupportInfoResult(
270
244
  account_id=pulumi.get(__response__, 'account_id'),
271
- account_id_for_billing=pulumi.get(__response__, 'account_id_for_billing'),
272
245
  account_registered=pulumi.get(__response__, 'account_registered'),
273
- association_type=pulumi.get(__response__, 'association_type'),
274
246
  free_trial=pulumi.get(__response__, 'free_trial'),
275
247
  free_trial_credit_left=pulumi.get(__response__, 'free_trial_credit_left'),
276
248
  free_trial_days_left=pulumi.get(__response__, 'free_trial_days_left'),
@@ -165,9 +165,9 @@ def get_fqdn_list_global_rulestack(global_rulestack_name: Optional[builtins.str]
165
165
  """
166
166
  Get a FqdnListGlobalRulestackResource
167
167
 
168
- Uses Azure REST API version 2025-02-06-preview.
168
+ Uses Azure REST API version 2025-05-23.
169
169
 
170
- Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
170
+ Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-02-06-preview, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
171
171
 
172
172
 
173
173
  :param builtins.str global_rulestack_name: GlobalRulestack resource name
@@ -196,9 +196,9 @@ def get_fqdn_list_global_rulestack_output(global_rulestack_name: Optional[pulumi
196
196
  """
197
197
  Get a FqdnListGlobalRulestackResource
198
198
 
199
- Uses Azure REST API version 2025-02-06-preview.
199
+ Uses Azure REST API version 2025-05-23.
200
200
 
201
- Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
201
+ Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-02-06-preview, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
202
202
 
203
203
 
204
204
  :param builtins.str global_rulestack_name: GlobalRulestack resource name
@@ -166,9 +166,9 @@ def get_fqdn_list_local_rulestack(local_rulestack_name: Optional[builtins.str] =
166
166
  """
167
167
  Get a FqdnListLocalRulestackResource
168
168
 
169
- Uses Azure REST API version 2025-02-06-preview.
169
+ Uses Azure REST API version 2025-05-23.
170
170
 
171
- Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
171
+ Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-02-06-preview, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
172
172
 
173
173
 
174
174
  :param builtins.str local_rulestack_name: LocalRulestack resource name
@@ -200,9 +200,9 @@ def get_fqdn_list_local_rulestack_output(local_rulestack_name: Optional[pulumi.I
200
200
  """
201
201
  Get a FqdnListLocalRulestackResource
202
202
 
203
- Uses Azure REST API version 2025-02-06-preview.
203
+ Uses Azure REST API version 2025-05-23.
204
204
 
205
- Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
205
+ Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-02-06-preview, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
206
206
 
207
207
 
208
208
  :param builtins.str local_rulestack_name: LocalRulestack resource name
@@ -236,9 +236,9 @@ def get_global_rulestack(global_rulestack_name: Optional[builtins.str] = None,
236
236
  """
237
237
  Get a GlobalRulestackResource
238
238
 
239
- Uses Azure REST API version 2025-02-06-preview.
239
+ Uses Azure REST API version 2025-05-23.
240
240
 
241
- Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
241
+ Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-02-06-preview, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
242
242
 
243
243
 
244
244
  :param builtins.str global_rulestack_name: GlobalRulestack resource name
@@ -270,9 +270,9 @@ def get_global_rulestack_output(global_rulestack_name: Optional[pulumi.Input[bui
270
270
  """
271
271
  Get a GlobalRulestackResource
272
272
 
273
- Uses Azure REST API version 2025-02-06-preview.
273
+ Uses Azure REST API version 2025-05-23.
274
274
 
275
- Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
275
+ Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-02-06-preview, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
276
276
 
277
277
 
278
278
  :param builtins.str global_rulestack_name: GlobalRulestack resource name
@@ -79,9 +79,9 @@ def get_global_rulestack_change_log(global_rulestack_name: Optional[builtins.str
79
79
  """
80
80
  Get changelog
81
81
 
82
- Uses Azure REST API version 2025-02-06-preview.
82
+ Uses Azure REST API version 2025-05-23.
83
83
 
84
- Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
84
+ Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-02-06-preview, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
85
85
 
86
86
 
87
87
  :param builtins.str global_rulestack_name: GlobalRulestack resource name
@@ -100,9 +100,9 @@ def get_global_rulestack_change_log_output(global_rulestack_name: Optional[pulum
100
100
  """
101
101
  Get changelog
102
102
 
103
- Uses Azure REST API version 2025-02-06-preview.
103
+ Uses Azure REST API version 2025-05-23.
104
104
 
105
- Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
105
+ Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-02-06-preview, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
106
106
 
107
107
 
108
108
  :param builtins.str global_rulestack_name: GlobalRulestack resource name
@@ -343,9 +343,9 @@ def get_local_rule(local_rulestack_name: Optional[builtins.str] = None,
343
343
  """
344
344
  Get a LocalRulesResource
345
345
 
346
- Uses Azure REST API version 2025-02-06-preview.
346
+ Uses Azure REST API version 2025-05-23.
347
347
 
348
- Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
348
+ Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-02-06-preview, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
349
349
 
350
350
 
351
351
  :param builtins.str local_rulestack_name: LocalRulestack resource name
@@ -392,9 +392,9 @@ def get_local_rule_output(local_rulestack_name: Optional[pulumi.Input[builtins.s
392
392
  """
393
393
  Get a LocalRulesResource
394
394
 
395
- Uses Azure REST API version 2025-02-06-preview.
395
+ Uses Azure REST API version 2025-05-23.
396
396
 
397
- Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
397
+ Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-02-06-preview, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
398
398
 
399
399
 
400
400
  :param builtins.str local_rulestack_name: LocalRulestack resource name
@@ -167,9 +167,9 @@ def get_local_rule_counters(firewall_name: Optional[builtins.str] = None,
167
167
  """
168
168
  Get counters
169
169
 
170
- Uses Azure REST API version 2025-02-06-preview.
170
+ Uses Azure REST API version 2025-05-23.
171
171
 
172
- Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
172
+ Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-02-06-preview, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
173
173
 
174
174
 
175
175
  :param builtins.str local_rulestack_name: LocalRulestack resource name
@@ -203,9 +203,9 @@ def get_local_rule_counters_output(firewall_name: Optional[pulumi.Input[Optional
203
203
  """
204
204
  Get counters
205
205
 
206
- Uses Azure REST API version 2025-02-06-preview.
206
+ Uses Azure REST API version 2025-05-23.
207
207
 
208
- Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
208
+ Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-02-06-preview, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
209
209
 
210
210
 
211
211
  :param builtins.str local_rulestack_name: LocalRulestack resource name
@@ -249,9 +249,9 @@ def get_local_rulestack(local_rulestack_name: Optional[builtins.str] = None,
249
249
  """
250
250
  Get a LocalRulestackResource
251
251
 
252
- Uses Azure REST API version 2025-02-06-preview.
252
+ Uses Azure REST API version 2025-05-23.
253
253
 
254
- Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
254
+ Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-02-06-preview, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
255
255
 
256
256
 
257
257
  :param builtins.str local_rulestack_name: LocalRulestack resource name
@@ -287,9 +287,9 @@ def get_local_rulestack_output(local_rulestack_name: Optional[pulumi.Input[built
287
287
  """
288
288
  Get a LocalRulestackResource
289
289
 
290
- Uses Azure REST API version 2025-02-06-preview.
290
+ Uses Azure REST API version 2025-05-23.
291
291
 
292
- Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
292
+ Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-02-06-preview, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
293
293
 
294
294
 
295
295
  :param builtins.str local_rulestack_name: LocalRulestack resource name
@@ -80,9 +80,9 @@ def get_local_rulestack_change_log(local_rulestack_name: Optional[builtins.str]
80
80
  """
81
81
  Get changelog
82
82
 
83
- Uses Azure REST API version 2025-02-06-preview.
83
+ Uses Azure REST API version 2025-05-23.
84
84
 
85
- Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
85
+ Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-02-06-preview, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
86
86
 
87
87
 
88
88
  :param builtins.str local_rulestack_name: LocalRulestack resource name
@@ -104,9 +104,9 @@ def get_local_rulestack_change_log_output(local_rulestack_name: Optional[pulumi.
104
104
  """
105
105
  Get changelog
106
106
 
107
- Uses Azure REST API version 2025-02-06-preview.
107
+ Uses Azure REST API version 2025-05-23.
108
108
 
109
- Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
109
+ Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-02-06-preview, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
110
110
 
111
111
 
112
112
  :param builtins.str local_rulestack_name: LocalRulestack resource name