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.arm.model.Refreshable;
Represents an external child resource.
Type parameters: - <FluentModelT> – fluent type of the external child resource
- <ParentT> – parent interface
/**
* Represents an external child resource.
*
* @param <FluentModelT> fluent type of the external child resource
* @param <ParentT> parent interface
*/
public interface ExternalChildResource<FluentModelT, ParentT> extends ChildResource<ParentT>, Refreshable<FluentModelT> {
Returns: the id of the external child resource
/**
* @return the id of the external child resource
*/
String id();
}