@azure/arm-domainservices 3.2.1 → 4.0.1-alpha.20220119.1
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/README.md +69 -80
- 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 +69 -24
- 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 +689 -557
- package/src/models/mappers.ts +760 -217
- package/src/models/parameters.ts +87 -29
- package/src/operations/domainServiceOperations.ts +87 -73
- package/src/operations/domainServices.ts +519 -342
- package/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 -1233
- 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 -26
- package/esm/domainservicesManagementClient.d.ts.map +0 -1
- package/esm/domainservicesManagementClient.js +0 -40
- package/esm/domainservicesManagementClient.js.map +0 -1
- package/esm/domainservicesManagementClientContext.d.ts +0 -23
- package/esm/domainservicesManagementClientContext.d.ts.map +0 -1
- package/esm/domainservicesManagementClientContext.js +0 -62
- 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/src/domainservicesManagementClient.ts +0 -51
- package/src/domainservicesManagementClientContext.ts +0 -69
- package/src/models/domainServiceOperationsMappers.ts +0 -17
- package/src/models/domainServicesMappers.ts +0 -23
package/esm/models/index.d.ts
DELETED
@@ -1,693 +0,0 @@
|
|
1
|
-
import { BaseResource, CloudError, AzureServiceClientOptions } from "@azure/ms-rest-azure-js";
|
2
|
-
import * as msRest from "@azure/ms-rest-js";
|
3
|
-
export { BaseResource, CloudError };
|
4
|
-
/**
|
5
|
-
* @interface
|
6
|
-
* An interface representing Resource.
|
7
|
-
* The Resource model definition.
|
8
|
-
*
|
9
|
-
* @extends BaseResource
|
10
|
-
*/
|
11
|
-
export interface Resource extends BaseResource {
|
12
|
-
/**
|
13
|
-
* @member {string} [id] Resource Id
|
14
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
15
|
-
* the server.**
|
16
|
-
*/
|
17
|
-
readonly id?: string;
|
18
|
-
/**
|
19
|
-
* @member {string} [name] Resource name
|
20
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
21
|
-
* the server.**
|
22
|
-
*/
|
23
|
-
readonly name?: string;
|
24
|
-
/**
|
25
|
-
* @member {string} [type] Resource type
|
26
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
27
|
-
* the server.**
|
28
|
-
*/
|
29
|
-
readonly type?: string;
|
30
|
-
/**
|
31
|
-
* @member {string} [location] Resource location
|
32
|
-
*/
|
33
|
-
location?: string;
|
34
|
-
/**
|
35
|
-
* @member {{ [propertyName: string]: string }} [tags] Resource tags
|
36
|
-
*/
|
37
|
-
tags?: {
|
38
|
-
[propertyName: string]: string;
|
39
|
-
};
|
40
|
-
/**
|
41
|
-
* @member {string} [etag] Resource etag
|
42
|
-
*/
|
43
|
-
etag?: string;
|
44
|
-
}
|
45
|
-
/**
|
46
|
-
* @interface
|
47
|
-
* An interface representing LdapsSettings.
|
48
|
-
* Secure LDAP Settings
|
49
|
-
*
|
50
|
-
*/
|
51
|
-
export interface LdapsSettings {
|
52
|
-
/**
|
53
|
-
* @member {Ldaps} [ldaps] A flag to determine whether or not Secure LDAP is
|
54
|
-
* enabled or disabled. Possible values include: 'Enabled', 'Disabled'
|
55
|
-
*/
|
56
|
-
ldaps?: Ldaps;
|
57
|
-
/**
|
58
|
-
* @member {string} [pfxCertificate] The certificate required to configure
|
59
|
-
* Secure LDAP. The parameter passed here should be a base64encoded
|
60
|
-
* representation of the certificate pfx file.
|
61
|
-
*/
|
62
|
-
pfxCertificate?: string;
|
63
|
-
/**
|
64
|
-
* @member {string} [pfxCertificatePassword] The password to decrypt the
|
65
|
-
* provided Secure LDAP certificate pfx file.
|
66
|
-
*/
|
67
|
-
pfxCertificatePassword?: string;
|
68
|
-
/**
|
69
|
-
* @member {string} [publicCertificate] Public certificate used to configure
|
70
|
-
* secure ldap.
|
71
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
72
|
-
* the server.**
|
73
|
-
*/
|
74
|
-
readonly publicCertificate?: string;
|
75
|
-
/**
|
76
|
-
* @member {string} [certificateThumbprint] Thumbprint of configure ldaps
|
77
|
-
* certificate.
|
78
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
79
|
-
* the server.**
|
80
|
-
*/
|
81
|
-
readonly certificateThumbprint?: string;
|
82
|
-
/**
|
83
|
-
* @member {Date} [certificateNotAfter] NotAfter DateTime of configure ldaps
|
84
|
-
* certificate.
|
85
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
86
|
-
* the server.**
|
87
|
-
*/
|
88
|
-
readonly certificateNotAfter?: Date;
|
89
|
-
/**
|
90
|
-
* @member {ExternalAccess} [externalAccess] A flag to determine whether or
|
91
|
-
* not Secure LDAP access over the internet is enabled or disabled. Possible
|
92
|
-
* values include: 'Enabled', 'Disabled'
|
93
|
-
*/
|
94
|
-
externalAccess?: ExternalAccess;
|
95
|
-
/**
|
96
|
-
* @member {string} [externalAccessIpAddress] External access ip address.
|
97
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
98
|
-
* the server.**
|
99
|
-
*/
|
100
|
-
readonly externalAccessIpAddress?: string;
|
101
|
-
}
|
102
|
-
/**
|
103
|
-
* @interface
|
104
|
-
* An interface representing HealthMonitor.
|
105
|
-
* Health Monitor Description
|
106
|
-
*
|
107
|
-
*/
|
108
|
-
export interface HealthMonitor {
|
109
|
-
/**
|
110
|
-
* @member {string} [id] Health Monitor Id
|
111
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
112
|
-
* the server.**
|
113
|
-
*/
|
114
|
-
readonly id?: string;
|
115
|
-
/**
|
116
|
-
* @member {string} [name] Health Monitor Name
|
117
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
118
|
-
* the server.**
|
119
|
-
*/
|
120
|
-
readonly name?: string;
|
121
|
-
/**
|
122
|
-
* @member {string} [details] Health Monitor Details
|
123
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
124
|
-
* the server.**
|
125
|
-
*/
|
126
|
-
readonly details?: string;
|
127
|
-
}
|
128
|
-
/**
|
129
|
-
* @interface
|
130
|
-
* An interface representing HealthAlert.
|
131
|
-
* Health Alert Description
|
132
|
-
*
|
133
|
-
*/
|
134
|
-
export interface HealthAlert {
|
135
|
-
/**
|
136
|
-
* @member {string} [id] Health Alert Id
|
137
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
138
|
-
* the server.**
|
139
|
-
*/
|
140
|
-
readonly id?: string;
|
141
|
-
/**
|
142
|
-
* @member {string} [name] Health Alert Name
|
143
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
144
|
-
* the server.**
|
145
|
-
*/
|
146
|
-
readonly name?: string;
|
147
|
-
/**
|
148
|
-
* @member {string} [issue] Health Alert Issue
|
149
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
150
|
-
* the server.**
|
151
|
-
*/
|
152
|
-
readonly issue?: string;
|
153
|
-
/**
|
154
|
-
* @member {string} [severity] Health Alert Severity
|
155
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
156
|
-
* the server.**
|
157
|
-
*/
|
158
|
-
readonly severity?: string;
|
159
|
-
/**
|
160
|
-
* @member {Date} [raised] Health Alert Raised DateTime
|
161
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
162
|
-
* the server.**
|
163
|
-
*/
|
164
|
-
readonly raised?: Date;
|
165
|
-
/**
|
166
|
-
* @member {Date} [lastDetected] Health Alert Last Detected DateTime
|
167
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
168
|
-
* the server.**
|
169
|
-
*/
|
170
|
-
readonly lastDetected?: Date;
|
171
|
-
/**
|
172
|
-
* @member {string} [resolutionUri] Health Alert TSG Link
|
173
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
174
|
-
* the server.**
|
175
|
-
*/
|
176
|
-
readonly resolutionUri?: string;
|
177
|
-
}
|
178
|
-
/**
|
179
|
-
* @interface
|
180
|
-
* An interface representing NotificationSettings.
|
181
|
-
* Settings for notification
|
182
|
-
*
|
183
|
-
*/
|
184
|
-
export interface NotificationSettings {
|
185
|
-
/**
|
186
|
-
* @member {NotifyGlobalAdmins} [notifyGlobalAdmins] Should global admins be
|
187
|
-
* notified. Possible values include: 'Enabled', 'Disabled'
|
188
|
-
*/
|
189
|
-
notifyGlobalAdmins?: NotifyGlobalAdmins;
|
190
|
-
/**
|
191
|
-
* @member {NotifyDcAdmins} [notifyDcAdmins] Should domain controller admins
|
192
|
-
* be notified. Possible values include: 'Enabled', 'Disabled'
|
193
|
-
*/
|
194
|
-
notifyDcAdmins?: NotifyDcAdmins;
|
195
|
-
/**
|
196
|
-
* @member {string[]} [additionalRecipients] The list of additional
|
197
|
-
* recipients
|
198
|
-
*/
|
199
|
-
additionalRecipients?: string[];
|
200
|
-
}
|
201
|
-
/**
|
202
|
-
* @interface
|
203
|
-
* An interface representing DomainSecuritySettings.
|
204
|
-
* Domain Security Settings
|
205
|
-
*
|
206
|
-
*/
|
207
|
-
export interface DomainSecuritySettings {
|
208
|
-
/**
|
209
|
-
* @member {NtlmV1} [ntlmV1] A flag to determine whether or not NtlmV1 is
|
210
|
-
* enabled or disabled. Possible values include: 'Enabled', 'Disabled'
|
211
|
-
*/
|
212
|
-
ntlmV1?: NtlmV1;
|
213
|
-
/**
|
214
|
-
* @member {TlsV1} [tlsV1] A flag to determine whether or not TlsV1 is
|
215
|
-
* enabled or disabled. Possible values include: 'Enabled', 'Disabled'
|
216
|
-
*/
|
217
|
-
tlsV1?: TlsV1;
|
218
|
-
/**
|
219
|
-
* @member {SyncNtlmPasswords} [syncNtlmPasswords] A flag to determine
|
220
|
-
* whether or not SyncNtlmPasswords is enabled or disabled. Possible values
|
221
|
-
* include: 'Enabled', 'Disabled'
|
222
|
-
*/
|
223
|
-
syncNtlmPasswords?: SyncNtlmPasswords;
|
224
|
-
}
|
225
|
-
/**
|
226
|
-
* @interface
|
227
|
-
* An interface representing DomainService.
|
228
|
-
* Domain service.
|
229
|
-
*
|
230
|
-
* @extends Resource
|
231
|
-
*/
|
232
|
-
export interface DomainService extends Resource {
|
233
|
-
/**
|
234
|
-
* @member {string} [tenantId] Azure Active Directory tenant id
|
235
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
236
|
-
* the server.**
|
237
|
-
*/
|
238
|
-
readonly tenantId?: string;
|
239
|
-
/**
|
240
|
-
* @member {string} [domainName] The name of the Azure domain that the user
|
241
|
-
* would like to deploy Domain Services to.
|
242
|
-
*/
|
243
|
-
domainName?: string;
|
244
|
-
/**
|
245
|
-
* @member {string} [vnetSiteId] Virtual network site id
|
246
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
247
|
-
* the server.**
|
248
|
-
*/
|
249
|
-
readonly vnetSiteId?: string;
|
250
|
-
/**
|
251
|
-
* @member {string} [subnetId] The name of the virtual network that Domain
|
252
|
-
* Services will be deployed on. The id of the subnet that Domain Services
|
253
|
-
* will be deployed on. /virtualNetwork/vnetName/subnets/subnetName.
|
254
|
-
*/
|
255
|
-
subnetId?: string;
|
256
|
-
/**
|
257
|
-
* @member {LdapsSettings} [ldapsSettings] Secure LDAP Settings
|
258
|
-
*/
|
259
|
-
ldapsSettings?: LdapsSettings;
|
260
|
-
/**
|
261
|
-
* @member {Date} [healthLastEvaluated] Last domain evaluation run DateTime
|
262
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
263
|
-
* the server.**
|
264
|
-
*/
|
265
|
-
readonly healthLastEvaluated?: Date;
|
266
|
-
/**
|
267
|
-
* @member {HealthMonitor[]} [healthMonitors] List of Domain Health Monitors
|
268
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
269
|
-
* the server.**
|
270
|
-
*/
|
271
|
-
readonly healthMonitors?: HealthMonitor[];
|
272
|
-
/**
|
273
|
-
* @member {HealthAlert[]} [healthAlerts] List of Domain Health Alerts
|
274
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
275
|
-
* the server.**
|
276
|
-
*/
|
277
|
-
readonly healthAlerts?: HealthAlert[];
|
278
|
-
/**
|
279
|
-
* @member {NotificationSettings} [notificationSettings] Notification
|
280
|
-
* Settings
|
281
|
-
*/
|
282
|
-
notificationSettings?: NotificationSettings;
|
283
|
-
/**
|
284
|
-
* @member {DomainSecuritySettings} [domainSecuritySettings] DomainSecurity
|
285
|
-
* Settings
|
286
|
-
*/
|
287
|
-
domainSecuritySettings?: DomainSecuritySettings;
|
288
|
-
/**
|
289
|
-
* @member {FilteredSync} [filteredSync] Enabled or Disabled flag to turn on
|
290
|
-
* Group-based filtered sync. Possible values include: 'Enabled', 'Disabled'
|
291
|
-
*/
|
292
|
-
filteredSync?: FilteredSync;
|
293
|
-
/**
|
294
|
-
* @member {string[]} [domainControllerIpAddress] List of Domain Controller
|
295
|
-
* IP Address
|
296
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
297
|
-
* the server.**
|
298
|
-
*/
|
299
|
-
readonly domainControllerIpAddress?: string[];
|
300
|
-
/**
|
301
|
-
* @member {string} [serviceStatus] Status of Domain Service instance
|
302
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
303
|
-
* the server.**
|
304
|
-
*/
|
305
|
-
readonly serviceStatus?: string;
|
306
|
-
/**
|
307
|
-
* @member {string} [provisioningState] the current deployment or
|
308
|
-
* provisioning state, which only appears in the response.
|
309
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
310
|
-
* the server.**
|
311
|
-
*/
|
312
|
-
readonly provisioningState?: string;
|
313
|
-
}
|
314
|
-
/**
|
315
|
-
* @interface
|
316
|
-
* An interface representing OperationDisplayInfo.
|
317
|
-
* The operation supported by Domain Services.
|
318
|
-
*
|
319
|
-
*/
|
320
|
-
export interface OperationDisplayInfo {
|
321
|
-
/**
|
322
|
-
* @member {string} [description] The description of the operation.
|
323
|
-
*/
|
324
|
-
description?: string;
|
325
|
-
/**
|
326
|
-
* @member {string} [operation] The action that users can perform, based on
|
327
|
-
* their permission level.
|
328
|
-
*/
|
329
|
-
operation?: string;
|
330
|
-
/**
|
331
|
-
* @member {string} [provider] Service provider: Domain Services.
|
332
|
-
*/
|
333
|
-
provider?: string;
|
334
|
-
/**
|
335
|
-
* @member {string} [resource] Resource on which the operation is performed.
|
336
|
-
*/
|
337
|
-
resource?: string;
|
338
|
-
}
|
339
|
-
/**
|
340
|
-
* @interface
|
341
|
-
* An interface representing OperationEntity.
|
342
|
-
* The operation supported by Domain Services.
|
343
|
-
*
|
344
|
-
*/
|
345
|
-
export interface OperationEntity {
|
346
|
-
/**
|
347
|
-
* @member {string} [name] Operation name: {provider}/{resource}/{operation}.
|
348
|
-
*/
|
349
|
-
name?: string;
|
350
|
-
/**
|
351
|
-
* @member {OperationDisplayInfo} [display] The operation supported by Domain
|
352
|
-
* Services.
|
353
|
-
*/
|
354
|
-
display?: OperationDisplayInfo;
|
355
|
-
/**
|
356
|
-
* @member {string} [origin] The origin of the operation.
|
357
|
-
*/
|
358
|
-
origin?: string;
|
359
|
-
}
|
360
|
-
/**
|
361
|
-
* @interface
|
362
|
-
* An interface representing DomainservicesManagementClientOptions.
|
363
|
-
* @extends AzureServiceClientOptions
|
364
|
-
*/
|
365
|
-
export interface DomainservicesManagementClientOptions extends AzureServiceClientOptions {
|
366
|
-
/**
|
367
|
-
* @member {string} [baseUri]
|
368
|
-
*/
|
369
|
-
baseUri?: string;
|
370
|
-
}
|
371
|
-
/**
|
372
|
-
* @interface
|
373
|
-
* An interface representing the OperationEntityListResult.
|
374
|
-
* The list of domain service operation response.
|
375
|
-
*
|
376
|
-
* @extends Array<OperationEntity>
|
377
|
-
*/
|
378
|
-
export interface OperationEntityListResult extends Array<OperationEntity> {
|
379
|
-
/**
|
380
|
-
* @member {string} [nextLink] The continuation token for the next page of
|
381
|
-
* results.
|
382
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
383
|
-
* the server.**
|
384
|
-
*/
|
385
|
-
readonly nextLink?: string;
|
386
|
-
}
|
387
|
-
/**
|
388
|
-
* @interface
|
389
|
-
* An interface representing the DomainServiceListResult.
|
390
|
-
* The response from the List Domain Services operation.
|
391
|
-
*
|
392
|
-
* @extends Array<DomainService>
|
393
|
-
*/
|
394
|
-
export interface DomainServiceListResult extends Array<DomainService> {
|
395
|
-
/**
|
396
|
-
* @member {string} [nextLink] The continuation token for the next page of
|
397
|
-
* results.
|
398
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
399
|
-
* the server.**
|
400
|
-
*/
|
401
|
-
readonly nextLink?: string;
|
402
|
-
}
|
403
|
-
/**
|
404
|
-
* Defines values for Ldaps.
|
405
|
-
* Possible values include: 'Enabled', 'Disabled'
|
406
|
-
* @readonly
|
407
|
-
* @enum {string}
|
408
|
-
*/
|
409
|
-
export declare type Ldaps = 'Enabled' | 'Disabled';
|
410
|
-
/**
|
411
|
-
* Defines values for ExternalAccess.
|
412
|
-
* Possible values include: 'Enabled', 'Disabled'
|
413
|
-
* @readonly
|
414
|
-
* @enum {string}
|
415
|
-
*/
|
416
|
-
export declare type ExternalAccess = 'Enabled' | 'Disabled';
|
417
|
-
/**
|
418
|
-
* Defines values for NotifyGlobalAdmins.
|
419
|
-
* Possible values include: 'Enabled', 'Disabled'
|
420
|
-
* @readonly
|
421
|
-
* @enum {string}
|
422
|
-
*/
|
423
|
-
export declare type NotifyGlobalAdmins = 'Enabled' | 'Disabled';
|
424
|
-
/**
|
425
|
-
* Defines values for NotifyDcAdmins.
|
426
|
-
* Possible values include: 'Enabled', 'Disabled'
|
427
|
-
* @readonly
|
428
|
-
* @enum {string}
|
429
|
-
*/
|
430
|
-
export declare type NotifyDcAdmins = 'Enabled' | 'Disabled';
|
431
|
-
/**
|
432
|
-
* Defines values for NtlmV1.
|
433
|
-
* Possible values include: 'Enabled', 'Disabled'
|
434
|
-
* @readonly
|
435
|
-
* @enum {string}
|
436
|
-
*/
|
437
|
-
export declare type NtlmV1 = 'Enabled' | 'Disabled';
|
438
|
-
/**
|
439
|
-
* Defines values for TlsV1.
|
440
|
-
* Possible values include: 'Enabled', 'Disabled'
|
441
|
-
* @readonly
|
442
|
-
* @enum {string}
|
443
|
-
*/
|
444
|
-
export declare type TlsV1 = 'Enabled' | 'Disabled';
|
445
|
-
/**
|
446
|
-
* Defines values for SyncNtlmPasswords.
|
447
|
-
* Possible values include: 'Enabled', 'Disabled'
|
448
|
-
* @readonly
|
449
|
-
* @enum {string}
|
450
|
-
*/
|
451
|
-
export declare type SyncNtlmPasswords = 'Enabled' | 'Disabled';
|
452
|
-
/**
|
453
|
-
* Defines values for FilteredSync.
|
454
|
-
* Possible values include: 'Enabled', 'Disabled'
|
455
|
-
* @readonly
|
456
|
-
* @enum {string}
|
457
|
-
*/
|
458
|
-
export declare type FilteredSync = 'Enabled' | 'Disabled';
|
459
|
-
/**
|
460
|
-
* Contains response data for the list operation.
|
461
|
-
*/
|
462
|
-
export declare type DomainServiceOperationsListResponse = OperationEntityListResult & {
|
463
|
-
/**
|
464
|
-
* The underlying HTTP response.
|
465
|
-
*/
|
466
|
-
_response: msRest.HttpResponse & {
|
467
|
-
/**
|
468
|
-
* The response body as text (string format)
|
469
|
-
*/
|
470
|
-
bodyAsText: string;
|
471
|
-
/**
|
472
|
-
* The response body as parsed JSON or XML
|
473
|
-
*/
|
474
|
-
parsedBody: OperationEntityListResult;
|
475
|
-
};
|
476
|
-
};
|
477
|
-
/**
|
478
|
-
* Contains response data for the listNext operation.
|
479
|
-
*/
|
480
|
-
export declare type DomainServiceOperationsListNextResponse = OperationEntityListResult & {
|
481
|
-
/**
|
482
|
-
* The underlying HTTP response.
|
483
|
-
*/
|
484
|
-
_response: msRest.HttpResponse & {
|
485
|
-
/**
|
486
|
-
* The response body as text (string format)
|
487
|
-
*/
|
488
|
-
bodyAsText: string;
|
489
|
-
/**
|
490
|
-
* The response body as parsed JSON or XML
|
491
|
-
*/
|
492
|
-
parsedBody: OperationEntityListResult;
|
493
|
-
};
|
494
|
-
};
|
495
|
-
/**
|
496
|
-
* Contains response data for the list operation.
|
497
|
-
*/
|
498
|
-
export declare type DomainServicesListResponse = DomainServiceListResult & {
|
499
|
-
/**
|
500
|
-
* The underlying HTTP response.
|
501
|
-
*/
|
502
|
-
_response: msRest.HttpResponse & {
|
503
|
-
/**
|
504
|
-
* The response body as text (string format)
|
505
|
-
*/
|
506
|
-
bodyAsText: string;
|
507
|
-
/**
|
508
|
-
* The response body as parsed JSON or XML
|
509
|
-
*/
|
510
|
-
parsedBody: DomainServiceListResult;
|
511
|
-
};
|
512
|
-
};
|
513
|
-
/**
|
514
|
-
* Contains response data for the listByResourceGroup operation.
|
515
|
-
*/
|
516
|
-
export declare type DomainServicesListByResourceGroupResponse = DomainServiceListResult & {
|
517
|
-
/**
|
518
|
-
* The underlying HTTP response.
|
519
|
-
*/
|
520
|
-
_response: msRest.HttpResponse & {
|
521
|
-
/**
|
522
|
-
* The response body as text (string format)
|
523
|
-
*/
|
524
|
-
bodyAsText: string;
|
525
|
-
/**
|
526
|
-
* The response body as parsed JSON or XML
|
527
|
-
*/
|
528
|
-
parsedBody: DomainServiceListResult;
|
529
|
-
};
|
530
|
-
};
|
531
|
-
/**
|
532
|
-
* Contains response data for the createOrUpdate operation.
|
533
|
-
*/
|
534
|
-
export declare type DomainServicesCreateOrUpdateResponse = DomainService & {
|
535
|
-
/**
|
536
|
-
* The underlying HTTP response.
|
537
|
-
*/
|
538
|
-
_response: msRest.HttpResponse & {
|
539
|
-
/**
|
540
|
-
* The response body as text (string format)
|
541
|
-
*/
|
542
|
-
bodyAsText: string;
|
543
|
-
/**
|
544
|
-
* The response body as parsed JSON or XML
|
545
|
-
*/
|
546
|
-
parsedBody: DomainService;
|
547
|
-
};
|
548
|
-
};
|
549
|
-
/**
|
550
|
-
* Contains response data for the get operation.
|
551
|
-
*/
|
552
|
-
export declare type DomainServicesGetResponse = DomainService & {
|
553
|
-
/**
|
554
|
-
* The underlying HTTP response.
|
555
|
-
*/
|
556
|
-
_response: msRest.HttpResponse & {
|
557
|
-
/**
|
558
|
-
* The response body as text (string format)
|
559
|
-
*/
|
560
|
-
bodyAsText: string;
|
561
|
-
/**
|
562
|
-
* The response body as parsed JSON or XML
|
563
|
-
*/
|
564
|
-
parsedBody: DomainService;
|
565
|
-
};
|
566
|
-
};
|
567
|
-
/**
|
568
|
-
* Contains response data for the deleteMethod operation.
|
569
|
-
*/
|
570
|
-
export declare type DomainServicesDeleteMethodResponse = DomainService & {
|
571
|
-
/**
|
572
|
-
* The underlying HTTP response.
|
573
|
-
*/
|
574
|
-
_response: msRest.HttpResponse & {
|
575
|
-
/**
|
576
|
-
* The response body as text (string format)
|
577
|
-
*/
|
578
|
-
bodyAsText: string;
|
579
|
-
/**
|
580
|
-
* The response body as parsed JSON or XML
|
581
|
-
*/
|
582
|
-
parsedBody: DomainService;
|
583
|
-
};
|
584
|
-
};
|
585
|
-
/**
|
586
|
-
* Contains response data for the update operation.
|
587
|
-
*/
|
588
|
-
export declare type DomainServicesUpdateResponse = DomainService & {
|
589
|
-
/**
|
590
|
-
* The underlying HTTP response.
|
591
|
-
*/
|
592
|
-
_response: msRest.HttpResponse & {
|
593
|
-
/**
|
594
|
-
* The response body as text (string format)
|
595
|
-
*/
|
596
|
-
bodyAsText: string;
|
597
|
-
/**
|
598
|
-
* The response body as parsed JSON or XML
|
599
|
-
*/
|
600
|
-
parsedBody: DomainService;
|
601
|
-
};
|
602
|
-
};
|
603
|
-
/**
|
604
|
-
* Contains response data for the beginCreateOrUpdate operation.
|
605
|
-
*/
|
606
|
-
export declare type DomainServicesBeginCreateOrUpdateResponse = DomainService & {
|
607
|
-
/**
|
608
|
-
* The underlying HTTP response.
|
609
|
-
*/
|
610
|
-
_response: msRest.HttpResponse & {
|
611
|
-
/**
|
612
|
-
* The response body as text (string format)
|
613
|
-
*/
|
614
|
-
bodyAsText: string;
|
615
|
-
/**
|
616
|
-
* The response body as parsed JSON or XML
|
617
|
-
*/
|
618
|
-
parsedBody: DomainService;
|
619
|
-
};
|
620
|
-
};
|
621
|
-
/**
|
622
|
-
* Contains response data for the beginDeleteMethod operation.
|
623
|
-
*/
|
624
|
-
export declare type DomainServicesBeginDeleteMethodResponse = DomainService & {
|
625
|
-
/**
|
626
|
-
* The underlying HTTP response.
|
627
|
-
*/
|
628
|
-
_response: msRest.HttpResponse & {
|
629
|
-
/**
|
630
|
-
* The response body as text (string format)
|
631
|
-
*/
|
632
|
-
bodyAsText: string;
|
633
|
-
/**
|
634
|
-
* The response body as parsed JSON or XML
|
635
|
-
*/
|
636
|
-
parsedBody: DomainService;
|
637
|
-
};
|
638
|
-
};
|
639
|
-
/**
|
640
|
-
* Contains response data for the beginUpdate operation.
|
641
|
-
*/
|
642
|
-
export declare type DomainServicesBeginUpdateResponse = DomainService & {
|
643
|
-
/**
|
644
|
-
* The underlying HTTP response.
|
645
|
-
*/
|
646
|
-
_response: msRest.HttpResponse & {
|
647
|
-
/**
|
648
|
-
* The response body as text (string format)
|
649
|
-
*/
|
650
|
-
bodyAsText: string;
|
651
|
-
/**
|
652
|
-
* The response body as parsed JSON or XML
|
653
|
-
*/
|
654
|
-
parsedBody: DomainService;
|
655
|
-
};
|
656
|
-
};
|
657
|
-
/**
|
658
|
-
* Contains response data for the listNext operation.
|
659
|
-
*/
|
660
|
-
export declare type DomainServicesListNextResponse = DomainServiceListResult & {
|
661
|
-
/**
|
662
|
-
* The underlying HTTP response.
|
663
|
-
*/
|
664
|
-
_response: msRest.HttpResponse & {
|
665
|
-
/**
|
666
|
-
* The response body as text (string format)
|
667
|
-
*/
|
668
|
-
bodyAsText: string;
|
669
|
-
/**
|
670
|
-
* The response body as parsed JSON or XML
|
671
|
-
*/
|
672
|
-
parsedBody: DomainServiceListResult;
|
673
|
-
};
|
674
|
-
};
|
675
|
-
/**
|
676
|
-
* Contains response data for the listByResourceGroupNext operation.
|
677
|
-
*/
|
678
|
-
export declare type DomainServicesListByResourceGroupNextResponse = DomainServiceListResult & {
|
679
|
-
/**
|
680
|
-
* The underlying HTTP response.
|
681
|
-
*/
|
682
|
-
_response: msRest.HttpResponse & {
|
683
|
-
/**
|
684
|
-
* The response body as text (string format)
|
685
|
-
*/
|
686
|
-
bodyAsText: string;
|
687
|
-
/**
|
688
|
-
* The response body as parsed JSON or XML
|
689
|
-
*/
|
690
|
-
parsedBody: DomainServiceListResult;
|
691
|
-
};
|
692
|
-
};
|
693
|
-
//# sourceMappingURL=index.d.ts.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/models/index.ts"],"names":[],"mappings":"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"}
|