pulumi-azure-native 3.8.0a1755549300__py3-none-any.whl → 3.8.0a1756942349__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.
- pulumi_azure_native/config/__init__.pyi +11 -1
- pulumi_azure_native/config/vars.py +15 -1
- pulumi_azure_native/monitor/_enums.py +1 -1
- pulumi_azure_native/monitor/_inputs.py +23 -3
- pulumi_azure_native/monitor/get_scheduled_query_rule.py +6 -6
- pulumi_azure_native/monitor/outputs.py +16 -2
- pulumi_azure_native/monitor/scheduled_query_rule.py +12 -12
- pulumi_azure_native/provider.py +43 -3
- pulumi_azure_native/pulumi-plugin.json +1 -1
- pulumi_azure_native/redisenterprise/_enums.py +82 -5
- pulumi_azure_native/redisenterprise/_inputs.py +19 -19
- pulumi_azure_native/redisenterprise/access_policy_assignment.py +7 -7
- pulumi_azure_native/redisenterprise/database.py +56 -17
- pulumi_azure_native/redisenterprise/get_access_policy_assignment.py +6 -6
- pulumi_azure_native/redisenterprise/get_database.py +40 -12
- pulumi_azure_native/redisenterprise/get_private_endpoint_connection.py +8 -8
- pulumi_azure_native/redisenterprise/get_redis_enterprise.py +54 -12
- pulumi_azure_native/redisenterprise/list_database_keys.py +8 -8
- pulumi_azure_native/redisenterprise/outputs.py +125 -14
- pulumi_azure_native/redisenterprise/private_endpoint_connection.py +7 -7
- pulumi_azure_native/redisenterprise/redis_enterprise.py +63 -14
- pulumi_azure_native/search/_enums.py +121 -10
- pulumi_azure_native/search/_inputs.py +109 -69
- pulumi_azure_native/search/get_private_endpoint_connection.py +26 -12
- pulumi_azure_native/search/get_service.py +117 -19
- pulumi_azure_native/search/get_shared_private_link_resource.py +26 -12
- pulumi_azure_native/search/list_admin_key.py +9 -9
- pulumi_azure_native/search/list_query_key_by_search_service.py +10 -10
- pulumi_azure_native/search/outputs.py +303 -57
- pulumi_azure_native/search/private_endpoint_connection.py +26 -16
- pulumi_azure_native/search/service.py +179 -33
- pulumi_azure_native/search/shared_private_link_resource.py +26 -16
- {pulumi_azure_native-3.8.0a1755549300.dist-info → pulumi_azure_native-3.8.0a1756942349.dist-info}/METADATA +1 -1
- {pulumi_azure_native-3.8.0a1755549300.dist-info → pulumi_azure_native-3.8.0a1756942349.dist-info}/RECORD +36 -36
- {pulumi_azure_native-3.8.0a1755549300.dist-info → pulumi_azure_native-3.8.0a1756942349.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-3.8.0a1755549300.dist-info → pulumi_azure_native-3.8.0a1756942349.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
|
|
34
|
-
:param pulumi.Input[builtins.str] private_endpoint_connection_name: The name of the private endpoint connection to the
|
|
35
|
-
:param pulumi.Input['PrivateEndpointConnectionPropertiesArgs'] properties: Describes the properties of an existing private endpoint connection to the
|
|
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
|
|
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
|
|
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
|
|
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
|
|
105
|
+
Describes an existing private endpoint connection to the Azure AI Search service.
|
|
106
106
|
|
|
107
|
-
Uses Azure REST API version
|
|
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
|
|
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
|
|
114
|
-
:param pulumi.Input[Union['PrivateEndpointConnectionPropertiesArgs', 'PrivateEndpointConnectionPropertiesArgsDict']] properties: Describes the properties of an existing private endpoint connection to the
|
|
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
|
|
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
|
|
125
|
+
Describes an existing private endpoint connection to the Azure AI Search service.
|
|
126
126
|
|
|
127
|
-
Uses Azure REST API version
|
|
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
|
|
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
|
|
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]:
|