Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion sdk/resourcemanager/azure-resourcemanager-search/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@

--add-opens com.azure.core/com.azure.core.implementation.util=ALL-UNNAMED
</javaModulesSurefireArgLine>
<doclintMissingInclusion>-</doclintMissingInclusion>
</properties>

<developers>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,8 @@ private SearchServiceManager(HttpPipeline httpPipeline, AzureProfile profile) {
}

/**
* Gets the API entry point of the search management.
*
* @return the availability set resource management API entry point
*/
public SearchServices searchServices() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,15 @@
@Fluent
public interface QueryKey {
/**
* Gets the name of the query API key.
*
* @return the name of the query API key
*/
String name();

/**
* Gets the query key.
*
* @return the key value
*/
String key();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ public interface SearchService extends GroupableResource<SearchServiceManager, S
HostingMode hostingMode();

/**
* Gets the number of partitions used by the service.
*
* @return the number of partitions used by the service
*/
int partitionCount();
Expand All @@ -57,11 +59,15 @@ public interface SearchService extends GroupableResource<SearchServiceManager, S
ProvisioningState provisioningState();

/**
* Gets the number of replicas used by the service.
*
* @return the number of replicas used by the service
*/
int replicaCount();

/**
* Gets the SKU type of the service.
*
* @return the SKU type of the service
*/
Sku sku();
Expand All @@ -87,6 +93,8 @@ public interface SearchService extends GroupableResource<SearchServiceManager, S
SearchServiceStatus status();

/**
* Gets the details of the status.
*
* @return the details of the status.
*/
String statusDetails();
Expand Down
Loading