@azure/arm-webservices 1.1.1-alpha.20250717.1 → 1.1.1-alpha.20250718.2

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.
Files changed (51) hide show
  1. package/dist/browser/azureMLWebServicesManagementClient.js +15 -5
  2. package/dist/browser/azureMLWebServicesManagementClient.js.map +1 -1
  3. package/dist/browser/lroImpl.js +11 -3
  4. package/dist/browser/lroImpl.js.map +1 -1
  5. package/dist/browser/models/mappers.js +15 -6
  6. package/dist/browser/models/mappers.js.map +1 -1
  7. package/dist/browser/operations/operations.js +10 -27
  8. package/dist/browser/operations/operations.js.map +1 -1
  9. package/dist/browser/operations/webServices.js +89 -103
  10. package/dist/browser/operations/webServices.js.map +1 -1
  11. package/dist/browser/pagingHelper.js +2 -4
  12. package/dist/browser/pagingHelper.js.map +1 -1
  13. package/dist/commonjs/azureMLWebServicesManagementClient.js +15 -5
  14. package/dist/commonjs/azureMLWebServicesManagementClient.js.map +1 -1
  15. package/dist/commonjs/lroImpl.js +11 -3
  16. package/dist/commonjs/lroImpl.js.map +1 -1
  17. package/dist/commonjs/models/mappers.js +15 -6
  18. package/dist/commonjs/models/mappers.js.map +1 -1
  19. package/dist/commonjs/operations/operations.js +10 -26
  20. package/dist/commonjs/operations/operations.js.map +1 -1
  21. package/dist/commonjs/operations/webServices.js +89 -102
  22. package/dist/commonjs/operations/webServices.js.map +1 -1
  23. package/dist/commonjs/pagingHelper.js +2 -4
  24. package/dist/commonjs/pagingHelper.js.map +1 -1
  25. package/dist/commonjs/tsdoc-metadata.json +11 -11
  26. package/dist/esm/azureMLWebServicesManagementClient.js +15 -5
  27. package/dist/esm/azureMLWebServicesManagementClient.js.map +1 -1
  28. package/dist/esm/lroImpl.js +11 -3
  29. package/dist/esm/lroImpl.js.map +1 -1
  30. package/dist/esm/models/mappers.js +15 -6
  31. package/dist/esm/models/mappers.js.map +1 -1
  32. package/dist/esm/operations/operations.js +10 -27
  33. package/dist/esm/operations/operations.js.map +1 -1
  34. package/dist/esm/operations/webServices.js +89 -103
  35. package/dist/esm/operations/webServices.js.map +1 -1
  36. package/dist/esm/pagingHelper.js +2 -4
  37. package/dist/esm/pagingHelper.js.map +1 -1
  38. package/dist/react-native/azureMLWebServicesManagementClient.js +15 -5
  39. package/dist/react-native/azureMLWebServicesManagementClient.js.map +1 -1
  40. package/dist/react-native/lroImpl.js +11 -3
  41. package/dist/react-native/lroImpl.js.map +1 -1
  42. package/dist/react-native/models/mappers.js +15 -6
  43. package/dist/react-native/models/mappers.js.map +1 -1
  44. package/dist/react-native/operations/operations.js +10 -27
  45. package/dist/react-native/operations/operations.js.map +1 -1
  46. package/dist/react-native/operations/webServices.js +89 -103
  47. package/dist/react-native/operations/webServices.js.map +1 -1
  48. package/dist/react-native/pagingHelper.js +2 -4
  49. package/dist/react-native/pagingHelper.js.map +1 -1
  50. package/package.json +2 -2
  51. package/review/arm-webservices-node.api.md +533 -533
@@ -1,533 +1,533 @@
1
- ## API Report File for "@azure/arm-webservices"
2
-
3
- > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
4
-
5
- ```ts
6
-
7
- import * as coreAuth from '@azure/core-auth';
8
- import * as coreClient from '@azure/core-client';
9
- import { PagedAsyncIterableIterator } from '@azure/core-paging';
10
- import { PollerLike } from '@azure/core-lro';
11
- import { PollOperationState } from '@azure/core-lro';
12
-
13
- // @public
14
- export interface AssetItem {
15
- id?: string;
16
- inputPorts?: {
17
- [propertyName: string]: InputPort;
18
- };
19
- locationInfo: BlobLocation;
20
- metadata?: {
21
- [propertyName: string]: string;
22
- };
23
- name: string;
24
- outputPorts?: {
25
- [propertyName: string]: OutputPort;
26
- };
27
- parameters?: ModuleAssetParameter[];
28
- type: AssetType;
29
- }
30
-
31
- // @public
32
- export type AssetType = string;
33
-
34
- // @public
35
- export interface AsyncOperationErrorInfo {
36
- readonly code?: string;
37
- readonly details?: AsyncOperationErrorInfo[];
38
- readonly message?: string;
39
- readonly target?: string;
40
- }
41
-
42
- // @public
43
- export interface AsyncOperationStatus {
44
- readonly endTime?: Date;
45
- readonly errorInfo?: AsyncOperationErrorInfo;
46
- readonly id?: string;
47
- readonly name?: string;
48
- readonly percentComplete?: number;
49
- readonly provisioningState?: ProvisioningState;
50
- readonly startTime?: Date;
51
- }
52
-
53
- // @public (undocumented)
54
- export class AzureMLWebServicesManagementClient extends coreClient.ServiceClient {
55
- // (undocumented)
56
- $host: string;
57
- constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: AzureMLWebServicesManagementClientOptionalParams);
58
- // (undocumented)
59
- apiVersion: string;
60
- // (undocumented)
61
- operations: Operations;
62
- // (undocumented)
63
- subscriptionId: string;
64
- // (undocumented)
65
- webServices: WebServices;
66
- }
67
-
68
- // @public
69
- export interface AzureMLWebServicesManagementClientOptionalParams extends coreClient.ServiceClientOptions {
70
- $host?: string;
71
- apiVersion?: string;
72
- endpoint?: string;
73
- }
74
-
75
- // @public
76
- export interface BlobLocation {
77
- credentials?: string;
78
- uri: string;
79
- }
80
-
81
- // @public
82
- export type ColumnFormat = string;
83
-
84
- // @public
85
- export interface ColumnSpecification {
86
- enum?: Record<string, unknown>[];
87
- format?: ColumnFormat;
88
- type: ColumnType;
89
- xMsIsnullable?: boolean;
90
- xMsIsordered?: boolean;
91
- }
92
-
93
- // @public
94
- export type ColumnType = string;
95
-
96
- // @public
97
- export interface CommitmentPlan {
98
- id: string;
99
- }
100
-
101
- // @public
102
- export interface DiagnosticsConfiguration {
103
- expiry?: Date;
104
- level: DiagnosticsLevel;
105
- }
106
-
107
- // @public
108
- export type DiagnosticsLevel = string;
109
-
110
- // @public
111
- export interface ExampleRequest {
112
- globalParameters?: {
113
- [propertyName: string]: Record<string, unknown>;
114
- };
115
- inputs?: {
116
- [propertyName: string]: Record<string, unknown>[][];
117
- };
118
- }
119
-
120
- // @public
121
- export function getContinuationToken(page: unknown): string | undefined;
122
-
123
- // @public
124
- export interface GraphEdge {
125
- sourceNodeId?: string;
126
- sourcePortId?: string;
127
- targetNodeId?: string;
128
- targetPortId?: string;
129
- }
130
-
131
- // @public
132
- export interface GraphNode {
133
- assetId?: string;
134
- inputId?: string;
135
- outputId?: string;
136
- parameters?: {
137
- [propertyName: string]: WebServiceParameter;
138
- };
139
- }
140
-
141
- // @public
142
- export interface GraphPackage {
143
- edges?: GraphEdge[];
144
- graphParameters?: {
145
- [propertyName: string]: GraphParameter;
146
- };
147
- nodes?: {
148
- [propertyName: string]: GraphNode;
149
- };
150
- }
151
-
152
- // @public
153
- export interface GraphParameter {
154
- description?: string;
155
- links: GraphParameterLink[];
156
- type: ParameterType;
157
- }
158
-
159
- // @public
160
- export interface GraphParameterLink {
161
- nodeId: string;
162
- parameterKey: string;
163
- }
164
-
165
- // @public
166
- export interface InputPort {
167
- type?: InputPortType;
168
- }
169
-
170
- // @public
171
- export type InputPortType = string;
172
-
173
- // @public
174
- export enum KnownAssetType {
175
- Module = "Module",
176
- Resource = "Resource"
177
- }
178
-
179
- // @public
180
- export enum KnownColumnFormat {
181
- Byte = "Byte",
182
- Char = "Char",
183
- Complex128 = "Complex128",
184
- Complex64 = "Complex64",
185
- DateTime = "Date-time",
186
- DateTimeOffset = "Date-timeOffset",
187
- Double = "Double",
188
- Duration = "Duration",
189
- Float = "Float",
190
- Int16 = "Int16",
191
- Int32 = "Int32",
192
- Int64 = "Int64",
193
- Int8 = "Int8",
194
- Uint16 = "Uint16",
195
- Uint32 = "Uint32",
196
- Uint64 = "Uint64",
197
- Uint8 = "Uint8"
198
- }
199
-
200
- // @public
201
- export enum KnownColumnType {
202
- Boolean = "Boolean",
203
- Integer = "Integer",
204
- Number = "Number",
205
- String = "String"
206
- }
207
-
208
- // @public
209
- export enum KnownDiagnosticsLevel {
210
- All = "All",
211
- Error = "Error",
212
- None = "None"
213
- }
214
-
215
- // @public
216
- export enum KnownInputPortType {
217
- Dataset = "Dataset"
218
- }
219
-
220
- // @public
221
- export enum KnownOutputPortType {
222
- Dataset = "Dataset"
223
- }
224
-
225
- // @public
226
- export enum KnownParameterType {
227
- Boolean = "Boolean",
228
- ColumnPicker = "ColumnPicker",
229
- Credential = "Credential",
230
- DataGatewayName = "DataGatewayName",
231
- Double = "Double",
232
- Enumerated = "Enumerated",
233
- Float = "Float",
234
- Int = "Int",
235
- Mode = "Mode",
236
- ParameterRange = "ParameterRange",
237
- Script = "Script",
238
- String = "String"
239
- }
240
-
241
- // @public
242
- export enum KnownProvisioningState {
243
- Failed = "Failed",
244
- Provisioning = "Provisioning",
245
- Succeeded = "Succeeded",
246
- Unknown = "Unknown"
247
- }
248
-
249
- // @public
250
- export interface MachineLearningWorkspace {
251
- id: string;
252
- }
253
-
254
- // @public
255
- export interface ModeValueInfo {
256
- interfaceString?: string;
257
- parameters?: ModuleAssetParameter[];
258
- }
259
-
260
- // @public
261
- export interface ModuleAssetParameter {
262
- modeValuesInfo?: {
263
- [propertyName: string]: ModeValueInfo;
264
- };
265
- name?: string;
266
- parameterType?: string;
267
- }
268
-
269
- // @public
270
- export interface OperationDisplayInfo {
271
- readonly description?: string;
272
- readonly operation?: string;
273
- readonly provider?: string;
274
- readonly resource?: string;
275
- }
276
-
277
- // @public
278
- export interface OperationEntity {
279
- display?: OperationDisplayInfo;
280
- readonly name?: string;
281
- }
282
-
283
- // @public
284
- export interface OperationEntityListResult {
285
- readonly value?: OperationEntity[];
286
- }
287
-
288
- // @public
289
- export interface Operations {
290
- list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<OperationEntity>;
291
- }
292
-
293
- // @public
294
- export interface OperationsListOptionalParams extends coreClient.OperationOptions {
295
- }
296
-
297
- // @public
298
- export type OperationsListResponse = OperationEntityListResult;
299
-
300
- // @public
301
- export interface OutputPort {
302
- type?: OutputPortType;
303
- }
304
-
305
- // @public
306
- export type OutputPortType = string;
307
-
308
- // @public
309
- export interface PaginatedWebServicesList {
310
- nextLink?: string;
311
- value?: WebService[];
312
- }
313
-
314
- // @public
315
- export type ParameterType = string;
316
-
317
- // @public
318
- export interface PatchedResource {
319
- readonly id?: string;
320
- readonly location?: string;
321
- readonly name?: string;
322
- tags?: {
323
- [propertyName: string]: string;
324
- };
325
- readonly type?: string;
326
- }
327
-
328
- // @public
329
- export interface PatchedWebService extends PatchedResource {
330
- properties?: WebServicePropertiesUnion;
331
- }
332
-
333
- // @public
334
- export type ProvisioningState = string;
335
-
336
- // @public
337
- export interface RealtimeConfiguration {
338
- maxConcurrentCalls?: number;
339
- }
340
-
341
- // @public
342
- export interface Resource {
343
- readonly id?: string;
344
- location: string;
345
- readonly name?: string;
346
- tags?: {
347
- [propertyName: string]: string;
348
- };
349
- readonly type?: string;
350
- }
351
-
352
- // @public
353
- export interface ServiceInputOutputSpecification {
354
- description?: string;
355
- properties: {
356
- [propertyName: string]: TableSpecification;
357
- };
358
- title?: string;
359
- type: string;
360
- }
361
-
362
- // @public
363
- export interface StorageAccount {
364
- key?: string;
365
- name?: string;
366
- }
367
-
368
- // @public
369
- export interface TableSpecification {
370
- description?: string;
371
- format?: string;
372
- properties?: {
373
- [propertyName: string]: ColumnSpecification;
374
- };
375
- title?: string;
376
- type: string;
377
- }
378
-
379
- // @public
380
- export interface WebService extends Resource {
381
- properties: WebServicePropertiesUnion;
382
- }
383
-
384
- // @public
385
- export interface WebServiceKeys {
386
- primary?: string;
387
- secondary?: string;
388
- }
389
-
390
- // @public
391
- export interface WebServiceParameter {
392
- certificateThumbprint?: string;
393
- value?: Record<string, unknown>;
394
- }
395
-
396
- // @public
397
- export interface WebServiceProperties {
398
- assets?: {
399
- [propertyName: string]: AssetItem;
400
- };
401
- commitmentPlan?: CommitmentPlan;
402
- readonly createdOn?: Date;
403
- description?: string;
404
- diagnostics?: DiagnosticsConfiguration;
405
- exampleRequest?: ExampleRequest;
406
- exposeSampleData?: boolean;
407
- input?: ServiceInputOutputSpecification;
408
- keys?: WebServiceKeys;
409
- machineLearningWorkspace?: MachineLearningWorkspace;
410
- readonly modifiedOn?: Date;
411
- output?: ServiceInputOutputSpecification;
412
- packageType: "Graph";
413
- parameters?: {
414
- [propertyName: string]: WebServiceParameter;
415
- };
416
- payloadsInBlobStorage?: boolean;
417
- payloadsLocation?: BlobLocation;
418
- readonly provisioningState?: ProvisioningState;
419
- readOnly?: boolean;
420
- realtimeConfiguration?: RealtimeConfiguration;
421
- storageAccount?: StorageAccount;
422
- readonly swaggerLocation?: string;
423
- title?: string;
424
- }
425
-
426
- // @public
427
- export interface WebServicePropertiesForGraph extends WebServiceProperties {
428
- package?: GraphPackage;
429
- packageType: "Graph";
430
- }
431
-
432
- // @public (undocumented)
433
- export type WebServicePropertiesUnion = WebServiceProperties | WebServicePropertiesForGraph;
434
-
435
- // @public
436
- export interface WebServices {
437
- beginCreateOrUpdate(resourceGroupName: string, webServiceName: string, createOrUpdatePayload: WebService, options?: WebServicesCreateOrUpdateOptionalParams): Promise<PollerLike<PollOperationState<WebServicesCreateOrUpdateResponse>, WebServicesCreateOrUpdateResponse>>;
438
- beginCreateOrUpdateAndWait(resourceGroupName: string, webServiceName: string, createOrUpdatePayload: WebService, options?: WebServicesCreateOrUpdateOptionalParams): Promise<WebServicesCreateOrUpdateResponse>;
439
- beginCreateRegionalProperties(resourceGroupName: string, webServiceName: string, region: string, options?: WebServicesCreateRegionalPropertiesOptionalParams): Promise<PollerLike<PollOperationState<WebServicesCreateRegionalPropertiesResponse>, WebServicesCreateRegionalPropertiesResponse>>;
440
- beginCreateRegionalPropertiesAndWait(resourceGroupName: string, webServiceName: string, region: string, options?: WebServicesCreateRegionalPropertiesOptionalParams): Promise<WebServicesCreateRegionalPropertiesResponse>;
441
- beginPatch(resourceGroupName: string, webServiceName: string, patchPayload: PatchedWebService, options?: WebServicesPatchOptionalParams): Promise<PollerLike<PollOperationState<WebServicesPatchResponse>, WebServicesPatchResponse>>;
442
- beginPatchAndWait(resourceGroupName: string, webServiceName: string, patchPayload: PatchedWebService, options?: WebServicesPatchOptionalParams): Promise<WebServicesPatchResponse>;
443
- beginRemove(resourceGroupName: string, webServiceName: string, options?: WebServicesRemoveOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
444
- beginRemoveAndWait(resourceGroupName: string, webServiceName: string, options?: WebServicesRemoveOptionalParams): Promise<void>;
445
- get(resourceGroupName: string, webServiceName: string, options?: WebServicesGetOptionalParams): Promise<WebServicesGetResponse>;
446
- listByResourceGroup(resourceGroupName: string, options?: WebServicesListByResourceGroupOptionalParams): PagedAsyncIterableIterator<WebService>;
447
- listBySubscriptionId(options?: WebServicesListBySubscriptionIdOptionalParams): PagedAsyncIterableIterator<WebService>;
448
- listKeys(resourceGroupName: string, webServiceName: string, options?: WebServicesListKeysOptionalParams): Promise<WebServicesListKeysResponse>;
449
- }
450
-
451
- // @public
452
- export interface WebServicesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
453
- resumeFrom?: string;
454
- updateIntervalInMs?: number;
455
- }
456
-
457
- // @public
458
- export type WebServicesCreateOrUpdateResponse = WebService;
459
-
460
- // @public
461
- export interface WebServicesCreateRegionalPropertiesOptionalParams extends coreClient.OperationOptions {
462
- resumeFrom?: string;
463
- updateIntervalInMs?: number;
464
- }
465
-
466
- // @public
467
- export type WebServicesCreateRegionalPropertiesResponse = AsyncOperationStatus;
468
-
469
- // @public
470
- export interface WebServicesGetOptionalParams extends coreClient.OperationOptions {
471
- region?: string;
472
- }
473
-
474
- // @public
475
- export type WebServicesGetResponse = WebService;
476
-
477
- // @public
478
- export interface WebServicesListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
479
- skiptoken?: string;
480
- }
481
-
482
- // @public
483
- export type WebServicesListByResourceGroupNextResponse = PaginatedWebServicesList;
484
-
485
- // @public
486
- export interface WebServicesListByResourceGroupOptionalParams extends coreClient.OperationOptions {
487
- skiptoken?: string;
488
- }
489
-
490
- // @public
491
- export type WebServicesListByResourceGroupResponse = PaginatedWebServicesList;
492
-
493
- // @public
494
- export interface WebServicesListBySubscriptionIdNextOptionalParams extends coreClient.OperationOptions {
495
- skiptoken?: string;
496
- }
497
-
498
- // @public
499
- export type WebServicesListBySubscriptionIdNextResponse = PaginatedWebServicesList;
500
-
501
- // @public
502
- export interface WebServicesListBySubscriptionIdOptionalParams extends coreClient.OperationOptions {
503
- skiptoken?: string;
504
- }
505
-
506
- // @public
507
- export type WebServicesListBySubscriptionIdResponse = PaginatedWebServicesList;
508
-
509
- // @public
510
- export interface WebServicesListKeysOptionalParams extends coreClient.OperationOptions {
511
- }
512
-
513
- // @public
514
- export type WebServicesListKeysResponse = WebServiceKeys;
515
-
516
- // @public
517
- export interface WebServicesPatchOptionalParams extends coreClient.OperationOptions {
518
- resumeFrom?: string;
519
- updateIntervalInMs?: number;
520
- }
521
-
522
- // @public
523
- export type WebServicesPatchResponse = WebService;
524
-
525
- // @public
526
- export interface WebServicesRemoveOptionalParams extends coreClient.OperationOptions {
527
- resumeFrom?: string;
528
- updateIntervalInMs?: number;
529
- }
530
-
531
- // (No @packageDocumentation comment for this package)
532
-
533
- ```
1
+ ## API Report File for "@azure/arm-webservices"
2
+
3
+ > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
4
+
5
+ ```ts
6
+
7
+ import * as coreAuth from '@azure/core-auth';
8
+ import * as coreClient from '@azure/core-client';
9
+ import { PagedAsyncIterableIterator } from '@azure/core-paging';
10
+ import { PollerLike } from '@azure/core-lro';
11
+ import { PollOperationState } from '@azure/core-lro';
12
+
13
+ // @public
14
+ export interface AssetItem {
15
+ id?: string;
16
+ inputPorts?: {
17
+ [propertyName: string]: InputPort;
18
+ };
19
+ locationInfo: BlobLocation;
20
+ metadata?: {
21
+ [propertyName: string]: string;
22
+ };
23
+ name: string;
24
+ outputPorts?: {
25
+ [propertyName: string]: OutputPort;
26
+ };
27
+ parameters?: ModuleAssetParameter[];
28
+ type: AssetType;
29
+ }
30
+
31
+ // @public
32
+ export type AssetType = string;
33
+
34
+ // @public
35
+ export interface AsyncOperationErrorInfo {
36
+ readonly code?: string;
37
+ readonly details?: AsyncOperationErrorInfo[];
38
+ readonly message?: string;
39
+ readonly target?: string;
40
+ }
41
+
42
+ // @public
43
+ export interface AsyncOperationStatus {
44
+ readonly endTime?: Date;
45
+ readonly errorInfo?: AsyncOperationErrorInfo;
46
+ readonly id?: string;
47
+ readonly name?: string;
48
+ readonly percentComplete?: number;
49
+ readonly provisioningState?: ProvisioningState;
50
+ readonly startTime?: Date;
51
+ }
52
+
53
+ // @public (undocumented)
54
+ export class AzureMLWebServicesManagementClient extends coreClient.ServiceClient {
55
+ // (undocumented)
56
+ $host: string;
57
+ constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: AzureMLWebServicesManagementClientOptionalParams);
58
+ // (undocumented)
59
+ apiVersion: string;
60
+ // (undocumented)
61
+ operations: Operations;
62
+ // (undocumented)
63
+ subscriptionId: string;
64
+ // (undocumented)
65
+ webServices: WebServices;
66
+ }
67
+
68
+ // @public
69
+ export interface AzureMLWebServicesManagementClientOptionalParams extends coreClient.ServiceClientOptions {
70
+ $host?: string;
71
+ apiVersion?: string;
72
+ endpoint?: string;
73
+ }
74
+
75
+ // @public
76
+ export interface BlobLocation {
77
+ credentials?: string;
78
+ uri: string;
79
+ }
80
+
81
+ // @public
82
+ export type ColumnFormat = string;
83
+
84
+ // @public
85
+ export interface ColumnSpecification {
86
+ enum?: Record<string, unknown>[];
87
+ format?: ColumnFormat;
88
+ type: ColumnType;
89
+ xMsIsnullable?: boolean;
90
+ xMsIsordered?: boolean;
91
+ }
92
+
93
+ // @public
94
+ export type ColumnType = string;
95
+
96
+ // @public
97
+ export interface CommitmentPlan {
98
+ id: string;
99
+ }
100
+
101
+ // @public
102
+ export interface DiagnosticsConfiguration {
103
+ expiry?: Date;
104
+ level: DiagnosticsLevel;
105
+ }
106
+
107
+ // @public
108
+ export type DiagnosticsLevel = string;
109
+
110
+ // @public
111
+ export interface ExampleRequest {
112
+ globalParameters?: {
113
+ [propertyName: string]: Record<string, unknown>;
114
+ };
115
+ inputs?: {
116
+ [propertyName: string]: Record<string, unknown>[][];
117
+ };
118
+ }
119
+
120
+ // @public
121
+ export function getContinuationToken(page: unknown): string | undefined;
122
+
123
+ // @public
124
+ export interface GraphEdge {
125
+ sourceNodeId?: string;
126
+ sourcePortId?: string;
127
+ targetNodeId?: string;
128
+ targetPortId?: string;
129
+ }
130
+
131
+ // @public
132
+ export interface GraphNode {
133
+ assetId?: string;
134
+ inputId?: string;
135
+ outputId?: string;
136
+ parameters?: {
137
+ [propertyName: string]: WebServiceParameter;
138
+ };
139
+ }
140
+
141
+ // @public
142
+ export interface GraphPackage {
143
+ edges?: GraphEdge[];
144
+ graphParameters?: {
145
+ [propertyName: string]: GraphParameter;
146
+ };
147
+ nodes?: {
148
+ [propertyName: string]: GraphNode;
149
+ };
150
+ }
151
+
152
+ // @public
153
+ export interface GraphParameter {
154
+ description?: string;
155
+ links: GraphParameterLink[];
156
+ type: ParameterType;
157
+ }
158
+
159
+ // @public
160
+ export interface GraphParameterLink {
161
+ nodeId: string;
162
+ parameterKey: string;
163
+ }
164
+
165
+ // @public
166
+ export interface InputPort {
167
+ type?: InputPortType;
168
+ }
169
+
170
+ // @public
171
+ export type InputPortType = string;
172
+
173
+ // @public
174
+ export enum KnownAssetType {
175
+ Module = "Module",
176
+ Resource = "Resource"
177
+ }
178
+
179
+ // @public
180
+ export enum KnownColumnFormat {
181
+ Byte = "Byte",
182
+ Char = "Char",
183
+ Complex128 = "Complex128",
184
+ Complex64 = "Complex64",
185
+ DateTime = "Date-time",
186
+ DateTimeOffset = "Date-timeOffset",
187
+ Double = "Double",
188
+ Duration = "Duration",
189
+ Float = "Float",
190
+ Int16 = "Int16",
191
+ Int32 = "Int32",
192
+ Int64 = "Int64",
193
+ Int8 = "Int8",
194
+ Uint16 = "Uint16",
195
+ Uint32 = "Uint32",
196
+ Uint64 = "Uint64",
197
+ Uint8 = "Uint8"
198
+ }
199
+
200
+ // @public
201
+ export enum KnownColumnType {
202
+ Boolean = "Boolean",
203
+ Integer = "Integer",
204
+ Number = "Number",
205
+ String = "String"
206
+ }
207
+
208
+ // @public
209
+ export enum KnownDiagnosticsLevel {
210
+ All = "All",
211
+ Error = "Error",
212
+ None = "None"
213
+ }
214
+
215
+ // @public
216
+ export enum KnownInputPortType {
217
+ Dataset = "Dataset"
218
+ }
219
+
220
+ // @public
221
+ export enum KnownOutputPortType {
222
+ Dataset = "Dataset"
223
+ }
224
+
225
+ // @public
226
+ export enum KnownParameterType {
227
+ Boolean = "Boolean",
228
+ ColumnPicker = "ColumnPicker",
229
+ Credential = "Credential",
230
+ DataGatewayName = "DataGatewayName",
231
+ Double = "Double",
232
+ Enumerated = "Enumerated",
233
+ Float = "Float",
234
+ Int = "Int",
235
+ Mode = "Mode",
236
+ ParameterRange = "ParameterRange",
237
+ Script = "Script",
238
+ String = "String"
239
+ }
240
+
241
+ // @public
242
+ export enum KnownProvisioningState {
243
+ Failed = "Failed",
244
+ Provisioning = "Provisioning",
245
+ Succeeded = "Succeeded",
246
+ Unknown = "Unknown"
247
+ }
248
+
249
+ // @public
250
+ export interface MachineLearningWorkspace {
251
+ id: string;
252
+ }
253
+
254
+ // @public
255
+ export interface ModeValueInfo {
256
+ interfaceString?: string;
257
+ parameters?: ModuleAssetParameter[];
258
+ }
259
+
260
+ // @public
261
+ export interface ModuleAssetParameter {
262
+ modeValuesInfo?: {
263
+ [propertyName: string]: ModeValueInfo;
264
+ };
265
+ name?: string;
266
+ parameterType?: string;
267
+ }
268
+
269
+ // @public
270
+ export interface OperationDisplayInfo {
271
+ readonly description?: string;
272
+ readonly operation?: string;
273
+ readonly provider?: string;
274
+ readonly resource?: string;
275
+ }
276
+
277
+ // @public
278
+ export interface OperationEntity {
279
+ display?: OperationDisplayInfo;
280
+ readonly name?: string;
281
+ }
282
+
283
+ // @public
284
+ export interface OperationEntityListResult {
285
+ readonly value?: OperationEntity[];
286
+ }
287
+
288
+ // @public
289
+ export interface Operations {
290
+ list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<OperationEntity>;
291
+ }
292
+
293
+ // @public
294
+ export interface OperationsListOptionalParams extends coreClient.OperationOptions {
295
+ }
296
+
297
+ // @public
298
+ export type OperationsListResponse = OperationEntityListResult;
299
+
300
+ // @public
301
+ export interface OutputPort {
302
+ type?: OutputPortType;
303
+ }
304
+
305
+ // @public
306
+ export type OutputPortType = string;
307
+
308
+ // @public
309
+ export interface PaginatedWebServicesList {
310
+ nextLink?: string;
311
+ value?: WebService[];
312
+ }
313
+
314
+ // @public
315
+ export type ParameterType = string;
316
+
317
+ // @public
318
+ export interface PatchedResource {
319
+ readonly id?: string;
320
+ readonly location?: string;
321
+ readonly name?: string;
322
+ tags?: {
323
+ [propertyName: string]: string;
324
+ };
325
+ readonly type?: string;
326
+ }
327
+
328
+ // @public
329
+ export interface PatchedWebService extends PatchedResource {
330
+ properties?: WebServicePropertiesUnion;
331
+ }
332
+
333
+ // @public
334
+ export type ProvisioningState = string;
335
+
336
+ // @public
337
+ export interface RealtimeConfiguration {
338
+ maxConcurrentCalls?: number;
339
+ }
340
+
341
+ // @public
342
+ export interface Resource {
343
+ readonly id?: string;
344
+ location: string;
345
+ readonly name?: string;
346
+ tags?: {
347
+ [propertyName: string]: string;
348
+ };
349
+ readonly type?: string;
350
+ }
351
+
352
+ // @public
353
+ export interface ServiceInputOutputSpecification {
354
+ description?: string;
355
+ properties: {
356
+ [propertyName: string]: TableSpecification;
357
+ };
358
+ title?: string;
359
+ type: string;
360
+ }
361
+
362
+ // @public
363
+ export interface StorageAccount {
364
+ key?: string;
365
+ name?: string;
366
+ }
367
+
368
+ // @public
369
+ export interface TableSpecification {
370
+ description?: string;
371
+ format?: string;
372
+ properties?: {
373
+ [propertyName: string]: ColumnSpecification;
374
+ };
375
+ title?: string;
376
+ type: string;
377
+ }
378
+
379
+ // @public
380
+ export interface WebService extends Resource {
381
+ properties: WebServicePropertiesUnion;
382
+ }
383
+
384
+ // @public
385
+ export interface WebServiceKeys {
386
+ primary?: string;
387
+ secondary?: string;
388
+ }
389
+
390
+ // @public
391
+ export interface WebServiceParameter {
392
+ certificateThumbprint?: string;
393
+ value?: Record<string, unknown>;
394
+ }
395
+
396
+ // @public
397
+ export interface WebServiceProperties {
398
+ assets?: {
399
+ [propertyName: string]: AssetItem;
400
+ };
401
+ commitmentPlan?: CommitmentPlan;
402
+ readonly createdOn?: Date;
403
+ description?: string;
404
+ diagnostics?: DiagnosticsConfiguration;
405
+ exampleRequest?: ExampleRequest;
406
+ exposeSampleData?: boolean;
407
+ input?: ServiceInputOutputSpecification;
408
+ keys?: WebServiceKeys;
409
+ machineLearningWorkspace?: MachineLearningWorkspace;
410
+ readonly modifiedOn?: Date;
411
+ output?: ServiceInputOutputSpecification;
412
+ packageType: "Graph";
413
+ parameters?: {
414
+ [propertyName: string]: WebServiceParameter;
415
+ };
416
+ payloadsInBlobStorage?: boolean;
417
+ payloadsLocation?: BlobLocation;
418
+ readonly provisioningState?: ProvisioningState;
419
+ readOnly?: boolean;
420
+ realtimeConfiguration?: RealtimeConfiguration;
421
+ storageAccount?: StorageAccount;
422
+ readonly swaggerLocation?: string;
423
+ title?: string;
424
+ }
425
+
426
+ // @public
427
+ export interface WebServicePropertiesForGraph extends WebServiceProperties {
428
+ package?: GraphPackage;
429
+ packageType: "Graph";
430
+ }
431
+
432
+ // @public (undocumented)
433
+ export type WebServicePropertiesUnion = WebServiceProperties | WebServicePropertiesForGraph;
434
+
435
+ // @public
436
+ export interface WebServices {
437
+ beginCreateOrUpdate(resourceGroupName: string, webServiceName: string, createOrUpdatePayload: WebService, options?: WebServicesCreateOrUpdateOptionalParams): Promise<PollerLike<PollOperationState<WebServicesCreateOrUpdateResponse>, WebServicesCreateOrUpdateResponse>>;
438
+ beginCreateOrUpdateAndWait(resourceGroupName: string, webServiceName: string, createOrUpdatePayload: WebService, options?: WebServicesCreateOrUpdateOptionalParams): Promise<WebServicesCreateOrUpdateResponse>;
439
+ beginCreateRegionalProperties(resourceGroupName: string, webServiceName: string, region: string, options?: WebServicesCreateRegionalPropertiesOptionalParams): Promise<PollerLike<PollOperationState<WebServicesCreateRegionalPropertiesResponse>, WebServicesCreateRegionalPropertiesResponse>>;
440
+ beginCreateRegionalPropertiesAndWait(resourceGroupName: string, webServiceName: string, region: string, options?: WebServicesCreateRegionalPropertiesOptionalParams): Promise<WebServicesCreateRegionalPropertiesResponse>;
441
+ beginPatch(resourceGroupName: string, webServiceName: string, patchPayload: PatchedWebService, options?: WebServicesPatchOptionalParams): Promise<PollerLike<PollOperationState<WebServicesPatchResponse>, WebServicesPatchResponse>>;
442
+ beginPatchAndWait(resourceGroupName: string, webServiceName: string, patchPayload: PatchedWebService, options?: WebServicesPatchOptionalParams): Promise<WebServicesPatchResponse>;
443
+ beginRemove(resourceGroupName: string, webServiceName: string, options?: WebServicesRemoveOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
444
+ beginRemoveAndWait(resourceGroupName: string, webServiceName: string, options?: WebServicesRemoveOptionalParams): Promise<void>;
445
+ get(resourceGroupName: string, webServiceName: string, options?: WebServicesGetOptionalParams): Promise<WebServicesGetResponse>;
446
+ listByResourceGroup(resourceGroupName: string, options?: WebServicesListByResourceGroupOptionalParams): PagedAsyncIterableIterator<WebService>;
447
+ listBySubscriptionId(options?: WebServicesListBySubscriptionIdOptionalParams): PagedAsyncIterableIterator<WebService>;
448
+ listKeys(resourceGroupName: string, webServiceName: string, options?: WebServicesListKeysOptionalParams): Promise<WebServicesListKeysResponse>;
449
+ }
450
+
451
+ // @public
452
+ export interface WebServicesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
453
+ resumeFrom?: string;
454
+ updateIntervalInMs?: number;
455
+ }
456
+
457
+ // @public
458
+ export type WebServicesCreateOrUpdateResponse = WebService;
459
+
460
+ // @public
461
+ export interface WebServicesCreateRegionalPropertiesOptionalParams extends coreClient.OperationOptions {
462
+ resumeFrom?: string;
463
+ updateIntervalInMs?: number;
464
+ }
465
+
466
+ // @public
467
+ export type WebServicesCreateRegionalPropertiesResponse = AsyncOperationStatus;
468
+
469
+ // @public
470
+ export interface WebServicesGetOptionalParams extends coreClient.OperationOptions {
471
+ region?: string;
472
+ }
473
+
474
+ // @public
475
+ export type WebServicesGetResponse = WebService;
476
+
477
+ // @public
478
+ export interface WebServicesListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
479
+ skiptoken?: string;
480
+ }
481
+
482
+ // @public
483
+ export type WebServicesListByResourceGroupNextResponse = PaginatedWebServicesList;
484
+
485
+ // @public
486
+ export interface WebServicesListByResourceGroupOptionalParams extends coreClient.OperationOptions {
487
+ skiptoken?: string;
488
+ }
489
+
490
+ // @public
491
+ export type WebServicesListByResourceGroupResponse = PaginatedWebServicesList;
492
+
493
+ // @public
494
+ export interface WebServicesListBySubscriptionIdNextOptionalParams extends coreClient.OperationOptions {
495
+ skiptoken?: string;
496
+ }
497
+
498
+ // @public
499
+ export type WebServicesListBySubscriptionIdNextResponse = PaginatedWebServicesList;
500
+
501
+ // @public
502
+ export interface WebServicesListBySubscriptionIdOptionalParams extends coreClient.OperationOptions {
503
+ skiptoken?: string;
504
+ }
505
+
506
+ // @public
507
+ export type WebServicesListBySubscriptionIdResponse = PaginatedWebServicesList;
508
+
509
+ // @public
510
+ export interface WebServicesListKeysOptionalParams extends coreClient.OperationOptions {
511
+ }
512
+
513
+ // @public
514
+ export type WebServicesListKeysResponse = WebServiceKeys;
515
+
516
+ // @public
517
+ export interface WebServicesPatchOptionalParams extends coreClient.OperationOptions {
518
+ resumeFrom?: string;
519
+ updateIntervalInMs?: number;
520
+ }
521
+
522
+ // @public
523
+ export type WebServicesPatchResponse = WebService;
524
+
525
+ // @public
526
+ export interface WebServicesRemoveOptionalParams extends coreClient.OperationOptions {
527
+ resumeFrom?: string;
528
+ updateIntervalInMs?: number;
529
+ }
530
+
531
+ // (No @packageDocumentation comment for this package)
532
+
533
+ ```