forked from Azure/azure-sdk-for-js
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdnsManagementClient.ts
More file actions
47 lines (41 loc) · 1.67 KB
/
dnsManagementClient.ts
File metadata and controls
47 lines (41 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is
* regenerated.
*/
import * as coreHttp from "@azure/core-http";
import * as Models from "./models";
import * as Mappers from "./models/mappers";
import * as operations from "./operations";
import { DnsManagementClientContext } from "./dnsManagementClientContext";
class DnsManagementClient extends DnsManagementClientContext {
// Operation groups
recordSets: operations.RecordSets;
zones: operations.Zones;
dnsResourceReference: operations.DnsResourceReferenceOperations;
/**
* Initializes a new instance of the DnsManagementClient class.
* @param credentials Credentials needed for the client to connect to Azure.
* @param subscriptionId Specifies the Azure subscription ID, which uniquely identifies the
* Microsoft Azure subscription.
* @param [options] The parameter options
*/
constructor(credentials: coreHttp.TokenCredential | coreHttp.ServiceClientCredentials, subscriptionId: string, options?: Models.DnsManagementClientOptions) {
super(credentials, subscriptionId, options);
this.recordSets = new operations.RecordSets(this);
this.zones = new operations.Zones(this);
this.dnsResourceReference = new operations.DnsResourceReferenceOperations(this);
}
}
// Operation Specifications
export {
DnsManagementClient,
DnsManagementClientContext,
Models as DnsManagementModels,
Mappers as DnsManagementMappers
};
export * from "./operations";