Sdílet prostřednictvím


ServicesOperationsExtensions.CreateOrUpdateAsync Method

Definition

Creates or updates a search service in the given resource group. If the search service already exists, all properties will be updated with the given values. https://aka.ms/search-manage

public static System.Threading.Tasks.Task<Microsoft.Azure.Management.Search.Models.SearchService> CreateOrUpdateAsync (this Microsoft.Azure.Management.Search.IServicesOperations operations, string resourceGroupName, string searchServiceName, Microsoft.Azure.Management.Search.Models.SearchService service, Microsoft.Azure.Management.Search.Models.SearchManagementRequestOptions searchManagementRequestOptions = default, System.Threading.CancellationToken cancellationToken = default);
static member CreateOrUpdateAsync : Microsoft.Azure.Management.Search.IServicesOperations * string * string * Microsoft.Azure.Management.Search.Models.SearchService * Microsoft.Azure.Management.Search.Models.SearchManagementRequestOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Management.Search.Models.SearchService>
<Extension()>
Public Function CreateOrUpdateAsync (operations As IServicesOperations, resourceGroupName As String, searchServiceName As String, service As SearchService, Optional searchManagementRequestOptions As SearchManagementRequestOptions = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of SearchService)

Parameters

operations
IServicesOperations

The operations group for this extension method.

resourceGroupName
String

The name of the resource group within the current subscription. You can obtain this value from the Azure Resource Manager API or the portal.

searchServiceName
String

The name of the Azure Cognitive Search service to create or update. Search service names must only contain lowercase letters, digits or dashes, cannot use dash as the first two or last one characters, cannot contain consecutive dashes, and must be between 2 and 60 characters in length. Search service names must be globally unique since they are part of the service URI (https://<name>.search.windows.net). You cannot change the service name after the service is created.

service
SearchService

The definition of the search service to create or update.

searchManagementRequestOptions
SearchManagementRequestOptions

Additional parameters for the operation

cancellationToken
CancellationToken

The cancellation token.

Returns

Applies to