com.azure.resourcemanager.elastic.models.UserApiKeyResponse Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.elastic.models;
import com.azure.resourcemanager.elastic.fluent.models.UserApiKeyResponseInner;
/** An immutable client-side representation of UserApiKeyResponse. */
public interface UserApiKeyResponse {
/**
* Gets the apiKey property: The User Api Key Generated based on ReturnApiKey flag. This is applicable for
* non-Portal clients only.
*
* @return the apiKey value.
*/
String apiKey();
/**
* Gets the inner com.azure.resourcemanager.elastic.fluent.models.UserApiKeyResponseInner object.
*
* @return the inner object.
*/
UserApiKeyResponseInner innerModel();
}