@azure/arm-migrationdiscoverysap 1.0.0-alpha.20250619.1 → 1.0.0-alpha.20250718.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,631 +1,631 @@
|
|
|
1
|
-
## API Report File for "@azure/arm-migrationdiscoverysap"
|
|
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 { OperationState } from '@azure/core-lro';
|
|
10
|
-
import { PagedAsyncIterableIterator } from '@azure/core-paging';
|
|
11
|
-
import { SimplePollerLike } from '@azure/core-lro';
|
|
12
|
-
|
|
13
|
-
// @public
|
|
14
|
-
export type ActionType = string;
|
|
15
|
-
|
|
16
|
-
// @public
|
|
17
|
-
export interface ConfigurationData {
|
|
18
|
-
readonly cpu?: number;
|
|
19
|
-
readonly cpuInMhz?: number;
|
|
20
|
-
readonly cpuType?: string;
|
|
21
|
-
readonly databaseType?: DatabaseType;
|
|
22
|
-
readonly hardwareManufacturer?: string;
|
|
23
|
-
readonly model?: string;
|
|
24
|
-
readonly ram?: number;
|
|
25
|
-
readonly saps?: number;
|
|
26
|
-
readonly targetHanaRamSizeGB?: number;
|
|
27
|
-
readonly totalDiskIops?: number;
|
|
28
|
-
readonly totalDiskSizeGB?: number;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
// @public
|
|
32
|
-
export type CreatedByType = string;
|
|
33
|
-
|
|
34
|
-
// @public
|
|
35
|
-
export type DatabaseType = string;
|
|
36
|
-
|
|
37
|
-
// @public
|
|
38
|
-
export type DataSource = string;
|
|
39
|
-
|
|
40
|
-
// @public
|
|
41
|
-
export interface ErrorAdditionalInfo {
|
|
42
|
-
readonly info?: Record<string, unknown>;
|
|
43
|
-
readonly type?: string;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
// @public
|
|
47
|
-
export interface ErrorDefinition {
|
|
48
|
-
readonly code?: string;
|
|
49
|
-
readonly details?: ErrorDefinition[];
|
|
50
|
-
readonly message?: string;
|
|
51
|
-
readonly recommendation?: string;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
// @public
|
|
55
|
-
export interface ErrorDetail {
|
|
56
|
-
readonly additionalInfo?: ErrorAdditionalInfo[];
|
|
57
|
-
readonly code?: string;
|
|
58
|
-
readonly details?: ErrorDetail[];
|
|
59
|
-
readonly message?: string;
|
|
60
|
-
readonly target?: string;
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
// @public
|
|
64
|
-
export interface ErrorResponse {
|
|
65
|
-
error?: ErrorDetail;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
// @public
|
|
69
|
-
export interface ExcelPerformanceData extends PerformanceData {
|
|
70
|
-
dataSource: "Excel";
|
|
71
|
-
readonly maxCpuLoad?: number;
|
|
72
|
-
readonly totalSourceDbSizeGB?: number;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
// @public
|
|
76
|
-
export interface ExtendedLocation {
|
|
77
|
-
name: string;
|
|
78
|
-
type: string;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
// @public
|
|
82
|
-
export function getContinuationToken(page: unknown): string | undefined;
|
|
83
|
-
|
|
84
|
-
// @public
|
|
85
|
-
export enum KnownActionType {
|
|
86
|
-
Internal = "Internal"
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
// @public
|
|
90
|
-
export enum KnownCreatedByType {
|
|
91
|
-
Application = "Application",
|
|
92
|
-
Key = "Key",
|
|
93
|
-
ManagedIdentity = "ManagedIdentity",
|
|
94
|
-
User = "User"
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
// @public
|
|
98
|
-
export enum KnownDatabaseType {
|
|
99
|
-
Adabas = "Adabas",
|
|
100
|
-
Db2 = "Db2",
|
|
101
|
-
Hana = "HANA",
|
|
102
|
-
Informix = "Informix",
|
|
103
|
-
Oracle = "Oracle",
|
|
104
|
-
Sapase = "SAPASE",
|
|
105
|
-
Sapdb = "SAPDB",
|
|
106
|
-
SAPMaxDB = "SAPMaxDB",
|
|
107
|
-
SQLServer = "SQLServer"
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
// @public
|
|
111
|
-
export enum KnownDataSource {
|
|
112
|
-
Excel = "Excel",
|
|
113
|
-
Native = "Native"
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
// @public
|
|
117
|
-
export enum KnownOperatingSystem {
|
|
118
|
-
Ibmaix = "IBMAIX",
|
|
119
|
-
RedHat = "RedHat",
|
|
120
|
-
Solaris = "Solaris",
|
|
121
|
-
Suse = "SUSE",
|
|
122
|
-
Unix = "Unix",
|
|
123
|
-
WindowsServer = "WindowsServer"
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
// @public
|
|
127
|
-
export enum KnownOrigin {
|
|
128
|
-
System = "system",
|
|
129
|
-
User = "user",
|
|
130
|
-
UserSystem = "user,system"
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
// @public
|
|
134
|
-
export enum KnownProvisioningState {
|
|
135
|
-
Accepted = "Accepted",
|
|
136
|
-
Canceled = "Canceled",
|
|
137
|
-
Creating = "Creating",
|
|
138
|
-
Deleting = "Deleting",
|
|
139
|
-
Failed = "Failed",
|
|
140
|
-
Succeeded = "Succeeded",
|
|
141
|
-
Unknown = "Unknown",
|
|
142
|
-
Updating = "Updating"
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
// @public
|
|
146
|
-
export enum KnownSapInstanceEnvironment {
|
|
147
|
-
Development = "Development",
|
|
148
|
-
DisasterRecovery = "DisasterRecovery",
|
|
149
|
-
PreProduction = "PreProduction",
|
|
150
|
-
Production = "Production",
|
|
151
|
-
QualityAssurance = "QualityAssurance",
|
|
152
|
-
Sandbox = "Sandbox",
|
|
153
|
-
Test = "Test",
|
|
154
|
-
Training = "Training"
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
// @public
|
|
158
|
-
export enum KnownSapInstanceType {
|
|
159
|
-
APP = "APP",
|
|
160
|
-
Ascs = "ASCS",
|
|
161
|
-
DB = "DB",
|
|
162
|
-
SCS = "SCS",
|
|
163
|
-
Webdisp = "WEBDISP"
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
// @public
|
|
167
|
-
export enum KnownVersions {
|
|
168
|
-
V20231001Preview = "2023-10-01-preview"
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
// @public
|
|
172
|
-
export interface NativePerformanceData extends PerformanceData {
|
|
173
|
-
dataSource: "Native";
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
// @public
|
|
177
|
-
export type OperatingSystem = string;
|
|
178
|
-
|
|
179
|
-
// @public
|
|
180
|
-
export interface Operation {
|
|
181
|
-
readonly actionType?: ActionType;
|
|
182
|
-
display?: OperationDisplay;
|
|
183
|
-
readonly isDataAction?: boolean;
|
|
184
|
-
readonly name?: string;
|
|
185
|
-
readonly origin?: Origin;
|
|
186
|
-
}
|
|
187
|
-
|
|
188
|
-
// @public
|
|
189
|
-
export interface OperationDisplay {
|
|
190
|
-
readonly description?: string;
|
|
191
|
-
readonly operation?: string;
|
|
192
|
-
readonly provider?: string;
|
|
193
|
-
readonly resource?: string;
|
|
194
|
-
}
|
|
195
|
-
|
|
196
|
-
// @public
|
|
197
|
-
export interface OperationListResult {
|
|
198
|
-
readonly nextLink?: string;
|
|
199
|
-
readonly value?: Operation[];
|
|
200
|
-
}
|
|
201
|
-
|
|
202
|
-
// @public
|
|
203
|
-
export interface Operations {
|
|
204
|
-
list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<Operation>;
|
|
205
|
-
}
|
|
206
|
-
|
|
207
|
-
// @public
|
|
208
|
-
export interface OperationsListNextOptionalParams extends coreClient.OperationOptions {
|
|
209
|
-
}
|
|
210
|
-
|
|
211
|
-
// @public
|
|
212
|
-
export type OperationsListNextResponse = OperationListResult;
|
|
213
|
-
|
|
214
|
-
// @public
|
|
215
|
-
export interface OperationsListOptionalParams extends coreClient.OperationOptions {
|
|
216
|
-
}
|
|
217
|
-
|
|
218
|
-
// @public
|
|
219
|
-
export type OperationsListResponse = OperationListResult;
|
|
220
|
-
|
|
221
|
-
// @public
|
|
222
|
-
export interface OperationStatusResult {
|
|
223
|
-
endTime?: Date;
|
|
224
|
-
error?: ErrorDetail;
|
|
225
|
-
id?: string;
|
|
226
|
-
name?: string;
|
|
227
|
-
operations?: OperationStatusResult[];
|
|
228
|
-
percentComplete?: number;
|
|
229
|
-
startTime?: Date;
|
|
230
|
-
status: string;
|
|
231
|
-
}
|
|
232
|
-
|
|
233
|
-
// @public
|
|
234
|
-
export type Origin = string;
|
|
235
|
-
|
|
236
|
-
// @public
|
|
237
|
-
export interface PerformanceData {
|
|
238
|
-
dataSource: "Excel" | "Native";
|
|
239
|
-
}
|
|
240
|
-
|
|
241
|
-
// @public (undocumented)
|
|
242
|
-
export type PerformanceDataUnion = PerformanceData | ExcelPerformanceData | NativePerformanceData;
|
|
243
|
-
|
|
244
|
-
// @public
|
|
245
|
-
export type ProvisioningState = string;
|
|
246
|
-
|
|
247
|
-
// @public
|
|
248
|
-
export interface ProxyResource extends Resource {
|
|
249
|
-
}
|
|
250
|
-
|
|
251
|
-
// @public
|
|
252
|
-
export interface Resource {
|
|
253
|
-
readonly id?: string;
|
|
254
|
-
readonly name?: string;
|
|
255
|
-
readonly systemData?: SystemData;
|
|
256
|
-
readonly type?: string;
|
|
257
|
-
}
|
|
258
|
-
|
|
259
|
-
// @public
|
|
260
|
-
export interface SAPDiscoverySite extends TrackedResource {
|
|
261
|
-
extendedLocation?: ExtendedLocation;
|
|
262
|
-
properties?: SAPDiscoverySiteProperties;
|
|
263
|
-
}
|
|
264
|
-
|
|
265
|
-
// @public
|
|
266
|
-
export interface SAPDiscoverySiteListResult {
|
|
267
|
-
readonly nextLink?: string;
|
|
268
|
-
value: SAPDiscoverySite[];
|
|
269
|
-
}
|
|
270
|
-
|
|
271
|
-
// @public
|
|
272
|
-
export interface SAPDiscoverySiteProperties {
|
|
273
|
-
readonly errors?: SAPMigrateError;
|
|
274
|
-
masterSiteId?: string;
|
|
275
|
-
migrateProjectId?: string;
|
|
276
|
-
readonly provisioningState?: ProvisioningState;
|
|
277
|
-
}
|
|
278
|
-
|
|
279
|
-
// @public
|
|
280
|
-
export interface SapDiscoverySites {
|
|
281
|
-
beginCreate(resourceGroupName: string, sapDiscoverySiteName: string, resource: SAPDiscoverySite, options?: SapDiscoverySitesCreateOptionalParams): Promise<SimplePollerLike<OperationState<SapDiscoverySitesCreateResponse>, SapDiscoverySitesCreateResponse>>;
|
|
282
|
-
beginCreateAndWait(resourceGroupName: string, sapDiscoverySiteName: string, resource: SAPDiscoverySite, options?: SapDiscoverySitesCreateOptionalParams): Promise<SapDiscoverySitesCreateResponse>;
|
|
283
|
-
beginDelete(resourceGroupName: string, sapDiscoverySiteName: string, options?: SapDiscoverySitesDeleteOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
284
|
-
beginDeleteAndWait(resourceGroupName: string, sapDiscoverySiteName: string, options?: SapDiscoverySitesDeleteOptionalParams): Promise<void>;
|
|
285
|
-
beginImportEntities(resourceGroupName: string, sapDiscoverySiteName: string, options?: SapDiscoverySitesImportEntitiesOptionalParams): Promise<SimplePollerLike<OperationState<SapDiscoverySitesImportEntitiesResponse>, SapDiscoverySitesImportEntitiesResponse>>;
|
|
286
|
-
beginImportEntitiesAndWait(resourceGroupName: string, sapDiscoverySiteName: string, options?: SapDiscoverySitesImportEntitiesOptionalParams): Promise<SapDiscoverySitesImportEntitiesResponse>;
|
|
287
|
-
get(resourceGroupName: string, sapDiscoverySiteName: string, options?: SapDiscoverySitesGetOptionalParams): Promise<SapDiscoverySitesGetResponse>;
|
|
288
|
-
listByResourceGroup(resourceGroupName: string, options?: SapDiscoverySitesListByResourceGroupOptionalParams): PagedAsyncIterableIterator<SAPDiscoverySite>;
|
|
289
|
-
listBySubscription(options?: SapDiscoverySitesListBySubscriptionOptionalParams): PagedAsyncIterableIterator<SAPDiscoverySite>;
|
|
290
|
-
update(resourceGroupName: string, sapDiscoverySiteName: string, properties: SAPDiscoverySiteTagsUpdate, options?: SapDiscoverySitesUpdateOptionalParams): Promise<SapDiscoverySitesUpdateResponse>;
|
|
291
|
-
}
|
|
292
|
-
|
|
293
|
-
// @public
|
|
294
|
-
export interface SapDiscoverySitesCreateHeaders {
|
|
295
|
-
retryAfter?: number;
|
|
296
|
-
}
|
|
297
|
-
|
|
298
|
-
// @public
|
|
299
|
-
export interface SapDiscoverySitesCreateOptionalParams extends coreClient.OperationOptions {
|
|
300
|
-
resumeFrom?: string;
|
|
301
|
-
updateIntervalInMs?: number;
|
|
302
|
-
}
|
|
303
|
-
|
|
304
|
-
// @public
|
|
305
|
-
export type SapDiscoverySitesCreateResponse = SAPDiscoverySite;
|
|
306
|
-
|
|
307
|
-
// @public
|
|
308
|
-
export interface SapDiscoverySitesDeleteHeaders {
|
|
309
|
-
location?: string;
|
|
310
|
-
retryAfter?: number;
|
|
311
|
-
}
|
|
312
|
-
|
|
313
|
-
// @public
|
|
314
|
-
export interface SapDiscoverySitesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
315
|
-
resumeFrom?: string;
|
|
316
|
-
updateIntervalInMs?: number;
|
|
317
|
-
}
|
|
318
|
-
|
|
319
|
-
// @public
|
|
320
|
-
export interface SapDiscoverySitesGetOptionalParams extends coreClient.OperationOptions {
|
|
321
|
-
}
|
|
322
|
-
|
|
323
|
-
// @public
|
|
324
|
-
export type SapDiscoverySitesGetResponse = SAPDiscoverySite;
|
|
325
|
-
|
|
326
|
-
// @public
|
|
327
|
-
export interface SapDiscoverySitesImportEntitiesHeaders {
|
|
328
|
-
location?: string;
|
|
329
|
-
retryAfter?: number;
|
|
330
|
-
}
|
|
331
|
-
|
|
332
|
-
// @public
|
|
333
|
-
export interface SapDiscoverySitesImportEntitiesOptionalParams extends coreClient.OperationOptions {
|
|
334
|
-
resumeFrom?: string;
|
|
335
|
-
updateIntervalInMs?: number;
|
|
336
|
-
}
|
|
337
|
-
|
|
338
|
-
// @public
|
|
339
|
-
export type SapDiscoverySitesImportEntitiesResponse = OperationStatusResult;
|
|
340
|
-
|
|
341
|
-
// @public
|
|
342
|
-
export interface SapDiscoverySitesListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
343
|
-
}
|
|
344
|
-
|
|
345
|
-
// @public
|
|
346
|
-
export type SapDiscoverySitesListByResourceGroupNextResponse = SAPDiscoverySiteListResult;
|
|
347
|
-
|
|
348
|
-
// @public
|
|
349
|
-
export interface SapDiscoverySitesListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
350
|
-
}
|
|
351
|
-
|
|
352
|
-
// @public
|
|
353
|
-
export type SapDiscoverySitesListByResourceGroupResponse = SAPDiscoverySiteListResult;
|
|
354
|
-
|
|
355
|
-
// @public
|
|
356
|
-
export interface SapDiscoverySitesListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
|
|
357
|
-
}
|
|
358
|
-
|
|
359
|
-
// @public
|
|
360
|
-
export type SapDiscoverySitesListBySubscriptionNextResponse = SAPDiscoverySiteListResult;
|
|
361
|
-
|
|
362
|
-
// @public
|
|
363
|
-
export interface SapDiscoverySitesListBySubscriptionOptionalParams extends coreClient.OperationOptions {
|
|
364
|
-
}
|
|
365
|
-
|
|
366
|
-
// @public
|
|
367
|
-
export type SapDiscoverySitesListBySubscriptionResponse = SAPDiscoverySiteListResult;
|
|
368
|
-
|
|
369
|
-
// @public
|
|
370
|
-
export interface SapDiscoverySitesUpdateOptionalParams extends coreClient.OperationOptions {
|
|
371
|
-
}
|
|
372
|
-
|
|
373
|
-
// @public
|
|
374
|
-
export type SapDiscoverySitesUpdateResponse = SAPDiscoverySite;
|
|
375
|
-
|
|
376
|
-
// @public
|
|
377
|
-
export interface SAPDiscoverySiteTagsUpdate {
|
|
378
|
-
tags?: {
|
|
379
|
-
[propertyName: string]: string;
|
|
380
|
-
};
|
|
381
|
-
}
|
|
382
|
-
|
|
383
|
-
// @public
|
|
384
|
-
export interface SAPInstance extends TrackedResource {
|
|
385
|
-
properties?: SAPInstanceProperties;
|
|
386
|
-
}
|
|
387
|
-
|
|
388
|
-
// @public
|
|
389
|
-
export type SapInstanceEnvironment = string;
|
|
390
|
-
|
|
391
|
-
// @public
|
|
392
|
-
export interface SAPInstanceListResult {
|
|
393
|
-
readonly nextLink?: string;
|
|
394
|
-
value: SAPInstance[];
|
|
395
|
-
}
|
|
396
|
-
|
|
397
|
-
// @public
|
|
398
|
-
export interface SAPInstanceProperties {
|
|
399
|
-
readonly application?: string;
|
|
400
|
-
readonly environment?: SapInstanceEnvironment;
|
|
401
|
-
readonly errors?: SAPMigrateError;
|
|
402
|
-
readonly landscapeSid?: string;
|
|
403
|
-
readonly provisioningState?: ProvisioningState;
|
|
404
|
-
readonly systemSid?: string;
|
|
405
|
-
}
|
|
406
|
-
|
|
407
|
-
// @public
|
|
408
|
-
export interface SapInstances {
|
|
409
|
-
beginCreate(resourceGroupName: string, sapDiscoverySiteName: string, sapInstanceName: string, resource: SAPInstance, options?: SapInstancesCreateOptionalParams): Promise<SimplePollerLike<OperationState<SapInstancesCreateResponse>, SapInstancesCreateResponse>>;
|
|
410
|
-
beginCreateAndWait(resourceGroupName: string, sapDiscoverySiteName: string, sapInstanceName: string, resource: SAPInstance, options?: SapInstancesCreateOptionalParams): Promise<SapInstancesCreateResponse>;
|
|
411
|
-
beginDelete(resourceGroupName: string, sapDiscoverySiteName: string, sapInstanceName: string, options?: SapInstancesDeleteOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
412
|
-
beginDeleteAndWait(resourceGroupName: string, sapDiscoverySiteName: string, sapInstanceName: string, options?: SapInstancesDeleteOptionalParams): Promise<void>;
|
|
413
|
-
get(resourceGroupName: string, sapDiscoverySiteName: string, sapInstanceName: string, options?: SapInstancesGetOptionalParams): Promise<SapInstancesGetResponse>;
|
|
414
|
-
listBySapDiscoverySite(resourceGroupName: string, sapDiscoverySiteName: string, options?: SapInstancesListBySapDiscoverySiteOptionalParams): PagedAsyncIterableIterator<SAPInstance>;
|
|
415
|
-
update(resourceGroupName: string, sapDiscoverySiteName: string, sapInstanceName: string, properties: SAPInstanceTagsUpdate, options?: SapInstancesUpdateOptionalParams): Promise<SapInstancesUpdateResponse>;
|
|
416
|
-
}
|
|
417
|
-
|
|
418
|
-
// @public
|
|
419
|
-
export interface SapInstancesCreateHeaders {
|
|
420
|
-
retryAfter?: number;
|
|
421
|
-
}
|
|
422
|
-
|
|
423
|
-
// @public
|
|
424
|
-
export interface SapInstancesCreateOptionalParams extends coreClient.OperationOptions {
|
|
425
|
-
resumeFrom?: string;
|
|
426
|
-
updateIntervalInMs?: number;
|
|
427
|
-
}
|
|
428
|
-
|
|
429
|
-
// @public
|
|
430
|
-
export type SapInstancesCreateResponse = SAPInstance;
|
|
431
|
-
|
|
432
|
-
// @public
|
|
433
|
-
export interface SapInstancesDeleteHeaders {
|
|
434
|
-
location?: string;
|
|
435
|
-
retryAfter?: number;
|
|
436
|
-
}
|
|
437
|
-
|
|
438
|
-
// @public
|
|
439
|
-
export interface SapInstancesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
440
|
-
resumeFrom?: string;
|
|
441
|
-
updateIntervalInMs?: number;
|
|
442
|
-
}
|
|
443
|
-
|
|
444
|
-
// @public
|
|
445
|
-
export interface SapInstancesGetOptionalParams extends coreClient.OperationOptions {
|
|
446
|
-
}
|
|
447
|
-
|
|
448
|
-
// @public
|
|
449
|
-
export type SapInstancesGetResponse = SAPInstance;
|
|
450
|
-
|
|
451
|
-
// @public
|
|
452
|
-
export interface SapInstancesListBySapDiscoverySiteNextOptionalParams extends coreClient.OperationOptions {
|
|
453
|
-
}
|
|
454
|
-
|
|
455
|
-
// @public
|
|
456
|
-
export type SapInstancesListBySapDiscoverySiteNextResponse = SAPInstanceListResult;
|
|
457
|
-
|
|
458
|
-
// @public
|
|
459
|
-
export interface SapInstancesListBySapDiscoverySiteOptionalParams extends coreClient.OperationOptions {
|
|
460
|
-
}
|
|
461
|
-
|
|
462
|
-
// @public
|
|
463
|
-
export type SapInstancesListBySapDiscoverySiteResponse = SAPInstanceListResult;
|
|
464
|
-
|
|
465
|
-
// @public
|
|
466
|
-
export interface SapInstancesUpdateOptionalParams extends coreClient.OperationOptions {
|
|
467
|
-
}
|
|
468
|
-
|
|
469
|
-
// @public
|
|
470
|
-
export type SapInstancesUpdateResponse = SAPInstance;
|
|
471
|
-
|
|
472
|
-
// @public
|
|
473
|
-
export interface SAPInstanceTagsUpdate {
|
|
474
|
-
tags?: {
|
|
475
|
-
[propertyName: string]: string;
|
|
476
|
-
};
|
|
477
|
-
}
|
|
478
|
-
|
|
479
|
-
// @public
|
|
480
|
-
export type SapInstanceType = string;
|
|
481
|
-
|
|
482
|
-
// @public
|
|
483
|
-
export interface SAPMigrateError {
|
|
484
|
-
properties?: ErrorDefinition;
|
|
485
|
-
}
|
|
486
|
-
|
|
487
|
-
// @public
|
|
488
|
-
export interface ServerInstance extends ProxyResource {
|
|
489
|
-
properties?: ServerInstanceProperties;
|
|
490
|
-
}
|
|
491
|
-
|
|
492
|
-
// @public
|
|
493
|
-
export interface ServerInstanceListResult {
|
|
494
|
-
readonly nextLink?: string;
|
|
495
|
-
value: ServerInstance[];
|
|
496
|
-
}
|
|
497
|
-
|
|
498
|
-
// @public
|
|
499
|
-
export interface ServerInstanceProperties {
|
|
500
|
-
readonly configurationData?: ConfigurationData;
|
|
501
|
-
readonly errors?: SAPMigrateError;
|
|
502
|
-
readonly instanceSid?: string;
|
|
503
|
-
readonly operatingSystem?: OperatingSystem;
|
|
504
|
-
readonly performanceData?: PerformanceDataUnion;
|
|
505
|
-
readonly provisioningState?: ProvisioningState;
|
|
506
|
-
readonly sapInstanceType?: SapInstanceType;
|
|
507
|
-
readonly sapProduct?: string;
|
|
508
|
-
readonly sapProductVersion?: string;
|
|
509
|
-
readonly serverName?: string;
|
|
510
|
-
}
|
|
511
|
-
|
|
512
|
-
// @public
|
|
513
|
-
export interface ServerInstances {
|
|
514
|
-
beginCreate(resourceGroupName: string, sapDiscoverySiteName: string, sapInstanceName: string, serverInstanceName: string, resource: ServerInstance, options?: ServerInstancesCreateOptionalParams): Promise<SimplePollerLike<OperationState<ServerInstancesCreateResponse>, ServerInstancesCreateResponse>>;
|
|
515
|
-
beginCreateAndWait(resourceGroupName: string, sapDiscoverySiteName: string, sapInstanceName: string, serverInstanceName: string, resource: ServerInstance, options?: ServerInstancesCreateOptionalParams): Promise<ServerInstancesCreateResponse>;
|
|
516
|
-
beginDelete(resourceGroupName: string, sapDiscoverySiteName: string, sapInstanceName: string, serverInstanceName: string, options?: ServerInstancesDeleteOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
517
|
-
beginDeleteAndWait(resourceGroupName: string, sapDiscoverySiteName: string, sapInstanceName: string, serverInstanceName: string, options?: ServerInstancesDeleteOptionalParams): Promise<void>;
|
|
518
|
-
get(resourceGroupName: string, sapDiscoverySiteName: string, sapInstanceName: string, serverInstanceName: string, options?: ServerInstancesGetOptionalParams): Promise<ServerInstancesGetResponse>;
|
|
519
|
-
listBySapInstance(resourceGroupName: string, sapDiscoverySiteName: string, sapInstanceName: string, options?: ServerInstancesListBySapInstanceOptionalParams): PagedAsyncIterableIterator<ServerInstance>;
|
|
520
|
-
update(resourceGroupName: string, sapDiscoverySiteName: string, sapInstanceName: string, serverInstanceName: string, properties: UpdateServerInstanceRequest, options?: ServerInstancesUpdateOptionalParams): Promise<ServerInstancesUpdateResponse>;
|
|
521
|
-
}
|
|
522
|
-
|
|
523
|
-
// @public
|
|
524
|
-
export interface ServerInstancesCreateHeaders {
|
|
525
|
-
retryAfter?: number;
|
|
526
|
-
}
|
|
527
|
-
|
|
528
|
-
// @public
|
|
529
|
-
export interface ServerInstancesCreateOptionalParams extends coreClient.OperationOptions {
|
|
530
|
-
resumeFrom?: string;
|
|
531
|
-
updateIntervalInMs?: number;
|
|
532
|
-
}
|
|
533
|
-
|
|
534
|
-
// @public
|
|
535
|
-
export type ServerInstancesCreateResponse = ServerInstance;
|
|
536
|
-
|
|
537
|
-
// @public
|
|
538
|
-
export interface ServerInstancesDeleteHeaders {
|
|
539
|
-
location?: string;
|
|
540
|
-
retryAfter?: number;
|
|
541
|
-
}
|
|
542
|
-
|
|
543
|
-
// @public
|
|
544
|
-
export interface ServerInstancesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
545
|
-
resumeFrom?: string;
|
|
546
|
-
updateIntervalInMs?: number;
|
|
547
|
-
}
|
|
548
|
-
|
|
549
|
-
// @public
|
|
550
|
-
export interface ServerInstancesGetOptionalParams extends coreClient.OperationOptions {
|
|
551
|
-
}
|
|
552
|
-
|
|
553
|
-
// @public
|
|
554
|
-
export type ServerInstancesGetResponse = ServerInstance;
|
|
555
|
-
|
|
556
|
-
// @public
|
|
557
|
-
export interface ServerInstancesListBySapInstanceNextOptionalParams extends coreClient.OperationOptions {
|
|
558
|
-
}
|
|
559
|
-
|
|
560
|
-
// @public
|
|
561
|
-
export type ServerInstancesListBySapInstanceNextResponse = ServerInstanceListResult;
|
|
562
|
-
|
|
563
|
-
// @public
|
|
564
|
-
export interface ServerInstancesListBySapInstanceOptionalParams extends coreClient.OperationOptions {
|
|
565
|
-
}
|
|
566
|
-
|
|
567
|
-
// @public
|
|
568
|
-
export type ServerInstancesListBySapInstanceResponse = ServerInstanceListResult;
|
|
569
|
-
|
|
570
|
-
// @public
|
|
571
|
-
export interface ServerInstancesUpdateOptionalParams extends coreClient.OperationOptions {
|
|
572
|
-
}
|
|
573
|
-
|
|
574
|
-
// @public
|
|
575
|
-
export type ServerInstancesUpdateResponse = ServerInstance;
|
|
576
|
-
|
|
577
|
-
// @public
|
|
578
|
-
export interface SystemData {
|
|
579
|
-
createdAt?: Date;
|
|
580
|
-
createdBy?: string;
|
|
581
|
-
createdByType?: CreatedByType;
|
|
582
|
-
lastModifiedAt?: Date;
|
|
583
|
-
lastModifiedBy?: string;
|
|
584
|
-
lastModifiedByType?: CreatedByType;
|
|
585
|
-
}
|
|
586
|
-
|
|
587
|
-
// @public
|
|
588
|
-
export interface TrackedResource extends Resource {
|
|
589
|
-
location: string;
|
|
590
|
-
tags?: {
|
|
591
|
-
[propertyName: string]: string;
|
|
592
|
-
};
|
|
593
|
-
}
|
|
594
|
-
|
|
595
|
-
// @public
|
|
596
|
-
export interface UpdateServerInstanceRequest {
|
|
597
|
-
properties?: ServerInstanceProperties;
|
|
598
|
-
}
|
|
599
|
-
|
|
600
|
-
// @public
|
|
601
|
-
export type Versions = string;
|
|
602
|
-
|
|
603
|
-
// @public (undocumented)
|
|
604
|
-
export class WorkloadsClient extends coreClient.ServiceClient {
|
|
605
|
-
// (undocumented)
|
|
606
|
-
$host: string;
|
|
607
|
-
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: WorkloadsClientOptionalParams);
|
|
608
|
-
// (undocumented)
|
|
609
|
-
apiVersion: string;
|
|
610
|
-
// (undocumented)
|
|
611
|
-
operations: Operations;
|
|
612
|
-
// (undocumented)
|
|
613
|
-
sapDiscoverySites: SapDiscoverySites;
|
|
614
|
-
// (undocumented)
|
|
615
|
-
sapInstances: SapInstances;
|
|
616
|
-
// (undocumented)
|
|
617
|
-
serverInstances: ServerInstances;
|
|
618
|
-
// (undocumented)
|
|
619
|
-
subscriptionId: string;
|
|
620
|
-
}
|
|
621
|
-
|
|
622
|
-
// @public
|
|
623
|
-
export interface WorkloadsClientOptionalParams extends coreClient.ServiceClientOptions {
|
|
624
|
-
$host?: string;
|
|
625
|
-
apiVersion?: string;
|
|
626
|
-
endpoint?: string;
|
|
627
|
-
}
|
|
628
|
-
|
|
629
|
-
// (No @packageDocumentation comment for this package)
|
|
630
|
-
|
|
631
|
-
```
|
|
1
|
+
## API Report File for "@azure/arm-migrationdiscoverysap"
|
|
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 { OperationState } from '@azure/core-lro';
|
|
10
|
+
import { PagedAsyncIterableIterator } from '@azure/core-paging';
|
|
11
|
+
import { SimplePollerLike } from '@azure/core-lro';
|
|
12
|
+
|
|
13
|
+
// @public
|
|
14
|
+
export type ActionType = string;
|
|
15
|
+
|
|
16
|
+
// @public
|
|
17
|
+
export interface ConfigurationData {
|
|
18
|
+
readonly cpu?: number;
|
|
19
|
+
readonly cpuInMhz?: number;
|
|
20
|
+
readonly cpuType?: string;
|
|
21
|
+
readonly databaseType?: DatabaseType;
|
|
22
|
+
readonly hardwareManufacturer?: string;
|
|
23
|
+
readonly model?: string;
|
|
24
|
+
readonly ram?: number;
|
|
25
|
+
readonly saps?: number;
|
|
26
|
+
readonly targetHanaRamSizeGB?: number;
|
|
27
|
+
readonly totalDiskIops?: number;
|
|
28
|
+
readonly totalDiskSizeGB?: number;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
// @public
|
|
32
|
+
export type CreatedByType = string;
|
|
33
|
+
|
|
34
|
+
// @public
|
|
35
|
+
export type DatabaseType = string;
|
|
36
|
+
|
|
37
|
+
// @public
|
|
38
|
+
export type DataSource = string;
|
|
39
|
+
|
|
40
|
+
// @public
|
|
41
|
+
export interface ErrorAdditionalInfo {
|
|
42
|
+
readonly info?: Record<string, unknown>;
|
|
43
|
+
readonly type?: string;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
// @public
|
|
47
|
+
export interface ErrorDefinition {
|
|
48
|
+
readonly code?: string;
|
|
49
|
+
readonly details?: ErrorDefinition[];
|
|
50
|
+
readonly message?: string;
|
|
51
|
+
readonly recommendation?: string;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
// @public
|
|
55
|
+
export interface ErrorDetail {
|
|
56
|
+
readonly additionalInfo?: ErrorAdditionalInfo[];
|
|
57
|
+
readonly code?: string;
|
|
58
|
+
readonly details?: ErrorDetail[];
|
|
59
|
+
readonly message?: string;
|
|
60
|
+
readonly target?: string;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
// @public
|
|
64
|
+
export interface ErrorResponse {
|
|
65
|
+
error?: ErrorDetail;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
// @public
|
|
69
|
+
export interface ExcelPerformanceData extends PerformanceData {
|
|
70
|
+
dataSource: "Excel";
|
|
71
|
+
readonly maxCpuLoad?: number;
|
|
72
|
+
readonly totalSourceDbSizeGB?: number;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
// @public
|
|
76
|
+
export interface ExtendedLocation {
|
|
77
|
+
name: string;
|
|
78
|
+
type: string;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
// @public
|
|
82
|
+
export function getContinuationToken(page: unknown): string | undefined;
|
|
83
|
+
|
|
84
|
+
// @public
|
|
85
|
+
export enum KnownActionType {
|
|
86
|
+
Internal = "Internal"
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
// @public
|
|
90
|
+
export enum KnownCreatedByType {
|
|
91
|
+
Application = "Application",
|
|
92
|
+
Key = "Key",
|
|
93
|
+
ManagedIdentity = "ManagedIdentity",
|
|
94
|
+
User = "User"
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
// @public
|
|
98
|
+
export enum KnownDatabaseType {
|
|
99
|
+
Adabas = "Adabas",
|
|
100
|
+
Db2 = "Db2",
|
|
101
|
+
Hana = "HANA",
|
|
102
|
+
Informix = "Informix",
|
|
103
|
+
Oracle = "Oracle",
|
|
104
|
+
Sapase = "SAPASE",
|
|
105
|
+
Sapdb = "SAPDB",
|
|
106
|
+
SAPMaxDB = "SAPMaxDB",
|
|
107
|
+
SQLServer = "SQLServer"
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
// @public
|
|
111
|
+
export enum KnownDataSource {
|
|
112
|
+
Excel = "Excel",
|
|
113
|
+
Native = "Native"
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
// @public
|
|
117
|
+
export enum KnownOperatingSystem {
|
|
118
|
+
Ibmaix = "IBMAIX",
|
|
119
|
+
RedHat = "RedHat",
|
|
120
|
+
Solaris = "Solaris",
|
|
121
|
+
Suse = "SUSE",
|
|
122
|
+
Unix = "Unix",
|
|
123
|
+
WindowsServer = "WindowsServer"
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
// @public
|
|
127
|
+
export enum KnownOrigin {
|
|
128
|
+
System = "system",
|
|
129
|
+
User = "user",
|
|
130
|
+
UserSystem = "user,system"
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
// @public
|
|
134
|
+
export enum KnownProvisioningState {
|
|
135
|
+
Accepted = "Accepted",
|
|
136
|
+
Canceled = "Canceled",
|
|
137
|
+
Creating = "Creating",
|
|
138
|
+
Deleting = "Deleting",
|
|
139
|
+
Failed = "Failed",
|
|
140
|
+
Succeeded = "Succeeded",
|
|
141
|
+
Unknown = "Unknown",
|
|
142
|
+
Updating = "Updating"
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
// @public
|
|
146
|
+
export enum KnownSapInstanceEnvironment {
|
|
147
|
+
Development = "Development",
|
|
148
|
+
DisasterRecovery = "DisasterRecovery",
|
|
149
|
+
PreProduction = "PreProduction",
|
|
150
|
+
Production = "Production",
|
|
151
|
+
QualityAssurance = "QualityAssurance",
|
|
152
|
+
Sandbox = "Sandbox",
|
|
153
|
+
Test = "Test",
|
|
154
|
+
Training = "Training"
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
// @public
|
|
158
|
+
export enum KnownSapInstanceType {
|
|
159
|
+
APP = "APP",
|
|
160
|
+
Ascs = "ASCS",
|
|
161
|
+
DB = "DB",
|
|
162
|
+
SCS = "SCS",
|
|
163
|
+
Webdisp = "WEBDISP"
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
// @public
|
|
167
|
+
export enum KnownVersions {
|
|
168
|
+
V20231001Preview = "2023-10-01-preview"
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
// @public
|
|
172
|
+
export interface NativePerformanceData extends PerformanceData {
|
|
173
|
+
dataSource: "Native";
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
// @public
|
|
177
|
+
export type OperatingSystem = string;
|
|
178
|
+
|
|
179
|
+
// @public
|
|
180
|
+
export interface Operation {
|
|
181
|
+
readonly actionType?: ActionType;
|
|
182
|
+
display?: OperationDisplay;
|
|
183
|
+
readonly isDataAction?: boolean;
|
|
184
|
+
readonly name?: string;
|
|
185
|
+
readonly origin?: Origin;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
// @public
|
|
189
|
+
export interface OperationDisplay {
|
|
190
|
+
readonly description?: string;
|
|
191
|
+
readonly operation?: string;
|
|
192
|
+
readonly provider?: string;
|
|
193
|
+
readonly resource?: string;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
// @public
|
|
197
|
+
export interface OperationListResult {
|
|
198
|
+
readonly nextLink?: string;
|
|
199
|
+
readonly value?: Operation[];
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
// @public
|
|
203
|
+
export interface Operations {
|
|
204
|
+
list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<Operation>;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
// @public
|
|
208
|
+
export interface OperationsListNextOptionalParams extends coreClient.OperationOptions {
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
// @public
|
|
212
|
+
export type OperationsListNextResponse = OperationListResult;
|
|
213
|
+
|
|
214
|
+
// @public
|
|
215
|
+
export interface OperationsListOptionalParams extends coreClient.OperationOptions {
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
// @public
|
|
219
|
+
export type OperationsListResponse = OperationListResult;
|
|
220
|
+
|
|
221
|
+
// @public
|
|
222
|
+
export interface OperationStatusResult {
|
|
223
|
+
endTime?: Date;
|
|
224
|
+
error?: ErrorDetail;
|
|
225
|
+
id?: string;
|
|
226
|
+
name?: string;
|
|
227
|
+
operations?: OperationStatusResult[];
|
|
228
|
+
percentComplete?: number;
|
|
229
|
+
startTime?: Date;
|
|
230
|
+
status: string;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
// @public
|
|
234
|
+
export type Origin = string;
|
|
235
|
+
|
|
236
|
+
// @public
|
|
237
|
+
export interface PerformanceData {
|
|
238
|
+
dataSource: "Excel" | "Native";
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
// @public (undocumented)
|
|
242
|
+
export type PerformanceDataUnion = PerformanceData | ExcelPerformanceData | NativePerformanceData;
|
|
243
|
+
|
|
244
|
+
// @public
|
|
245
|
+
export type ProvisioningState = string;
|
|
246
|
+
|
|
247
|
+
// @public
|
|
248
|
+
export interface ProxyResource extends Resource {
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
// @public
|
|
252
|
+
export interface Resource {
|
|
253
|
+
readonly id?: string;
|
|
254
|
+
readonly name?: string;
|
|
255
|
+
readonly systemData?: SystemData;
|
|
256
|
+
readonly type?: string;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
// @public
|
|
260
|
+
export interface SAPDiscoverySite extends TrackedResource {
|
|
261
|
+
extendedLocation?: ExtendedLocation;
|
|
262
|
+
properties?: SAPDiscoverySiteProperties;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
// @public
|
|
266
|
+
export interface SAPDiscoverySiteListResult {
|
|
267
|
+
readonly nextLink?: string;
|
|
268
|
+
value: SAPDiscoverySite[];
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
// @public
|
|
272
|
+
export interface SAPDiscoverySiteProperties {
|
|
273
|
+
readonly errors?: SAPMigrateError;
|
|
274
|
+
masterSiteId?: string;
|
|
275
|
+
migrateProjectId?: string;
|
|
276
|
+
readonly provisioningState?: ProvisioningState;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
// @public
|
|
280
|
+
export interface SapDiscoverySites {
|
|
281
|
+
beginCreate(resourceGroupName: string, sapDiscoverySiteName: string, resource: SAPDiscoverySite, options?: SapDiscoverySitesCreateOptionalParams): Promise<SimplePollerLike<OperationState<SapDiscoverySitesCreateResponse>, SapDiscoverySitesCreateResponse>>;
|
|
282
|
+
beginCreateAndWait(resourceGroupName: string, sapDiscoverySiteName: string, resource: SAPDiscoverySite, options?: SapDiscoverySitesCreateOptionalParams): Promise<SapDiscoverySitesCreateResponse>;
|
|
283
|
+
beginDelete(resourceGroupName: string, sapDiscoverySiteName: string, options?: SapDiscoverySitesDeleteOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
284
|
+
beginDeleteAndWait(resourceGroupName: string, sapDiscoverySiteName: string, options?: SapDiscoverySitesDeleteOptionalParams): Promise<void>;
|
|
285
|
+
beginImportEntities(resourceGroupName: string, sapDiscoverySiteName: string, options?: SapDiscoverySitesImportEntitiesOptionalParams): Promise<SimplePollerLike<OperationState<SapDiscoverySitesImportEntitiesResponse>, SapDiscoverySitesImportEntitiesResponse>>;
|
|
286
|
+
beginImportEntitiesAndWait(resourceGroupName: string, sapDiscoverySiteName: string, options?: SapDiscoverySitesImportEntitiesOptionalParams): Promise<SapDiscoverySitesImportEntitiesResponse>;
|
|
287
|
+
get(resourceGroupName: string, sapDiscoverySiteName: string, options?: SapDiscoverySitesGetOptionalParams): Promise<SapDiscoverySitesGetResponse>;
|
|
288
|
+
listByResourceGroup(resourceGroupName: string, options?: SapDiscoverySitesListByResourceGroupOptionalParams): PagedAsyncIterableIterator<SAPDiscoverySite>;
|
|
289
|
+
listBySubscription(options?: SapDiscoverySitesListBySubscriptionOptionalParams): PagedAsyncIterableIterator<SAPDiscoverySite>;
|
|
290
|
+
update(resourceGroupName: string, sapDiscoverySiteName: string, properties: SAPDiscoverySiteTagsUpdate, options?: SapDiscoverySitesUpdateOptionalParams): Promise<SapDiscoverySitesUpdateResponse>;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
// @public
|
|
294
|
+
export interface SapDiscoverySitesCreateHeaders {
|
|
295
|
+
retryAfter?: number;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
// @public
|
|
299
|
+
export interface SapDiscoverySitesCreateOptionalParams extends coreClient.OperationOptions {
|
|
300
|
+
resumeFrom?: string;
|
|
301
|
+
updateIntervalInMs?: number;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
// @public
|
|
305
|
+
export type SapDiscoverySitesCreateResponse = SAPDiscoverySite;
|
|
306
|
+
|
|
307
|
+
// @public
|
|
308
|
+
export interface SapDiscoverySitesDeleteHeaders {
|
|
309
|
+
location?: string;
|
|
310
|
+
retryAfter?: number;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
// @public
|
|
314
|
+
export interface SapDiscoverySitesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
315
|
+
resumeFrom?: string;
|
|
316
|
+
updateIntervalInMs?: number;
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
// @public
|
|
320
|
+
export interface SapDiscoverySitesGetOptionalParams extends coreClient.OperationOptions {
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
// @public
|
|
324
|
+
export type SapDiscoverySitesGetResponse = SAPDiscoverySite;
|
|
325
|
+
|
|
326
|
+
// @public
|
|
327
|
+
export interface SapDiscoverySitesImportEntitiesHeaders {
|
|
328
|
+
location?: string;
|
|
329
|
+
retryAfter?: number;
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
// @public
|
|
333
|
+
export interface SapDiscoverySitesImportEntitiesOptionalParams extends coreClient.OperationOptions {
|
|
334
|
+
resumeFrom?: string;
|
|
335
|
+
updateIntervalInMs?: number;
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
// @public
|
|
339
|
+
export type SapDiscoverySitesImportEntitiesResponse = OperationStatusResult;
|
|
340
|
+
|
|
341
|
+
// @public
|
|
342
|
+
export interface SapDiscoverySitesListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
// @public
|
|
346
|
+
export type SapDiscoverySitesListByResourceGroupNextResponse = SAPDiscoverySiteListResult;
|
|
347
|
+
|
|
348
|
+
// @public
|
|
349
|
+
export interface SapDiscoverySitesListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
// @public
|
|
353
|
+
export type SapDiscoverySitesListByResourceGroupResponse = SAPDiscoverySiteListResult;
|
|
354
|
+
|
|
355
|
+
// @public
|
|
356
|
+
export interface SapDiscoverySitesListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
// @public
|
|
360
|
+
export type SapDiscoverySitesListBySubscriptionNextResponse = SAPDiscoverySiteListResult;
|
|
361
|
+
|
|
362
|
+
// @public
|
|
363
|
+
export interface SapDiscoverySitesListBySubscriptionOptionalParams extends coreClient.OperationOptions {
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
// @public
|
|
367
|
+
export type SapDiscoverySitesListBySubscriptionResponse = SAPDiscoverySiteListResult;
|
|
368
|
+
|
|
369
|
+
// @public
|
|
370
|
+
export interface SapDiscoverySitesUpdateOptionalParams extends coreClient.OperationOptions {
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
// @public
|
|
374
|
+
export type SapDiscoverySitesUpdateResponse = SAPDiscoverySite;
|
|
375
|
+
|
|
376
|
+
// @public
|
|
377
|
+
export interface SAPDiscoverySiteTagsUpdate {
|
|
378
|
+
tags?: {
|
|
379
|
+
[propertyName: string]: string;
|
|
380
|
+
};
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
// @public
|
|
384
|
+
export interface SAPInstance extends TrackedResource {
|
|
385
|
+
properties?: SAPInstanceProperties;
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
// @public
|
|
389
|
+
export type SapInstanceEnvironment = string;
|
|
390
|
+
|
|
391
|
+
// @public
|
|
392
|
+
export interface SAPInstanceListResult {
|
|
393
|
+
readonly nextLink?: string;
|
|
394
|
+
value: SAPInstance[];
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
// @public
|
|
398
|
+
export interface SAPInstanceProperties {
|
|
399
|
+
readonly application?: string;
|
|
400
|
+
readonly environment?: SapInstanceEnvironment;
|
|
401
|
+
readonly errors?: SAPMigrateError;
|
|
402
|
+
readonly landscapeSid?: string;
|
|
403
|
+
readonly provisioningState?: ProvisioningState;
|
|
404
|
+
readonly systemSid?: string;
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
// @public
|
|
408
|
+
export interface SapInstances {
|
|
409
|
+
beginCreate(resourceGroupName: string, sapDiscoverySiteName: string, sapInstanceName: string, resource: SAPInstance, options?: SapInstancesCreateOptionalParams): Promise<SimplePollerLike<OperationState<SapInstancesCreateResponse>, SapInstancesCreateResponse>>;
|
|
410
|
+
beginCreateAndWait(resourceGroupName: string, sapDiscoverySiteName: string, sapInstanceName: string, resource: SAPInstance, options?: SapInstancesCreateOptionalParams): Promise<SapInstancesCreateResponse>;
|
|
411
|
+
beginDelete(resourceGroupName: string, sapDiscoverySiteName: string, sapInstanceName: string, options?: SapInstancesDeleteOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
412
|
+
beginDeleteAndWait(resourceGroupName: string, sapDiscoverySiteName: string, sapInstanceName: string, options?: SapInstancesDeleteOptionalParams): Promise<void>;
|
|
413
|
+
get(resourceGroupName: string, sapDiscoverySiteName: string, sapInstanceName: string, options?: SapInstancesGetOptionalParams): Promise<SapInstancesGetResponse>;
|
|
414
|
+
listBySapDiscoverySite(resourceGroupName: string, sapDiscoverySiteName: string, options?: SapInstancesListBySapDiscoverySiteOptionalParams): PagedAsyncIterableIterator<SAPInstance>;
|
|
415
|
+
update(resourceGroupName: string, sapDiscoverySiteName: string, sapInstanceName: string, properties: SAPInstanceTagsUpdate, options?: SapInstancesUpdateOptionalParams): Promise<SapInstancesUpdateResponse>;
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
// @public
|
|
419
|
+
export interface SapInstancesCreateHeaders {
|
|
420
|
+
retryAfter?: number;
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
// @public
|
|
424
|
+
export interface SapInstancesCreateOptionalParams extends coreClient.OperationOptions {
|
|
425
|
+
resumeFrom?: string;
|
|
426
|
+
updateIntervalInMs?: number;
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
// @public
|
|
430
|
+
export type SapInstancesCreateResponse = SAPInstance;
|
|
431
|
+
|
|
432
|
+
// @public
|
|
433
|
+
export interface SapInstancesDeleteHeaders {
|
|
434
|
+
location?: string;
|
|
435
|
+
retryAfter?: number;
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
// @public
|
|
439
|
+
export interface SapInstancesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
440
|
+
resumeFrom?: string;
|
|
441
|
+
updateIntervalInMs?: number;
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
// @public
|
|
445
|
+
export interface SapInstancesGetOptionalParams extends coreClient.OperationOptions {
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
// @public
|
|
449
|
+
export type SapInstancesGetResponse = SAPInstance;
|
|
450
|
+
|
|
451
|
+
// @public
|
|
452
|
+
export interface SapInstancesListBySapDiscoverySiteNextOptionalParams extends coreClient.OperationOptions {
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
// @public
|
|
456
|
+
export type SapInstancesListBySapDiscoverySiteNextResponse = SAPInstanceListResult;
|
|
457
|
+
|
|
458
|
+
// @public
|
|
459
|
+
export interface SapInstancesListBySapDiscoverySiteOptionalParams extends coreClient.OperationOptions {
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
// @public
|
|
463
|
+
export type SapInstancesListBySapDiscoverySiteResponse = SAPInstanceListResult;
|
|
464
|
+
|
|
465
|
+
// @public
|
|
466
|
+
export interface SapInstancesUpdateOptionalParams extends coreClient.OperationOptions {
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
// @public
|
|
470
|
+
export type SapInstancesUpdateResponse = SAPInstance;
|
|
471
|
+
|
|
472
|
+
// @public
|
|
473
|
+
export interface SAPInstanceTagsUpdate {
|
|
474
|
+
tags?: {
|
|
475
|
+
[propertyName: string]: string;
|
|
476
|
+
};
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
// @public
|
|
480
|
+
export type SapInstanceType = string;
|
|
481
|
+
|
|
482
|
+
// @public
|
|
483
|
+
export interface SAPMigrateError {
|
|
484
|
+
properties?: ErrorDefinition;
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
// @public
|
|
488
|
+
export interface ServerInstance extends ProxyResource {
|
|
489
|
+
properties?: ServerInstanceProperties;
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
// @public
|
|
493
|
+
export interface ServerInstanceListResult {
|
|
494
|
+
readonly nextLink?: string;
|
|
495
|
+
value: ServerInstance[];
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
// @public
|
|
499
|
+
export interface ServerInstanceProperties {
|
|
500
|
+
readonly configurationData?: ConfigurationData;
|
|
501
|
+
readonly errors?: SAPMigrateError;
|
|
502
|
+
readonly instanceSid?: string;
|
|
503
|
+
readonly operatingSystem?: OperatingSystem;
|
|
504
|
+
readonly performanceData?: PerformanceDataUnion;
|
|
505
|
+
readonly provisioningState?: ProvisioningState;
|
|
506
|
+
readonly sapInstanceType?: SapInstanceType;
|
|
507
|
+
readonly sapProduct?: string;
|
|
508
|
+
readonly sapProductVersion?: string;
|
|
509
|
+
readonly serverName?: string;
|
|
510
|
+
}
|
|
511
|
+
|
|
512
|
+
// @public
|
|
513
|
+
export interface ServerInstances {
|
|
514
|
+
beginCreate(resourceGroupName: string, sapDiscoverySiteName: string, sapInstanceName: string, serverInstanceName: string, resource: ServerInstance, options?: ServerInstancesCreateOptionalParams): Promise<SimplePollerLike<OperationState<ServerInstancesCreateResponse>, ServerInstancesCreateResponse>>;
|
|
515
|
+
beginCreateAndWait(resourceGroupName: string, sapDiscoverySiteName: string, sapInstanceName: string, serverInstanceName: string, resource: ServerInstance, options?: ServerInstancesCreateOptionalParams): Promise<ServerInstancesCreateResponse>;
|
|
516
|
+
beginDelete(resourceGroupName: string, sapDiscoverySiteName: string, sapInstanceName: string, serverInstanceName: string, options?: ServerInstancesDeleteOptionalParams): Promise<SimplePollerLike<OperationState<void>, void>>;
|
|
517
|
+
beginDeleteAndWait(resourceGroupName: string, sapDiscoverySiteName: string, sapInstanceName: string, serverInstanceName: string, options?: ServerInstancesDeleteOptionalParams): Promise<void>;
|
|
518
|
+
get(resourceGroupName: string, sapDiscoverySiteName: string, sapInstanceName: string, serverInstanceName: string, options?: ServerInstancesGetOptionalParams): Promise<ServerInstancesGetResponse>;
|
|
519
|
+
listBySapInstance(resourceGroupName: string, sapDiscoverySiteName: string, sapInstanceName: string, options?: ServerInstancesListBySapInstanceOptionalParams): PagedAsyncIterableIterator<ServerInstance>;
|
|
520
|
+
update(resourceGroupName: string, sapDiscoverySiteName: string, sapInstanceName: string, serverInstanceName: string, properties: UpdateServerInstanceRequest, options?: ServerInstancesUpdateOptionalParams): Promise<ServerInstancesUpdateResponse>;
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
// @public
|
|
524
|
+
export interface ServerInstancesCreateHeaders {
|
|
525
|
+
retryAfter?: number;
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
// @public
|
|
529
|
+
export interface ServerInstancesCreateOptionalParams extends coreClient.OperationOptions {
|
|
530
|
+
resumeFrom?: string;
|
|
531
|
+
updateIntervalInMs?: number;
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
// @public
|
|
535
|
+
export type ServerInstancesCreateResponse = ServerInstance;
|
|
536
|
+
|
|
537
|
+
// @public
|
|
538
|
+
export interface ServerInstancesDeleteHeaders {
|
|
539
|
+
location?: string;
|
|
540
|
+
retryAfter?: number;
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
// @public
|
|
544
|
+
export interface ServerInstancesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
545
|
+
resumeFrom?: string;
|
|
546
|
+
updateIntervalInMs?: number;
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
// @public
|
|
550
|
+
export interface ServerInstancesGetOptionalParams extends coreClient.OperationOptions {
|
|
551
|
+
}
|
|
552
|
+
|
|
553
|
+
// @public
|
|
554
|
+
export type ServerInstancesGetResponse = ServerInstance;
|
|
555
|
+
|
|
556
|
+
// @public
|
|
557
|
+
export interface ServerInstancesListBySapInstanceNextOptionalParams extends coreClient.OperationOptions {
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
// @public
|
|
561
|
+
export type ServerInstancesListBySapInstanceNextResponse = ServerInstanceListResult;
|
|
562
|
+
|
|
563
|
+
// @public
|
|
564
|
+
export interface ServerInstancesListBySapInstanceOptionalParams extends coreClient.OperationOptions {
|
|
565
|
+
}
|
|
566
|
+
|
|
567
|
+
// @public
|
|
568
|
+
export type ServerInstancesListBySapInstanceResponse = ServerInstanceListResult;
|
|
569
|
+
|
|
570
|
+
// @public
|
|
571
|
+
export interface ServerInstancesUpdateOptionalParams extends coreClient.OperationOptions {
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
// @public
|
|
575
|
+
export type ServerInstancesUpdateResponse = ServerInstance;
|
|
576
|
+
|
|
577
|
+
// @public
|
|
578
|
+
export interface SystemData {
|
|
579
|
+
createdAt?: Date;
|
|
580
|
+
createdBy?: string;
|
|
581
|
+
createdByType?: CreatedByType;
|
|
582
|
+
lastModifiedAt?: Date;
|
|
583
|
+
lastModifiedBy?: string;
|
|
584
|
+
lastModifiedByType?: CreatedByType;
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
// @public
|
|
588
|
+
export interface TrackedResource extends Resource {
|
|
589
|
+
location: string;
|
|
590
|
+
tags?: {
|
|
591
|
+
[propertyName: string]: string;
|
|
592
|
+
};
|
|
593
|
+
}
|
|
594
|
+
|
|
595
|
+
// @public
|
|
596
|
+
export interface UpdateServerInstanceRequest {
|
|
597
|
+
properties?: ServerInstanceProperties;
|
|
598
|
+
}
|
|
599
|
+
|
|
600
|
+
// @public
|
|
601
|
+
export type Versions = string;
|
|
602
|
+
|
|
603
|
+
// @public (undocumented)
|
|
604
|
+
export class WorkloadsClient extends coreClient.ServiceClient {
|
|
605
|
+
// (undocumented)
|
|
606
|
+
$host: string;
|
|
607
|
+
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: WorkloadsClientOptionalParams);
|
|
608
|
+
// (undocumented)
|
|
609
|
+
apiVersion: string;
|
|
610
|
+
// (undocumented)
|
|
611
|
+
operations: Operations;
|
|
612
|
+
// (undocumented)
|
|
613
|
+
sapDiscoverySites: SapDiscoverySites;
|
|
614
|
+
// (undocumented)
|
|
615
|
+
sapInstances: SapInstances;
|
|
616
|
+
// (undocumented)
|
|
617
|
+
serverInstances: ServerInstances;
|
|
618
|
+
// (undocumented)
|
|
619
|
+
subscriptionId: string;
|
|
620
|
+
}
|
|
621
|
+
|
|
622
|
+
// @public
|
|
623
|
+
export interface WorkloadsClientOptionalParams extends coreClient.ServiceClientOptions {
|
|
624
|
+
$host?: string;
|
|
625
|
+
apiVersion?: string;
|
|
626
|
+
endpoint?: string;
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
// (No @packageDocumentation comment for this package)
|
|
630
|
+
|
|
631
|
+
```
|