com.azure.resourcemanager.search.models.AdminKeys Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-search Show documentation
Show all versions of azure-resourcemanager-search Show documentation
This package contains Microsoft Azure Cognitive Search Management SDK. For documentation on how to use this package, please see https://aka.ms/azure-sdk-java-mgmt
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.azure.resourcemanager.search.models;
import com.azure.core.annotation.Fluent;
/**
* Response containing the primary and secondary admin API keys for a given Azure Cognitive Search service.
*/
@Fluent
public interface AdminKeys {
/**
* Get the primaryKey value.
*
* @return the primaryKey value
*/
String primaryKey();
/**
* Get the secondaryKey value.
*
* @return the secondaryKey value
*/
String secondaryKey();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy