SharedPrivateLinkResourcesOperations Class
Warning
DO NOT instantiate this class directly.
Instead, you should access the following operations through
<xref:shared_private_link_resources> attribute.
- Inheritance
-
builtins.objectSharedPrivateLinkResourcesOperations
Constructor
SharedPrivateLinkResourcesOperations(*args, **kwargs)
Methods
begin_create_or_update |
Initiates the creation or update of a shared private link resource managed by the search service in the given resource group. |
begin_delete |
Initiates the deletion of the shared private link resource from the search service. |
get |
Gets the details of the shared private link resource managed by the search service in the given resource group. |
list_by_service |
Gets a list of all shared private link resources managed by the given service. |
begin_create_or_update
Initiates the creation or update of a shared private link resource managed by the search service in the given resource group.
async begin_create_or_update(resource_group_name: str, search_service_name: str, shared_private_link_resource_name: str, shared_private_link_resource: _models.SharedPrivateLinkResource, search_management_request_options: _models.SearchManagementRequestOptions | None = None, *, content_type: str = 'application/json', **kwargs: Any) -> AsyncLROPoller[_models.SharedPrivateLinkResource]
Parameters
Name | Description |
---|---|
resource_group_name
Required
|
The name of the resource group within the current subscription. You can obtain this value from the Azure Resource Manager API or the portal. Required. |
search_service_name
Required
|
The name of the Azure Cognitive Search service associated with the specified resource group. Required. |
shared_private_link_resource_name
Required
|
The name of the shared private link resource managed by the Azure Cognitive Search service within the specified resource group. Required. |
shared_private_link_resource
Required
|
The definition of the shared private link resource to create or update. Is either a SharedPrivateLinkResource type or a IO type. Required. |
search_management_request_options
Required
|
Parameter group. Default value is None. |
Keyword-Only Parameters
Name | Description |
---|---|
content_type
|
Body Parameter content-type. Known values are: 'application/json'. Default value is None. |
cls
|
A custom type or function that will be passed the direct response |
continuation_token
|
A continuation token to restart a poller from a saved state. |
polling
|
By default, your polling method will be AsyncARMPolling. Pass in False for this operation to not poll, or pass in your own initialized polling object for a personal polling strategy. |
polling_interval
|
Default waiting time between two polls for LRO operations if no Retry-After header is present. |
Returns
Type | Description |
---|---|
An instance of AsyncLROPoller that returns either SharedPrivateLinkResource or the result of cls(response) |
Exceptions
Type | Description |
---|---|
- See also
begin_delete
Initiates the deletion of the shared private link resource from the search service.
async begin_delete(resource_group_name: str, search_service_name: str, shared_private_link_resource_name: str, search_management_request_options: SearchManagementRequestOptions | None = None, **kwargs: Any) -> AsyncLROPoller[None]
Parameters
Name | Description |
---|---|
resource_group_name
Required
|
The name of the resource group within the current subscription. You can obtain this value from the Azure Resource Manager API or the portal. Required. |
search_service_name
Required
|
The name of the Azure Cognitive Search service associated with the specified resource group. Required. |
shared_private_link_resource_name
Required
|
The name of the shared private link resource managed by the Azure Cognitive Search service within the specified resource group. Required. |
search_management_request_options
Required
|
Parameter group. Default value is None. |
Keyword-Only Parameters
Name | Description |
---|---|
cls
|
A custom type or function that will be passed the direct response |
continuation_token
|
A continuation token to restart a poller from a saved state. |
polling
|
By default, your polling method will be AsyncARMPolling. Pass in False for this operation to not poll, or pass in your own initialized polling object for a personal polling strategy. |
polling_interval
|
Default waiting time between two polls for LRO operations if no Retry-After header is present. |
Returns
Type | Description |
---|---|
An instance of AsyncLROPoller that returns either None or the result of cls(response) |
Exceptions
Type | Description |
---|---|
- See also
get
Gets the details of the shared private link resource managed by the search service in the given resource group.
async get(resource_group_name: str, search_service_name: str, shared_private_link_resource_name: str, search_management_request_options: SearchManagementRequestOptions | None = None, **kwargs: Any) -> SharedPrivateLinkResource
Parameters
Name | Description |
---|---|
resource_group_name
Required
|
The name of the resource group within the current subscription. You can obtain this value from the Azure Resource Manager API or the portal. Required. |
search_service_name
Required
|
The name of the Azure Cognitive Search service associated with the specified resource group. Required. |
shared_private_link_resource_name
Required
|
The name of the shared private link resource managed by the Azure Cognitive Search service within the specified resource group. Required. |
search_management_request_options
Required
|
Parameter group. Default value is None. |
Keyword-Only Parameters
Name | Description |
---|---|
cls
|
A custom type or function that will be passed the direct response |
Returns
Type | Description |
---|---|
SharedPrivateLinkResource or the result of cls(response) |
Exceptions
Type | Description |
---|---|
- See also
list_by_service
Gets a list of all shared private link resources managed by the given service.
list_by_service(resource_group_name: str, search_service_name: str, search_management_request_options: SearchManagementRequestOptions | None = None, **kwargs: Any) -> AsyncIterable[SharedPrivateLinkResource]
Parameters
Name | Description |
---|---|
resource_group_name
Required
|
The name of the resource group within the current subscription. You can obtain this value from the Azure Resource Manager API or the portal. Required. |
search_service_name
Required
|
The name of the Azure Cognitive Search service associated with the specified resource group. Required. |
search_management_request_options
Required
|
Parameter group. Default value is None. |
Keyword-Only Parameters
Name | Description |
---|---|
cls
|
A custom type or function that will be passed the direct response |
Returns
Type | Description |
---|---|
An iterator like instance of either SharedPrivateLinkResource or the result of cls(response) |
Exceptions
Type | Description |
---|---|
- See also
Attributes
models
models = <module 'azure.mgmt.search.models' from 'C:\\hostedtoolcache\\windows\\Python\\3.11.9\\x64\\Lib\\site-packages\\azure\\mgmt\\search\\models\\__init__.py'>
Azure SDK for Python