@azure/arm-domainservices 3.2.0 → 4.0.1-alpha.20220118.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,1062 @@
|
|
1
|
+
import * as coreAuth from '@azure/core-auth';
|
2
|
+
import * as coreClient from '@azure/core-client';
|
3
|
+
import { PagedAsyncIterableIterator } from '@azure/core-paging';
|
4
|
+
import { PollerLike } from '@azure/core-lro';
|
5
|
+
import { PollOperationState } from '@azure/core-lro';
|
6
|
+
|
7
|
+
/** An error response from the Domain Services. */
|
8
|
+
export declare interface CloudError {
|
9
|
+
/** An error response from the Domain Services. */
|
10
|
+
error?: CloudErrorBody;
|
11
|
+
}
|
12
|
+
|
13
|
+
/** An error response from the Domain Services. */
|
14
|
+
export declare interface CloudErrorBody {
|
15
|
+
/** An identifier for the error. Codes are invariant and are intended to be consumed programmatically. */
|
16
|
+
code?: string;
|
17
|
+
/** A message describing the error, intended to be suitable for display in a user interface. */
|
18
|
+
message?: string;
|
19
|
+
/** The target of the particular error. For example, the name of the property in error. */
|
20
|
+
target?: string;
|
21
|
+
/** A list of additional details about the error. */
|
22
|
+
details?: CloudErrorBody[];
|
23
|
+
}
|
24
|
+
|
25
|
+
/** Configuration Diagnostics */
|
26
|
+
export declare interface ConfigDiagnostics {
|
27
|
+
/** Last domain configuration diagnostics DateTime */
|
28
|
+
lastExecuted?: Date;
|
29
|
+
/** List of Configuration Diagnostics validator results. */
|
30
|
+
validatorResults?: ConfigDiagnosticsValidatorResult[];
|
31
|
+
}
|
32
|
+
|
33
|
+
/** Config Diagnostics validator result data */
|
34
|
+
export declare interface ConfigDiagnosticsValidatorResult {
|
35
|
+
/** Validator identifier */
|
36
|
+
validatorId?: string;
|
37
|
+
/** Replica set location and subnet name */
|
38
|
+
replicaSetSubnetDisplayName?: string;
|
39
|
+
/** Status for individual validator after running diagnostics. */
|
40
|
+
status?: Status;
|
41
|
+
/** List of resource config validation issues. */
|
42
|
+
issues?: ConfigDiagnosticsValidatorResultIssue[];
|
43
|
+
}
|
44
|
+
|
45
|
+
/** Specific issue for a particular config diagnostics validator */
|
46
|
+
export declare interface ConfigDiagnosticsValidatorResultIssue {
|
47
|
+
/** Validation issue identifier. */
|
48
|
+
id?: string;
|
49
|
+
/** List of domain resource property name or values used to compose a rich description. */
|
50
|
+
descriptionParams?: string[];
|
51
|
+
}
|
52
|
+
|
53
|
+
/** Container Account Description */
|
54
|
+
export declare interface ContainerAccount {
|
55
|
+
/** The account name */
|
56
|
+
accountName?: string;
|
57
|
+
/** The account spn */
|
58
|
+
spn?: string;
|
59
|
+
/** The account password */
|
60
|
+
password?: string;
|
61
|
+
}
|
62
|
+
|
63
|
+
/**
|
64
|
+
* Defines values for CreatedByType. \
|
65
|
+
* {@link KnownCreatedByType} can be used interchangeably with CreatedByType,
|
66
|
+
* this enum contains the known values that the service supports.
|
67
|
+
* ### Known values supported by the service
|
68
|
+
* **User** \
|
69
|
+
* **Application** \
|
70
|
+
* **ManagedIdentity** \
|
71
|
+
* **Key**
|
72
|
+
*/
|
73
|
+
export declare type CreatedByType = string;
|
74
|
+
|
75
|
+
/** Domain Security Settings */
|
76
|
+
export declare interface DomainSecuritySettings {
|
77
|
+
/** A flag to determine whether or not NtlmV1 is enabled or disabled. */
|
78
|
+
ntlmV1?: NtlmV1;
|
79
|
+
/** A flag to determine whether or not TlsV1 is enabled or disabled. */
|
80
|
+
tlsV1?: TlsV1;
|
81
|
+
/** A flag to determine whether or not SyncNtlmPasswords is enabled or disabled. */
|
82
|
+
syncNtlmPasswords?: SyncNtlmPasswords;
|
83
|
+
/** A flag to determine whether or not SyncKerberosPasswords is enabled or disabled. */
|
84
|
+
syncKerberosPasswords?: SyncKerberosPasswords;
|
85
|
+
/** A flag to determine whether or not SyncOnPremPasswords is enabled or disabled. */
|
86
|
+
syncOnPremPasswords?: SyncOnPremPasswords;
|
87
|
+
/** A flag to determine whether or not KerberosRc4Encryption is enabled or disabled. */
|
88
|
+
kerberosRc4Encryption?: KerberosRc4Encryption;
|
89
|
+
/** A flag to determine whether or not KerberosArmoring is enabled or disabled. */
|
90
|
+
kerberosArmoring?: KerberosArmoring;
|
91
|
+
}
|
92
|
+
|
93
|
+
/** Domain service. */
|
94
|
+
export declare type DomainService = Resource & {
|
95
|
+
/**
|
96
|
+
* Data Model Version
|
97
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
98
|
+
*/
|
99
|
+
readonly version?: number;
|
100
|
+
/**
|
101
|
+
* Azure Active Directory Tenant Id
|
102
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
103
|
+
*/
|
104
|
+
readonly tenantId?: string;
|
105
|
+
/** The name of the Azure domain that the user would like to deploy Domain Services to. */
|
106
|
+
domainName?: string;
|
107
|
+
/**
|
108
|
+
* Deployment Id
|
109
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
110
|
+
*/
|
111
|
+
readonly deploymentId?: string;
|
112
|
+
/**
|
113
|
+
* SyncOwner ReplicaSet Id
|
114
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
115
|
+
*/
|
116
|
+
readonly syncOwner?: string;
|
117
|
+
/** List of ReplicaSets */
|
118
|
+
replicaSets?: ReplicaSet[];
|
119
|
+
/** Secure LDAP Settings */
|
120
|
+
ldapsSettings?: LdapsSettings;
|
121
|
+
/** Resource Forest Settings */
|
122
|
+
resourceForestSettings?: ResourceForestSettings;
|
123
|
+
/** DomainSecurity Settings */
|
124
|
+
domainSecuritySettings?: DomainSecuritySettings;
|
125
|
+
/** Domain Configuration Type */
|
126
|
+
domainConfigurationType?: string;
|
127
|
+
/** Sku Type */
|
128
|
+
sku?: string;
|
129
|
+
/** Enabled or Disabled flag to turn on Group-based filtered sync */
|
130
|
+
filteredSync?: FilteredSync;
|
131
|
+
/** Notification Settings */
|
132
|
+
notificationSettings?: NotificationSettings;
|
133
|
+
/**
|
134
|
+
* Migration Properties
|
135
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
136
|
+
*/
|
137
|
+
readonly migrationProperties?: MigrationProperties;
|
138
|
+
/**
|
139
|
+
* the current deployment or provisioning state, which only appears in the response.
|
140
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
141
|
+
*/
|
142
|
+
readonly provisioningState?: string;
|
143
|
+
/** Configuration diagnostics data containing latest execution from client. */
|
144
|
+
configDiagnostics?: ConfigDiagnostics;
|
145
|
+
};
|
146
|
+
|
147
|
+
/** The response from the List Domain Services operation. */
|
148
|
+
export declare interface DomainServiceListResult {
|
149
|
+
/** the list of domain services. */
|
150
|
+
value?: DomainService[];
|
151
|
+
/**
|
152
|
+
* The continuation token for the next page of results.
|
153
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
154
|
+
*/
|
155
|
+
readonly nextLink?: string;
|
156
|
+
}
|
157
|
+
|
158
|
+
/** Interface representing a DomainServiceOperations. */
|
159
|
+
export declare interface DomainServiceOperations {
|
160
|
+
/**
|
161
|
+
* Lists all the available Domain Services operations.
|
162
|
+
* @param options The options parameters.
|
163
|
+
*/
|
164
|
+
list(options?: DomainServiceOperationsListOptionalParams): PagedAsyncIterableIterator<OperationEntity>;
|
165
|
+
}
|
166
|
+
|
167
|
+
/** Optional parameters. */
|
168
|
+
export declare interface DomainServiceOperationsListNextOptionalParams extends coreClient.OperationOptions {
|
169
|
+
}
|
170
|
+
|
171
|
+
/** Contains response data for the listNext operation. */
|
172
|
+
export declare type DomainServiceOperationsListNextResponse = OperationEntityListResult;
|
173
|
+
|
174
|
+
/** Optional parameters. */
|
175
|
+
export declare interface DomainServiceOperationsListOptionalParams extends coreClient.OperationOptions {
|
176
|
+
}
|
177
|
+
|
178
|
+
/** Contains response data for the list operation. */
|
179
|
+
export declare type DomainServiceOperationsListResponse = OperationEntityListResult;
|
180
|
+
|
181
|
+
/** Interface representing a DomainServices. */
|
182
|
+
export declare interface DomainServices {
|
183
|
+
/**
|
184
|
+
* The List Domain Services in Subscription operation lists all the domain services available under the
|
185
|
+
* given subscription (and across all resource groups within that subscription).
|
186
|
+
* @param options The options parameters.
|
187
|
+
*/
|
188
|
+
list(options?: DomainServicesListOptionalParams): PagedAsyncIterableIterator<DomainService>;
|
189
|
+
/**
|
190
|
+
* The List Domain Services in Resource Group operation lists all the domain services available under
|
191
|
+
* the given resource group.
|
192
|
+
* @param resourceGroupName The name of the resource group within the user's subscription. The name is
|
193
|
+
* case insensitive.
|
194
|
+
* @param options The options parameters.
|
195
|
+
*/
|
196
|
+
listByResourceGroup(resourceGroupName: string, options?: DomainServicesListByResourceGroupOptionalParams): PagedAsyncIterableIterator<DomainService>;
|
197
|
+
/**
|
198
|
+
* The Create Domain Service operation creates a new domain service with the specified parameters. If
|
199
|
+
* the specific service already exists, then any patchable properties will be updated and any immutable
|
200
|
+
* properties will remain unchanged.
|
201
|
+
* @param resourceGroupName The name of the resource group within the user's subscription. The name is
|
202
|
+
* case insensitive.
|
203
|
+
* @param domainServiceName The name of the domain service.
|
204
|
+
* @param domainService Properties supplied to the Create or Update a Domain Service operation.
|
205
|
+
* @param options The options parameters.
|
206
|
+
*/
|
207
|
+
beginCreateOrUpdate(resourceGroupName: string, domainServiceName: string, domainService: DomainService, options?: DomainServicesCreateOrUpdateOptionalParams): Promise<PollerLike<PollOperationState<DomainServicesCreateOrUpdateResponse>, DomainServicesCreateOrUpdateResponse>>;
|
208
|
+
/**
|
209
|
+
* The Create Domain Service operation creates a new domain service with the specified parameters. If
|
210
|
+
* the specific service already exists, then any patchable properties will be updated and any immutable
|
211
|
+
* properties will remain unchanged.
|
212
|
+
* @param resourceGroupName The name of the resource group within the user's subscription. The name is
|
213
|
+
* case insensitive.
|
214
|
+
* @param domainServiceName The name of the domain service.
|
215
|
+
* @param domainService Properties supplied to the Create or Update a Domain Service operation.
|
216
|
+
* @param options The options parameters.
|
217
|
+
*/
|
218
|
+
beginCreateOrUpdateAndWait(resourceGroupName: string, domainServiceName: string, domainService: DomainService, options?: DomainServicesCreateOrUpdateOptionalParams): Promise<DomainServicesCreateOrUpdateResponse>;
|
219
|
+
/**
|
220
|
+
* The Get Domain Service operation retrieves a json representation of the Domain Service.
|
221
|
+
* @param resourceGroupName The name of the resource group within the user's subscription. The name is
|
222
|
+
* case insensitive.
|
223
|
+
* @param domainServiceName The name of the domain service.
|
224
|
+
* @param options The options parameters.
|
225
|
+
*/
|
226
|
+
get(resourceGroupName: string, domainServiceName: string, options?: DomainServicesGetOptionalParams): Promise<DomainServicesGetResponse>;
|
227
|
+
/**
|
228
|
+
* The Delete Domain Service operation deletes an existing Domain Service.
|
229
|
+
* @param resourceGroupName The name of the resource group within the user's subscription. The name is
|
230
|
+
* case insensitive.
|
231
|
+
* @param domainServiceName The name of the domain service.
|
232
|
+
* @param options The options parameters.
|
233
|
+
*/
|
234
|
+
beginDelete(resourceGroupName: string, domainServiceName: string, options?: DomainServicesDeleteOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
235
|
+
/**
|
236
|
+
* The Delete Domain Service operation deletes an existing Domain Service.
|
237
|
+
* @param resourceGroupName The name of the resource group within the user's subscription. The name is
|
238
|
+
* case insensitive.
|
239
|
+
* @param domainServiceName The name of the domain service.
|
240
|
+
* @param options The options parameters.
|
241
|
+
*/
|
242
|
+
beginDeleteAndWait(resourceGroupName: string, domainServiceName: string, options?: DomainServicesDeleteOptionalParams): Promise<void>;
|
243
|
+
/**
|
244
|
+
* The Update Domain Service operation can be used to update the existing deployment. The update call
|
245
|
+
* only supports the properties listed in the PATCH body.
|
246
|
+
* @param resourceGroupName The name of the resource group within the user's subscription. The name is
|
247
|
+
* case insensitive.
|
248
|
+
* @param domainServiceName The name of the domain service.
|
249
|
+
* @param domainService Properties supplied to the Update a Domain Service operation.
|
250
|
+
* @param options The options parameters.
|
251
|
+
*/
|
252
|
+
beginUpdate(resourceGroupName: string, domainServiceName: string, domainService: DomainService, options?: DomainServicesUpdateOptionalParams): Promise<PollerLike<PollOperationState<DomainServicesUpdateResponse>, DomainServicesUpdateResponse>>;
|
253
|
+
/**
|
254
|
+
* The Update Domain Service operation can be used to update the existing deployment. The update call
|
255
|
+
* only supports the properties listed in the PATCH body.
|
256
|
+
* @param resourceGroupName The name of the resource group within the user's subscription. The name is
|
257
|
+
* case insensitive.
|
258
|
+
* @param domainServiceName The name of the domain service.
|
259
|
+
* @param domainService Properties supplied to the Update a Domain Service operation.
|
260
|
+
* @param options The options parameters.
|
261
|
+
*/
|
262
|
+
beginUpdateAndWait(resourceGroupName: string, domainServiceName: string, domainService: DomainService, options?: DomainServicesUpdateOptionalParams): Promise<DomainServicesUpdateResponse>;
|
263
|
+
}
|
264
|
+
|
265
|
+
/** Optional parameters. */
|
266
|
+
export declare interface DomainServicesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
267
|
+
/** Delay to wait until next poll, in milliseconds. */
|
268
|
+
updateIntervalInMs?: number;
|
269
|
+
/** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */
|
270
|
+
resumeFrom?: string;
|
271
|
+
}
|
272
|
+
|
273
|
+
/** Contains response data for the createOrUpdate operation. */
|
274
|
+
export declare type DomainServicesCreateOrUpdateResponse = DomainService;
|
275
|
+
|
276
|
+
/** Optional parameters. */
|
277
|
+
export declare interface DomainServicesDeleteOptionalParams extends coreClient.OperationOptions {
|
278
|
+
/** Delay to wait until next poll, in milliseconds. */
|
279
|
+
updateIntervalInMs?: number;
|
280
|
+
/** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */
|
281
|
+
resumeFrom?: string;
|
282
|
+
}
|
283
|
+
|
284
|
+
/** Optional parameters. */
|
285
|
+
export declare interface DomainServicesGetOptionalParams extends coreClient.OperationOptions {
|
286
|
+
}
|
287
|
+
|
288
|
+
/** Contains response data for the get operation. */
|
289
|
+
export declare type DomainServicesGetResponse = DomainService;
|
290
|
+
|
291
|
+
/** Optional parameters. */
|
292
|
+
export declare interface DomainServicesListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
293
|
+
}
|
294
|
+
|
295
|
+
/** Contains response data for the listByResourceGroupNext operation. */
|
296
|
+
export declare type DomainServicesListByResourceGroupNextResponse = DomainServiceListResult;
|
297
|
+
|
298
|
+
/** Optional parameters. */
|
299
|
+
export declare interface DomainServicesListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
300
|
+
}
|
301
|
+
|
302
|
+
/** Contains response data for the listByResourceGroup operation. */
|
303
|
+
export declare type DomainServicesListByResourceGroupResponse = DomainServiceListResult;
|
304
|
+
|
305
|
+
/** Optional parameters. */
|
306
|
+
export declare interface DomainServicesListNextOptionalParams extends coreClient.OperationOptions {
|
307
|
+
}
|
308
|
+
|
309
|
+
/** Contains response data for the listNext operation. */
|
310
|
+
export declare type DomainServicesListNextResponse = DomainServiceListResult;
|
311
|
+
|
312
|
+
/** Optional parameters. */
|
313
|
+
export declare interface DomainServicesListOptionalParams extends coreClient.OperationOptions {
|
314
|
+
}
|
315
|
+
|
316
|
+
/** Contains response data for the list operation. */
|
317
|
+
export declare type DomainServicesListResponse = DomainServiceListResult;
|
318
|
+
|
319
|
+
export declare class DomainServicesResourceProvider extends coreClient.ServiceClient {
|
320
|
+
$host: string;
|
321
|
+
apiVersion: string;
|
322
|
+
subscriptionId: string;
|
323
|
+
/**
|
324
|
+
* Initializes a new instance of the DomainServicesResourceProvider class.
|
325
|
+
* @param credentials Subscription credentials which uniquely identify client subscription.
|
326
|
+
* @param subscriptionId Gets subscription credentials which uniquely identify the Microsoft Azure
|
327
|
+
* subscription. The subscription ID forms part of the URI for every service call.
|
328
|
+
* @param options The parameter options
|
329
|
+
*/
|
330
|
+
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: DomainServicesResourceProviderOptionalParams);
|
331
|
+
domainServiceOperations: DomainServiceOperations;
|
332
|
+
domainServices: DomainServices;
|
333
|
+
ouContainerOperations: OuContainerOperations;
|
334
|
+
ouContainerOperationGrp: OuContainerOperationGrp;
|
335
|
+
}
|
336
|
+
|
337
|
+
/** Optional parameters. */
|
338
|
+
export declare interface DomainServicesResourceProviderOptionalParams extends coreClient.ServiceClientOptions {
|
339
|
+
/** server parameter */
|
340
|
+
$host?: string;
|
341
|
+
/** Api Version */
|
342
|
+
apiVersion?: string;
|
343
|
+
/** Overrides client endpoint. */
|
344
|
+
endpoint?: string;
|
345
|
+
}
|
346
|
+
|
347
|
+
/** Optional parameters. */
|
348
|
+
export declare interface DomainServicesUpdateOptionalParams extends coreClient.OperationOptions {
|
349
|
+
/** Delay to wait until next poll, in milliseconds. */
|
350
|
+
updateIntervalInMs?: number;
|
351
|
+
/** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */
|
352
|
+
resumeFrom?: string;
|
353
|
+
}
|
354
|
+
|
355
|
+
/** Contains response data for the update operation. */
|
356
|
+
export declare type DomainServicesUpdateResponse = DomainService;
|
357
|
+
|
358
|
+
/**
|
359
|
+
* Defines values for ExternalAccess. \
|
360
|
+
* {@link KnownExternalAccess} can be used interchangeably with ExternalAccess,
|
361
|
+
* this enum contains the known values that the service supports.
|
362
|
+
* ### Known values supported by the service
|
363
|
+
* **Enabled** \
|
364
|
+
* **Disabled**
|
365
|
+
*/
|
366
|
+
export declare type ExternalAccess = string;
|
367
|
+
|
368
|
+
/**
|
369
|
+
* Defines values for FilteredSync. \
|
370
|
+
* {@link KnownFilteredSync} can be used interchangeably with FilteredSync,
|
371
|
+
* this enum contains the known values that the service supports.
|
372
|
+
* ### Known values supported by the service
|
373
|
+
* **Enabled** \
|
374
|
+
* **Disabled**
|
375
|
+
*/
|
376
|
+
export declare type FilteredSync = string;
|
377
|
+
|
378
|
+
/** Forest Trust Setting */
|
379
|
+
export declare interface ForestTrust {
|
380
|
+
/** Trusted Domain FQDN */
|
381
|
+
trustedDomainFqdn?: string;
|
382
|
+
/** Trust Direction */
|
383
|
+
trustDirection?: string;
|
384
|
+
/** Friendly Name */
|
385
|
+
friendlyName?: string;
|
386
|
+
/** Remote Dns ips */
|
387
|
+
remoteDnsIps?: string;
|
388
|
+
/** Trust Password */
|
389
|
+
trustPassword?: string;
|
390
|
+
}
|
391
|
+
|
392
|
+
/** Health Alert Description */
|
393
|
+
export declare interface HealthAlert {
|
394
|
+
/**
|
395
|
+
* Health Alert Id
|
396
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
397
|
+
*/
|
398
|
+
readonly id?: string;
|
399
|
+
/**
|
400
|
+
* Health Alert Name
|
401
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
402
|
+
*/
|
403
|
+
readonly name?: string;
|
404
|
+
/**
|
405
|
+
* Health Alert Issue
|
406
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
407
|
+
*/
|
408
|
+
readonly issue?: string;
|
409
|
+
/**
|
410
|
+
* Health Alert Severity
|
411
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
412
|
+
*/
|
413
|
+
readonly severity?: string;
|
414
|
+
/**
|
415
|
+
* Health Alert Raised DateTime
|
416
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
417
|
+
*/
|
418
|
+
readonly raised?: Date;
|
419
|
+
/**
|
420
|
+
* Health Alert Last Detected DateTime
|
421
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
422
|
+
*/
|
423
|
+
readonly lastDetected?: Date;
|
424
|
+
/**
|
425
|
+
* Health Alert TSG Link
|
426
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
427
|
+
*/
|
428
|
+
readonly resolutionUri?: string;
|
429
|
+
}
|
430
|
+
|
431
|
+
/** Health Monitor Description */
|
432
|
+
export declare interface HealthMonitor {
|
433
|
+
/**
|
434
|
+
* Health Monitor Id
|
435
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
436
|
+
*/
|
437
|
+
readonly id?: string;
|
438
|
+
/**
|
439
|
+
* Health Monitor Name
|
440
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
441
|
+
*/
|
442
|
+
readonly name?: string;
|
443
|
+
/**
|
444
|
+
* Health Monitor Details
|
445
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
446
|
+
*/
|
447
|
+
readonly details?: string;
|
448
|
+
}
|
449
|
+
|
450
|
+
/**
|
451
|
+
* Defines values for KerberosArmoring. \
|
452
|
+
* {@link KnownKerberosArmoring} can be used interchangeably with KerberosArmoring,
|
453
|
+
* this enum contains the known values that the service supports.
|
454
|
+
* ### Known values supported by the service
|
455
|
+
* **Enabled** \
|
456
|
+
* **Disabled**
|
457
|
+
*/
|
458
|
+
export declare type KerberosArmoring = string;
|
459
|
+
|
460
|
+
/**
|
461
|
+
* Defines values for KerberosRc4Encryption. \
|
462
|
+
* {@link KnownKerberosRc4Encryption} can be used interchangeably with KerberosRc4Encryption,
|
463
|
+
* this enum contains the known values that the service supports.
|
464
|
+
* ### Known values supported by the service
|
465
|
+
* **Enabled** \
|
466
|
+
* **Disabled**
|
467
|
+
*/
|
468
|
+
export declare type KerberosRc4Encryption = string;
|
469
|
+
|
470
|
+
/** Known values of {@link CreatedByType} that the service accepts. */
|
471
|
+
export declare enum KnownCreatedByType {
|
472
|
+
User = "User",
|
473
|
+
Application = "Application",
|
474
|
+
ManagedIdentity = "ManagedIdentity",
|
475
|
+
Key = "Key"
|
476
|
+
}
|
477
|
+
|
478
|
+
/** Known values of {@link ExternalAccess} that the service accepts. */
|
479
|
+
export declare enum KnownExternalAccess {
|
480
|
+
Enabled = "Enabled",
|
481
|
+
Disabled = "Disabled"
|
482
|
+
}
|
483
|
+
|
484
|
+
/** Known values of {@link FilteredSync} that the service accepts. */
|
485
|
+
export declare enum KnownFilteredSync {
|
486
|
+
Enabled = "Enabled",
|
487
|
+
Disabled = "Disabled"
|
488
|
+
}
|
489
|
+
|
490
|
+
/** Known values of {@link KerberosArmoring} that the service accepts. */
|
491
|
+
export declare enum KnownKerberosArmoring {
|
492
|
+
Enabled = "Enabled",
|
493
|
+
Disabled = "Disabled"
|
494
|
+
}
|
495
|
+
|
496
|
+
/** Known values of {@link KerberosRc4Encryption} that the service accepts. */
|
497
|
+
export declare enum KnownKerberosRc4Encryption {
|
498
|
+
Enabled = "Enabled",
|
499
|
+
Disabled = "Disabled"
|
500
|
+
}
|
501
|
+
|
502
|
+
/** Known values of {@link Ldaps} that the service accepts. */
|
503
|
+
export declare enum KnownLdaps {
|
504
|
+
Enabled = "Enabled",
|
505
|
+
Disabled = "Disabled"
|
506
|
+
}
|
507
|
+
|
508
|
+
/** Known values of {@link NotifyDcAdmins} that the service accepts. */
|
509
|
+
export declare enum KnownNotifyDcAdmins {
|
510
|
+
Enabled = "Enabled",
|
511
|
+
Disabled = "Disabled"
|
512
|
+
}
|
513
|
+
|
514
|
+
/** Known values of {@link NotifyGlobalAdmins} that the service accepts. */
|
515
|
+
export declare enum KnownNotifyGlobalAdmins {
|
516
|
+
Enabled = "Enabled",
|
517
|
+
Disabled = "Disabled"
|
518
|
+
}
|
519
|
+
|
520
|
+
/** Known values of {@link NtlmV1} that the service accepts. */
|
521
|
+
export declare enum KnownNtlmV1 {
|
522
|
+
Enabled = "Enabled",
|
523
|
+
Disabled = "Disabled"
|
524
|
+
}
|
525
|
+
|
526
|
+
/** Known values of {@link Status} that the service accepts. */
|
527
|
+
export declare enum KnownStatus {
|
528
|
+
None = "None",
|
529
|
+
Running = "Running",
|
530
|
+
OK = "OK",
|
531
|
+
Failure = "Failure",
|
532
|
+
Warning = "Warning",
|
533
|
+
Skipped = "Skipped"
|
534
|
+
}
|
535
|
+
|
536
|
+
/** Known values of {@link SyncKerberosPasswords} that the service accepts. */
|
537
|
+
export declare enum KnownSyncKerberosPasswords {
|
538
|
+
Enabled = "Enabled",
|
539
|
+
Disabled = "Disabled"
|
540
|
+
}
|
541
|
+
|
542
|
+
/** Known values of {@link SyncNtlmPasswords} that the service accepts. */
|
543
|
+
export declare enum KnownSyncNtlmPasswords {
|
544
|
+
Enabled = "Enabled",
|
545
|
+
Disabled = "Disabled"
|
546
|
+
}
|
547
|
+
|
548
|
+
/** Known values of {@link SyncOnPremPasswords} that the service accepts. */
|
549
|
+
export declare enum KnownSyncOnPremPasswords {
|
550
|
+
Enabled = "Enabled",
|
551
|
+
Disabled = "Disabled"
|
552
|
+
}
|
553
|
+
|
554
|
+
/** Known values of {@link TlsV1} that the service accepts. */
|
555
|
+
export declare enum KnownTlsV1 {
|
556
|
+
Enabled = "Enabled",
|
557
|
+
Disabled = "Disabled"
|
558
|
+
}
|
559
|
+
|
560
|
+
/**
|
561
|
+
* Defines values for Ldaps. \
|
562
|
+
* {@link KnownLdaps} can be used interchangeably with Ldaps,
|
563
|
+
* this enum contains the known values that the service supports.
|
564
|
+
* ### Known values supported by the service
|
565
|
+
* **Enabled** \
|
566
|
+
* **Disabled**
|
567
|
+
*/
|
568
|
+
export declare type Ldaps = string;
|
569
|
+
|
570
|
+
/** Secure LDAP Settings */
|
571
|
+
export declare interface LdapsSettings {
|
572
|
+
/** A flag to determine whether or not Secure LDAP is enabled or disabled. */
|
573
|
+
ldaps?: Ldaps;
|
574
|
+
/** The certificate required to configure Secure LDAP. The parameter passed here should be a base64encoded representation of the certificate pfx file. */
|
575
|
+
pfxCertificate?: string;
|
576
|
+
/** The password to decrypt the provided Secure LDAP certificate pfx file. */
|
577
|
+
pfxCertificatePassword?: string;
|
578
|
+
/**
|
579
|
+
* Public certificate used to configure secure ldap.
|
580
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
581
|
+
*/
|
582
|
+
readonly publicCertificate?: string;
|
583
|
+
/**
|
584
|
+
* Thumbprint of configure ldaps certificate.
|
585
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
586
|
+
*/
|
587
|
+
readonly certificateThumbprint?: string;
|
588
|
+
/**
|
589
|
+
* NotAfter DateTime of configure ldaps certificate.
|
590
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
591
|
+
*/
|
592
|
+
readonly certificateNotAfter?: Date;
|
593
|
+
/** A flag to determine whether or not Secure LDAP access over the internet is enabled or disabled. */
|
594
|
+
externalAccess?: ExternalAccess;
|
595
|
+
}
|
596
|
+
|
597
|
+
/** Migration Progress */
|
598
|
+
export declare interface MigrationProgress {
|
599
|
+
/** Completion Percentage */
|
600
|
+
completionPercentage?: number;
|
601
|
+
/** Progress Message */
|
602
|
+
progressMessage?: string;
|
603
|
+
}
|
604
|
+
|
605
|
+
/** Migration Properties */
|
606
|
+
export declare interface MigrationProperties {
|
607
|
+
/**
|
608
|
+
* Old Subnet Id
|
609
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
610
|
+
*/
|
611
|
+
readonly oldSubnetId?: string;
|
612
|
+
/**
|
613
|
+
* Old Vnet Site Id
|
614
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
615
|
+
*/
|
616
|
+
readonly oldVnetSiteId?: string;
|
617
|
+
/**
|
618
|
+
* Migration Progress
|
619
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
620
|
+
*/
|
621
|
+
readonly migrationProgress?: MigrationProgress;
|
622
|
+
}
|
623
|
+
|
624
|
+
/** Settings for notification */
|
625
|
+
export declare interface NotificationSettings {
|
626
|
+
/** Should global admins be notified */
|
627
|
+
notifyGlobalAdmins?: NotifyGlobalAdmins;
|
628
|
+
/** Should domain controller admins be notified */
|
629
|
+
notifyDcAdmins?: NotifyDcAdmins;
|
630
|
+
/** The list of additional recipients */
|
631
|
+
additionalRecipients?: string[];
|
632
|
+
}
|
633
|
+
|
634
|
+
/**
|
635
|
+
* Defines values for NotifyDcAdmins. \
|
636
|
+
* {@link KnownNotifyDcAdmins} can be used interchangeably with NotifyDcAdmins,
|
637
|
+
* this enum contains the known values that the service supports.
|
638
|
+
* ### Known values supported by the service
|
639
|
+
* **Enabled** \
|
640
|
+
* **Disabled**
|
641
|
+
*/
|
642
|
+
export declare type NotifyDcAdmins = string;
|
643
|
+
|
644
|
+
/**
|
645
|
+
* Defines values for NotifyGlobalAdmins. \
|
646
|
+
* {@link KnownNotifyGlobalAdmins} can be used interchangeably with NotifyGlobalAdmins,
|
647
|
+
* this enum contains the known values that the service supports.
|
648
|
+
* ### Known values supported by the service
|
649
|
+
* **Enabled** \
|
650
|
+
* **Disabled**
|
651
|
+
*/
|
652
|
+
export declare type NotifyGlobalAdmins = string;
|
653
|
+
|
654
|
+
/**
|
655
|
+
* Defines values for NtlmV1. \
|
656
|
+
* {@link KnownNtlmV1} can be used interchangeably with NtlmV1,
|
657
|
+
* this enum contains the known values that the service supports.
|
658
|
+
* ### Known values supported by the service
|
659
|
+
* **Enabled** \
|
660
|
+
* **Disabled**
|
661
|
+
*/
|
662
|
+
export declare type NtlmV1 = string;
|
663
|
+
|
664
|
+
/** The operation supported by Domain Services. */
|
665
|
+
export declare interface OperationDisplayInfo {
|
666
|
+
/** The description of the operation. */
|
667
|
+
description?: string;
|
668
|
+
/** The action that users can perform, based on their permission level. */
|
669
|
+
operation?: string;
|
670
|
+
/** Service provider: Domain Services. */
|
671
|
+
provider?: string;
|
672
|
+
/** Resource on which the operation is performed. */
|
673
|
+
resource?: string;
|
674
|
+
}
|
675
|
+
|
676
|
+
/** The operation supported by Domain Services. */
|
677
|
+
export declare interface OperationEntity {
|
678
|
+
/** Operation name: {provider}/{resource}/{operation}. */
|
679
|
+
name?: string;
|
680
|
+
/** The operation supported by Domain Services. */
|
681
|
+
display?: OperationDisplayInfo;
|
682
|
+
/** The origin of the operation. */
|
683
|
+
origin?: string;
|
684
|
+
}
|
685
|
+
|
686
|
+
/** The list of domain service operation response. */
|
687
|
+
export declare interface OperationEntityListResult {
|
688
|
+
/** The list of operations. */
|
689
|
+
value?: OperationEntity[];
|
690
|
+
/**
|
691
|
+
* The continuation token for the next page of results.
|
692
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
693
|
+
*/
|
694
|
+
readonly nextLink?: string;
|
695
|
+
}
|
696
|
+
|
697
|
+
/** Resource for OuContainer. */
|
698
|
+
export declare type OuContainer = Resource & {
|
699
|
+
/**
|
700
|
+
* Azure Active Directory tenant id
|
701
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
702
|
+
*/
|
703
|
+
readonly tenantId?: string;
|
704
|
+
/**
|
705
|
+
* The domain name of Domain Services.
|
706
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
707
|
+
*/
|
708
|
+
readonly domainName?: string;
|
709
|
+
/**
|
710
|
+
* The Deployment id
|
711
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
712
|
+
*/
|
713
|
+
readonly deploymentId?: string;
|
714
|
+
/**
|
715
|
+
* The OuContainer name
|
716
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
717
|
+
*/
|
718
|
+
readonly containerId?: string;
|
719
|
+
/** The list of container accounts */
|
720
|
+
accounts?: ContainerAccount[];
|
721
|
+
/**
|
722
|
+
* Status of OuContainer instance
|
723
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
724
|
+
*/
|
725
|
+
readonly serviceStatus?: string;
|
726
|
+
/**
|
727
|
+
* Distinguished Name of OuContainer instance
|
728
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
729
|
+
*/
|
730
|
+
readonly distinguishedName?: string;
|
731
|
+
/**
|
732
|
+
* The current deployment or provisioning state, which only appears in the response.
|
733
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
734
|
+
*/
|
735
|
+
readonly provisioningState?: string;
|
736
|
+
};
|
737
|
+
|
738
|
+
/** Optional parameters. */
|
739
|
+
export declare interface OuContainerCreateOptionalParams extends coreClient.OperationOptions {
|
740
|
+
/** Delay to wait until next poll, in milliseconds. */
|
741
|
+
updateIntervalInMs?: number;
|
742
|
+
/** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */
|
743
|
+
resumeFrom?: string;
|
744
|
+
}
|
745
|
+
|
746
|
+
/** Contains response data for the create operation. */
|
747
|
+
export declare type OuContainerCreateResponse = OuContainer;
|
748
|
+
|
749
|
+
/** Optional parameters. */
|
750
|
+
export declare interface OuContainerDeleteOptionalParams extends coreClient.OperationOptions {
|
751
|
+
/** Delay to wait until next poll, in milliseconds. */
|
752
|
+
updateIntervalInMs?: number;
|
753
|
+
/** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */
|
754
|
+
resumeFrom?: string;
|
755
|
+
}
|
756
|
+
|
757
|
+
/** Optional parameters. */
|
758
|
+
export declare interface OuContainerGetOptionalParams extends coreClient.OperationOptions {
|
759
|
+
}
|
760
|
+
|
761
|
+
/** Contains response data for the get operation. */
|
762
|
+
export declare type OuContainerGetResponse = OuContainer;
|
763
|
+
|
764
|
+
/** Optional parameters. */
|
765
|
+
export declare interface OuContainerListNextOptionalParams extends coreClient.OperationOptions {
|
766
|
+
}
|
767
|
+
|
768
|
+
/** Contains response data for the listNext operation. */
|
769
|
+
export declare type OuContainerListNextResponse = OuContainerListResult;
|
770
|
+
|
771
|
+
/** Optional parameters. */
|
772
|
+
export declare interface OuContainerListOptionalParams extends coreClient.OperationOptions {
|
773
|
+
}
|
774
|
+
|
775
|
+
/** Contains response data for the list operation. */
|
776
|
+
export declare type OuContainerListResponse = OuContainerListResult;
|
777
|
+
|
778
|
+
/** The response from the List OuContainer operation. */
|
779
|
+
export declare interface OuContainerListResult {
|
780
|
+
/** The list of OuContainer. */
|
781
|
+
value?: OuContainer[];
|
782
|
+
/**
|
783
|
+
* The continuation token for the next page of results.
|
784
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
785
|
+
*/
|
786
|
+
readonly nextLink?: string;
|
787
|
+
}
|
788
|
+
|
789
|
+
/** Interface representing a OuContainerOperationGrp. */
|
790
|
+
export declare interface OuContainerOperationGrp {
|
791
|
+
/**
|
792
|
+
* The List of OuContainers in DomainService instance.
|
793
|
+
* @param resourceGroupName The name of the resource group within the user's subscription. The name is
|
794
|
+
* case insensitive.
|
795
|
+
* @param domainServiceName The name of the domain service.
|
796
|
+
* @param options The options parameters.
|
797
|
+
*/
|
798
|
+
list(resourceGroupName: string, domainServiceName: string, options?: OuContainerListOptionalParams): PagedAsyncIterableIterator<OuContainer>;
|
799
|
+
/**
|
800
|
+
* Get OuContainer in DomainService instance.
|
801
|
+
* @param resourceGroupName The name of the resource group within the user's subscription. The name is
|
802
|
+
* case insensitive.
|
803
|
+
* @param domainServiceName The name of the domain service.
|
804
|
+
* @param ouContainerName The name of the OuContainer.
|
805
|
+
* @param options The options parameters.
|
806
|
+
*/
|
807
|
+
get(resourceGroupName: string, domainServiceName: string, ouContainerName: string, options?: OuContainerGetOptionalParams): Promise<OuContainerGetResponse>;
|
808
|
+
/**
|
809
|
+
* The Create OuContainer operation creates a new OuContainer under the specified Domain Service
|
810
|
+
* instance.
|
811
|
+
* @param resourceGroupName The name of the resource group within the user's subscription. The name is
|
812
|
+
* case insensitive.
|
813
|
+
* @param domainServiceName The name of the domain service.
|
814
|
+
* @param ouContainerName The name of the OuContainer.
|
815
|
+
* @param containerAccount Container Account Description.
|
816
|
+
* @param options The options parameters.
|
817
|
+
*/
|
818
|
+
beginCreate(resourceGroupName: string, domainServiceName: string, ouContainerName: string, containerAccount: ContainerAccount, options?: OuContainerCreateOptionalParams): Promise<PollerLike<PollOperationState<OuContainerCreateResponse>, OuContainerCreateResponse>>;
|
819
|
+
/**
|
820
|
+
* The Create OuContainer operation creates a new OuContainer under the specified Domain Service
|
821
|
+
* instance.
|
822
|
+
* @param resourceGroupName The name of the resource group within the user's subscription. The name is
|
823
|
+
* case insensitive.
|
824
|
+
* @param domainServiceName The name of the domain service.
|
825
|
+
* @param ouContainerName The name of the OuContainer.
|
826
|
+
* @param containerAccount Container Account Description.
|
827
|
+
* @param options The options parameters.
|
828
|
+
*/
|
829
|
+
beginCreateAndWait(resourceGroupName: string, domainServiceName: string, ouContainerName: string, containerAccount: ContainerAccount, options?: OuContainerCreateOptionalParams): Promise<OuContainerCreateResponse>;
|
830
|
+
/**
|
831
|
+
* The Delete OuContainer operation deletes specified OuContainer.
|
832
|
+
* @param resourceGroupName The name of the resource group within the user's subscription. The name is
|
833
|
+
* case insensitive.
|
834
|
+
* @param domainServiceName The name of the domain service.
|
835
|
+
* @param ouContainerName The name of the OuContainer.
|
836
|
+
* @param options The options parameters.
|
837
|
+
*/
|
838
|
+
beginDelete(resourceGroupName: string, domainServiceName: string, ouContainerName: string, options?: OuContainerDeleteOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
839
|
+
/**
|
840
|
+
* The Delete OuContainer operation deletes specified OuContainer.
|
841
|
+
* @param resourceGroupName The name of the resource group within the user's subscription. The name is
|
842
|
+
* case insensitive.
|
843
|
+
* @param domainServiceName The name of the domain service.
|
844
|
+
* @param ouContainerName The name of the OuContainer.
|
845
|
+
* @param options The options parameters.
|
846
|
+
*/
|
847
|
+
beginDeleteAndWait(resourceGroupName: string, domainServiceName: string, ouContainerName: string, options?: OuContainerDeleteOptionalParams): Promise<void>;
|
848
|
+
/**
|
849
|
+
* The Update OuContainer operation can be used to update the existing OuContainers.
|
850
|
+
* @param resourceGroupName The name of the resource group within the user's subscription. The name is
|
851
|
+
* case insensitive.
|
852
|
+
* @param domainServiceName The name of the domain service.
|
853
|
+
* @param ouContainerName The name of the OuContainer.
|
854
|
+
* @param containerAccount Container Account Description.
|
855
|
+
* @param options The options parameters.
|
856
|
+
*/
|
857
|
+
beginUpdate(resourceGroupName: string, domainServiceName: string, ouContainerName: string, containerAccount: ContainerAccount, options?: OuContainerUpdateOptionalParams): Promise<PollerLike<PollOperationState<OuContainerUpdateResponse>, OuContainerUpdateResponse>>;
|
858
|
+
/**
|
859
|
+
* The Update OuContainer operation can be used to update the existing OuContainers.
|
860
|
+
* @param resourceGroupName The name of the resource group within the user's subscription. The name is
|
861
|
+
* case insensitive.
|
862
|
+
* @param domainServiceName The name of the domain service.
|
863
|
+
* @param ouContainerName The name of the OuContainer.
|
864
|
+
* @param containerAccount Container Account Description.
|
865
|
+
* @param options The options parameters.
|
866
|
+
*/
|
867
|
+
beginUpdateAndWait(resourceGroupName: string, domainServiceName: string, ouContainerName: string, containerAccount: ContainerAccount, options?: OuContainerUpdateOptionalParams): Promise<OuContainerUpdateResponse>;
|
868
|
+
}
|
869
|
+
|
870
|
+
/** Interface representing a OuContainerOperations. */
|
871
|
+
export declare interface OuContainerOperations {
|
872
|
+
/**
|
873
|
+
* Lists all the available OuContainer operations.
|
874
|
+
* @param options The options parameters.
|
875
|
+
*/
|
876
|
+
list(options?: OuContainerOperationsListOptionalParams): PagedAsyncIterableIterator<OperationEntity>;
|
877
|
+
}
|
878
|
+
|
879
|
+
/** Optional parameters. */
|
880
|
+
export declare interface OuContainerOperationsListNextOptionalParams extends coreClient.OperationOptions {
|
881
|
+
}
|
882
|
+
|
883
|
+
/** Contains response data for the listNext operation. */
|
884
|
+
export declare type OuContainerOperationsListNextResponse = OperationEntityListResult;
|
885
|
+
|
886
|
+
/** Optional parameters. */
|
887
|
+
export declare interface OuContainerOperationsListOptionalParams extends coreClient.OperationOptions {
|
888
|
+
}
|
889
|
+
|
890
|
+
/** Contains response data for the list operation. */
|
891
|
+
export declare type OuContainerOperationsListResponse = OperationEntityListResult;
|
892
|
+
|
893
|
+
/** Optional parameters. */
|
894
|
+
export declare interface OuContainerUpdateOptionalParams extends coreClient.OperationOptions {
|
895
|
+
/** Delay to wait until next poll, in milliseconds. */
|
896
|
+
updateIntervalInMs?: number;
|
897
|
+
/** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */
|
898
|
+
resumeFrom?: string;
|
899
|
+
}
|
900
|
+
|
901
|
+
/** Contains response data for the update operation. */
|
902
|
+
export declare type OuContainerUpdateResponse = OuContainer;
|
903
|
+
|
904
|
+
/** Replica Set Definition */
|
905
|
+
export declare interface ReplicaSet {
|
906
|
+
/**
|
907
|
+
* ReplicaSet Id
|
908
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
909
|
+
*/
|
910
|
+
readonly replicaSetId?: string;
|
911
|
+
/** Virtual network location */
|
912
|
+
location?: string;
|
913
|
+
/**
|
914
|
+
* Virtual network site id
|
915
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
916
|
+
*/
|
917
|
+
readonly vnetSiteId?: string;
|
918
|
+
/** The name of the virtual network that Domain Services will be deployed on. The id of the subnet that Domain Services will be deployed on. /virtualNetwork/vnetName/subnets/subnetName. */
|
919
|
+
subnetId?: string;
|
920
|
+
/**
|
921
|
+
* List of Domain Controller IP Address
|
922
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
923
|
+
*/
|
924
|
+
readonly domainControllerIpAddress?: string[];
|
925
|
+
/**
|
926
|
+
* External access ip address.
|
927
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
928
|
+
*/
|
929
|
+
readonly externalAccessIpAddress?: string;
|
930
|
+
/**
|
931
|
+
* Status of Domain Service instance
|
932
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
933
|
+
*/
|
934
|
+
readonly serviceStatus?: string;
|
935
|
+
/**
|
936
|
+
* Last domain evaluation run DateTime
|
937
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
938
|
+
*/
|
939
|
+
readonly healthLastEvaluated?: Date;
|
940
|
+
/**
|
941
|
+
* List of Domain Health Monitors
|
942
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
943
|
+
*/
|
944
|
+
readonly healthMonitors?: HealthMonitor[];
|
945
|
+
/**
|
946
|
+
* List of Domain Health Alerts
|
947
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
948
|
+
*/
|
949
|
+
readonly healthAlerts?: HealthAlert[];
|
950
|
+
}
|
951
|
+
|
952
|
+
/** The Resource model definition. */
|
953
|
+
export declare interface Resource {
|
954
|
+
/**
|
955
|
+
* Resource Id
|
956
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
957
|
+
*/
|
958
|
+
readonly id?: string;
|
959
|
+
/**
|
960
|
+
* Resource name
|
961
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
962
|
+
*/
|
963
|
+
readonly name?: string;
|
964
|
+
/**
|
965
|
+
* Resource type
|
966
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
967
|
+
*/
|
968
|
+
readonly type?: string;
|
969
|
+
/** Resource location */
|
970
|
+
location?: string;
|
971
|
+
/** Resource tags */
|
972
|
+
tags?: {
|
973
|
+
[propertyName: string]: string;
|
974
|
+
};
|
975
|
+
/** Resource etag */
|
976
|
+
etag?: string;
|
977
|
+
/**
|
978
|
+
* The system meta data relating to this resource.
|
979
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
980
|
+
*/
|
981
|
+
readonly systemData?: SystemData;
|
982
|
+
}
|
983
|
+
|
984
|
+
/** Settings for Resource Forest */
|
985
|
+
export declare interface ResourceForestSettings {
|
986
|
+
/** List of settings for Resource Forest */
|
987
|
+
settings?: ForestTrust[];
|
988
|
+
/** Resource Forest */
|
989
|
+
resourceForest?: string;
|
990
|
+
}
|
991
|
+
|
992
|
+
/**
|
993
|
+
* Defines values for Status. \
|
994
|
+
* {@link KnownStatus} can be used interchangeably with Status,
|
995
|
+
* this enum contains the known values that the service supports.
|
996
|
+
* ### Known values supported by the service
|
997
|
+
* **None** \
|
998
|
+
* **Running** \
|
999
|
+
* **OK** \
|
1000
|
+
* **Failure** \
|
1001
|
+
* **Warning** \
|
1002
|
+
* **Skipped**
|
1003
|
+
*/
|
1004
|
+
export declare type Status = string;
|
1005
|
+
|
1006
|
+
/**
|
1007
|
+
* Defines values for SyncKerberosPasswords. \
|
1008
|
+
* {@link KnownSyncKerberosPasswords} can be used interchangeably with SyncKerberosPasswords,
|
1009
|
+
* this enum contains the known values that the service supports.
|
1010
|
+
* ### Known values supported by the service
|
1011
|
+
* **Enabled** \
|
1012
|
+
* **Disabled**
|
1013
|
+
*/
|
1014
|
+
export declare type SyncKerberosPasswords = string;
|
1015
|
+
|
1016
|
+
/**
|
1017
|
+
* Defines values for SyncNtlmPasswords. \
|
1018
|
+
* {@link KnownSyncNtlmPasswords} can be used interchangeably with SyncNtlmPasswords,
|
1019
|
+
* this enum contains the known values that the service supports.
|
1020
|
+
* ### Known values supported by the service
|
1021
|
+
* **Enabled** \
|
1022
|
+
* **Disabled**
|
1023
|
+
*/
|
1024
|
+
export declare type SyncNtlmPasswords = string;
|
1025
|
+
|
1026
|
+
/**
|
1027
|
+
* Defines values for SyncOnPremPasswords. \
|
1028
|
+
* {@link KnownSyncOnPremPasswords} can be used interchangeably with SyncOnPremPasswords,
|
1029
|
+
* this enum contains the known values that the service supports.
|
1030
|
+
* ### Known values supported by the service
|
1031
|
+
* **Enabled** \
|
1032
|
+
* **Disabled**
|
1033
|
+
*/
|
1034
|
+
export declare type SyncOnPremPasswords = string;
|
1035
|
+
|
1036
|
+
/** Metadata pertaining to creation and last modification of the resource. */
|
1037
|
+
export declare interface SystemData {
|
1038
|
+
/** The identity that created the resource. */
|
1039
|
+
createdBy?: string;
|
1040
|
+
/** The type of identity that created the resource. */
|
1041
|
+
createdByType?: CreatedByType;
|
1042
|
+
/** The timestamp of resource creation (UTC). */
|
1043
|
+
createdAt?: Date;
|
1044
|
+
/** The identity that last modified the resource. */
|
1045
|
+
lastModifiedBy?: string;
|
1046
|
+
/** The type of identity that last modified the resource. */
|
1047
|
+
lastModifiedByType?: CreatedByType;
|
1048
|
+
/** The timestamp of resource last modification (UTC) */
|
1049
|
+
lastModifiedAt?: Date;
|
1050
|
+
}
|
1051
|
+
|
1052
|
+
/**
|
1053
|
+
* Defines values for TlsV1. \
|
1054
|
+
* {@link KnownTlsV1} can be used interchangeably with TlsV1,
|
1055
|
+
* this enum contains the known values that the service supports.
|
1056
|
+
* ### Known values supported by the service
|
1057
|
+
* **Enabled** \
|
1058
|
+
* **Disabled**
|
1059
|
+
*/
|
1060
|
+
export declare type TlsV1 = string;
|
1061
|
+
|
1062
|
+
export { }
|