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
@@ -30,9 +30,9 @@ class PrivateEndpointConnectionArgs:
30
30
  """
31
31
  The set of arguments for constructing a PrivateEndpointConnection resource.
32
32
  :param pulumi.Input[builtins.str] resource_group_name: The name of the resource group within the current subscription. You can obtain this value from the Azure Resource Manager API or the portal.
33
- :param pulumi.Input[builtins.str] search_service_name: The name of the search service associated with the specified resource group.
34
- :param pulumi.Input[builtins.str] private_endpoint_connection_name: The name of the private endpoint connection to the search service with the specified resource group.
35
- :param pulumi.Input['PrivateEndpointConnectionPropertiesArgs'] properties: Describes the properties of an existing private endpoint connection to the search service.
33
+ :param pulumi.Input[builtins.str] search_service_name: The name of the Azure AI Search service associated with the specified resource group.
34
+ :param pulumi.Input[builtins.str] private_endpoint_connection_name: The name of the private endpoint connection to the Azure AI Search service with the specified resource group.
35
+ :param pulumi.Input['PrivateEndpointConnectionPropertiesArgs'] properties: Describes the properties of an existing private endpoint connection to the Azure AI Search service.
36
36
  """
37
37
  pulumi.set(__self__, "resource_group_name", resource_group_name)
38
38
  pulumi.set(__self__, "search_service_name", search_service_name)
@@ -57,7 +57,7 @@ class PrivateEndpointConnectionArgs:
57
57
  @pulumi.getter(name="searchServiceName")
58
58
  def search_service_name(self) -> pulumi.Input[builtins.str]:
59
59
  """
60
- The name of the search service associated with the specified resource group.
60
+ The name of the Azure AI Search service associated with the specified resource group.
61
61
  """
62
62
  return pulumi.get(self, "search_service_name")
63
63
 
@@ -69,7 +69,7 @@ class PrivateEndpointConnectionArgs:
69
69
  @pulumi.getter(name="privateEndpointConnectionName")
70
70
  def private_endpoint_connection_name(self) -> Optional[pulumi.Input[builtins.str]]:
71
71
  """
72
- The name of the private endpoint connection to the search service with the specified resource group.
72
+ The name of the private endpoint connection to the Azure AI Search service with the specified resource group.
73
73
  """
74
74
  return pulumi.get(self, "private_endpoint_connection_name")
75
75
 
@@ -81,7 +81,7 @@ class PrivateEndpointConnectionArgs:
81
81
  @pulumi.getter
82
82
  def properties(self) -> Optional[pulumi.Input['PrivateEndpointConnectionPropertiesArgs']]:
83
83
  """
84
- Describes the properties of an existing private endpoint connection to the search service.
84
+ Describes the properties of an existing private endpoint connection to the Azure AI Search service.
85
85
  """
86
86
  return pulumi.get(self, "properties")
87
87
 
@@ -102,18 +102,18 @@ class PrivateEndpointConnection(pulumi.CustomResource):
102
102
  search_service_name: Optional[pulumi.Input[builtins.str]] = None,
103
103
  __props__=None):
104
104
  """
105
- Describes an existing private endpoint connection to the search service.
105
+ Describes an existing private endpoint connection to the Azure AI Search service.
106
106
 
107
- Uses Azure REST API version 2023-11-01. In version 2.x of the Azure Native provider, it used API version 2022-09-01.
107
+ Uses Azure REST API version 2025-05-01. In version 2.x of the Azure Native provider, it used API version 2022-09-01.
108
108
 
109
- Other available API versions: 2022-09-01, 2024-03-01-preview, 2024-06-01-preview, 2025-02-01-preview, 2025-05-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native search [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
109
+ Other available API versions: 2022-09-01, 2023-11-01, 2024-03-01-preview, 2024-06-01-preview, 2025-02-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native search [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
110
110
 
111
111
  :param str resource_name: The name of the resource.
112
112
  :param pulumi.ResourceOptions opts: Options for the resource.
113
- :param pulumi.Input[builtins.str] private_endpoint_connection_name: The name of the private endpoint connection to the search service with the specified resource group.
114
- :param pulumi.Input[Union['PrivateEndpointConnectionPropertiesArgs', 'PrivateEndpointConnectionPropertiesArgsDict']] properties: Describes the properties of an existing private endpoint connection to the search service.
113
+ :param pulumi.Input[builtins.str] private_endpoint_connection_name: The name of the private endpoint connection to the Azure AI Search service with the specified resource group.
114
+ :param pulumi.Input[Union['PrivateEndpointConnectionPropertiesArgs', 'PrivateEndpointConnectionPropertiesArgsDict']] properties: Describes the properties of an existing private endpoint connection to the Azure AI Search service.
115
115
  :param pulumi.Input[builtins.str] resource_group_name: The name of the resource group within the current subscription. You can obtain this value from the Azure Resource Manager API or the portal.
116
- :param pulumi.Input[builtins.str] search_service_name: The name of the search service associated with the specified resource group.
116
+ :param pulumi.Input[builtins.str] search_service_name: The name of the Azure AI Search service associated with the specified resource group.
117
117
  """
118
118
  ...
119
119
  @overload
@@ -122,11 +122,11 @@ class PrivateEndpointConnection(pulumi.CustomResource):
122
122
  args: PrivateEndpointConnectionArgs,
123
123
  opts: Optional[pulumi.ResourceOptions] = None):
124
124
  """
125
- Describes an existing private endpoint connection to the search service.
125
+ Describes an existing private endpoint connection to the Azure AI Search service.
126
126
 
127
- Uses Azure REST API version 2023-11-01. In version 2.x of the Azure Native provider, it used API version 2022-09-01.
127
+ Uses Azure REST API version 2025-05-01. In version 2.x of the Azure Native provider, it used API version 2022-09-01.
128
128
 
129
- Other available API versions: 2022-09-01, 2024-03-01-preview, 2024-06-01-preview, 2025-02-01-preview, 2025-05-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native search [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
129
+ Other available API versions: 2022-09-01, 2023-11-01, 2024-03-01-preview, 2024-06-01-preview, 2025-02-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native search [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
130
130
 
131
131
  :param str resource_name: The name of the resource.
132
132
  :param PrivateEndpointConnectionArgs args: The arguments to use to populate this resource's properties.
@@ -166,6 +166,7 @@ class PrivateEndpointConnection(pulumi.CustomResource):
166
166
  __props__.__dict__["search_service_name"] = search_service_name
167
167
  __props__.__dict__["azure_api_version"] = None
168
168
  __props__.__dict__["name"] = None
169
+ __props__.__dict__["system_data"] = None
169
170
  __props__.__dict__["type"] = None
170
171
  alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:search/v20191001preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:search/v20200313:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:search/v20200801:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:search/v20200801preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:search/v20210401preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:search/v20220901:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:search/v20231101:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:search/v20240301preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:search/v20240601preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:search/v20250201preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:search/v20250501:PrivateEndpointConnection")])
171
172
  opts = pulumi.ResourceOptions.merge(opts, alias_opts)
@@ -194,6 +195,7 @@ class PrivateEndpointConnection(pulumi.CustomResource):
194
195
  __props__.__dict__["azure_api_version"] = None
195
196
  __props__.__dict__["name"] = None
196
197
  __props__.__dict__["properties"] = None
198
+ __props__.__dict__["system_data"] = None
197
199
  __props__.__dict__["type"] = None
198
200
  return PrivateEndpointConnection(resource_name, opts=opts, __props__=__props__)
199
201
 
@@ -217,10 +219,18 @@ class PrivateEndpointConnection(pulumi.CustomResource):
217
219
  @pulumi.getter
218
220
  def properties(self) -> pulumi.Output['outputs.PrivateEndpointConnectionPropertiesResponse']:
219
221
  """
220
- Describes the properties of an existing private endpoint connection to the search service.
222
+ Describes the properties of an existing private endpoint connection to the Azure AI Search service.
221
223
  """
222
224
  return pulumi.get(self, "properties")
223
225
 
226
+ @property
227
+ @pulumi.getter(name="systemData")
228
+ def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
229
+ """
230
+ Azure Resource Manager metadata containing createdBy and modifiedBy information.
231
+ """
232
+ return pulumi.get(self, "system_data")
233
+
224
234
  @property
225
235
  @pulumi.getter
226
236
  def type(self) -> pulumi.Output[builtins.str]: