Skip to content

Commit

Permalink
Update Javadoc of premium SDK for azure-resourcemanager-search (#43633)
Browse files Browse the repository at this point in the history
  • Loading branch information
v-hongli1 authored Jan 8, 2025
1 parent ae72729 commit 956c27a
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 1 deletion.
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

0 comments on commit 956c27a

Please sign in to comment.