@azure/arm-domainservices 3.1.0 → 4.0.1-alpha.20220113.4
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +21 -0
- package/LICENSE +21 -0
- package/LICENSE.txt +21 -21
- package/README.md +98 -96
- package/dist/index.js +2502 -0
- package/dist/index.js.map +1 -0
- package/dist/index.min.js +1 -0
- package/dist/index.min.js.map +1 -0
- package/dist-esm/src/domainServicesResourceProvider.d.ts +22 -0
- package/dist-esm/src/domainServicesResourceProvider.d.ts.map +1 -0
- package/dist-esm/src/domainServicesResourceProvider.js +55 -0
- package/dist-esm/src/domainServicesResourceProvider.js.map +1 -0
- package/dist-esm/src/index.d.ts +5 -0
- package/dist-esm/src/index.d.ts.map +1 -0
- package/dist-esm/src/index.js +12 -0
- package/dist-esm/src/index.js.map +1 -0
- package/dist-esm/src/lroImpl.d.ts +16 -0
- package/dist-esm/src/lroImpl.d.ts.map +1 -0
- package/dist-esm/src/lroImpl.js +29 -0
- package/dist-esm/src/lroImpl.js.map +1 -0
- package/dist-esm/src/models/index.d.ts +768 -0
- package/dist-esm/src/models/index.d.ts.map +1 -0
- package/dist-esm/src/models/index.js +98 -0
- package/dist-esm/src/models/index.js.map +1 -0
- package/dist-esm/src/models/mappers.d.ts +27 -0
- package/dist-esm/src/models/mappers.d.ts.map +1 -0
- package/dist-esm/src/models/mappers.js +1015 -0
- package/dist-esm/src/models/mappers.js.map +1 -0
- package/dist-esm/src/models/parameters.d.ts +13 -0
- package/dist-esm/src/models/parameters.d.ts.map +1 -0
- package/dist-esm/src/models/parameters.js +117 -0
- package/dist-esm/src/models/parameters.js.map +1 -0
- package/dist-esm/src/operations/domainServiceOperations.d.ts +32 -0
- package/dist-esm/src/operations/domainServiceOperations.d.ts.map +1 -0
- package/dist-esm/src/operations/domainServiceOperations.js +120 -0
- package/dist-esm/src/operations/domainServiceOperations.js.map +1 -0
- package/dist-esm/src/operations/domainServices.d.ts +127 -0
- package/dist-esm/src/operations/domainServices.d.ts.map +1 -0
- package/dist-esm/src/operations/domainServices.js +520 -0
- package/dist-esm/src/operations/domainServices.js.map +1 -0
- package/dist-esm/src/operations/index.d.ts +5 -0
- package/dist-esm/src/operations/index.d.ts.map +1 -0
- package/dist-esm/src/operations/index.js +12 -0
- package/dist-esm/src/operations/index.js.map +1 -0
- package/dist-esm/src/operations/ouContainerOperationGrp.d.ts +111 -0
- package/dist-esm/src/operations/ouContainerOperationGrp.d.ts.map +1 -0
- package/dist-esm/src/operations/ouContainerOperationGrp.js +441 -0
- package/dist-esm/src/operations/ouContainerOperationGrp.js.map +1 -0
- package/dist-esm/src/operations/ouContainerOperations.d.ts +32 -0
- package/dist-esm/src/operations/ouContainerOperations.d.ts.map +1 -0
- package/dist-esm/src/operations/ouContainerOperations.js +120 -0
- package/dist-esm/src/operations/ouContainerOperations.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/domainServiceOperations.d.ts +11 -0
- package/dist-esm/src/operationsInterfaces/domainServiceOperations.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/domainServiceOperations.js +9 -0
- package/dist-esm/src/operationsInterfaces/domainServiceOperations.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/domainServices.d.ts +87 -0
- package/dist-esm/src/operationsInterfaces/domainServices.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/domainServices.js +9 -0
- package/dist-esm/src/operationsInterfaces/domainServices.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts +5 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.js +12 -0
- package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/ouContainerOperationGrp.d.ts +84 -0
- package/dist-esm/src/operationsInterfaces/ouContainerOperationGrp.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/ouContainerOperationGrp.js +9 -0
- package/dist-esm/src/operationsInterfaces/ouContainerOperationGrp.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/ouContainerOperations.d.ts +11 -0
- package/dist-esm/src/operationsInterfaces/ouContainerOperations.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/ouContainerOperations.js +9 -0
- package/dist-esm/src/operationsInterfaces/ouContainerOperations.js.map +1 -0
- package/dist-esm/test/sampleTest.d.ts +2 -0
- package/dist-esm/test/sampleTest.d.ts.map +1 -0
- package/dist-esm/test/sampleTest.js +40 -0
- package/dist-esm/test/sampleTest.js.map +1 -0
- package/package.json +71 -25
- package/review/arm-domainservices.api.md +591 -0
- package/rollup.config.js +184 -27
- package/src/domainServicesResourceProvider.ts +92 -0
- package/src/index.ts +12 -0
- package/src/lroImpl.ts +34 -0
- package/src/models/index.ts +868 -0
- package/src/models/mappers.ts +1069 -0
- package/src/models/parameters.ts +136 -0
- package/src/operations/domainServiceOperations.ts +137 -0
- package/src/operations/domainServices.ts +690 -0
- package/{lib → src}/operations/index.ts +5 -5
- package/src/operations/ouContainerOperationGrp.ts +632 -0
- package/src/operations/ouContainerOperations.ts +137 -0
- package/src/operationsInterfaces/domainServiceOperations.ts +25 -0
- package/src/operationsInterfaces/domainServices.ts +154 -0
- package/src/operationsInterfaces/index.ts +12 -0
- package/src/operationsInterfaces/ouContainerOperationGrp.ts +157 -0
- package/src/operationsInterfaces/ouContainerOperations.ts +25 -0
- package/tsconfig.json +4 -4
- package/types/arm-domainservices.d.ts +1062 -0
- package/types/tsdoc-metadata.json +11 -0
- package/dist/arm-domainservices.js +0 -1223
- package/dist/arm-domainservices.js.map +0 -1
- package/dist/arm-domainservices.min.js +0 -1
- package/dist/arm-domainservices.min.js.map +0 -1
- package/esm/domainservicesManagementClient.d.ts +0 -20
- package/esm/domainservicesManagementClient.d.ts.map +0 -1
- package/esm/domainservicesManagementClient.js +0 -35
- package/esm/domainservicesManagementClient.js.map +0 -1
- package/esm/domainservicesManagementClientContext.d.ts +0 -17
- package/esm/domainservicesManagementClientContext.d.ts.map +0 -1
- package/esm/domainservicesManagementClientContext.js +0 -57
- package/esm/domainservicesManagementClientContext.js.map +0 -1
- package/esm/models/domainServiceOperationsMappers.d.ts +0 -2
- package/esm/models/domainServiceOperationsMappers.d.ts.map +0 -1
- package/esm/models/domainServiceOperationsMappers.js +0 -11
- package/esm/models/domainServiceOperationsMappers.js.map +0 -1
- package/esm/models/domainServicesMappers.d.ts +0 -2
- package/esm/models/domainServicesMappers.d.ts.map +0 -1
- package/esm/models/domainServicesMappers.js +0 -11
- package/esm/models/domainServicesMappers.js.map +0 -1
- package/esm/models/index.d.ts +0 -693
- package/esm/models/index.d.ts.map +0 -1
- package/esm/models/index.js +0 -10
- package/esm/models/index.js.map +0 -1
- package/esm/models/mappers.d.ts +0 -15
- package/esm/models/mappers.d.ts.map +0 -1
- package/esm/models/mappers.js +0 -498
- package/esm/models/mappers.js.map +0 -1
- package/esm/models/parameters.d.ts +0 -8
- package/esm/models/parameters.d.ts.map +0 -1
- package/esm/models/parameters.js +0 -76
- package/esm/models/parameters.js.map +0 -1
- package/esm/operations/domainServiceOperations.d.ts +0 -46
- package/esm/operations/domainServiceOperations.d.ts.map +0 -1
- package/esm/operations/domainServiceOperations.js +0 -77
- package/esm/operations/domainServiceOperations.js.map +0 -1
- package/esm/operations/domainServices.d.ts +0 -189
- package/esm/operations/domainServices.d.ts.map +0 -1
- package/esm/operations/domainServices.js +0 -356
- package/esm/operations/domainServices.js.map +0 -1
- package/esm/operations/index.d.ts +0 -3
- package/esm/operations/index.d.ts.map +0 -1
- package/esm/operations/index.js +0 -12
- package/esm/operations/index.js.map +0 -1
- package/lib/domainservicesManagementClient.ts +0 -45
- package/lib/domainservicesManagementClientContext.ts +0 -63
- package/lib/models/domainServiceOperationsMappers.ts +0 -17
- package/lib/models/domainServicesMappers.ts +0 -23
- package/lib/models/index.ts +0 -736
- package/lib/models/mappers.ts +0 -526
- package/lib/models/parameters.ts +0 -78
- package/lib/operations/domainServiceOperations.ts +0 -123
- package/lib/operations/domainServices.ts +0 -513
package/esm/models/index.js
DELETED
@@ -1,10 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* Copyright (c) Microsoft Corporation. All rights reserved.
|
3
|
-
* Licensed under the MIT License. See License.txt in the project root for
|
4
|
-
* license information.
|
5
|
-
*
|
6
|
-
* Code generated by Microsoft (R) AutoRest Code Generator.
|
7
|
-
* Changes may cause incorrect behavior and will be lost if the code is
|
8
|
-
* regenerated.
|
9
|
-
*/
|
10
|
-
//# sourceMappingURL=index.js.map
|
package/esm/models/index.js.map
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../lib/models/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG"}
|
package/esm/models/mappers.d.ts
DELETED
@@ -1,15 +0,0 @@
|
|
1
|
-
import * as msRest from "@azure/ms-rest-js";
|
2
|
-
export declare const CloudError: msRest.CompositeMapper;
|
3
|
-
export declare const BaseResource: msRest.CompositeMapper;
|
4
|
-
export declare const Resource: msRest.CompositeMapper;
|
5
|
-
export declare const LdapsSettings: msRest.CompositeMapper;
|
6
|
-
export declare const HealthMonitor: msRest.CompositeMapper;
|
7
|
-
export declare const HealthAlert: msRest.CompositeMapper;
|
8
|
-
export declare const NotificationSettings: msRest.CompositeMapper;
|
9
|
-
export declare const DomainSecuritySettings: msRest.CompositeMapper;
|
10
|
-
export declare const DomainService: msRest.CompositeMapper;
|
11
|
-
export declare const OperationDisplayInfo: msRest.CompositeMapper;
|
12
|
-
export declare const OperationEntity: msRest.CompositeMapper;
|
13
|
-
export declare const OperationEntityListResult: msRest.CompositeMapper;
|
14
|
-
export declare const DomainServiceListResult: msRest.CompositeMapper;
|
15
|
-
//# sourceMappingURL=mappers.d.ts.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"mappers.d.ts","sourceRoot":"","sources":["../../lib/models/mappers.ts"],"names":[],"mappings":"AAWA,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAE5C,eAAO,MAAM,UAAU,wBAAmB,CAAC;AAC3C,eAAO,MAAM,YAAY,wBAAqB,CAAC;AAE/C,eAAO,MAAM,QAAQ,EAAE,MAAM,CAAC,eAoD7B,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,MAAM,CAAC,eA4DlC,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,MAAM,CAAC,eA6BlC,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,MAAM,CAAC,eAyDhC,CAAC;AAEF,eAAO,MAAM,oBAAoB,EAAE,MAAM,CAAC,eA+BzC,CAAC;AAEF,eAAO,MAAM,sBAAsB,EAAE,MAAM,CAAC,eA0B3C,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,MAAM,CAAC,eAyHlC,CAAC;AAEF,eAAO,MAAM,oBAAoB,EAAE,MAAM,CAAC,eAgCzC,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,MAAM,CAAC,eA2BpC,CAAC;AAEF,eAAO,MAAM,yBAAyB,EAAE,MAAM,CAAC,eA2B9C,CAAC;AAEF,eAAO,MAAM,uBAAuB,EAAE,MAAM,CAAC,eA2B5C,CAAC"}
|
package/esm/models/mappers.js
DELETED
@@ -1,498 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* Copyright (c) Microsoft Corporation. All rights reserved.
|
3
|
-
* Licensed under the MIT License. See License.txt in the project root for
|
4
|
-
* license information.
|
5
|
-
*
|
6
|
-
* Code generated by Microsoft (R) AutoRest Code Generator.
|
7
|
-
* Changes may cause incorrect behavior and will be lost if the code is
|
8
|
-
* regenerated.
|
9
|
-
*/
|
10
|
-
import * as tslib_1 from "tslib";
|
11
|
-
import { CloudErrorMapper, BaseResourceMapper } from "@azure/ms-rest-azure-js";
|
12
|
-
export var CloudError = CloudErrorMapper;
|
13
|
-
export var BaseResource = BaseResourceMapper;
|
14
|
-
export var Resource = {
|
15
|
-
serializedName: "Resource",
|
16
|
-
type: {
|
17
|
-
name: "Composite",
|
18
|
-
className: "Resource",
|
19
|
-
modelProperties: {
|
20
|
-
id: {
|
21
|
-
readOnly: true,
|
22
|
-
serializedName: "id",
|
23
|
-
type: {
|
24
|
-
name: "String"
|
25
|
-
}
|
26
|
-
},
|
27
|
-
name: {
|
28
|
-
readOnly: true,
|
29
|
-
serializedName: "name",
|
30
|
-
type: {
|
31
|
-
name: "String"
|
32
|
-
}
|
33
|
-
},
|
34
|
-
type: {
|
35
|
-
readOnly: true,
|
36
|
-
serializedName: "type",
|
37
|
-
type: {
|
38
|
-
name: "String"
|
39
|
-
}
|
40
|
-
},
|
41
|
-
location: {
|
42
|
-
serializedName: "location",
|
43
|
-
type: {
|
44
|
-
name: "String"
|
45
|
-
}
|
46
|
-
},
|
47
|
-
tags: {
|
48
|
-
serializedName: "tags",
|
49
|
-
type: {
|
50
|
-
name: "Dictionary",
|
51
|
-
value: {
|
52
|
-
type: {
|
53
|
-
name: "String"
|
54
|
-
}
|
55
|
-
}
|
56
|
-
}
|
57
|
-
},
|
58
|
-
etag: {
|
59
|
-
serializedName: "etag",
|
60
|
-
type: {
|
61
|
-
name: "String"
|
62
|
-
}
|
63
|
-
}
|
64
|
-
}
|
65
|
-
}
|
66
|
-
};
|
67
|
-
export var LdapsSettings = {
|
68
|
-
serializedName: "LdapsSettings",
|
69
|
-
type: {
|
70
|
-
name: "Composite",
|
71
|
-
className: "LdapsSettings",
|
72
|
-
modelProperties: {
|
73
|
-
ldaps: {
|
74
|
-
serializedName: "ldaps",
|
75
|
-
type: {
|
76
|
-
name: "String"
|
77
|
-
}
|
78
|
-
},
|
79
|
-
pfxCertificate: {
|
80
|
-
serializedName: "pfxCertificate",
|
81
|
-
type: {
|
82
|
-
name: "String"
|
83
|
-
}
|
84
|
-
},
|
85
|
-
pfxCertificatePassword: {
|
86
|
-
serializedName: "pfxCertificatePassword",
|
87
|
-
type: {
|
88
|
-
name: "String"
|
89
|
-
}
|
90
|
-
},
|
91
|
-
publicCertificate: {
|
92
|
-
readOnly: true,
|
93
|
-
serializedName: "publicCertificate",
|
94
|
-
type: {
|
95
|
-
name: "String"
|
96
|
-
}
|
97
|
-
},
|
98
|
-
certificateThumbprint: {
|
99
|
-
readOnly: true,
|
100
|
-
serializedName: "certificateThumbprint",
|
101
|
-
type: {
|
102
|
-
name: "String"
|
103
|
-
}
|
104
|
-
},
|
105
|
-
certificateNotAfter: {
|
106
|
-
readOnly: true,
|
107
|
-
serializedName: "certificateNotAfter",
|
108
|
-
type: {
|
109
|
-
name: "DateTime"
|
110
|
-
}
|
111
|
-
},
|
112
|
-
externalAccess: {
|
113
|
-
serializedName: "externalAccess",
|
114
|
-
type: {
|
115
|
-
name: "String"
|
116
|
-
}
|
117
|
-
},
|
118
|
-
externalAccessIpAddress: {
|
119
|
-
readOnly: true,
|
120
|
-
serializedName: "externalAccessIpAddress",
|
121
|
-
type: {
|
122
|
-
name: "String"
|
123
|
-
}
|
124
|
-
}
|
125
|
-
}
|
126
|
-
}
|
127
|
-
};
|
128
|
-
export var HealthMonitor = {
|
129
|
-
serializedName: "HealthMonitor",
|
130
|
-
type: {
|
131
|
-
name: "Composite",
|
132
|
-
className: "HealthMonitor",
|
133
|
-
modelProperties: {
|
134
|
-
id: {
|
135
|
-
readOnly: true,
|
136
|
-
serializedName: "id",
|
137
|
-
type: {
|
138
|
-
name: "String"
|
139
|
-
}
|
140
|
-
},
|
141
|
-
name: {
|
142
|
-
readOnly: true,
|
143
|
-
serializedName: "name",
|
144
|
-
type: {
|
145
|
-
name: "String"
|
146
|
-
}
|
147
|
-
},
|
148
|
-
details: {
|
149
|
-
readOnly: true,
|
150
|
-
serializedName: "details",
|
151
|
-
type: {
|
152
|
-
name: "String"
|
153
|
-
}
|
154
|
-
}
|
155
|
-
}
|
156
|
-
}
|
157
|
-
};
|
158
|
-
export var HealthAlert = {
|
159
|
-
serializedName: "HealthAlert",
|
160
|
-
type: {
|
161
|
-
name: "Composite",
|
162
|
-
className: "HealthAlert",
|
163
|
-
modelProperties: {
|
164
|
-
id: {
|
165
|
-
readOnly: true,
|
166
|
-
serializedName: "id",
|
167
|
-
type: {
|
168
|
-
name: "String"
|
169
|
-
}
|
170
|
-
},
|
171
|
-
name: {
|
172
|
-
readOnly: true,
|
173
|
-
serializedName: "name",
|
174
|
-
type: {
|
175
|
-
name: "String"
|
176
|
-
}
|
177
|
-
},
|
178
|
-
issue: {
|
179
|
-
readOnly: true,
|
180
|
-
serializedName: "issue",
|
181
|
-
type: {
|
182
|
-
name: "String"
|
183
|
-
}
|
184
|
-
},
|
185
|
-
severity: {
|
186
|
-
readOnly: true,
|
187
|
-
serializedName: "severity",
|
188
|
-
type: {
|
189
|
-
name: "String"
|
190
|
-
}
|
191
|
-
},
|
192
|
-
raised: {
|
193
|
-
readOnly: true,
|
194
|
-
serializedName: "raised",
|
195
|
-
type: {
|
196
|
-
name: "DateTime"
|
197
|
-
}
|
198
|
-
},
|
199
|
-
lastDetected: {
|
200
|
-
readOnly: true,
|
201
|
-
serializedName: "lastDetected",
|
202
|
-
type: {
|
203
|
-
name: "DateTime"
|
204
|
-
}
|
205
|
-
},
|
206
|
-
resolutionUri: {
|
207
|
-
readOnly: true,
|
208
|
-
serializedName: "resolutionUri",
|
209
|
-
type: {
|
210
|
-
name: "String"
|
211
|
-
}
|
212
|
-
}
|
213
|
-
}
|
214
|
-
}
|
215
|
-
};
|
216
|
-
export var NotificationSettings = {
|
217
|
-
serializedName: "NotificationSettings",
|
218
|
-
type: {
|
219
|
-
name: "Composite",
|
220
|
-
className: "NotificationSettings",
|
221
|
-
modelProperties: {
|
222
|
-
notifyGlobalAdmins: {
|
223
|
-
serializedName: "notifyGlobalAdmins",
|
224
|
-
type: {
|
225
|
-
name: "String"
|
226
|
-
}
|
227
|
-
},
|
228
|
-
notifyDcAdmins: {
|
229
|
-
serializedName: "notifyDcAdmins",
|
230
|
-
type: {
|
231
|
-
name: "String"
|
232
|
-
}
|
233
|
-
},
|
234
|
-
additionalRecipients: {
|
235
|
-
serializedName: "additionalRecipients",
|
236
|
-
type: {
|
237
|
-
name: "Sequence",
|
238
|
-
element: {
|
239
|
-
type: {
|
240
|
-
name: "String"
|
241
|
-
}
|
242
|
-
}
|
243
|
-
}
|
244
|
-
}
|
245
|
-
}
|
246
|
-
}
|
247
|
-
};
|
248
|
-
export var DomainSecuritySettings = {
|
249
|
-
serializedName: "DomainSecuritySettings",
|
250
|
-
type: {
|
251
|
-
name: "Composite",
|
252
|
-
className: "DomainSecuritySettings",
|
253
|
-
modelProperties: {
|
254
|
-
ntlmV1: {
|
255
|
-
serializedName: "ntlmV1",
|
256
|
-
type: {
|
257
|
-
name: "String"
|
258
|
-
}
|
259
|
-
},
|
260
|
-
tlsV1: {
|
261
|
-
serializedName: "tlsV1",
|
262
|
-
type: {
|
263
|
-
name: "String"
|
264
|
-
}
|
265
|
-
},
|
266
|
-
syncNtlmPasswords: {
|
267
|
-
serializedName: "syncNtlmPasswords",
|
268
|
-
type: {
|
269
|
-
name: "String"
|
270
|
-
}
|
271
|
-
}
|
272
|
-
}
|
273
|
-
}
|
274
|
-
};
|
275
|
-
export var DomainService = {
|
276
|
-
serializedName: "DomainService",
|
277
|
-
type: {
|
278
|
-
name: "Composite",
|
279
|
-
className: "DomainService",
|
280
|
-
modelProperties: tslib_1.__assign({}, Resource.type.modelProperties, { tenantId: {
|
281
|
-
readOnly: true,
|
282
|
-
serializedName: "properties.tenantId",
|
283
|
-
type: {
|
284
|
-
name: "String"
|
285
|
-
}
|
286
|
-
}, domainName: {
|
287
|
-
serializedName: "properties.domainName",
|
288
|
-
type: {
|
289
|
-
name: "String"
|
290
|
-
}
|
291
|
-
}, vnetSiteId: {
|
292
|
-
readOnly: true,
|
293
|
-
serializedName: "properties.vnetSiteId",
|
294
|
-
type: {
|
295
|
-
name: "String"
|
296
|
-
}
|
297
|
-
}, subnetId: {
|
298
|
-
serializedName: "properties.subnetId",
|
299
|
-
type: {
|
300
|
-
name: "String"
|
301
|
-
}
|
302
|
-
}, ldapsSettings: {
|
303
|
-
serializedName: "properties.ldapsSettings",
|
304
|
-
type: {
|
305
|
-
name: "Composite",
|
306
|
-
className: "LdapsSettings"
|
307
|
-
}
|
308
|
-
}, healthLastEvaluated: {
|
309
|
-
readOnly: true,
|
310
|
-
serializedName: "properties.healthLastEvaluated",
|
311
|
-
type: {
|
312
|
-
name: "DateTime"
|
313
|
-
}
|
314
|
-
}, healthMonitors: {
|
315
|
-
readOnly: true,
|
316
|
-
serializedName: "properties.healthMonitors",
|
317
|
-
type: {
|
318
|
-
name: "Sequence",
|
319
|
-
element: {
|
320
|
-
type: {
|
321
|
-
name: "Composite",
|
322
|
-
className: "HealthMonitor"
|
323
|
-
}
|
324
|
-
}
|
325
|
-
}
|
326
|
-
}, healthAlerts: {
|
327
|
-
readOnly: true,
|
328
|
-
serializedName: "properties.healthAlerts",
|
329
|
-
type: {
|
330
|
-
name: "Sequence",
|
331
|
-
element: {
|
332
|
-
type: {
|
333
|
-
name: "Composite",
|
334
|
-
className: "HealthAlert"
|
335
|
-
}
|
336
|
-
}
|
337
|
-
}
|
338
|
-
}, notificationSettings: {
|
339
|
-
serializedName: "properties.notificationSettings",
|
340
|
-
type: {
|
341
|
-
name: "Composite",
|
342
|
-
className: "NotificationSettings"
|
343
|
-
}
|
344
|
-
}, domainSecuritySettings: {
|
345
|
-
serializedName: "properties.domainSecuritySettings",
|
346
|
-
type: {
|
347
|
-
name: "Composite",
|
348
|
-
className: "DomainSecuritySettings"
|
349
|
-
}
|
350
|
-
}, filteredSync: {
|
351
|
-
serializedName: "properties.filteredSync",
|
352
|
-
type: {
|
353
|
-
name: "String"
|
354
|
-
}
|
355
|
-
}, domainControllerIpAddress: {
|
356
|
-
readOnly: true,
|
357
|
-
serializedName: "properties.domainControllerIpAddress",
|
358
|
-
type: {
|
359
|
-
name: "Sequence",
|
360
|
-
element: {
|
361
|
-
type: {
|
362
|
-
name: "String"
|
363
|
-
}
|
364
|
-
}
|
365
|
-
}
|
366
|
-
}, serviceStatus: {
|
367
|
-
readOnly: true,
|
368
|
-
serializedName: "properties.serviceStatus",
|
369
|
-
type: {
|
370
|
-
name: "String"
|
371
|
-
}
|
372
|
-
}, provisioningState: {
|
373
|
-
readOnly: true,
|
374
|
-
serializedName: "properties.provisioningState",
|
375
|
-
type: {
|
376
|
-
name: "String"
|
377
|
-
}
|
378
|
-
} })
|
379
|
-
}
|
380
|
-
};
|
381
|
-
export var OperationDisplayInfo = {
|
382
|
-
serializedName: "OperationDisplayInfo",
|
383
|
-
type: {
|
384
|
-
name: "Composite",
|
385
|
-
className: "OperationDisplayInfo",
|
386
|
-
modelProperties: {
|
387
|
-
description: {
|
388
|
-
serializedName: "description",
|
389
|
-
type: {
|
390
|
-
name: "String"
|
391
|
-
}
|
392
|
-
},
|
393
|
-
operation: {
|
394
|
-
serializedName: "operation",
|
395
|
-
type: {
|
396
|
-
name: "String"
|
397
|
-
}
|
398
|
-
},
|
399
|
-
provider: {
|
400
|
-
serializedName: "provider",
|
401
|
-
type: {
|
402
|
-
name: "String"
|
403
|
-
}
|
404
|
-
},
|
405
|
-
resource: {
|
406
|
-
serializedName: "resource",
|
407
|
-
type: {
|
408
|
-
name: "String"
|
409
|
-
}
|
410
|
-
}
|
411
|
-
}
|
412
|
-
}
|
413
|
-
};
|
414
|
-
export var OperationEntity = {
|
415
|
-
serializedName: "OperationEntity",
|
416
|
-
type: {
|
417
|
-
name: "Composite",
|
418
|
-
className: "OperationEntity",
|
419
|
-
modelProperties: {
|
420
|
-
name: {
|
421
|
-
serializedName: "name",
|
422
|
-
type: {
|
423
|
-
name: "String"
|
424
|
-
}
|
425
|
-
},
|
426
|
-
display: {
|
427
|
-
serializedName: "display",
|
428
|
-
type: {
|
429
|
-
name: "Composite",
|
430
|
-
className: "OperationDisplayInfo"
|
431
|
-
}
|
432
|
-
},
|
433
|
-
origin: {
|
434
|
-
serializedName: "origin",
|
435
|
-
type: {
|
436
|
-
name: "String"
|
437
|
-
}
|
438
|
-
}
|
439
|
-
}
|
440
|
-
}
|
441
|
-
};
|
442
|
-
export var OperationEntityListResult = {
|
443
|
-
serializedName: "OperationEntityListResult",
|
444
|
-
type: {
|
445
|
-
name: "Composite",
|
446
|
-
className: "OperationEntityListResult",
|
447
|
-
modelProperties: {
|
448
|
-
value: {
|
449
|
-
serializedName: "",
|
450
|
-
type: {
|
451
|
-
name: "Sequence",
|
452
|
-
element: {
|
453
|
-
type: {
|
454
|
-
name: "Composite",
|
455
|
-
className: "OperationEntity"
|
456
|
-
}
|
457
|
-
}
|
458
|
-
}
|
459
|
-
},
|
460
|
-
nextLink: {
|
461
|
-
readOnly: true,
|
462
|
-
serializedName: "nextLink",
|
463
|
-
type: {
|
464
|
-
name: "String"
|
465
|
-
}
|
466
|
-
}
|
467
|
-
}
|
468
|
-
}
|
469
|
-
};
|
470
|
-
export var DomainServiceListResult = {
|
471
|
-
serializedName: "DomainServiceListResult",
|
472
|
-
type: {
|
473
|
-
name: "Composite",
|
474
|
-
className: "DomainServiceListResult",
|
475
|
-
modelProperties: {
|
476
|
-
value: {
|
477
|
-
serializedName: "",
|
478
|
-
type: {
|
479
|
-
name: "Sequence",
|
480
|
-
element: {
|
481
|
-
type: {
|
482
|
-
name: "Composite",
|
483
|
-
className: "DomainService"
|
484
|
-
}
|
485
|
-
}
|
486
|
-
}
|
487
|
-
},
|
488
|
-
nextLink: {
|
489
|
-
readOnly: true,
|
490
|
-
serializedName: "nextLink",
|
491
|
-
type: {
|
492
|
-
name: "String"
|
493
|
-
}
|
494
|
-
}
|
495
|
-
}
|
496
|
-
}
|
497
|
-
};
|
498
|
-
//# sourceMappingURL=mappers.js.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"mappers.js","sourceRoot":"","sources":["../../lib/models/mappers.ts"],"names":[],"mappings":"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"}
|
@@ -1,8 +0,0 @@
|
|
1
|
-
import * as msRest from "@azure/ms-rest-js";
|
2
|
-
export declare const acceptLanguage: msRest.OperationParameter;
|
3
|
-
export declare const apiVersion: msRest.OperationQueryParameter;
|
4
|
-
export declare const domainServiceName: msRest.OperationURLParameter;
|
5
|
-
export declare const nextPageLink: msRest.OperationURLParameter;
|
6
|
-
export declare const resourceGroupName: msRest.OperationURLParameter;
|
7
|
-
export declare const subscriptionId: msRest.OperationURLParameter;
|
8
|
-
//# sourceMappingURL=parameters.d.ts.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"parameters.d.ts","sourceRoot":"","sources":["../../lib/models/parameters.ts"],"names":[],"mappings":"AAUA,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAE5C,eAAO,MAAM,cAAc,EAAE,MAAM,CAAC,kBASnC,CAAC;AACF,eAAO,MAAM,UAAU,EAAE,MAAM,CAAC,uBAS/B,CAAC;AACF,eAAO,MAAM,iBAAiB,EAAE,MAAM,CAAC,qBAStC,CAAC;AACF,eAAO,MAAM,YAAY,EAAE,MAAM,CAAC,qBAUjC,CAAC;AACF,eAAO,MAAM,iBAAiB,EAAE,MAAM,CAAC,qBActC,CAAC;AACF,eAAO,MAAM,cAAc,EAAE,MAAM,CAAC,qBASnC,CAAC"}
|
package/esm/models/parameters.js
DELETED
@@ -1,76 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* Copyright (c) Microsoft Corporation. All rights reserved.
|
3
|
-
* Licensed under the MIT License. See License.txt in the project root for
|
4
|
-
* license information.
|
5
|
-
*
|
6
|
-
* Code generated by Microsoft (R) AutoRest Code Generator.
|
7
|
-
* Changes may cause incorrect behavior and will be lost if the code is
|
8
|
-
* regenerated.
|
9
|
-
*/
|
10
|
-
export var acceptLanguage = {
|
11
|
-
parameterPath: "acceptLanguage",
|
12
|
-
mapper: {
|
13
|
-
serializedName: "accept-language",
|
14
|
-
defaultValue: 'en-US',
|
15
|
-
type: {
|
16
|
-
name: "String"
|
17
|
-
}
|
18
|
-
}
|
19
|
-
};
|
20
|
-
export var apiVersion = {
|
21
|
-
parameterPath: "apiVersion",
|
22
|
-
mapper: {
|
23
|
-
required: true,
|
24
|
-
serializedName: "api-version",
|
25
|
-
type: {
|
26
|
-
name: "String"
|
27
|
-
}
|
28
|
-
}
|
29
|
-
};
|
30
|
-
export var domainServiceName = {
|
31
|
-
parameterPath: "domainServiceName",
|
32
|
-
mapper: {
|
33
|
-
required: true,
|
34
|
-
serializedName: "domainServiceName",
|
35
|
-
type: {
|
36
|
-
name: "String"
|
37
|
-
}
|
38
|
-
}
|
39
|
-
};
|
40
|
-
export var nextPageLink = {
|
41
|
-
parameterPath: "nextPageLink",
|
42
|
-
mapper: {
|
43
|
-
required: true,
|
44
|
-
serializedName: "nextLink",
|
45
|
-
type: {
|
46
|
-
name: "String"
|
47
|
-
}
|
48
|
-
},
|
49
|
-
skipEncoding: true
|
50
|
-
};
|
51
|
-
export var resourceGroupName = {
|
52
|
-
parameterPath: "resourceGroupName",
|
53
|
-
mapper: {
|
54
|
-
required: true,
|
55
|
-
serializedName: "resourceGroupName",
|
56
|
-
constraints: {
|
57
|
-
MaxLength: 90,
|
58
|
-
MinLength: 1,
|
59
|
-
Pattern: /^[-\w\._\(\)]+$/
|
60
|
-
},
|
61
|
-
type: {
|
62
|
-
name: "String"
|
63
|
-
}
|
64
|
-
}
|
65
|
-
};
|
66
|
-
export var subscriptionId = {
|
67
|
-
parameterPath: "subscriptionId",
|
68
|
-
mapper: {
|
69
|
-
required: true,
|
70
|
-
serializedName: "subscriptionId",
|
71
|
-
type: {
|
72
|
-
name: "String"
|
73
|
-
}
|
74
|
-
}
|
75
|
-
};
|
76
|
-
//# sourceMappingURL=parameters.js.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"parameters.js","sourceRoot":"","sources":["../../lib/models/parameters.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAIH,MAAM,CAAC,IAAM,cAAc,GAA8B;IACvD,aAAa,EAAE,gBAAgB;IAC/B,MAAM,EAAE;QACN,cAAc,EAAE,iBAAiB;QACjC,YAAY,EAAE,OAAO;QACrB,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AACF,MAAM,CAAC,IAAM,UAAU,GAAmC;IACxD,aAAa,EAAE,YAAY;IAC3B,MAAM,EAAE;QACN,QAAQ,EAAE,IAAI;QACd,cAAc,EAAE,aAAa;QAC7B,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AACF,MAAM,CAAC,IAAM,iBAAiB,GAAiC;IAC7D,aAAa,EAAE,mBAAmB;IAClC,MAAM,EAAE;QACN,QAAQ,EAAE,IAAI;QACd,cAAc,EAAE,mBAAmB;QACnC,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AACF,MAAM,CAAC,IAAM,YAAY,GAAiC;IACxD,aAAa,EAAE,cAAc;IAC7B,MAAM,EAAE;QACN,QAAQ,EAAE,IAAI;QACd,cAAc,EAAE,UAAU;QAC1B,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;IACD,YAAY,EAAE,IAAI;CACnB,CAAC;AACF,MAAM,CAAC,IAAM,iBAAiB,GAAiC;IAC7D,aAAa,EAAE,mBAAmB;IAClC,MAAM,EAAE;QACN,QAAQ,EAAE,IAAI;QACd,cAAc,EAAE,mBAAmB;QACnC,WAAW,EAAE;YACX,SAAS,EAAE,EAAE;YACb,SAAS,EAAE,CAAC;YACZ,OAAO,EAAE,iBAAiB;SAC3B;QACD,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AACF,MAAM,CAAC,IAAM,cAAc,GAAiC;IAC1D,aAAa,EAAE,gBAAgB;IAC/B,MAAM,EAAE;QACN,QAAQ,EAAE,IAAI;QACd,cAAc,EAAE,gBAAgB;QAChC,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC"}
|
@@ -1,46 +0,0 @@
|
|
1
|
-
import * as msRest from "@azure/ms-rest-js";
|
2
|
-
import * as Models from "../models";
|
3
|
-
import { DomainservicesManagementClientContext } from "../domainservicesManagementClientContext";
|
4
|
-
/** Class representing a DomainServiceOperations. */
|
5
|
-
export declare class DomainServiceOperations {
|
6
|
-
private readonly client;
|
7
|
-
/**
|
8
|
-
* Create a DomainServiceOperations.
|
9
|
-
* @param {DomainservicesManagementClientContext} client Reference to the service client.
|
10
|
-
*/
|
11
|
-
constructor(client: DomainservicesManagementClientContext);
|
12
|
-
/**
|
13
|
-
* Lists all the available Domain Services operations.
|
14
|
-
* @param [options] The optional parameters
|
15
|
-
* @returns Promise<Models.DomainServiceOperationsListResponse>
|
16
|
-
*/
|
17
|
-
list(options?: msRest.RequestOptionsBase): Promise<Models.DomainServiceOperationsListResponse>;
|
18
|
-
/**
|
19
|
-
* @param callback The callback
|
20
|
-
*/
|
21
|
-
list(callback: msRest.ServiceCallback<Models.OperationEntityListResult>): void;
|
22
|
-
/**
|
23
|
-
* @param options The optional parameters
|
24
|
-
* @param callback The callback
|
25
|
-
*/
|
26
|
-
list(options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.OperationEntityListResult>): void;
|
27
|
-
/**
|
28
|
-
* Lists all the available Domain Services operations.
|
29
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
30
|
-
* @param [options] The optional parameters
|
31
|
-
* @returns Promise<Models.DomainServiceOperationsListNextResponse>
|
32
|
-
*/
|
33
|
-
listNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.DomainServiceOperationsListNextResponse>;
|
34
|
-
/**
|
35
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
36
|
-
* @param callback The callback
|
37
|
-
*/
|
38
|
-
listNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.OperationEntityListResult>): void;
|
39
|
-
/**
|
40
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
41
|
-
* @param options The optional parameters
|
42
|
-
* @param callback The callback
|
43
|
-
*/
|
44
|
-
listNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.OperationEntityListResult>): void;
|
45
|
-
}
|
46
|
-
//# sourceMappingURL=domainServiceOperations.d.ts.map
|