@azure/arm-devspaces 1.2.1 → 2.0.1-alpha.20220201.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.
Files changed (140) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/LICENSE +21 -0
  3. package/README.md +69 -83
  4. package/dist/index.js +1321 -0
  5. package/dist/index.js.map +1 -0
  6. package/dist/index.min.js +1 -0
  7. package/dist/index.min.js.map +1 -0
  8. package/dist-esm/src/devSpacesManagementClient.d.ts +20 -0
  9. package/dist-esm/src/devSpacesManagementClient.d.ts.map +1 -0
  10. package/dist-esm/src/devSpacesManagementClient.js +53 -0
  11. package/dist-esm/src/devSpacesManagementClient.js.map +1 -0
  12. package/dist-esm/src/index.d.ts +5 -0
  13. package/dist-esm/src/index.d.ts.map +1 -0
  14. package/dist-esm/src/index.js +12 -0
  15. package/dist-esm/src/index.js.map +1 -0
  16. package/dist-esm/src/lroImpl.d.ts +16 -0
  17. package/dist-esm/src/lroImpl.d.ts.map +1 -0
  18. package/dist-esm/src/lroImpl.js +29 -0
  19. package/dist-esm/src/lroImpl.js.map +1 -0
  20. package/dist-esm/src/models/index.d.ts +287 -0
  21. package/dist-esm/src/models/index.d.ts.map +1 -0
  22. package/dist-esm/src/models/index.js +29 -0
  23. package/dist-esm/src/models/index.js.map +1 -0
  24. package/dist-esm/src/models/mappers.d.ts +23 -0
  25. package/dist-esm/src/models/mappers.d.ts.map +1 -0
  26. package/{esm → dist-esm/src}/models/mappers.js +204 -231
  27. package/dist-esm/src/models/mappers.js.map +1 -0
  28. package/dist-esm/src/models/parameters.d.ts +15 -0
  29. package/dist-esm/src/models/parameters.d.ts.map +1 -0
  30. package/dist-esm/src/models/parameters.js +129 -0
  31. package/dist-esm/src/models/parameters.js.map +1 -0
  32. package/dist-esm/src/operations/containerHostMappings.d.ts +23 -0
  33. package/dist-esm/src/operations/containerHostMappings.d.ts.map +1 -0
  34. package/dist-esm/src/operations/containerHostMappings.js +59 -0
  35. package/dist-esm/src/operations/containerHostMappings.js.map +1 -0
  36. package/dist-esm/src/operations/controllers.d.ts +111 -0
  37. package/dist-esm/src/operations/controllers.d.ts.map +1 -0
  38. package/dist-esm/src/operations/controllers.js +490 -0
  39. package/dist-esm/src/operations/controllers.js.map +1 -0
  40. package/{esm → dist-esm/src}/operations/index.d.ts +1 -1
  41. package/dist-esm/src/operations/index.d.ts.map +1 -0
  42. package/{esm → dist-esm/src}/operations/index.js +4 -6
  43. package/dist-esm/src/operations/index.js.map +1 -0
  44. package/dist-esm/src/operations/operations.d.ts +34 -0
  45. package/dist-esm/src/operations/operations.d.ts.map +1 -0
  46. package/dist-esm/src/operations/operations.js +116 -0
  47. package/dist-esm/src/operations/operations.js.map +1 -0
  48. package/dist-esm/src/operationsInterfaces/containerHostMappings.d.ts +15 -0
  49. package/dist-esm/src/operationsInterfaces/containerHostMappings.d.ts.map +1 -0
  50. package/dist-esm/src/operationsInterfaces/containerHostMappings.js +9 -0
  51. package/dist-esm/src/operationsInterfaces/containerHostMappings.js.map +1 -0
  52. package/dist-esm/src/operationsInterfaces/controllers.d.ts +74 -0
  53. package/dist-esm/src/operationsInterfaces/controllers.d.ts.map +1 -0
  54. package/dist-esm/src/operationsInterfaces/controllers.js +9 -0
  55. package/dist-esm/src/operationsInterfaces/controllers.js.map +1 -0
  56. package/dist-esm/src/operationsInterfaces/index.d.ts +4 -0
  57. package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
  58. package/dist-esm/src/operationsInterfaces/index.js +11 -0
  59. package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
  60. package/dist-esm/src/operationsInterfaces/operations.d.ts +12 -0
  61. package/dist-esm/src/operationsInterfaces/operations.d.ts.map +1 -0
  62. package/dist-esm/src/operationsInterfaces/operations.js +9 -0
  63. package/dist-esm/src/operationsInterfaces/operations.js.map +1 -0
  64. package/dist-esm/test/sampleTest.d.ts +2 -0
  65. package/dist-esm/test/sampleTest.d.ts.map +1 -0
  66. package/dist-esm/test/sampleTest.js +40 -0
  67. package/dist-esm/test/sampleTest.js.map +1 -0
  68. package/package.json +69 -24
  69. package/review/arm-devspaces.api.md +300 -0
  70. package/rollup.config.js +184 -27
  71. package/src/devSpacesManagementClient.ts +74 -39
  72. package/src/index.ts +12 -0
  73. package/src/lroImpl.ts +34 -0
  74. package/src/models/index.ts +251 -512
  75. package/src/models/mappers.ts +202 -226
  76. package/src/models/parameters.ts +98 -38
  77. package/src/operations/containerHostMappings.ts +51 -69
  78. package/src/operations/controllers.ts +469 -377
  79. package/src/operations/index.ts +4 -6
  80. package/src/operations/operations.ts +87 -81
  81. package/src/operationsInterfaces/containerHostMappings.ts +32 -0
  82. package/src/operationsInterfaces/controllers.ts +140 -0
  83. package/src/operationsInterfaces/index.ts +11 -0
  84. package/src/operationsInterfaces/operations.ts +26 -0
  85. package/tsconfig.json +4 -4
  86. package/types/arm-devspaces.d.ts +451 -0
  87. package/types/tsdoc-metadata.json +11 -0
  88. package/dist/arm-devspaces.js +0 -1261
  89. package/dist/arm-devspaces.js.map +0 -1
  90. package/dist/arm-devspaces.min.js +0 -1
  91. package/dist/arm-devspaces.min.js.map +0 -1
  92. package/esm/devSpacesManagementClient.d.ts +0 -26
  93. package/esm/devSpacesManagementClient.d.ts.map +0 -1
  94. package/esm/devSpacesManagementClient.js +0 -40
  95. package/esm/devSpacesManagementClient.js.map +0 -1
  96. package/esm/devSpacesManagementClientContext.d.ts +0 -22
  97. package/esm/devSpacesManagementClientContext.d.ts.map +0 -1
  98. package/esm/devSpacesManagementClientContext.js +0 -61
  99. package/esm/devSpacesManagementClientContext.js.map +0 -1
  100. package/esm/models/containerHostMappingsMappers.d.ts +0 -2
  101. package/esm/models/containerHostMappingsMappers.d.ts.map +0 -1
  102. package/esm/models/containerHostMappingsMappers.js +0 -11
  103. package/esm/models/containerHostMappingsMappers.js.map +0 -1
  104. package/esm/models/controllersMappers.d.ts +0 -2
  105. package/esm/models/controllersMappers.d.ts.map +0 -1
  106. package/esm/models/controllersMappers.js +0 -11
  107. package/esm/models/controllersMappers.js.map +0 -1
  108. package/esm/models/index.d.ts +0 -564
  109. package/esm/models/index.d.ts.map +0 -1
  110. package/esm/models/index.js +0 -10
  111. package/esm/models/index.js.map +0 -1
  112. package/esm/models/mappers.d.ts +0 -24
  113. package/esm/models/mappers.d.ts.map +0 -1
  114. package/esm/models/mappers.js.map +0 -1
  115. package/esm/models/operationsMappers.d.ts +0 -2
  116. package/esm/models/operationsMappers.d.ts.map +0 -1
  117. package/esm/models/operationsMappers.js +0 -11
  118. package/esm/models/operationsMappers.js.map +0 -1
  119. package/esm/models/parameters.d.ts +0 -9
  120. package/esm/models/parameters.d.ts.map +0 -1
  121. package/esm/models/parameters.js +0 -90
  122. package/esm/models/parameters.js.map +0 -1
  123. package/esm/operations/containerHostMappings.d.ts +0 -35
  124. package/esm/operations/containerHostMappings.d.ts.map +0 -1
  125. package/esm/operations/containerHostMappings.js +0 -66
  126. package/esm/operations/containerHostMappings.js.map +0 -1
  127. package/esm/operations/controllers.d.ts +0 -198
  128. package/esm/operations/controllers.d.ts.map +0 -1
  129. package/esm/operations/controllers.js +0 -346
  130. package/esm/operations/controllers.js.map +0 -1
  131. package/esm/operations/index.d.ts.map +0 -1
  132. package/esm/operations/index.js.map +0 -1
  133. package/esm/operations/operations.d.ts +0 -50
  134. package/esm/operations/operations.d.ts.map +0 -1
  135. package/esm/operations/operations.js +0 -77
  136. package/esm/operations/operations.js.map +0 -1
  137. package/src/devSpacesManagementClientContext.ts +0 -68
  138. package/src/models/containerHostMappingsMappers.ts +0 -16
  139. package/src/models/controllersMappers.ts +0 -27
  140. package/src/models/operationsMappers.ts +0 -18
@@ -1,564 +0,0 @@
1
- import { BaseResource, CloudError, AzureServiceClientOptions } from "@azure/ms-rest-azure-js";
2
- import * as msRest from "@azure/ms-rest-js";
3
- export { BaseResource, CloudError };
4
- /**
5
- * @interface
6
- * An interface representing ContainerHostMapping.
7
- * Container host mapping object specifying the Container host resource ID and
8
- * its associated Controller resource.
9
- *
10
- */
11
- export interface ContainerHostMapping {
12
- /**
13
- * @member {string} [containerHostResourceId] ARM ID of the Container Host
14
- * resource
15
- */
16
- containerHostResourceId?: string;
17
- /**
18
- * @member {string} [mappedControllerResourceId] ARM ID of the mapped
19
- * Controller resource
20
- * **NOTE: This property will not be serialized. It can only be populated by
21
- * the server.**
22
- */
23
- readonly mappedControllerResourceId?: string;
24
- }
25
- /**
26
- * @interface
27
- * An interface representing Sku.
28
- * Model representing SKU for Azure Dev Spaces Controller.
29
- *
30
- */
31
- export interface Sku {
32
- /**
33
- * @member {SkuTier} [tier] The tier of the SKU for Azure Dev Spaces
34
- * Controller. Possible values include: 'Standard'
35
- */
36
- tier?: SkuTier;
37
- }
38
- /**
39
- * @interface
40
- * An interface representing Resource.
41
- * An Azure resource.
42
- *
43
- * @extends BaseResource
44
- */
45
- export interface Resource extends BaseResource {
46
- /**
47
- * @member {string} [id] Fully qualified resource Id for the resource.
48
- * **NOTE: This property will not be serialized. It can only be populated by
49
- * the server.**
50
- */
51
- readonly id?: string;
52
- /**
53
- * @member {string} [name] The name of the resource.
54
- * **NOTE: This property will not be serialized. It can only be populated by
55
- * the server.**
56
- */
57
- readonly name?: string;
58
- /**
59
- * @member {string} [type] The type of the resource.
60
- * **NOTE: This property will not be serialized. It can only be populated by
61
- * the server.**
62
- */
63
- readonly type?: string;
64
- }
65
- /**
66
- * @interface
67
- * An interface representing TrackedResource.
68
- * The resource model definition for a ARM tracked top level resource.
69
- *
70
- * @extends Resource
71
- */
72
- export interface TrackedResource extends Resource {
73
- /**
74
- * @member {{ [propertyName: string]: string }} [tags] Tags for the Azure
75
- * resource.
76
- */
77
- tags?: {
78
- [propertyName: string]: string;
79
- };
80
- /**
81
- * @member {string} [location] Region where the Azure resource is located.
82
- */
83
- location?: string;
84
- }
85
- /**
86
- * @interface
87
- * An interface representing Controller.
88
- * @extends TrackedResource
89
- */
90
- export interface Controller extends TrackedResource {
91
- /**
92
- * @member {ProvisioningState} [provisioningState] Provisioning state of the
93
- * Azure Dev Spaces Controller. Possible values include: 'Succeeded',
94
- * 'Failed', 'Canceled', 'Updating', 'Creating', 'Deleting', 'Deleted'
95
- * **NOTE: This property will not be serialized. It can only be populated by
96
- * the server.**
97
- */
98
- readonly provisioningState?: ProvisioningState;
99
- /**
100
- * @member {string} hostSuffix DNS suffix for public endpoints running in the
101
- * Azure Dev Spaces Controller.
102
- */
103
- hostSuffix: string;
104
- /**
105
- * @member {string} [dataPlaneFqdn] DNS name for accessing DataPlane services
106
- * **NOTE: This property will not be serialized. It can only be populated by
107
- * the server.**
108
- */
109
- readonly dataPlaneFqdn?: string;
110
- /**
111
- * @member {string} targetContainerHostResourceId Resource ID of the target
112
- * container host
113
- */
114
- targetContainerHostResourceId: string;
115
- /**
116
- * @member {string} targetContainerHostCredentialsBase64 Credentials of the
117
- * target container host (base64).
118
- */
119
- targetContainerHostCredentialsBase64: string;
120
- /**
121
- * @member {Sku} sku
122
- */
123
- sku: Sku;
124
- }
125
- /**
126
- * @interface
127
- * An interface representing ControllerUpdateParameters.
128
- * Parameters for updating an Azure Dev Spaces Controller.
129
- *
130
- */
131
- export interface ControllerUpdateParameters {
132
- /**
133
- * @member {{ [propertyName: string]: string }} [tags] Tags for the Azure Dev
134
- * Spaces Controller.
135
- */
136
- tags?: {
137
- [propertyName: string]: string;
138
- };
139
- }
140
- /**
141
- * Contains the possible cases for OrchestratorSpecificConnectionDetails.
142
- */
143
- export declare type OrchestratorSpecificConnectionDetailsUnion = OrchestratorSpecificConnectionDetails | KubernetesConnectionDetails;
144
- /**
145
- * @interface
146
- * An interface representing OrchestratorSpecificConnectionDetails.
147
- * Base class for types that supply values used to connect to container
148
- * orchestrators
149
- *
150
- */
151
- export interface OrchestratorSpecificConnectionDetails {
152
- /**
153
- * @member {string} instanceType Polymorphic Discriminator
154
- */
155
- instanceType: "OrchestratorSpecificConnectionDetails";
156
- }
157
- /**
158
- * @interface
159
- * An interface representing ControllerConnectionDetails.
160
- */
161
- export interface ControllerConnectionDetails {
162
- /**
163
- * @member {string} [authKey] Authentication key for communicating with
164
- * services.
165
- * **NOTE: This property will not be serialized. It can only be populated by
166
- * the server.**
167
- */
168
- readonly authKey?: string;
169
- /**
170
- * @member {string} [workspaceStorageAccountName] Workspace storage account
171
- * name.
172
- * **NOTE: This property will not be serialized. It can only be populated by
173
- * the server.**
174
- */
175
- readonly workspaceStorageAccountName?: string;
176
- /**
177
- * @member {string} [workspaceStorageSasToken] Workspace storage account SAS
178
- * token.
179
- * **NOTE: This property will not be serialized. It can only be populated by
180
- * the server.**
181
- */
182
- readonly workspaceStorageSasToken?: string;
183
- /**
184
- * @member {OrchestratorSpecificConnectionDetailsUnion}
185
- * [orchestratorSpecificConnectionDetails]
186
- */
187
- orchestratorSpecificConnectionDetails?: OrchestratorSpecificConnectionDetailsUnion;
188
- }
189
- /**
190
- * @interface
191
- * An interface representing ControllerConnectionDetailsList.
192
- */
193
- export interface ControllerConnectionDetailsList {
194
- /**
195
- * @member {ControllerConnectionDetails[]} [connectionDetailsList] List of
196
- * Azure Dev Spaces Controller connection details.
197
- */
198
- connectionDetailsList?: ControllerConnectionDetails[];
199
- }
200
- /**
201
- * @interface
202
- * An interface representing ResourceProviderOperationDisplay.
203
- */
204
- export interface ResourceProviderOperationDisplay {
205
- /**
206
- * @member {string} [provider] Name of the resource provider.
207
- */
208
- provider?: string;
209
- /**
210
- * @member {string} [resource] Name of the resource type.
211
- */
212
- resource?: string;
213
- /**
214
- * @member {string} [operation] Name of the resource provider operation.
215
- */
216
- operation?: string;
217
- /**
218
- * @member {string} [description] Description of the resource provider
219
- * operation.
220
- */
221
- description?: string;
222
- }
223
- /**
224
- * @interface
225
- * An interface representing ResourceProviderOperationDefinition.
226
- */
227
- export interface ResourceProviderOperationDefinition {
228
- /**
229
- * @member {string} [name] Resource provider operation name.
230
- */
231
- name?: string;
232
- /**
233
- * @member {ResourceProviderOperationDisplay} [display]
234
- */
235
- display?: ResourceProviderOperationDisplay;
236
- }
237
- /**
238
- * @interface
239
- * An interface representing KubernetesConnectionDetails.
240
- * Contains information used to connect to a Kubernetes cluster
241
- *
242
- */
243
- export interface KubernetesConnectionDetails {
244
- /**
245
- * @member {string} instanceType Polymorphic Discriminator
246
- */
247
- instanceType: "Kubernetes";
248
- /**
249
- * @member {string} [kubeConfig] Gets the kubeconfig for the cluster.
250
- */
251
- kubeConfig?: string;
252
- }
253
- /**
254
- * @interface
255
- * An interface representing ErrorDetails.
256
- */
257
- export interface ErrorDetails {
258
- /**
259
- * @member {string} [code] Status code for the error.
260
- * **NOTE: This property will not be serialized. It can only be populated by
261
- * the server.**
262
- */
263
- readonly code?: string;
264
- /**
265
- * @member {string} [message] Error message describing the error in detail.
266
- * **NOTE: This property will not be serialized. It can only be populated by
267
- * the server.**
268
- */
269
- readonly message?: string;
270
- /**
271
- * @member {string} [target] The target of the particular error.
272
- * **NOTE: This property will not be serialized. It can only be populated by
273
- * the server.**
274
- */
275
- readonly target?: string;
276
- }
277
- /**
278
- * @interface
279
- * An interface representing ErrorResponse.
280
- * Error response indicates that the service is not able to process the
281
- * incoming request. The reason is provided in the error message.
282
- *
283
- */
284
- export interface ErrorResponse {
285
- /**
286
- * @member {ErrorDetails} [error] The details of the error.
287
- */
288
- error?: ErrorDetails;
289
- }
290
- /**
291
- * @interface
292
- * An interface representing DevSpacesManagementClientOptions.
293
- * @extends AzureServiceClientOptions
294
- */
295
- export interface DevSpacesManagementClientOptions extends AzureServiceClientOptions {
296
- /**
297
- * @member {string} [baseUri]
298
- */
299
- baseUri?: string;
300
- }
301
- /**
302
- * @interface
303
- * An interface representing the ControllerList.
304
- * @extends Array<Controller>
305
- */
306
- export interface ControllerList extends Array<Controller> {
307
- /**
308
- * @member {string} [nextLink] The URI that can be used to request the next
309
- * page for list of Azure Dev Spaces Controllers.
310
- * **NOTE: This property will not be serialized. It can only be populated by
311
- * the server.**
312
- */
313
- readonly nextLink?: string;
314
- }
315
- /**
316
- * @interface
317
- * An interface representing the ResourceProviderOperationList.
318
- * @extends Array<ResourceProviderOperationDefinition>
319
- */
320
- export interface ResourceProviderOperationList extends Array<ResourceProviderOperationDefinition> {
321
- /**
322
- * @member {string} [nextLink] The URI that can be used to request the next
323
- * page for list of Azure operations.
324
- * **NOTE: This property will not be serialized. It can only be populated by
325
- * the server.**
326
- */
327
- readonly nextLink?: string;
328
- }
329
- /**
330
- * Defines values for ProvisioningState.
331
- * Possible values include: 'Succeeded', 'Failed', 'Canceled', 'Updating', 'Creating', 'Deleting',
332
- * 'Deleted'
333
- * @readonly
334
- * @enum {string}
335
- */
336
- export declare type ProvisioningState = 'Succeeded' | 'Failed' | 'Canceled' | 'Updating' | 'Creating' | 'Deleting' | 'Deleted';
337
- /**
338
- * Defines values for SkuTier.
339
- * Possible values include: 'Standard'
340
- * @readonly
341
- * @enum {string}
342
- */
343
- export declare type SkuTier = 'Standard';
344
- /**
345
- * Contains response data for the getContainerHostMapping operation.
346
- */
347
- export declare type ContainerHostMappingsGetContainerHostMappingResponse = {
348
- /**
349
- * The parsed response body.
350
- */
351
- body: any;
352
- /**
353
- * The underlying HTTP response.
354
- */
355
- _response: msRest.HttpResponse & {
356
- /**
357
- * The response body as text (string format)
358
- */
359
- bodyAsText: string;
360
- /**
361
- * The response body as parsed JSON or XML
362
- */
363
- parsedBody: any;
364
- };
365
- };
366
- /**
367
- * Contains response data for the get operation.
368
- */
369
- export declare type ControllersGetResponse = Controller & {
370
- /**
371
- * The underlying HTTP response.
372
- */
373
- _response: msRest.HttpResponse & {
374
- /**
375
- * The response body as text (string format)
376
- */
377
- bodyAsText: string;
378
- /**
379
- * The response body as parsed JSON or XML
380
- */
381
- parsedBody: Controller;
382
- };
383
- };
384
- /**
385
- * Contains response data for the create operation.
386
- */
387
- export declare type ControllersCreateResponse = Controller & {
388
- /**
389
- * The underlying HTTP response.
390
- */
391
- _response: msRest.HttpResponse & {
392
- /**
393
- * The response body as text (string format)
394
- */
395
- bodyAsText: string;
396
- /**
397
- * The response body as parsed JSON or XML
398
- */
399
- parsedBody: Controller;
400
- };
401
- };
402
- /**
403
- * Contains response data for the update operation.
404
- */
405
- export declare type ControllersUpdateResponse = Controller & {
406
- /**
407
- * The underlying HTTP response.
408
- */
409
- _response: msRest.HttpResponse & {
410
- /**
411
- * The response body as text (string format)
412
- */
413
- bodyAsText: string;
414
- /**
415
- * The response body as parsed JSON or XML
416
- */
417
- parsedBody: Controller;
418
- };
419
- };
420
- /**
421
- * Contains response data for the listByResourceGroup operation.
422
- */
423
- export declare type ControllersListByResourceGroupResponse = ControllerList & {
424
- /**
425
- * The underlying HTTP response.
426
- */
427
- _response: msRest.HttpResponse & {
428
- /**
429
- * The response body as text (string format)
430
- */
431
- bodyAsText: string;
432
- /**
433
- * The response body as parsed JSON or XML
434
- */
435
- parsedBody: ControllerList;
436
- };
437
- };
438
- /**
439
- * Contains response data for the list operation.
440
- */
441
- export declare type ControllersListResponse = ControllerList & {
442
- /**
443
- * The underlying HTTP response.
444
- */
445
- _response: msRest.HttpResponse & {
446
- /**
447
- * The response body as text (string format)
448
- */
449
- bodyAsText: string;
450
- /**
451
- * The response body as parsed JSON or XML
452
- */
453
- parsedBody: ControllerList;
454
- };
455
- };
456
- /**
457
- * Contains response data for the listConnectionDetails operation.
458
- */
459
- export declare type ControllersListConnectionDetailsResponse = ControllerConnectionDetailsList & {
460
- /**
461
- * The underlying HTTP response.
462
- */
463
- _response: msRest.HttpResponse & {
464
- /**
465
- * The response body as text (string format)
466
- */
467
- bodyAsText: string;
468
- /**
469
- * The response body as parsed JSON or XML
470
- */
471
- parsedBody: ControllerConnectionDetailsList;
472
- };
473
- };
474
- /**
475
- * Contains response data for the beginCreate operation.
476
- */
477
- export declare type ControllersBeginCreateResponse = Controller & {
478
- /**
479
- * The underlying HTTP response.
480
- */
481
- _response: msRest.HttpResponse & {
482
- /**
483
- * The response body as text (string format)
484
- */
485
- bodyAsText: string;
486
- /**
487
- * The response body as parsed JSON or XML
488
- */
489
- parsedBody: Controller;
490
- };
491
- };
492
- /**
493
- * Contains response data for the listByResourceGroupNext operation.
494
- */
495
- export declare type ControllersListByResourceGroupNextResponse = ControllerList & {
496
- /**
497
- * The underlying HTTP response.
498
- */
499
- _response: msRest.HttpResponse & {
500
- /**
501
- * The response body as text (string format)
502
- */
503
- bodyAsText: string;
504
- /**
505
- * The response body as parsed JSON or XML
506
- */
507
- parsedBody: ControllerList;
508
- };
509
- };
510
- /**
511
- * Contains response data for the listNext operation.
512
- */
513
- export declare type ControllersListNextResponse = ControllerList & {
514
- /**
515
- * The underlying HTTP response.
516
- */
517
- _response: msRest.HttpResponse & {
518
- /**
519
- * The response body as text (string format)
520
- */
521
- bodyAsText: string;
522
- /**
523
- * The response body as parsed JSON or XML
524
- */
525
- parsedBody: ControllerList;
526
- };
527
- };
528
- /**
529
- * Contains response data for the list operation.
530
- */
531
- export declare type OperationsListResponse = ResourceProviderOperationList & {
532
- /**
533
- * The underlying HTTP response.
534
- */
535
- _response: msRest.HttpResponse & {
536
- /**
537
- * The response body as text (string format)
538
- */
539
- bodyAsText: string;
540
- /**
541
- * The response body as parsed JSON or XML
542
- */
543
- parsedBody: ResourceProviderOperationList;
544
- };
545
- };
546
- /**
547
- * Contains response data for the listNext operation.
548
- */
549
- export declare type OperationsListNextResponse = ResourceProviderOperationList & {
550
- /**
551
- * The underlying HTTP response.
552
- */
553
- _response: msRest.HttpResponse & {
554
- /**
555
- * The response body as text (string format)
556
- */
557
- bodyAsText: string;
558
- /**
559
- * The response body as parsed JSON or XML
560
- */
561
- parsedBody: ResourceProviderOperationList;
562
- };
563
- };
564
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/models/index.ts"],"names":[],"mappings":"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"}
@@ -1,10 +0,0 @@
1
- /*
2
- * Copyright (c) Microsoft Corporation. All rights reserved.
3
- * Licensed under the MIT License. See License.txt in the project root for
4
- * license information.
5
- *
6
- * Code generated by Microsoft (R) AutoRest Code Generator.
7
- * Changes may cause incorrect behavior and will be lost if the code is
8
- * regenerated.
9
- */
10
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/models/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG"}
@@ -1,24 +0,0 @@
1
- import * as msRest from "@azure/ms-rest-js";
2
- export declare const CloudError: msRest.CompositeMapper;
3
- export declare const BaseResource: msRest.CompositeMapper;
4
- export declare const ContainerHostMapping: msRest.CompositeMapper;
5
- export declare const Sku: msRest.CompositeMapper;
6
- export declare const Resource: msRest.CompositeMapper;
7
- export declare const TrackedResource: msRest.CompositeMapper;
8
- export declare const Controller: msRest.CompositeMapper;
9
- export declare const ControllerUpdateParameters: msRest.CompositeMapper;
10
- export declare const OrchestratorSpecificConnectionDetails: msRest.CompositeMapper;
11
- export declare const ControllerConnectionDetails: msRest.CompositeMapper;
12
- export declare const ControllerConnectionDetailsList: msRest.CompositeMapper;
13
- export declare const ResourceProviderOperationDisplay: msRest.CompositeMapper;
14
- export declare const ResourceProviderOperationDefinition: msRest.CompositeMapper;
15
- export declare const KubernetesConnectionDetails: msRest.CompositeMapper;
16
- export declare const ErrorDetails: msRest.CompositeMapper;
17
- export declare const ErrorResponse: msRest.CompositeMapper;
18
- export declare const ControllerList: msRest.CompositeMapper;
19
- export declare const ResourceProviderOperationList: msRest.CompositeMapper;
20
- export declare const discriminators: {
21
- OrchestratorSpecificConnectionDetails: msRest.CompositeMapper;
22
- 'OrchestratorSpecificConnectionDetails.Kubernetes': msRest.CompositeMapper;
23
- };
24
- //# sourceMappingURL=mappers.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"mappers.d.ts","sourceRoot":"","sources":["../../src/models/mappers.ts"],"names":[],"mappings":"AAWA,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAE5C,eAAO,MAAM,UAAU,wBAAmB,CAAC;AAC3C,eAAO,MAAM,YAAY,wBAAqB,CAAC;AAE/C,eAAO,MAAM,oBAAoB,EAAE,MAAM,CAAC,eAqBzC,CAAC;AAEF,eAAO,MAAM,GAAG,EAAE,MAAM,CAAC,eAuBxB,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,MAAM,CAAC,eA6B7B,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,MAAM,CAAC,eA0BpC,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,MAAM,CAAC,eAqD/B,CAAC;AAEF,eAAO,MAAM,0BAA0B,EAAE,MAAM,CAAC,eAmB/C,CAAC;AAEF,eAAO,MAAM,qCAAqC,EAAE,MAAM,CAAC,eAoB1D,CAAC;AAEF,eAAO,MAAM,2BAA2B,EAAE,MAAM,CAAC,eAoChD,CAAC;AAEF,eAAO,MAAM,+BAA+B,EAAE,MAAM,CAAC,eAoBpD,CAAC;AAEF,eAAO,MAAM,gCAAgC,EAAE,MAAM,CAAC,eAgCrD,CAAC;AAEF,eAAO,MAAM,mCAAmC,EAAE,MAAM,CAAC,eAqBxD,CAAC;AAEF,eAAO,MAAM,2BAA2B,EAAE,MAAM,CAAC,eAiBhD,CAAC;AAEF,eAAO,MAAM,YAAY,EAAE,MAAM,CAAC,eA6BjC,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,MAAM,CAAC,eAelC,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,MAAM,CAAC,eA2BnC,CAAC;AAEF,eAAO,MAAM,6BAA6B,EAAE,MAAM,CAAC,eA2BlD,CAAC;AAEF,eAAO,MAAM,cAAc;;;CAG1B,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"mappers.js","sourceRoot":"","sources":["../../src/models/mappers.ts"],"names":[],"mappings":"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"}
@@ -1,2 +0,0 @@
1
- export { discriminators, ResourceProviderOperationList, ResourceProviderOperationDefinition, ResourceProviderOperationDisplay, CloudError } from "../models/mappers";
2
- //# sourceMappingURL=operationsMappers.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"operationsMappers.d.ts","sourceRoot":"","sources":["../../src/models/operationsMappers.ts"],"names":[],"mappings":"AAUA,OAAO,EACL,cAAc,EACd,6BAA6B,EAC7B,mCAAmC,EACnC,gCAAgC,EAChC,UAAU,EACX,MAAM,mBAAmB,CAAC"}
@@ -1,11 +0,0 @@
1
- /*
2
- * Copyright (c) Microsoft Corporation. All rights reserved.
3
- * Licensed under the MIT License. See License.txt in the project root for
4
- * license information.
5
- *
6
- * Code generated by Microsoft (R) AutoRest Code Generator.
7
- * Changes may cause incorrect behavior and will be lost if the code is
8
- * regenerated.
9
- */
10
- export { discriminators, ResourceProviderOperationList, ResourceProviderOperationDefinition, ResourceProviderOperationDisplay, CloudError } from "../models/mappers";
11
- //# sourceMappingURL=operationsMappers.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"operationsMappers.js","sourceRoot":"","sources":["../../src/models/operationsMappers.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,EACL,cAAc,EACd,6BAA6B,EAC7B,mCAAmC,EACnC,gCAAgC,EAChC,UAAU,EACX,MAAM,mBAAmB,CAAC"}
@@ -1,9 +0,0 @@
1
- import * as msRest from "@azure/ms-rest-js";
2
- export declare const acceptLanguage: msRest.OperationParameter;
3
- export declare const apiVersion: msRest.OperationQueryParameter;
4
- export declare const location: msRest.OperationURLParameter;
5
- export declare const name: msRest.OperationURLParameter;
6
- export declare const nextPageLink: msRest.OperationURLParameter;
7
- export declare const resourceGroupName: msRest.OperationURLParameter;
8
- export declare const subscriptionId: msRest.OperationURLParameter;
9
- //# sourceMappingURL=parameters.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"parameters.d.ts","sourceRoot":"","sources":["../../src/models/parameters.ts"],"names":[],"mappings":"AAUA,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAE5C,eAAO,MAAM,cAAc,EAAE,MAAM,CAAC,kBASnC,CAAC;AACF,eAAO,MAAM,UAAU,EAAE,MAAM,CAAC,uBAS/B,CAAC;AACF,eAAO,MAAM,QAAQ,EAAE,MAAM,CAAC,qBAS7B,CAAC;AACF,eAAO,MAAM,IAAI,EAAE,MAAM,CAAC,qBAczB,CAAC;AACF,eAAO,MAAM,YAAY,EAAE,MAAM,CAAC,qBAUjC,CAAC;AACF,eAAO,MAAM,iBAAiB,EAAE,MAAM,CAAC,qBAatC,CAAC;AACF,eAAO,MAAM,cAAc,EAAE,MAAM,CAAC,qBASnC,CAAC"}