@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
@@ -0,0 +1,591 @@
|
|
1
|
+
## API Report File for "@azure/arm-domainservices"
|
2
|
+
|
3
|
+
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
4
|
+
|
5
|
+
```ts
|
6
|
+
|
7
|
+
import * as coreAuth from '@azure/core-auth';
|
8
|
+
import * as coreClient from '@azure/core-client';
|
9
|
+
import { PagedAsyncIterableIterator } from '@azure/core-paging';
|
10
|
+
import { PollerLike } from '@azure/core-lro';
|
11
|
+
import { PollOperationState } from '@azure/core-lro';
|
12
|
+
|
13
|
+
// @public
|
14
|
+
export interface CloudError {
|
15
|
+
error?: CloudErrorBody;
|
16
|
+
}
|
17
|
+
|
18
|
+
// @public
|
19
|
+
export interface CloudErrorBody {
|
20
|
+
code?: string;
|
21
|
+
details?: CloudErrorBody[];
|
22
|
+
message?: string;
|
23
|
+
target?: string;
|
24
|
+
}
|
25
|
+
|
26
|
+
// @public
|
27
|
+
export interface ConfigDiagnostics {
|
28
|
+
lastExecuted?: Date;
|
29
|
+
validatorResults?: ConfigDiagnosticsValidatorResult[];
|
30
|
+
}
|
31
|
+
|
32
|
+
// @public
|
33
|
+
export interface ConfigDiagnosticsValidatorResult {
|
34
|
+
issues?: ConfigDiagnosticsValidatorResultIssue[];
|
35
|
+
replicaSetSubnetDisplayName?: string;
|
36
|
+
status?: Status;
|
37
|
+
validatorId?: string;
|
38
|
+
}
|
39
|
+
|
40
|
+
// @public
|
41
|
+
export interface ConfigDiagnosticsValidatorResultIssue {
|
42
|
+
descriptionParams?: string[];
|
43
|
+
id?: string;
|
44
|
+
}
|
45
|
+
|
46
|
+
// @public
|
47
|
+
export interface ContainerAccount {
|
48
|
+
accountName?: string;
|
49
|
+
password?: string;
|
50
|
+
spn?: string;
|
51
|
+
}
|
52
|
+
|
53
|
+
// @public
|
54
|
+
export type CreatedByType = string;
|
55
|
+
|
56
|
+
// @public
|
57
|
+
export interface DomainSecuritySettings {
|
58
|
+
kerberosArmoring?: KerberosArmoring;
|
59
|
+
kerberosRc4Encryption?: KerberosRc4Encryption;
|
60
|
+
ntlmV1?: NtlmV1;
|
61
|
+
syncKerberosPasswords?: SyncKerberosPasswords;
|
62
|
+
syncNtlmPasswords?: SyncNtlmPasswords;
|
63
|
+
syncOnPremPasswords?: SyncOnPremPasswords;
|
64
|
+
tlsV1?: TlsV1;
|
65
|
+
}
|
66
|
+
|
67
|
+
// @public
|
68
|
+
export type DomainService = Resource & {
|
69
|
+
readonly version?: number;
|
70
|
+
readonly tenantId?: string;
|
71
|
+
domainName?: string;
|
72
|
+
readonly deploymentId?: string;
|
73
|
+
readonly syncOwner?: string;
|
74
|
+
replicaSets?: ReplicaSet[];
|
75
|
+
ldapsSettings?: LdapsSettings;
|
76
|
+
resourceForestSettings?: ResourceForestSettings;
|
77
|
+
domainSecuritySettings?: DomainSecuritySettings;
|
78
|
+
domainConfigurationType?: string;
|
79
|
+
sku?: string;
|
80
|
+
filteredSync?: FilteredSync;
|
81
|
+
notificationSettings?: NotificationSettings;
|
82
|
+
readonly migrationProperties?: MigrationProperties;
|
83
|
+
readonly provisioningState?: string;
|
84
|
+
configDiagnostics?: ConfigDiagnostics;
|
85
|
+
};
|
86
|
+
|
87
|
+
// @public
|
88
|
+
export interface DomainServiceListResult {
|
89
|
+
readonly nextLink?: string;
|
90
|
+
value?: DomainService[];
|
91
|
+
}
|
92
|
+
|
93
|
+
// @public
|
94
|
+
export interface DomainServiceOperations {
|
95
|
+
list(options?: DomainServiceOperationsListOptionalParams): PagedAsyncIterableIterator<OperationEntity>;
|
96
|
+
}
|
97
|
+
|
98
|
+
// @public
|
99
|
+
export interface DomainServiceOperationsListNextOptionalParams extends coreClient.OperationOptions {
|
100
|
+
}
|
101
|
+
|
102
|
+
// @public
|
103
|
+
export type DomainServiceOperationsListNextResponse = OperationEntityListResult;
|
104
|
+
|
105
|
+
// @public
|
106
|
+
export interface DomainServiceOperationsListOptionalParams extends coreClient.OperationOptions {
|
107
|
+
}
|
108
|
+
|
109
|
+
// @public
|
110
|
+
export type DomainServiceOperationsListResponse = OperationEntityListResult;
|
111
|
+
|
112
|
+
// @public
|
113
|
+
export interface DomainServices {
|
114
|
+
beginCreateOrUpdate(resourceGroupName: string, domainServiceName: string, domainService: DomainService, options?: DomainServicesCreateOrUpdateOptionalParams): Promise<PollerLike<PollOperationState<DomainServicesCreateOrUpdateResponse>, DomainServicesCreateOrUpdateResponse>>;
|
115
|
+
beginCreateOrUpdateAndWait(resourceGroupName: string, domainServiceName: string, domainService: DomainService, options?: DomainServicesCreateOrUpdateOptionalParams): Promise<DomainServicesCreateOrUpdateResponse>;
|
116
|
+
beginDelete(resourceGroupName: string, domainServiceName: string, options?: DomainServicesDeleteOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
117
|
+
beginDeleteAndWait(resourceGroupName: string, domainServiceName: string, options?: DomainServicesDeleteOptionalParams): Promise<void>;
|
118
|
+
beginUpdate(resourceGroupName: string, domainServiceName: string, domainService: DomainService, options?: DomainServicesUpdateOptionalParams): Promise<PollerLike<PollOperationState<DomainServicesUpdateResponse>, DomainServicesUpdateResponse>>;
|
119
|
+
beginUpdateAndWait(resourceGroupName: string, domainServiceName: string, domainService: DomainService, options?: DomainServicesUpdateOptionalParams): Promise<DomainServicesUpdateResponse>;
|
120
|
+
get(resourceGroupName: string, domainServiceName: string, options?: DomainServicesGetOptionalParams): Promise<DomainServicesGetResponse>;
|
121
|
+
list(options?: DomainServicesListOptionalParams): PagedAsyncIterableIterator<DomainService>;
|
122
|
+
listByResourceGroup(resourceGroupName: string, options?: DomainServicesListByResourceGroupOptionalParams): PagedAsyncIterableIterator<DomainService>;
|
123
|
+
}
|
124
|
+
|
125
|
+
// @public
|
126
|
+
export interface DomainServicesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
127
|
+
resumeFrom?: string;
|
128
|
+
updateIntervalInMs?: number;
|
129
|
+
}
|
130
|
+
|
131
|
+
// @public
|
132
|
+
export type DomainServicesCreateOrUpdateResponse = DomainService;
|
133
|
+
|
134
|
+
// @public
|
135
|
+
export interface DomainServicesDeleteOptionalParams extends coreClient.OperationOptions {
|
136
|
+
resumeFrom?: string;
|
137
|
+
updateIntervalInMs?: number;
|
138
|
+
}
|
139
|
+
|
140
|
+
// @public
|
141
|
+
export interface DomainServicesGetOptionalParams extends coreClient.OperationOptions {
|
142
|
+
}
|
143
|
+
|
144
|
+
// @public
|
145
|
+
export type DomainServicesGetResponse = DomainService;
|
146
|
+
|
147
|
+
// @public
|
148
|
+
export interface DomainServicesListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
149
|
+
}
|
150
|
+
|
151
|
+
// @public
|
152
|
+
export type DomainServicesListByResourceGroupNextResponse = DomainServiceListResult;
|
153
|
+
|
154
|
+
// @public
|
155
|
+
export interface DomainServicesListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
156
|
+
}
|
157
|
+
|
158
|
+
// @public
|
159
|
+
export type DomainServicesListByResourceGroupResponse = DomainServiceListResult;
|
160
|
+
|
161
|
+
// @public
|
162
|
+
export interface DomainServicesListNextOptionalParams extends coreClient.OperationOptions {
|
163
|
+
}
|
164
|
+
|
165
|
+
// @public
|
166
|
+
export type DomainServicesListNextResponse = DomainServiceListResult;
|
167
|
+
|
168
|
+
// @public
|
169
|
+
export interface DomainServicesListOptionalParams extends coreClient.OperationOptions {
|
170
|
+
}
|
171
|
+
|
172
|
+
// @public
|
173
|
+
export type DomainServicesListResponse = DomainServiceListResult;
|
174
|
+
|
175
|
+
// @public (undocumented)
|
176
|
+
export class DomainServicesResourceProvider extends coreClient.ServiceClient {
|
177
|
+
// (undocumented)
|
178
|
+
$host: string;
|
179
|
+
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: DomainServicesResourceProviderOptionalParams);
|
180
|
+
// (undocumented)
|
181
|
+
apiVersion: string;
|
182
|
+
// (undocumented)
|
183
|
+
domainServiceOperations: DomainServiceOperations;
|
184
|
+
// (undocumented)
|
185
|
+
domainServices: DomainServices;
|
186
|
+
// (undocumented)
|
187
|
+
ouContainerOperationGrp: OuContainerOperationGrp;
|
188
|
+
// (undocumented)
|
189
|
+
ouContainerOperations: OuContainerOperations;
|
190
|
+
// (undocumented)
|
191
|
+
subscriptionId: string;
|
192
|
+
}
|
193
|
+
|
194
|
+
// @public
|
195
|
+
export interface DomainServicesResourceProviderOptionalParams extends coreClient.ServiceClientOptions {
|
196
|
+
$host?: string;
|
197
|
+
apiVersion?: string;
|
198
|
+
endpoint?: string;
|
199
|
+
}
|
200
|
+
|
201
|
+
// @public
|
202
|
+
export interface DomainServicesUpdateOptionalParams extends coreClient.OperationOptions {
|
203
|
+
resumeFrom?: string;
|
204
|
+
updateIntervalInMs?: number;
|
205
|
+
}
|
206
|
+
|
207
|
+
// @public
|
208
|
+
export type DomainServicesUpdateResponse = DomainService;
|
209
|
+
|
210
|
+
// @public
|
211
|
+
export type ExternalAccess = string;
|
212
|
+
|
213
|
+
// @public
|
214
|
+
export type FilteredSync = string;
|
215
|
+
|
216
|
+
// @public
|
217
|
+
export interface ForestTrust {
|
218
|
+
friendlyName?: string;
|
219
|
+
remoteDnsIps?: string;
|
220
|
+
trustDirection?: string;
|
221
|
+
trustedDomainFqdn?: string;
|
222
|
+
trustPassword?: string;
|
223
|
+
}
|
224
|
+
|
225
|
+
// @public
|
226
|
+
export interface HealthAlert {
|
227
|
+
readonly id?: string;
|
228
|
+
readonly issue?: string;
|
229
|
+
readonly lastDetected?: Date;
|
230
|
+
readonly name?: string;
|
231
|
+
readonly raised?: Date;
|
232
|
+
readonly resolutionUri?: string;
|
233
|
+
readonly severity?: string;
|
234
|
+
}
|
235
|
+
|
236
|
+
// @public
|
237
|
+
export interface HealthMonitor {
|
238
|
+
readonly details?: string;
|
239
|
+
readonly id?: string;
|
240
|
+
readonly name?: string;
|
241
|
+
}
|
242
|
+
|
243
|
+
// @public
|
244
|
+
export type KerberosArmoring = string;
|
245
|
+
|
246
|
+
// @public
|
247
|
+
export type KerberosRc4Encryption = string;
|
248
|
+
|
249
|
+
// @public
|
250
|
+
export enum KnownCreatedByType {
|
251
|
+
// (undocumented)
|
252
|
+
Application = "Application",
|
253
|
+
// (undocumented)
|
254
|
+
Key = "Key",
|
255
|
+
// (undocumented)
|
256
|
+
ManagedIdentity = "ManagedIdentity",
|
257
|
+
// (undocumented)
|
258
|
+
User = "User"
|
259
|
+
}
|
260
|
+
|
261
|
+
// @public
|
262
|
+
export enum KnownExternalAccess {
|
263
|
+
// (undocumented)
|
264
|
+
Disabled = "Disabled",
|
265
|
+
// (undocumented)
|
266
|
+
Enabled = "Enabled"
|
267
|
+
}
|
268
|
+
|
269
|
+
// @public
|
270
|
+
export enum KnownFilteredSync {
|
271
|
+
// (undocumented)
|
272
|
+
Disabled = "Disabled",
|
273
|
+
// (undocumented)
|
274
|
+
Enabled = "Enabled"
|
275
|
+
}
|
276
|
+
|
277
|
+
// @public
|
278
|
+
export enum KnownKerberosArmoring {
|
279
|
+
// (undocumented)
|
280
|
+
Disabled = "Disabled",
|
281
|
+
// (undocumented)
|
282
|
+
Enabled = "Enabled"
|
283
|
+
}
|
284
|
+
|
285
|
+
// @public
|
286
|
+
export enum KnownKerberosRc4Encryption {
|
287
|
+
// (undocumented)
|
288
|
+
Disabled = "Disabled",
|
289
|
+
// (undocumented)
|
290
|
+
Enabled = "Enabled"
|
291
|
+
}
|
292
|
+
|
293
|
+
// @public
|
294
|
+
export enum KnownLdaps {
|
295
|
+
// (undocumented)
|
296
|
+
Disabled = "Disabled",
|
297
|
+
// (undocumented)
|
298
|
+
Enabled = "Enabled"
|
299
|
+
}
|
300
|
+
|
301
|
+
// @public
|
302
|
+
export enum KnownNotifyDcAdmins {
|
303
|
+
// (undocumented)
|
304
|
+
Disabled = "Disabled",
|
305
|
+
// (undocumented)
|
306
|
+
Enabled = "Enabled"
|
307
|
+
}
|
308
|
+
|
309
|
+
// @public
|
310
|
+
export enum KnownNotifyGlobalAdmins {
|
311
|
+
// (undocumented)
|
312
|
+
Disabled = "Disabled",
|
313
|
+
// (undocumented)
|
314
|
+
Enabled = "Enabled"
|
315
|
+
}
|
316
|
+
|
317
|
+
// @public
|
318
|
+
export enum KnownNtlmV1 {
|
319
|
+
// (undocumented)
|
320
|
+
Disabled = "Disabled",
|
321
|
+
// (undocumented)
|
322
|
+
Enabled = "Enabled"
|
323
|
+
}
|
324
|
+
|
325
|
+
// @public
|
326
|
+
export enum KnownStatus {
|
327
|
+
// (undocumented)
|
328
|
+
Failure = "Failure",
|
329
|
+
// (undocumented)
|
330
|
+
None = "None",
|
331
|
+
// (undocumented)
|
332
|
+
OK = "OK",
|
333
|
+
// (undocumented)
|
334
|
+
Running = "Running",
|
335
|
+
// (undocumented)
|
336
|
+
Skipped = "Skipped",
|
337
|
+
// (undocumented)
|
338
|
+
Warning = "Warning"
|
339
|
+
}
|
340
|
+
|
341
|
+
// @public
|
342
|
+
export enum KnownSyncKerberosPasswords {
|
343
|
+
// (undocumented)
|
344
|
+
Disabled = "Disabled",
|
345
|
+
// (undocumented)
|
346
|
+
Enabled = "Enabled"
|
347
|
+
}
|
348
|
+
|
349
|
+
// @public
|
350
|
+
export enum KnownSyncNtlmPasswords {
|
351
|
+
// (undocumented)
|
352
|
+
Disabled = "Disabled",
|
353
|
+
// (undocumented)
|
354
|
+
Enabled = "Enabled"
|
355
|
+
}
|
356
|
+
|
357
|
+
// @public
|
358
|
+
export enum KnownSyncOnPremPasswords {
|
359
|
+
// (undocumented)
|
360
|
+
Disabled = "Disabled",
|
361
|
+
// (undocumented)
|
362
|
+
Enabled = "Enabled"
|
363
|
+
}
|
364
|
+
|
365
|
+
// @public
|
366
|
+
export enum KnownTlsV1 {
|
367
|
+
// (undocumented)
|
368
|
+
Disabled = "Disabled",
|
369
|
+
// (undocumented)
|
370
|
+
Enabled = "Enabled"
|
371
|
+
}
|
372
|
+
|
373
|
+
// @public
|
374
|
+
export type Ldaps = string;
|
375
|
+
|
376
|
+
// @public
|
377
|
+
export interface LdapsSettings {
|
378
|
+
readonly certificateNotAfter?: Date;
|
379
|
+
readonly certificateThumbprint?: string;
|
380
|
+
externalAccess?: ExternalAccess;
|
381
|
+
ldaps?: Ldaps;
|
382
|
+
pfxCertificate?: string;
|
383
|
+
pfxCertificatePassword?: string;
|
384
|
+
readonly publicCertificate?: string;
|
385
|
+
}
|
386
|
+
|
387
|
+
// @public
|
388
|
+
export interface MigrationProgress {
|
389
|
+
completionPercentage?: number;
|
390
|
+
progressMessage?: string;
|
391
|
+
}
|
392
|
+
|
393
|
+
// @public
|
394
|
+
export interface MigrationProperties {
|
395
|
+
readonly migrationProgress?: MigrationProgress;
|
396
|
+
readonly oldSubnetId?: string;
|
397
|
+
readonly oldVnetSiteId?: string;
|
398
|
+
}
|
399
|
+
|
400
|
+
// @public
|
401
|
+
export interface NotificationSettings {
|
402
|
+
additionalRecipients?: string[];
|
403
|
+
notifyDcAdmins?: NotifyDcAdmins;
|
404
|
+
notifyGlobalAdmins?: NotifyGlobalAdmins;
|
405
|
+
}
|
406
|
+
|
407
|
+
// @public
|
408
|
+
export type NotifyDcAdmins = string;
|
409
|
+
|
410
|
+
// @public
|
411
|
+
export type NotifyGlobalAdmins = string;
|
412
|
+
|
413
|
+
// @public
|
414
|
+
export type NtlmV1 = string;
|
415
|
+
|
416
|
+
// @public
|
417
|
+
export interface OperationDisplayInfo {
|
418
|
+
description?: string;
|
419
|
+
operation?: string;
|
420
|
+
provider?: string;
|
421
|
+
resource?: string;
|
422
|
+
}
|
423
|
+
|
424
|
+
// @public
|
425
|
+
export interface OperationEntity {
|
426
|
+
display?: OperationDisplayInfo;
|
427
|
+
name?: string;
|
428
|
+
origin?: string;
|
429
|
+
}
|
430
|
+
|
431
|
+
// @public
|
432
|
+
export interface OperationEntityListResult {
|
433
|
+
readonly nextLink?: string;
|
434
|
+
value?: OperationEntity[];
|
435
|
+
}
|
436
|
+
|
437
|
+
// @public
|
438
|
+
export type OuContainer = Resource & {
|
439
|
+
readonly tenantId?: string;
|
440
|
+
readonly domainName?: string;
|
441
|
+
readonly deploymentId?: string;
|
442
|
+
readonly containerId?: string;
|
443
|
+
accounts?: ContainerAccount[];
|
444
|
+
readonly serviceStatus?: string;
|
445
|
+
readonly distinguishedName?: string;
|
446
|
+
readonly provisioningState?: string;
|
447
|
+
};
|
448
|
+
|
449
|
+
// @public
|
450
|
+
export interface OuContainerCreateOptionalParams extends coreClient.OperationOptions {
|
451
|
+
resumeFrom?: string;
|
452
|
+
updateIntervalInMs?: number;
|
453
|
+
}
|
454
|
+
|
455
|
+
// @public
|
456
|
+
export type OuContainerCreateResponse = OuContainer;
|
457
|
+
|
458
|
+
// @public
|
459
|
+
export interface OuContainerDeleteOptionalParams extends coreClient.OperationOptions {
|
460
|
+
resumeFrom?: string;
|
461
|
+
updateIntervalInMs?: number;
|
462
|
+
}
|
463
|
+
|
464
|
+
// @public
|
465
|
+
export interface OuContainerGetOptionalParams extends coreClient.OperationOptions {
|
466
|
+
}
|
467
|
+
|
468
|
+
// @public
|
469
|
+
export type OuContainerGetResponse = OuContainer;
|
470
|
+
|
471
|
+
// @public
|
472
|
+
export interface OuContainerListNextOptionalParams extends coreClient.OperationOptions {
|
473
|
+
}
|
474
|
+
|
475
|
+
// @public
|
476
|
+
export type OuContainerListNextResponse = OuContainerListResult;
|
477
|
+
|
478
|
+
// @public
|
479
|
+
export interface OuContainerListOptionalParams extends coreClient.OperationOptions {
|
480
|
+
}
|
481
|
+
|
482
|
+
// @public
|
483
|
+
export type OuContainerListResponse = OuContainerListResult;
|
484
|
+
|
485
|
+
// @public
|
486
|
+
export interface OuContainerListResult {
|
487
|
+
readonly nextLink?: string;
|
488
|
+
value?: OuContainer[];
|
489
|
+
}
|
490
|
+
|
491
|
+
// @public
|
492
|
+
export interface OuContainerOperationGrp {
|
493
|
+
beginCreate(resourceGroupName: string, domainServiceName: string, ouContainerName: string, containerAccount: ContainerAccount, options?: OuContainerCreateOptionalParams): Promise<PollerLike<PollOperationState<OuContainerCreateResponse>, OuContainerCreateResponse>>;
|
494
|
+
beginCreateAndWait(resourceGroupName: string, domainServiceName: string, ouContainerName: string, containerAccount: ContainerAccount, options?: OuContainerCreateOptionalParams): Promise<OuContainerCreateResponse>;
|
495
|
+
beginDelete(resourceGroupName: string, domainServiceName: string, ouContainerName: string, options?: OuContainerDeleteOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
496
|
+
beginDeleteAndWait(resourceGroupName: string, domainServiceName: string, ouContainerName: string, options?: OuContainerDeleteOptionalParams): Promise<void>;
|
497
|
+
beginUpdate(resourceGroupName: string, domainServiceName: string, ouContainerName: string, containerAccount: ContainerAccount, options?: OuContainerUpdateOptionalParams): Promise<PollerLike<PollOperationState<OuContainerUpdateResponse>, OuContainerUpdateResponse>>;
|
498
|
+
beginUpdateAndWait(resourceGroupName: string, domainServiceName: string, ouContainerName: string, containerAccount: ContainerAccount, options?: OuContainerUpdateOptionalParams): Promise<OuContainerUpdateResponse>;
|
499
|
+
get(resourceGroupName: string, domainServiceName: string, ouContainerName: string, options?: OuContainerGetOptionalParams): Promise<OuContainerGetResponse>;
|
500
|
+
list(resourceGroupName: string, domainServiceName: string, options?: OuContainerListOptionalParams): PagedAsyncIterableIterator<OuContainer>;
|
501
|
+
}
|
502
|
+
|
503
|
+
// @public
|
504
|
+
export interface OuContainerOperations {
|
505
|
+
list(options?: OuContainerOperationsListOptionalParams): PagedAsyncIterableIterator<OperationEntity>;
|
506
|
+
}
|
507
|
+
|
508
|
+
// @public
|
509
|
+
export interface OuContainerOperationsListNextOptionalParams extends coreClient.OperationOptions {
|
510
|
+
}
|
511
|
+
|
512
|
+
// @public
|
513
|
+
export type OuContainerOperationsListNextResponse = OperationEntityListResult;
|
514
|
+
|
515
|
+
// @public
|
516
|
+
export interface OuContainerOperationsListOptionalParams extends coreClient.OperationOptions {
|
517
|
+
}
|
518
|
+
|
519
|
+
// @public
|
520
|
+
export type OuContainerOperationsListResponse = OperationEntityListResult;
|
521
|
+
|
522
|
+
// @public
|
523
|
+
export interface OuContainerUpdateOptionalParams extends coreClient.OperationOptions {
|
524
|
+
resumeFrom?: string;
|
525
|
+
updateIntervalInMs?: number;
|
526
|
+
}
|
527
|
+
|
528
|
+
// @public
|
529
|
+
export type OuContainerUpdateResponse = OuContainer;
|
530
|
+
|
531
|
+
// @public
|
532
|
+
export interface ReplicaSet {
|
533
|
+
readonly domainControllerIpAddress?: string[];
|
534
|
+
readonly externalAccessIpAddress?: string;
|
535
|
+
readonly healthAlerts?: HealthAlert[];
|
536
|
+
readonly healthLastEvaluated?: Date;
|
537
|
+
readonly healthMonitors?: HealthMonitor[];
|
538
|
+
location?: string;
|
539
|
+
readonly replicaSetId?: string;
|
540
|
+
readonly serviceStatus?: string;
|
541
|
+
subnetId?: string;
|
542
|
+
readonly vnetSiteId?: string;
|
543
|
+
}
|
544
|
+
|
545
|
+
// @public
|
546
|
+
export interface Resource {
|
547
|
+
etag?: string;
|
548
|
+
readonly id?: string;
|
549
|
+
location?: string;
|
550
|
+
readonly name?: string;
|
551
|
+
readonly systemData?: SystemData;
|
552
|
+
tags?: {
|
553
|
+
[propertyName: string]: string;
|
554
|
+
};
|
555
|
+
readonly type?: string;
|
556
|
+
}
|
557
|
+
|
558
|
+
// @public
|
559
|
+
export interface ResourceForestSettings {
|
560
|
+
resourceForest?: string;
|
561
|
+
settings?: ForestTrust[];
|
562
|
+
}
|
563
|
+
|
564
|
+
// @public
|
565
|
+
export type Status = string;
|
566
|
+
|
567
|
+
// @public
|
568
|
+
export type SyncKerberosPasswords = string;
|
569
|
+
|
570
|
+
// @public
|
571
|
+
export type SyncNtlmPasswords = string;
|
572
|
+
|
573
|
+
// @public
|
574
|
+
export type SyncOnPremPasswords = string;
|
575
|
+
|
576
|
+
// @public
|
577
|
+
export interface SystemData {
|
578
|
+
createdAt?: Date;
|
579
|
+
createdBy?: string;
|
580
|
+
createdByType?: CreatedByType;
|
581
|
+
lastModifiedAt?: Date;
|
582
|
+
lastModifiedBy?: string;
|
583
|
+
lastModifiedByType?: CreatedByType;
|
584
|
+
}
|
585
|
+
|
586
|
+
// @public
|
587
|
+
export type TlsV1 = string;
|
588
|
+
|
589
|
+
// (No @packageDocumentation comment for this package)
|
590
|
+
|
591
|
+
```
|