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.resources.models; import com.microsoft.azure.management.apigeneration.Fluent;
An interface representing a model that exposes a management client.
Type parameters:
  • <ManagerT> – the manager client type
/** * An interface representing a model that exposes a management client. * @param <ManagerT> the manager client type */
@Fluent public interface HasManager<ManagerT> {
Returns:the manager client of this resource type
/** * @return the manager client of this resource type */
ManagerT manager(); }