Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fix ci analyze exception and get analyze record
  • Loading branch information
v-hongli1 committed Dec 26, 2024
commit f6b631815356ed92f55ab57d7f06b327b5f18d4d
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