@azure/arm-dns
Version:
A generated SDK for DnsManagementClient.
27 lines (24 loc) • 922 B
text/typescript
/*
* Copyright (c) Microsoft Corporation.
* Licensed under the MIT License.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/
import {
DnsResourceReferenceRequest,
DnsResourceReferenceGetByTargetResourcesOptionalParams,
DnsResourceReferenceGetByTargetResourcesResponse
} from "../models";
/** Interface representing a DnsResourceReferenceOperations. */
export interface DnsResourceReferenceOperations {
/**
* Returns the DNS records specified by the referencing targetResourceIds.
* @param parameters Properties for dns resource reference request.
* @param options The options parameters.
*/
getByTargetResources(
parameters: DnsResourceReferenceRequest,
options?: DnsResourceReferenceGetByTargetResourcesOptionalParams
): Promise<DnsResourceReferenceGetByTargetResourcesResponse>;
}