@azure/arm-hanaonazure 2.2.0 → 4.0.0-beta.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 (145) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/LICENSE +21 -0
  3. package/LICENSE.txt +1 -1
  4. package/README.md +72 -72
  5. package/dist/index.js +1333 -0
  6. package/dist/index.js.map +1 -0
  7. package/dist/index.min.js +1 -0
  8. package/dist/index.min.js.map +1 -0
  9. package/dist-esm/src/hanaManagementClient.d.ts +21 -0
  10. package/dist-esm/src/hanaManagementClient.d.ts.map +1 -0
  11. package/dist-esm/src/hanaManagementClient.js +54 -0
  12. package/dist-esm/src/hanaManagementClient.js.map +1 -0
  13. package/dist-esm/src/index.d.ts +5 -0
  14. package/dist-esm/src/index.d.ts.map +1 -0
  15. package/dist-esm/src/index.js +12 -0
  16. package/dist-esm/src/index.js.map +1 -0
  17. package/dist-esm/src/lroImpl.d.ts +16 -0
  18. package/dist-esm/src/lroImpl.d.ts.map +1 -0
  19. package/dist-esm/src/lroImpl.js +29 -0
  20. package/dist-esm/src/lroImpl.js.map +1 -0
  21. package/dist-esm/src/models/index.d.ts +260 -0
  22. package/dist-esm/src/models/index.d.ts.map +1 -0
  23. package/dist-esm/src/models/index.js +19 -0
  24. package/dist-esm/src/models/index.js.map +1 -0
  25. package/dist-esm/src/models/mappers.d.ts +15 -0
  26. package/dist-esm/src/models/mappers.d.ts.map +1 -0
  27. package/dist-esm/src/models/mappers.js +330 -0
  28. package/dist-esm/src/models/mappers.js.map +1 -0
  29. package/dist-esm/src/models/parameters.d.ts +14 -0
  30. package/dist-esm/src/models/parameters.d.ts.map +1 -0
  31. package/dist-esm/src/models/parameters.js +116 -0
  32. package/dist-esm/src/models/parameters.js.map +1 -0
  33. package/dist-esm/src/operations/index.d.ts +4 -0
  34. package/dist-esm/src/operations/index.d.ts.map +1 -0
  35. package/dist-esm/src/operations/index.js +11 -0
  36. package/dist-esm/src/operations/index.js.map +1 -0
  37. package/dist-esm/src/operations/operations.d.ts +26 -0
  38. package/dist-esm/src/operations/operations.d.ts.map +1 -0
  39. package/dist-esm/src/operations/operations.js +90 -0
  40. package/dist-esm/src/operations/operations.js.map +1 -0
  41. package/dist-esm/src/operations/providerInstances.d.ts +88 -0
  42. package/dist-esm/src/operations/providerInstances.d.ts.map +1 -0
  43. package/dist-esm/src/operations/providerInstances.js +344 -0
  44. package/dist-esm/src/operations/providerInstances.js.map +1 -0
  45. package/dist-esm/src/operations/sapMonitors.d.ts +81 -0
  46. package/dist-esm/src/operations/sapMonitors.d.ts.map +1 -0
  47. package/dist-esm/src/operations/sapMonitors.js +346 -0
  48. package/dist-esm/src/operations/sapMonitors.js.map +1 -0
  49. package/dist-esm/src/operationsInterfaces/index.d.ts +4 -0
  50. package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
  51. package/dist-esm/src/operationsInterfaces/index.js +11 -0
  52. package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
  53. package/dist-esm/src/operationsInterfaces/operations.d.ts +11 -0
  54. package/dist-esm/src/operationsInterfaces/operations.d.ts.map +1 -0
  55. package/dist-esm/src/operationsInterfaces/operations.js +9 -0
  56. package/dist-esm/src/operationsInterfaces/operations.js.map +1 -0
  57. package/dist-esm/src/operationsInterfaces/providerInstances.d.ts +62 -0
  58. package/dist-esm/src/operationsInterfaces/providerInstances.d.ts.map +1 -0
  59. package/dist-esm/src/operationsInterfaces/providerInstances.js +9 -0
  60. package/dist-esm/src/operationsInterfaces/providerInstances.js.map +1 -0
  61. package/dist-esm/src/operationsInterfaces/sapMonitors.d.ts +59 -0
  62. package/dist-esm/src/operationsInterfaces/sapMonitors.d.ts.map +1 -0
  63. package/dist-esm/src/operationsInterfaces/sapMonitors.js +9 -0
  64. package/dist-esm/src/operationsInterfaces/sapMonitors.js.map +1 -0
  65. package/dist-esm/test/sampleTest.d.ts +2 -0
  66. package/dist-esm/test/sampleTest.d.ts.map +1 -0
  67. package/dist-esm/test/sampleTest.js +40 -0
  68. package/dist-esm/test/sampleTest.js.map +1 -0
  69. package/package.json +65 -31
  70. package/review/arm-hanaonazure.api.md +260 -0
  71. package/rollup.config.js +181 -30
  72. package/src/hanaManagementClient.ts +75 -34
  73. package/src/index.ts +12 -0
  74. package/src/lroImpl.ts +34 -0
  75. package/src/models/index.ts +227 -638
  76. package/src/models/mappers.ts +138 -367
  77. package/src/models/parameters.ts +84 -30
  78. package/src/operations/index.ts +4 -6
  79. package/src/operations/operations.ts +66 -42
  80. package/src/operations/providerInstances.ts +477 -0
  81. package/src/operations/sapMonitors.ts +332 -256
  82. package/src/operationsInterfaces/index.ts +11 -0
  83. package/src/operationsInterfaces/operations.ts +22 -0
  84. package/src/operationsInterfaces/providerInstances.ts +115 -0
  85. package/src/operationsInterfaces/sapMonitors.ts +113 -0
  86. package/tsconfig.json +4 -4
  87. package/types/arm-hanaonazure.d.ts +444 -0
  88. package/types/tsdoc-metadata.json +11 -0
  89. package/dist/arm-hanaonazure.js +0 -1702
  90. package/dist/arm-hanaonazure.js.map +0 -1
  91. package/dist/arm-hanaonazure.min.js +0 -1
  92. package/dist/arm-hanaonazure.min.js.map +0 -1
  93. package/esm/hanaManagementClient.d.ts +0 -21
  94. package/esm/hanaManagementClient.d.ts.map +0 -1
  95. package/esm/hanaManagementClient.js +0 -36
  96. package/esm/hanaManagementClient.js.map +0 -1
  97. package/esm/hanaManagementClientContext.d.ts +0 -17
  98. package/esm/hanaManagementClientContext.d.ts.map +0 -1
  99. package/esm/hanaManagementClientContext.js +0 -57
  100. package/esm/hanaManagementClientContext.js.map +0 -1
  101. package/esm/models/hanaInstancesMappers.d.ts +0 -2
  102. package/esm/models/hanaInstancesMappers.d.ts.map +0 -1
  103. package/esm/models/hanaInstancesMappers.js +0 -9
  104. package/esm/models/hanaInstancesMappers.js.map +0 -1
  105. package/esm/models/index.d.ts +0 -661
  106. package/esm/models/index.d.ts.map +0 -1
  107. package/esm/models/index.js +0 -8
  108. package/esm/models/index.js.map +0 -1
  109. package/esm/models/mappers.d.ts +0 -21
  110. package/esm/models/mappers.d.ts.map +0 -1
  111. package/esm/models/mappers.js +0 -556
  112. package/esm/models/mappers.js.map +0 -1
  113. package/esm/models/operationsMappers.d.ts +0 -2
  114. package/esm/models/operationsMappers.d.ts.map +0 -1
  115. package/esm/models/operationsMappers.js +0 -9
  116. package/esm/models/operationsMappers.js.map +0 -1
  117. package/esm/models/parameters.d.ts +0 -9
  118. package/esm/models/parameters.d.ts.map +0 -1
  119. package/esm/models/parameters.js +0 -81
  120. package/esm/models/parameters.js.map +0 -1
  121. package/esm/models/sapMonitorsMappers.d.ts +0 -2
  122. package/esm/models/sapMonitorsMappers.d.ts.map +0 -1
  123. package/esm/models/sapMonitorsMappers.js +0 -9
  124. package/esm/models/sapMonitorsMappers.js.map +0 -1
  125. package/esm/operations/hanaInstances.d.ts +0 -244
  126. package/esm/operations/hanaInstances.d.ts.map +0 -1
  127. package/esm/operations/hanaInstances.js +0 -514
  128. package/esm/operations/hanaInstances.js.map +0 -1
  129. package/esm/operations/index.d.ts +0 -4
  130. package/esm/operations/index.d.ts.map +0 -1
  131. package/esm/operations/index.js +0 -13
  132. package/esm/operations/index.js.map +0 -1
  133. package/esm/operations/operations.d.ts +0 -28
  134. package/esm/operations/operations.d.ts.map +0 -1
  135. package/esm/operations/operations.js +0 -51
  136. package/esm/operations/operations.js.map +0 -1
  137. package/esm/operations/sapMonitors.d.ts +0 -138
  138. package/esm/operations/sapMonitors.d.ts.map +0 -1
  139. package/esm/operations/sapMonitors.js +0 -260
  140. package/esm/operations/sapMonitors.js.map +0 -1
  141. package/src/hanaManagementClientContext.ts +0 -63
  142. package/src/models/hanaInstancesMappers.ts +0 -25
  143. package/src/models/operationsMappers.ts +0 -14
  144. package/src/models/sapMonitorsMappers.ts +0 -23
  145. package/src/operations/hanaInstances.ts +0 -718
@@ -1,661 +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
- * The resource model definition.
6
- */
7
- export interface Resource extends BaseResource {
8
- /**
9
- * Resource ID
10
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
11
- */
12
- readonly id?: string;
13
- /**
14
- * Resource name
15
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
16
- */
17
- readonly name?: string;
18
- /**
19
- * Resource type
20
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
21
- */
22
- readonly type?: string;
23
- /**
24
- * Resource location
25
- */
26
- location?: string;
27
- /**
28
- * Resource tags
29
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
30
- */
31
- readonly tags?: {
32
- [propertyName: string]: string;
33
- };
34
- }
35
- /**
36
- * Specifies the hardware settings for the HANA instance.
37
- */
38
- export interface HardwareProfile {
39
- /**
40
- * Name of the hardware type (vendor and/or their product name). Possible values include:
41
- * 'Cisco_UCS', 'HPE'
42
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
43
- */
44
- readonly hardwareType?: HanaHardwareTypeNamesEnum;
45
- /**
46
- * Specifies the HANA instance SKU. Possible values include: 'S72m', 'S144m', 'S72', 'S144',
47
- * 'S192', 'S192m', 'S192xm', 'S96', 'S384', 'S384m', 'S384xm', 'S384xxm', 'S576m', 'S576xm',
48
- * 'S768', 'S768m', 'S768xm', 'S960m', 'S224o', 'S224m', 'S224om', 'S224oxm', 'S224oxxm'
49
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
50
- */
51
- readonly hanaInstanceSize?: HanaInstanceSizeNamesEnum;
52
- }
53
- /**
54
- * Specifies the disk information fo the HANA instance
55
- */
56
- export interface Disk {
57
- /**
58
- * The disk name.
59
- */
60
- name?: string;
61
- /**
62
- * Specifies the size of an empty data disk in gigabytes.
63
- */
64
- diskSizeGB?: number;
65
- /**
66
- * Specifies the logical unit number of the data disk. This value is used to identify data disks
67
- * within the VM and therefore must be unique for each data disk attached to a VM.
68
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
69
- */
70
- readonly lun?: number;
71
- }
72
- /**
73
- * Specifies the storage settings for the HANA instance disks.
74
- */
75
- export interface StorageProfile {
76
- /**
77
- * IP Address to connect to storage.
78
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
79
- */
80
- readonly nfsIpAddress?: string;
81
- /**
82
- * Specifies information about the operating system disk used by the hana instance.
83
- */
84
- osDisks?: Disk[];
85
- }
86
- /**
87
- * Specifies the operating system settings for the HANA instance.
88
- */
89
- export interface OSProfile {
90
- /**
91
- * Specifies the host OS name of the HANA instance.
92
- */
93
- computerName?: string;
94
- /**
95
- * This property allows you to specify the type of the OS.
96
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
97
- */
98
- readonly osType?: string;
99
- /**
100
- * Specifies version of operating system.
101
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
102
- */
103
- readonly version?: string;
104
- /**
105
- * Specifies the SSH public key used to access the operating system.
106
- */
107
- sshPublicKey?: string;
108
- }
109
- /**
110
- * Specifies the IP address of the network interface.
111
- */
112
- export interface IpAddress {
113
- /**
114
- * Specifies the IP address of the network interface.
115
- */
116
- ipAddress?: string;
117
- }
118
- /**
119
- * Specifies the network settings for the HANA instance disks.
120
- */
121
- export interface NetworkProfile {
122
- /**
123
- * Specifies the network interfaces for the HANA instance.
124
- */
125
- networkInterfaces?: IpAddress[];
126
- /**
127
- * Specifies the circuit id for connecting to express route.
128
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
129
- */
130
- readonly circuitId?: string;
131
- }
132
- /**
133
- * HANA instance info on Azure (ARM properties and HANA properties)
134
- */
135
- export interface HanaInstance extends Resource {
136
- /**
137
- * Specifies the hardware settings for the HANA instance.
138
- */
139
- hardwareProfile?: HardwareProfile;
140
- /**
141
- * Specifies the storage settings for the HANA instance disks.
142
- */
143
- storageProfile?: StorageProfile;
144
- /**
145
- * Specifies the operating system settings for the HANA instance.
146
- */
147
- osProfile?: OSProfile;
148
- /**
149
- * Specifies the network settings for the HANA instance.
150
- */
151
- networkProfile?: NetworkProfile;
152
- /**
153
- * Specifies the HANA instance unique ID.
154
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
155
- */
156
- readonly hanaInstanceId?: string;
157
- /**
158
- * Resource power state. Possible values include: 'starting', 'started', 'stopping', 'stopped',
159
- * 'restarting', 'unknown'
160
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
161
- */
162
- readonly powerState?: HanaInstancePowerStateEnum;
163
- /**
164
- * Resource proximity placement group
165
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
166
- */
167
- readonly proximityPlacementGroup?: string;
168
- /**
169
- * Hardware revision of a HANA instance
170
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
171
- */
172
- readonly hwRevision?: string;
173
- /**
174
- * ARM ID of another HanaInstance that will share a network with this HanaInstance
175
- */
176
- partnerNodeId?: string;
177
- /**
178
- * State of provisioning of the HanaInstance. Possible values include: 'Accepted', 'Creating',
179
- * 'Updating', 'Failed', 'Succeeded', 'Deleting', 'Migrating'
180
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
181
- */
182
- readonly provisioningState?: HanaProvisioningStatesEnum;
183
- }
184
- /**
185
- * Detailed HANA operation information
186
- */
187
- export interface Display {
188
- /**
189
- * The localized friendly form of the resource provider name. This form is also expected to
190
- * include the publisher/company responsible. Use Title Casing. Begin with "Microsoft" for 1st
191
- * party services.
192
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
193
- */
194
- readonly provider?: string;
195
- /**
196
- * The localized friendly form of the resource type related to this action/operation. This form
197
- * should match the public documentation for the resource provider. Use Title Casing. For
198
- * examples, refer to the “name” section.
199
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
200
- */
201
- readonly resource?: string;
202
- /**
203
- * The localized friendly name for the operation as shown to the user. This name should be
204
- * concise (to fit in drop downs), but clear (self-documenting). Use Title Casing and include the
205
- * entity/resource to which it applies.
206
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
207
- */
208
- readonly operation?: string;
209
- /**
210
- * The localized friendly description for the operation as shown to the user. This description
211
- * should be thorough, yet concise. It will be used in tool-tips and detailed views.
212
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
213
- */
214
- readonly description?: string;
215
- /**
216
- * The intended executor of the operation; governs the display of the operation in the RBAC UX
217
- * and the audit logs UX. Default value is 'user,system'
218
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
219
- */
220
- readonly origin?: string;
221
- }
222
- /**
223
- * HANA operation information
224
- */
225
- export interface Operation {
226
- /**
227
- * The name of the operation being performed on this particular object. This name should match
228
- * the action name that appears in RBAC / the event service.
229
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
230
- */
231
- readonly name?: string;
232
- /**
233
- * Displayed HANA operation information
234
- */
235
- display?: Display;
236
- }
237
- /**
238
- * Describes the format of Error response.
239
- */
240
- export interface ErrorResponse {
241
- /**
242
- * Error code
243
- */
244
- code?: string;
245
- /**
246
- * Error message indicating why the operation failed.
247
- */
248
- message?: string;
249
- }
250
- /**
251
- * Tags field of the HANA instance.
252
- */
253
- export interface Tags {
254
- /**
255
- * Tags field of the HANA instance.
256
- */
257
- tags?: {
258
- [propertyName: string]: string;
259
- };
260
- }
261
- /**
262
- * Details needed to monitor a Hana Instance
263
- */
264
- export interface MonitoringDetails {
265
- /**
266
- * ARM ID of an Azure Subnet with access to the HANA instance.
267
- */
268
- hanaSubnet?: string;
269
- /**
270
- * Hostname of the HANA Instance blade.
271
- */
272
- hanaHostname?: string;
273
- /**
274
- * Name of the database itself.
275
- */
276
- hanaDbName?: string;
277
- /**
278
- * The port number of the tenant DB. Used to connect to the DB.
279
- */
280
- hanaDbSqlPort?: number;
281
- /**
282
- * Username for the HANA database to login to for monitoring
283
- */
284
- hanaDbUsername?: string;
285
- /**
286
- * Password for the HANA database to login for monitoring
287
- */
288
- hanaDbPassword?: string;
289
- }
290
- /**
291
- * SAP monitor info on Azure (ARM properties and SAP monitor properties)
292
- */
293
- export interface SapMonitor extends Resource {
294
- /**
295
- * Specifies the SAP monitor unique ID.
296
- */
297
- hanaSubnet?: string;
298
- /**
299
- * Hostname of the HANA instance.
300
- */
301
- hanaHostname?: string;
302
- /**
303
- * Database name of the HANA instance.
304
- */
305
- hanaDbName?: string;
306
- /**
307
- * Database port of the HANA instance.
308
- */
309
- hanaDbSqlPort?: number;
310
- /**
311
- * Database username of the HANA instance.
312
- */
313
- hanaDbUsername?: string;
314
- /**
315
- * Database password of the HANA instance.
316
- */
317
- hanaDbPassword?: string;
318
- /**
319
- * State of provisioning of the HanaInstance. Possible values include: 'Accepted', 'Creating',
320
- * 'Updating', 'Failed', 'Succeeded', 'Deleting', 'Migrating'
321
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
322
- */
323
- readonly provisioningState?: HanaProvisioningStatesEnum;
324
- }
325
- /**
326
- * An interface representing HanaManagementClientOptions.
327
- */
328
- export interface HanaManagementClientOptions extends AzureServiceClientOptions {
329
- baseUri?: string;
330
- }
331
- /**
332
- * @interface
333
- * List of HANA operations
334
- * @extends Array<Operation>
335
- */
336
- export interface OperationList extends Array<Operation> {
337
- }
338
- /**
339
- * @interface
340
- * The response from the List HANA Instances operation.
341
- * @extends Array<HanaInstance>
342
- */
343
- export interface HanaInstancesListResult extends Array<HanaInstance> {
344
- /**
345
- * The URL to get the next set of HANA instances.
346
- */
347
- nextLink?: string;
348
- }
349
- /**
350
- * @interface
351
- * The response from the List SAP monitors operation.
352
- * @extends Array<SapMonitor>
353
- */
354
- export interface SapMonitorListResult extends Array<SapMonitor> {
355
- /**
356
- * The URL to get the next set of SAP monitors.
357
- */
358
- nextLink?: string;
359
- }
360
- /**
361
- * Defines values for HanaHardwareTypeNamesEnum.
362
- * Possible values include: 'Cisco_UCS', 'HPE'
363
- * @readonly
364
- * @enum {string}
365
- */
366
- export declare type HanaHardwareTypeNamesEnum = 'Cisco_UCS' | 'HPE';
367
- /**
368
- * Defines values for HanaInstanceSizeNamesEnum.
369
- * Possible values include: 'S72m', 'S144m', 'S72', 'S144', 'S192', 'S192m', 'S192xm', 'S96',
370
- * 'S384', 'S384m', 'S384xm', 'S384xxm', 'S576m', 'S576xm', 'S768', 'S768m', 'S768xm', 'S960m',
371
- * 'S224o', 'S224m', 'S224om', 'S224oxm', 'S224oxxm'
372
- * @readonly
373
- * @enum {string}
374
- */
375
- export declare type HanaInstanceSizeNamesEnum = 'S72m' | 'S144m' | 'S72' | 'S144' | 'S192' | 'S192m' | 'S192xm' | 'S96' | 'S384' | 'S384m' | 'S384xm' | 'S384xxm' | 'S576m' | 'S576xm' | 'S768' | 'S768m' | 'S768xm' | 'S960m' | 'S224o' | 'S224m' | 'S224om' | 'S224oxm' | 'S224oxxm';
376
- /**
377
- * Defines values for HanaInstancePowerStateEnum.
378
- * Possible values include: 'starting', 'started', 'stopping', 'stopped', 'restarting', 'unknown'
379
- * @readonly
380
- * @enum {string}
381
- */
382
- export declare type HanaInstancePowerStateEnum = 'starting' | 'started' | 'stopping' | 'stopped' | 'restarting' | 'unknown';
383
- /**
384
- * Defines values for HanaProvisioningStatesEnum.
385
- * Possible values include: 'Accepted', 'Creating', 'Updating', 'Failed', 'Succeeded', 'Deleting',
386
- * 'Migrating'
387
- * @readonly
388
- * @enum {string}
389
- */
390
- export declare type HanaProvisioningStatesEnum = 'Accepted' | 'Creating' | 'Updating' | 'Failed' | 'Succeeded' | 'Deleting' | 'Migrating';
391
- /**
392
- * Contains response data for the list operation.
393
- */
394
- export declare type OperationsListResponse = OperationList & {
395
- /**
396
- * The underlying HTTP response.
397
- */
398
- _response: msRest.HttpResponse & {
399
- /**
400
- * The response body as text (string format)
401
- */
402
- bodyAsText: string;
403
- /**
404
- * The response body as parsed JSON or XML
405
- */
406
- parsedBody: OperationList;
407
- };
408
- };
409
- /**
410
- * Contains response data for the list operation.
411
- */
412
- export declare type HanaInstancesListResponse = HanaInstancesListResult & {
413
- /**
414
- * The underlying HTTP response.
415
- */
416
- _response: msRest.HttpResponse & {
417
- /**
418
- * The response body as text (string format)
419
- */
420
- bodyAsText: string;
421
- /**
422
- * The response body as parsed JSON or XML
423
- */
424
- parsedBody: HanaInstancesListResult;
425
- };
426
- };
427
- /**
428
- * Contains response data for the listByResourceGroup operation.
429
- */
430
- export declare type HanaInstancesListByResourceGroupResponse = HanaInstancesListResult & {
431
- /**
432
- * The underlying HTTP response.
433
- */
434
- _response: msRest.HttpResponse & {
435
- /**
436
- * The response body as text (string format)
437
- */
438
- bodyAsText: string;
439
- /**
440
- * The response body as parsed JSON or XML
441
- */
442
- parsedBody: HanaInstancesListResult;
443
- };
444
- };
445
- /**
446
- * Contains response data for the get operation.
447
- */
448
- export declare type HanaInstancesGetResponse = HanaInstance & {
449
- /**
450
- * The underlying HTTP response.
451
- */
452
- _response: msRest.HttpResponse & {
453
- /**
454
- * The response body as text (string format)
455
- */
456
- bodyAsText: string;
457
- /**
458
- * The response body as parsed JSON or XML
459
- */
460
- parsedBody: HanaInstance;
461
- };
462
- };
463
- /**
464
- * Contains response data for the create operation.
465
- */
466
- export declare type HanaInstancesCreateResponse = HanaInstance & {
467
- /**
468
- * The underlying HTTP response.
469
- */
470
- _response: msRest.HttpResponse & {
471
- /**
472
- * The response body as text (string format)
473
- */
474
- bodyAsText: string;
475
- /**
476
- * The response body as parsed JSON or XML
477
- */
478
- parsedBody: HanaInstance;
479
- };
480
- };
481
- /**
482
- * Contains response data for the update operation.
483
- */
484
- export declare type HanaInstancesUpdateResponse = HanaInstance & {
485
- /**
486
- * The underlying HTTP response.
487
- */
488
- _response: msRest.HttpResponse & {
489
- /**
490
- * The response body as text (string format)
491
- */
492
- bodyAsText: string;
493
- /**
494
- * The response body as parsed JSON or XML
495
- */
496
- parsedBody: HanaInstance;
497
- };
498
- };
499
- /**
500
- * Contains response data for the beginCreate operation.
501
- */
502
- export declare type HanaInstancesBeginCreateResponse = HanaInstance & {
503
- /**
504
- * The underlying HTTP response.
505
- */
506
- _response: msRest.HttpResponse & {
507
- /**
508
- * The response body as text (string format)
509
- */
510
- bodyAsText: string;
511
- /**
512
- * The response body as parsed JSON or XML
513
- */
514
- parsedBody: HanaInstance;
515
- };
516
- };
517
- /**
518
- * Contains response data for the listNext operation.
519
- */
520
- export declare type HanaInstancesListNextResponse = HanaInstancesListResult & {
521
- /**
522
- * The underlying HTTP response.
523
- */
524
- _response: msRest.HttpResponse & {
525
- /**
526
- * The response body as text (string format)
527
- */
528
- bodyAsText: string;
529
- /**
530
- * The response body as parsed JSON or XML
531
- */
532
- parsedBody: HanaInstancesListResult;
533
- };
534
- };
535
- /**
536
- * Contains response data for the listByResourceGroupNext operation.
537
- */
538
- export declare type HanaInstancesListByResourceGroupNextResponse = HanaInstancesListResult & {
539
- /**
540
- * The underlying HTTP response.
541
- */
542
- _response: msRest.HttpResponse & {
543
- /**
544
- * The response body as text (string format)
545
- */
546
- bodyAsText: string;
547
- /**
548
- * The response body as parsed JSON or XML
549
- */
550
- parsedBody: HanaInstancesListResult;
551
- };
552
- };
553
- /**
554
- * Contains response data for the list operation.
555
- */
556
- export declare type SapMonitorsListResponse = SapMonitorListResult & {
557
- /**
558
- * The underlying HTTP response.
559
- */
560
- _response: msRest.HttpResponse & {
561
- /**
562
- * The response body as text (string format)
563
- */
564
- bodyAsText: string;
565
- /**
566
- * The response body as parsed JSON or XML
567
- */
568
- parsedBody: SapMonitorListResult;
569
- };
570
- };
571
- /**
572
- * Contains response data for the get operation.
573
- */
574
- export declare type SapMonitorsGetResponse = SapMonitor & {
575
- /**
576
- * The underlying HTTP response.
577
- */
578
- _response: msRest.HttpResponse & {
579
- /**
580
- * The response body as text (string format)
581
- */
582
- bodyAsText: string;
583
- /**
584
- * The response body as parsed JSON or XML
585
- */
586
- parsedBody: SapMonitor;
587
- };
588
- };
589
- /**
590
- * Contains response data for the create operation.
591
- */
592
- export declare type SapMonitorsCreateResponse = SapMonitor & {
593
- /**
594
- * The underlying HTTP response.
595
- */
596
- _response: msRest.HttpResponse & {
597
- /**
598
- * The response body as text (string format)
599
- */
600
- bodyAsText: string;
601
- /**
602
- * The response body as parsed JSON or XML
603
- */
604
- parsedBody: SapMonitor;
605
- };
606
- };
607
- /**
608
- * Contains response data for the update operation.
609
- */
610
- export declare type SapMonitorsUpdateResponse = SapMonitor & {
611
- /**
612
- * The underlying HTTP response.
613
- */
614
- _response: msRest.HttpResponse & {
615
- /**
616
- * The response body as text (string format)
617
- */
618
- bodyAsText: string;
619
- /**
620
- * The response body as parsed JSON or XML
621
- */
622
- parsedBody: SapMonitor;
623
- };
624
- };
625
- /**
626
- * Contains response data for the beginCreate operation.
627
- */
628
- export declare type SapMonitorsBeginCreateResponse = SapMonitor & {
629
- /**
630
- * The underlying HTTP response.
631
- */
632
- _response: msRest.HttpResponse & {
633
- /**
634
- * The response body as text (string format)
635
- */
636
- bodyAsText: string;
637
- /**
638
- * The response body as parsed JSON or XML
639
- */
640
- parsedBody: SapMonitor;
641
- };
642
- };
643
- /**
644
- * Contains response data for the listNext operation.
645
- */
646
- export declare type SapMonitorsListNextResponse = SapMonitorListResult & {
647
- /**
648
- * The underlying HTTP response.
649
- */
650
- _response: msRest.HttpResponse & {
651
- /**
652
- * The response body as text (string format)
653
- */
654
- bodyAsText: string;
655
- /**
656
- * The response body as parsed JSON or XML
657
- */
658
- parsedBody: SapMonitorListResult;
659
- };
660
- };
661
- //# 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,8 +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 license information.
4
- *
5
- * Code generated by Microsoft (R) AutoRest Code Generator.
6
- * Changes may cause incorrect behavior and will be lost if the code is regenerated.
7
- */
8
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/models/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG"}