Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information.
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. */
package com.microsoft.azure.arm.model;
The wrapper around an inner object providing extended functionalities.
Type parameters:
  • <T> – the type of the inner object.
/** * The wrapper around an inner object providing extended functionalities. * * @param <T> the type of the inner object. */
public interface HasInner<T> {
Returns:wrapped inner object providing direct access to the underlying auto-generated API implementation, based on Azure REST API
/** * @return wrapped inner object providing direct access to the underlying * auto-generated API implementation, based on Azure REST API */
T inner(); }