pulumi-azure-native 3.8.0a1755616596__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.

Files changed (31) hide show
  1. pulumi_azure_native/config/__init__.pyi +11 -1
  2. pulumi_azure_native/config/vars.py +15 -1
  3. pulumi_azure_native/provider.py +43 -3
  4. pulumi_azure_native/pulumi-plugin.json +1 -1
  5. pulumi_azure_native/redisenterprise/_enums.py +82 -5
  6. pulumi_azure_native/redisenterprise/_inputs.py +19 -19
  7. pulumi_azure_native/redisenterprise/access_policy_assignment.py +7 -7
  8. pulumi_azure_native/redisenterprise/database.py +56 -17
  9. pulumi_azure_native/redisenterprise/get_access_policy_assignment.py +6 -6
  10. pulumi_azure_native/redisenterprise/get_database.py +40 -12
  11. pulumi_azure_native/redisenterprise/get_private_endpoint_connection.py +8 -8
  12. pulumi_azure_native/redisenterprise/get_redis_enterprise.py +54 -12
  13. pulumi_azure_native/redisenterprise/list_database_keys.py +8 -8
  14. pulumi_azure_native/redisenterprise/outputs.py +125 -14
  15. pulumi_azure_native/redisenterprise/private_endpoint_connection.py +7 -7
  16. pulumi_azure_native/redisenterprise/redis_enterprise.py +63 -14
  17. pulumi_azure_native/search/_enums.py +121 -10
  18. pulumi_azure_native/search/_inputs.py +109 -69
  19. pulumi_azure_native/search/get_private_endpoint_connection.py +26 -12
  20. pulumi_azure_native/search/get_service.py +117 -19
  21. pulumi_azure_native/search/get_shared_private_link_resource.py +26 -12
  22. pulumi_azure_native/search/list_admin_key.py +9 -9
  23. pulumi_azure_native/search/list_query_key_by_search_service.py +10 -10
  24. pulumi_azure_native/search/outputs.py +303 -57
  25. pulumi_azure_native/search/private_endpoint_connection.py +26 -16
  26. pulumi_azure_native/search/service.py +179 -33
  27. pulumi_azure_native/search/shared_private_link_resource.py +26 -16
  28. {pulumi_azure_native-3.8.0a1755616596.dist-info → pulumi_azure_native-3.8.0a1756942349.dist-info}/METADATA +1 -1
  29. {pulumi_azure_native-3.8.0a1755616596.dist-info → pulumi_azure_native-3.8.0a1756942349.dist-info}/RECORD +31 -31
  30. {pulumi_azure_native-3.8.0a1755616596.dist-info → pulumi_azure_native-3.8.0a1756942349.dist-info}/WHEEL +0 -0
  31. {pulumi_azure_native-3.8.0a1755616596.dist-info → pulumi_azure_native-3.8.0a1756942349.dist-info}/top_level.txt +0 -0
@@ -26,21 +26,33 @@ __all__ = [
26
26
  @pulumi.output_type
27
27
  class GetServiceResult:
28
28
  """
29
- Describes a search service and its current state.
29
+ Describes an Azure AI Search service and its current state.
30
30
  """
31
- def __init__(__self__, auth_options=None, azure_api_version=None, disable_local_auth=None, encryption_with_cmk=None, hosting_mode=None, id=None, identity=None, location=None, name=None, network_rule_set=None, partition_count=None, private_endpoint_connections=None, provisioning_state=None, public_network_access=None, replica_count=None, semantic_search=None, shared_private_link_resources=None, sku=None, status=None, status_details=None, tags=None, type=None):
31
+ def __init__(__self__, auth_options=None, azure_api_version=None, compute_type=None, data_exfiltration_protections=None, disable_local_auth=None, e_tag=None, encryption_with_cmk=None, endpoint=None, hosting_mode=None, id=None, identity=None, location=None, name=None, network_rule_set=None, partition_count=None, private_endpoint_connections=None, provisioning_state=None, public_network_access=None, replica_count=None, semantic_search=None, service_upgraded_at=None, shared_private_link_resources=None, sku=None, status=None, status_details=None, system_data=None, tags=None, type=None, upgrade_available=None):
32
32
  if auth_options and not isinstance(auth_options, dict):
33
33
  raise TypeError("Expected argument 'auth_options' to be a dict")
34
34
  pulumi.set(__self__, "auth_options", auth_options)
35
35
  if azure_api_version and not isinstance(azure_api_version, str):
36
36
  raise TypeError("Expected argument 'azure_api_version' to be a str")
37
37
  pulumi.set(__self__, "azure_api_version", azure_api_version)
38
+ if compute_type and not isinstance(compute_type, str):
39
+ raise TypeError("Expected argument 'compute_type' to be a str")
40
+ pulumi.set(__self__, "compute_type", compute_type)
41
+ if data_exfiltration_protections and not isinstance(data_exfiltration_protections, list):
42
+ raise TypeError("Expected argument 'data_exfiltration_protections' to be a list")
43
+ pulumi.set(__self__, "data_exfiltration_protections", data_exfiltration_protections)
38
44
  if disable_local_auth and not isinstance(disable_local_auth, bool):
39
45
  raise TypeError("Expected argument 'disable_local_auth' to be a bool")
40
46
  pulumi.set(__self__, "disable_local_auth", disable_local_auth)
47
+ if e_tag and not isinstance(e_tag, str):
48
+ raise TypeError("Expected argument 'e_tag' to be a str")
49
+ pulumi.set(__self__, "e_tag", e_tag)
41
50
  if encryption_with_cmk and not isinstance(encryption_with_cmk, dict):
42
51
  raise TypeError("Expected argument 'encryption_with_cmk' to be a dict")
43
52
  pulumi.set(__self__, "encryption_with_cmk", encryption_with_cmk)
53
+ if endpoint and not isinstance(endpoint, str):
54
+ raise TypeError("Expected argument 'endpoint' to be a str")
55
+ pulumi.set(__self__, "endpoint", endpoint)
44
56
  if hosting_mode and not isinstance(hosting_mode, str):
45
57
  raise TypeError("Expected argument 'hosting_mode' to be a str")
46
58
  pulumi.set(__self__, "hosting_mode", hosting_mode)
@@ -77,6 +89,9 @@ class GetServiceResult:
77
89
  if semantic_search and not isinstance(semantic_search, str):
78
90
  raise TypeError("Expected argument 'semantic_search' to be a str")
79
91
  pulumi.set(__self__, "semantic_search", semantic_search)
92
+ if service_upgraded_at and not isinstance(service_upgraded_at, str):
93
+ raise TypeError("Expected argument 'service_upgraded_at' to be a str")
94
+ pulumi.set(__self__, "service_upgraded_at", service_upgraded_at)
80
95
  if shared_private_link_resources and not isinstance(shared_private_link_resources, list):
81
96
  raise TypeError("Expected argument 'shared_private_link_resources' to be a list")
82
97
  pulumi.set(__self__, "shared_private_link_resources", shared_private_link_resources)
@@ -89,12 +104,18 @@ class GetServiceResult:
89
104
  if status_details and not isinstance(status_details, str):
90
105
  raise TypeError("Expected argument 'status_details' to be a str")
91
106
  pulumi.set(__self__, "status_details", status_details)
107
+ if system_data and not isinstance(system_data, dict):
108
+ raise TypeError("Expected argument 'system_data' to be a dict")
109
+ pulumi.set(__self__, "system_data", system_data)
92
110
  if tags and not isinstance(tags, dict):
93
111
  raise TypeError("Expected argument 'tags' to be a dict")
94
112
  pulumi.set(__self__, "tags", tags)
95
113
  if type and not isinstance(type, str):
96
114
  raise TypeError("Expected argument 'type' to be a str")
97
115
  pulumi.set(__self__, "type", type)
116
+ if upgrade_available and not isinstance(upgrade_available, str):
117
+ raise TypeError("Expected argument 'upgrade_available' to be a str")
118
+ pulumi.set(__self__, "upgrade_available", upgrade_available)
98
119
 
99
120
  @property
100
121
  @pulumi.getter(name="authOptions")
@@ -112,6 +133,22 @@ class GetServiceResult:
112
133
  """
113
134
  return pulumi.get(self, "azure_api_version")
114
135
 
136
+ @property
137
+ @pulumi.getter(name="computeType")
138
+ def compute_type(self) -> Optional[builtins.str]:
139
+ """
140
+ Configure this property to support the search service using either the Default Compute or Azure Confidential Compute.
141
+ """
142
+ return pulumi.get(self, "compute_type")
143
+
144
+ @property
145
+ @pulumi.getter(name="dataExfiltrationProtections")
146
+ def data_exfiltration_protections(self) -> Optional[Sequence[builtins.str]]:
147
+ """
148
+ A list of data exfiltration scenarios that are explicitly disallowed for the search service. Currently, the only supported value is 'All' to disable all possible data export scenarios with more fine grained controls planned for the future.
149
+ """
150
+ return pulumi.get(self, "data_exfiltration_protections")
151
+
115
152
  @property
116
153
  @pulumi.getter(name="disableLocalAuth")
117
154
  def disable_local_auth(self) -> Optional[builtins.bool]:
@@ -120,6 +157,14 @@ class GetServiceResult:
120
157
  """
121
158
  return pulumi.get(self, "disable_local_auth")
122
159
 
160
+ @property
161
+ @pulumi.getter(name="eTag")
162
+ def e_tag(self) -> builtins.str:
163
+ """
164
+ A system generated property representing the service's etag that can be for optimistic concurrency control during updates.
165
+ """
166
+ return pulumi.get(self, "e_tag")
167
+
123
168
  @property
124
169
  @pulumi.getter(name="encryptionWithCmk")
125
170
  def encryption_with_cmk(self) -> Optional['outputs.EncryptionWithCmkResponse']:
@@ -128,6 +173,14 @@ class GetServiceResult:
128
173
  """
129
174
  return pulumi.get(self, "encryption_with_cmk")
130
175
 
176
+ @property
177
+ @pulumi.getter
178
+ def endpoint(self) -> Optional[builtins.str]:
179
+ """
180
+ The endpoint of the Azure AI Search service.
181
+ """
182
+ return pulumi.get(self, "endpoint")
183
+
131
184
  @property
132
185
  @pulumi.getter(name="hostingMode")
133
186
  def hosting_mode(self) -> Optional[builtins.str]:
@@ -140,7 +193,7 @@ class GetServiceResult:
140
193
  @pulumi.getter
141
194
  def id(self) -> builtins.str:
142
195
  """
143
- Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
196
+ Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
144
197
  """
145
198
  return pulumi.get(self, "id")
146
199
 
@@ -172,7 +225,7 @@ class GetServiceResult:
172
225
  @pulumi.getter(name="networkRuleSet")
173
226
  def network_rule_set(self) -> Optional['outputs.NetworkRuleSetResponse']:
174
227
  """
175
- Network-specific rules that determine how the search service may be reached.
228
+ Network specific rules that determine how the Azure AI Search service may be reached.
176
229
  """
177
230
  return pulumi.get(self, "network_rule_set")
178
231
 
@@ -188,7 +241,7 @@ class GetServiceResult:
188
241
  @pulumi.getter(name="privateEndpointConnections")
189
242
  def private_endpoint_connections(self) -> Sequence['outputs.PrivateEndpointConnectionResponse']:
190
243
  """
191
- The list of private endpoint connections to the search service.
244
+ The list of private endpoint connections to the Azure AI Search service.
192
245
  """
193
246
  return pulumi.get(self, "private_endpoint_connections")
194
247
 
@@ -196,7 +249,7 @@ class GetServiceResult:
196
249
  @pulumi.getter(name="provisioningState")
197
250
  def provisioning_state(self) -> builtins.str:
198
251
  """
199
- The state of the last provisioning operation performed on the search service. Provisioning is an intermediate state that occurs while service capacity is being established. After capacity is set up, provisioningState changes to either 'succeeded' or 'failed'. Client applications can poll provisioning status (the recommended polling interval is from 30 seconds to one minute) by using the Get Search Service operation to see when an operation is completed. If you are using the free service, this value tends to come back as 'succeeded' directly in the call to Create search service. This is because the free service uses capacity that is already set up.
252
+ The state of the last provisioning operation performed on the search service. Provisioning is an intermediate state that occurs while service capacity is being established. After capacity is set up, provisioningState changes to either 'Succeeded' or 'Failed'. Client applications can poll provisioning status (the recommended polling interval is from 30 seconds to one minute) by using the Get Search Service operation to see when an operation is completed. If you are using the free service, this value tends to come back as 'Succeeded' directly in the call to Create search service. This is because the free service uses capacity that is already set up.
200
253
  """
201
254
  return pulumi.get(self, "provisioning_state")
202
255
 
@@ -220,15 +273,23 @@ class GetServiceResult:
220
273
  @pulumi.getter(name="semanticSearch")
221
274
  def semantic_search(self) -> Optional[builtins.str]:
222
275
  """
223
- Sets options that control the availability of semantic search. This configuration is only possible for certain search SKUs in certain locations.
276
+ Sets options that control the availability of semantic search. This configuration is only possible for certain Azure AI Search SKUs in certain locations.
224
277
  """
225
278
  return pulumi.get(self, "semantic_search")
226
279
 
280
+ @property
281
+ @pulumi.getter(name="serviceUpgradedAt")
282
+ def service_upgraded_at(self) -> builtins.str:
283
+ """
284
+ The date and time the search service was last upgraded. This field will be null until the service gets upgraded for the first time.
285
+ """
286
+ return pulumi.get(self, "service_upgraded_at")
287
+
227
288
  @property
228
289
  @pulumi.getter(name="sharedPrivateLinkResources")
229
290
  def shared_private_link_resources(self) -> Sequence['outputs.SharedPrivateLinkResourceResponse']:
230
291
  """
231
- The list of shared private link resources managed by the search service.
292
+ The list of shared private link resources managed by the Azure AI Search service.
232
293
  """
233
294
  return pulumi.get(self, "shared_private_link_resources")
234
295
 
@@ -236,7 +297,7 @@ class GetServiceResult:
236
297
  @pulumi.getter
237
298
  def sku(self) -> Optional['outputs.SkuResponse']:
238
299
  """
239
- The SKU of the search service, which determines billing rate and capacity limits. This property is required when creating a new search service.
300
+ The SKU of the search service, which determines price tier and capacity limits. This property is required when creating a new search service.
240
301
  """
241
302
  return pulumi.get(self, "sku")
242
303
 
@@ -244,7 +305,7 @@ class GetServiceResult:
244
305
  @pulumi.getter
245
306
  def status(self) -> builtins.str:
246
307
  """
247
- The status of the search service. Possible values include: 'running': The search service is running and no provisioning operations are underway. 'provisioning': The search service is being provisioned or scaled up or down. 'deleting': The search service is being deleted. 'degraded': The search service is degraded. This can occur when the underlying search units are not healthy. The search service is most likely operational, but performance might be slow and some requests might be dropped. 'disabled': The search service is disabled. In this state, the service will reject all API requests. 'error': The search service is in an error state. If your service is in the degraded, disabled, or error states, Microsoft is actively investigating the underlying issue. Dedicated services in these states are still chargeable based on the number of search units provisioned.
308
+ The status of the search service. Possible values include: 'running': The search service is running and no provisioning operations are underway. 'provisioning': The search service is being provisioned or scaled up or down. 'deleting': The search service is being deleted. 'degraded': The search service is degraded. This can occur when the underlying search units are not healthy. The search service is most likely operational, but performance might be slow and some requests might be dropped. 'disabled': The search service is disabled. In this state, the service will reject all API requests. 'error': The search service is in an error state. 'stopped': The search service is in a subscription that's disabled. If your service is in the degraded, disabled, or error states, it means the Azure AI Search team is actively investigating the underlying issue. Dedicated services in these states are still chargeable based on the number of search units provisioned.
248
309
  """
249
310
  return pulumi.get(self, "status")
250
311
 
@@ -256,6 +317,14 @@ class GetServiceResult:
256
317
  """
257
318
  return pulumi.get(self, "status_details")
258
319
 
320
+ @property
321
+ @pulumi.getter(name="systemData")
322
+ def system_data(self) -> 'outputs.SystemDataResponse':
323
+ """
324
+ Azure Resource Manager metadata containing createdBy and modifiedBy information.
325
+ """
326
+ return pulumi.get(self, "system_data")
327
+
259
328
  @property
260
329
  @pulumi.getter
261
330
  def tags(self) -> Optional[Mapping[str, builtins.str]]:
@@ -272,6 +341,14 @@ class GetServiceResult:
272
341
  """
273
342
  return pulumi.get(self, "type")
274
343
 
344
+ @property
345
+ @pulumi.getter(name="upgradeAvailable")
346
+ def upgrade_available(self) -> Optional[builtins.str]:
347
+ """
348
+ Indicates if the search service has an upgrade available.
349
+ """
350
+ return pulumi.get(self, "upgrade_available")
351
+
275
352
 
276
353
  class AwaitableGetServiceResult(GetServiceResult):
277
354
  # pylint: disable=using-constant-test
@@ -281,8 +358,12 @@ class AwaitableGetServiceResult(GetServiceResult):
281
358
  return GetServiceResult(
282
359
  auth_options=self.auth_options,
283
360
  azure_api_version=self.azure_api_version,
361
+ compute_type=self.compute_type,
362
+ data_exfiltration_protections=self.data_exfiltration_protections,
284
363
  disable_local_auth=self.disable_local_auth,
364
+ e_tag=self.e_tag,
285
365
  encryption_with_cmk=self.encryption_with_cmk,
366
+ endpoint=self.endpoint,
286
367
  hosting_mode=self.hosting_mode,
287
368
  id=self.id,
288
369
  identity=self.identity,
@@ -295,12 +376,15 @@ class AwaitableGetServiceResult(GetServiceResult):
295
376
  public_network_access=self.public_network_access,
296
377
  replica_count=self.replica_count,
297
378
  semantic_search=self.semantic_search,
379
+ service_upgraded_at=self.service_upgraded_at,
298
380
  shared_private_link_resources=self.shared_private_link_resources,
299
381
  sku=self.sku,
300
382
  status=self.status,
301
383
  status_details=self.status_details,
384
+ system_data=self.system_data,
302
385
  tags=self.tags,
303
- type=self.type)
386
+ type=self.type,
387
+ upgrade_available=self.upgrade_available)
304
388
 
305
389
 
306
390
  def get_service(resource_group_name: Optional[builtins.str] = None,
@@ -309,13 +393,13 @@ def get_service(resource_group_name: Optional[builtins.str] = None,
309
393
  """
310
394
  Gets the search service with the given name in the given resource group.
311
395
 
312
- Uses Azure REST API version 2023-11-01.
396
+ Uses Azure REST API version 2025-05-01.
313
397
 
314
- 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.
398
+ 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.
315
399
 
316
400
 
317
401
  :param 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.
318
- :param builtins.str search_service_name: The name of the search service associated with the specified resource group.
402
+ :param builtins.str search_service_name: The name of the Azure AI Search service associated with the specified resource group.
319
403
  """
320
404
  __args__ = dict()
321
405
  __args__['resourceGroupName'] = resource_group_name
@@ -326,8 +410,12 @@ def get_service(resource_group_name: Optional[builtins.str] = None,
326
410
  return AwaitableGetServiceResult(
327
411
  auth_options=pulumi.get(__ret__, 'auth_options'),
328
412
  azure_api_version=pulumi.get(__ret__, 'azure_api_version'),
413
+ compute_type=pulumi.get(__ret__, 'compute_type'),
414
+ data_exfiltration_protections=pulumi.get(__ret__, 'data_exfiltration_protections'),
329
415
  disable_local_auth=pulumi.get(__ret__, 'disable_local_auth'),
416
+ e_tag=pulumi.get(__ret__, 'e_tag'),
330
417
  encryption_with_cmk=pulumi.get(__ret__, 'encryption_with_cmk'),
418
+ endpoint=pulumi.get(__ret__, 'endpoint'),
331
419
  hosting_mode=pulumi.get(__ret__, 'hosting_mode'),
332
420
  id=pulumi.get(__ret__, 'id'),
333
421
  identity=pulumi.get(__ret__, 'identity'),
@@ -340,25 +428,28 @@ def get_service(resource_group_name: Optional[builtins.str] = None,
340
428
  public_network_access=pulumi.get(__ret__, 'public_network_access'),
341
429
  replica_count=pulumi.get(__ret__, 'replica_count'),
342
430
  semantic_search=pulumi.get(__ret__, 'semantic_search'),
431
+ service_upgraded_at=pulumi.get(__ret__, 'service_upgraded_at'),
343
432
  shared_private_link_resources=pulumi.get(__ret__, 'shared_private_link_resources'),
344
433
  sku=pulumi.get(__ret__, 'sku'),
345
434
  status=pulumi.get(__ret__, 'status'),
346
435
  status_details=pulumi.get(__ret__, 'status_details'),
436
+ system_data=pulumi.get(__ret__, 'system_data'),
347
437
  tags=pulumi.get(__ret__, 'tags'),
348
- type=pulumi.get(__ret__, 'type'))
438
+ type=pulumi.get(__ret__, 'type'),
439
+ upgrade_available=pulumi.get(__ret__, 'upgrade_available'))
349
440
  def get_service_output(resource_group_name: Optional[pulumi.Input[builtins.str]] = None,
350
441
  search_service_name: Optional[pulumi.Input[builtins.str]] = None,
351
442
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetServiceResult]:
352
443
  """
353
444
  Gets the search service with the given name in the given resource group.
354
445
 
355
- Uses Azure REST API version 2023-11-01.
446
+ Uses Azure REST API version 2025-05-01.
356
447
 
357
- 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.
448
+ 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.
358
449
 
359
450
 
360
451
  :param 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.
361
- :param builtins.str search_service_name: The name of the search service associated with the specified resource group.
452
+ :param builtins.str search_service_name: The name of the Azure AI Search service associated with the specified resource group.
362
453
  """
363
454
  __args__ = dict()
364
455
  __args__['resourceGroupName'] = resource_group_name
@@ -368,8 +459,12 @@ def get_service_output(resource_group_name: Optional[pulumi.Input[builtins.str]]
368
459
  return __ret__.apply(lambda __response__: GetServiceResult(
369
460
  auth_options=pulumi.get(__response__, 'auth_options'),
370
461
  azure_api_version=pulumi.get(__response__, 'azure_api_version'),
462
+ compute_type=pulumi.get(__response__, 'compute_type'),
463
+ data_exfiltration_protections=pulumi.get(__response__, 'data_exfiltration_protections'),
371
464
  disable_local_auth=pulumi.get(__response__, 'disable_local_auth'),
465
+ e_tag=pulumi.get(__response__, 'e_tag'),
372
466
  encryption_with_cmk=pulumi.get(__response__, 'encryption_with_cmk'),
467
+ endpoint=pulumi.get(__response__, 'endpoint'),
373
468
  hosting_mode=pulumi.get(__response__, 'hosting_mode'),
374
469
  id=pulumi.get(__response__, 'id'),
375
470
  identity=pulumi.get(__response__, 'identity'),
@@ -382,9 +477,12 @@ def get_service_output(resource_group_name: Optional[pulumi.Input[builtins.str]]
382
477
  public_network_access=pulumi.get(__response__, 'public_network_access'),
383
478
  replica_count=pulumi.get(__response__, 'replica_count'),
384
479
  semantic_search=pulumi.get(__response__, 'semantic_search'),
480
+ service_upgraded_at=pulumi.get(__response__, 'service_upgraded_at'),
385
481
  shared_private_link_resources=pulumi.get(__response__, 'shared_private_link_resources'),
386
482
  sku=pulumi.get(__response__, 'sku'),
387
483
  status=pulumi.get(__response__, 'status'),
388
484
  status_details=pulumi.get(__response__, 'status_details'),
485
+ system_data=pulumi.get(__response__, 'system_data'),
389
486
  tags=pulumi.get(__response__, 'tags'),
390
- type=pulumi.get(__response__, 'type')))
487
+ type=pulumi.get(__response__, 'type'),
488
+ upgrade_available=pulumi.get(__response__, 'upgrade_available')))
@@ -26,9 +26,9 @@ __all__ = [
26
26
  @pulumi.output_type
27
27
  class GetSharedPrivateLinkResourceResult:
28
28
  """
29
- Describes a Shared Private Link Resource managed by the search service.
29
+ Describes a shared private link resource managed by the Azure AI Search service.
30
30
  """
31
- def __init__(__self__, azure_api_version=None, id=None, name=None, properties=None, type=None):
31
+ def __init__(__self__, azure_api_version=None, id=None, name=None, properties=None, system_data=None, type=None):
32
32
  if azure_api_version and not isinstance(azure_api_version, str):
33
33
  raise TypeError("Expected argument 'azure_api_version' to be a str")
34
34
  pulumi.set(__self__, "azure_api_version", azure_api_version)
@@ -41,6 +41,9 @@ class GetSharedPrivateLinkResourceResult:
41
41
  if properties and not isinstance(properties, dict):
42
42
  raise TypeError("Expected argument 'properties' to be a dict")
43
43
  pulumi.set(__self__, "properties", properties)
44
+ if system_data and not isinstance(system_data, dict):
45
+ raise TypeError("Expected argument 'system_data' to be a dict")
46
+ pulumi.set(__self__, "system_data", system_data)
44
47
  if type and not isinstance(type, str):
45
48
  raise TypeError("Expected argument 'type' to be a str")
46
49
  pulumi.set(__self__, "type", type)
@@ -57,7 +60,7 @@ class GetSharedPrivateLinkResourceResult:
57
60
  @pulumi.getter
58
61
  def id(self) -> builtins.str:
59
62
  """
60
- Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
63
+ Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
61
64
  """
62
65
  return pulumi.get(self, "id")
63
66
 
@@ -73,10 +76,18 @@ class GetSharedPrivateLinkResourceResult:
73
76
  @pulumi.getter
74
77
  def properties(self) -> 'outputs.SharedPrivateLinkResourcePropertiesResponse':
75
78
  """
76
- Describes the properties of a Shared Private Link Resource managed by the search service.
79
+ Describes the properties of a shared private link resource managed by the Azure AI Search service.
77
80
  """
78
81
  return pulumi.get(self, "properties")
79
82
 
83
+ @property
84
+ @pulumi.getter(name="systemData")
85
+ def system_data(self) -> 'outputs.SystemDataResponse':
86
+ """
87
+ Azure Resource Manager metadata containing createdBy and modifiedBy information.
88
+ """
89
+ return pulumi.get(self, "system_data")
90
+
80
91
  @property
81
92
  @pulumi.getter
82
93
  def type(self) -> builtins.str:
@@ -96,6 +107,7 @@ class AwaitableGetSharedPrivateLinkResourceResult(GetSharedPrivateLinkResourceRe
96
107
  id=self.id,
97
108
  name=self.name,
98
109
  properties=self.properties,
110
+ system_data=self.system_data,
99
111
  type=self.type)
100
112
 
101
113
 
@@ -106,14 +118,14 @@ def get_shared_private_link_resource(resource_group_name: Optional[builtins.str]
106
118
  """
107
119
  Gets the details of the shared private link resource managed by the search service in the given resource group.
108
120
 
109
- Uses Azure REST API version 2023-11-01.
121
+ Uses Azure REST API version 2025-05-01.
110
122
 
111
- 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.
123
+ 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.
112
124
 
113
125
 
114
126
  :param 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.
115
- :param builtins.str search_service_name: The name of the search service associated with the specified resource group.
116
- :param builtins.str shared_private_link_resource_name: The name of the shared private link resource managed by the search service within the specified resource group.
127
+ :param builtins.str search_service_name: The name of the Azure AI Search service associated with the specified resource group.
128
+ :param builtins.str shared_private_link_resource_name: The name of the shared private link resource managed by the Azure AI Search service within the specified resource group.
117
129
  """
118
130
  __args__ = dict()
119
131
  __args__['resourceGroupName'] = resource_group_name
@@ -127,6 +139,7 @@ def get_shared_private_link_resource(resource_group_name: Optional[builtins.str]
127
139
  id=pulumi.get(__ret__, 'id'),
128
140
  name=pulumi.get(__ret__, 'name'),
129
141
  properties=pulumi.get(__ret__, 'properties'),
142
+ system_data=pulumi.get(__ret__, 'system_data'),
130
143
  type=pulumi.get(__ret__, 'type'))
131
144
  def get_shared_private_link_resource_output(resource_group_name: Optional[pulumi.Input[builtins.str]] = None,
132
145
  search_service_name: Optional[pulumi.Input[builtins.str]] = None,
@@ -135,14 +148,14 @@ def get_shared_private_link_resource_output(resource_group_name: Optional[pulumi
135
148
  """
136
149
  Gets the details of the shared private link resource managed by the search service in the given resource group.
137
150
 
138
- Uses Azure REST API version 2023-11-01.
151
+ Uses Azure REST API version 2025-05-01.
139
152
 
140
- 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.
153
+ 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.
141
154
 
142
155
 
143
156
  :param 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.
144
- :param builtins.str search_service_name: The name of the search service associated with the specified resource group.
145
- :param builtins.str shared_private_link_resource_name: The name of the shared private link resource managed by the search service within the specified resource group.
157
+ :param builtins.str search_service_name: The name of the Azure AI Search service associated with the specified resource group.
158
+ :param builtins.str shared_private_link_resource_name: The name of the shared private link resource managed by the Azure AI Search service within the specified resource group.
146
159
  """
147
160
  __args__ = dict()
148
161
  __args__['resourceGroupName'] = resource_group_name
@@ -155,4 +168,5 @@ def get_shared_private_link_resource_output(resource_group_name: Optional[pulumi
155
168
  id=pulumi.get(__response__, 'id'),
156
169
  name=pulumi.get(__response__, 'name'),
157
170
  properties=pulumi.get(__response__, 'properties'),
171
+ system_data=pulumi.get(__response__, 'system_data'),
158
172
  type=pulumi.get(__response__, 'type')))
@@ -25,7 +25,7 @@ __all__ = [
25
25
  @pulumi.output_type
26
26
  class ListAdminKeyResult:
27
27
  """
28
- Response containing the primary and secondary admin API keys for a given search service.
28
+ Response containing the primary and secondary admin API keys for a given Azure AI Search service.
29
29
  """
30
30
  def __init__(__self__, primary_key=None, secondary_key=None):
31
31
  if primary_key and not isinstance(primary_key, str):
@@ -66,15 +66,15 @@ def list_admin_key(resource_group_name: Optional[builtins.str] = None,
66
66
  search_service_name: Optional[builtins.str] = None,
67
67
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableListAdminKeyResult:
68
68
  """
69
- Gets the primary and secondary admin API keys for the specified search service.
69
+ Gets the primary and secondary admin API keys for the specified Azure AI Search service.
70
70
 
71
- Uses Azure REST API version 2023-11-01.
71
+ Uses Azure REST API version 2025-05-01.
72
72
 
73
- 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.
73
+ 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.
74
74
 
75
75
 
76
76
  :param 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.
77
- :param builtins.str search_service_name: The name of the search service associated with the specified resource group.
77
+ :param builtins.str search_service_name: The name of the Azure AI Search service associated with the specified resource group.
78
78
  """
79
79
  __args__ = dict()
80
80
  __args__['resourceGroupName'] = resource_group_name
@@ -89,15 +89,15 @@ def list_admin_key_output(resource_group_name: Optional[pulumi.Input[builtins.st
89
89
  search_service_name: Optional[pulumi.Input[builtins.str]] = None,
90
90
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[ListAdminKeyResult]:
91
91
  """
92
- Gets the primary and secondary admin API keys for the specified search service.
92
+ Gets the primary and secondary admin API keys for the specified Azure AI Search service.
93
93
 
94
- Uses Azure REST API version 2023-11-01.
94
+ Uses Azure REST API version 2025-05-01.
95
95
 
96
- 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.
96
+ 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.
97
97
 
98
98
 
99
99
  :param 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.
100
- :param builtins.str search_service_name: The name of the search service associated with the specified resource group.
100
+ :param builtins.str search_service_name: The name of the Azure AI Search service associated with the specified resource group.
101
101
  """
102
102
  __args__ = dict()
103
103
  __args__['resourceGroupName'] = resource_group_name
@@ -26,7 +26,7 @@ __all__ = [
26
26
  @pulumi.output_type
27
27
  class ListQueryKeyBySearchServiceResult:
28
28
  """
29
- Response containing the query API keys for a given search service.
29
+ Response containing the query API keys for a given Azure AI Search service.
30
30
  """
31
31
  def __init__(__self__, next_link=None, value=None):
32
32
  if next_link and not isinstance(next_link, str):
@@ -48,7 +48,7 @@ class ListQueryKeyBySearchServiceResult:
48
48
  @pulumi.getter
49
49
  def value(self) -> Sequence['outputs.QueryKeyResponse']:
50
50
  """
51
- The query keys for the search service.
51
+ The query keys for the Azure AI Search service.
52
52
  """
53
53
  return pulumi.get(self, "value")
54
54
 
@@ -67,15 +67,15 @@ def list_query_key_by_search_service(resource_group_name: Optional[builtins.str]
67
67
  search_service_name: Optional[builtins.str] = None,
68
68
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableListQueryKeyBySearchServiceResult:
69
69
  """
70
- Returns the list of query API keys for the given search service.
70
+ Returns the list of query API keys for the given Azure AI Search service.
71
71
 
72
- Uses Azure REST API version 2023-11-01.
72
+ Uses Azure REST API version 2025-05-01.
73
73
 
74
- 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.
74
+ 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.
75
75
 
76
76
 
77
77
  :param 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.
78
- :param builtins.str search_service_name: The name of the search service associated with the specified resource group.
78
+ :param builtins.str search_service_name: The name of the Azure AI Search service associated with the specified resource group.
79
79
  """
80
80
  __args__ = dict()
81
81
  __args__['resourceGroupName'] = resource_group_name
@@ -90,15 +90,15 @@ def list_query_key_by_search_service_output(resource_group_name: Optional[pulumi
90
90
  search_service_name: Optional[pulumi.Input[builtins.str]] = None,
91
91
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[ListQueryKeyBySearchServiceResult]:
92
92
  """
93
- Returns the list of query API keys for the given search service.
93
+ Returns the list of query API keys for the given Azure AI Search service.
94
94
 
95
- Uses Azure REST API version 2023-11-01.
95
+ Uses Azure REST API version 2025-05-01.
96
96
 
97
- 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.
97
+ 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.
98
98
 
99
99
 
100
100
  :param 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.
101
- :param builtins.str search_service_name: The name of the search service associated with the specified resource group.
101
+ :param builtins.str search_service_name: The name of the Azure AI Search service associated with the specified resource group.
102
102
  """
103
103
  __args__ = dict()
104
104
  __args__['resourceGroupName'] = resource_group_name