@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.
- package/CHANGELOG.md +11 -0
- package/LICENSE +21 -0
- package/LICENSE.txt +1 -1
- package/README.md +72 -72
- package/dist/index.js +1333 -0
- package/dist/index.js.map +1 -0
- package/dist/index.min.js +1 -0
- package/dist/index.min.js.map +1 -0
- package/dist-esm/src/hanaManagementClient.d.ts +21 -0
- package/dist-esm/src/hanaManagementClient.d.ts.map +1 -0
- package/dist-esm/src/hanaManagementClient.js +54 -0
- package/dist-esm/src/hanaManagementClient.js.map +1 -0
- package/dist-esm/src/index.d.ts +5 -0
- package/dist-esm/src/index.d.ts.map +1 -0
- package/dist-esm/src/index.js +12 -0
- package/dist-esm/src/index.js.map +1 -0
- package/dist-esm/src/lroImpl.d.ts +16 -0
- package/dist-esm/src/lroImpl.d.ts.map +1 -0
- package/dist-esm/src/lroImpl.js +29 -0
- package/dist-esm/src/lroImpl.js.map +1 -0
- package/dist-esm/src/models/index.d.ts +260 -0
- package/dist-esm/src/models/index.d.ts.map +1 -0
- package/dist-esm/src/models/index.js +19 -0
- package/dist-esm/src/models/index.js.map +1 -0
- package/dist-esm/src/models/mappers.d.ts +15 -0
- package/dist-esm/src/models/mappers.d.ts.map +1 -0
- package/dist-esm/src/models/mappers.js +330 -0
- package/dist-esm/src/models/mappers.js.map +1 -0
- package/dist-esm/src/models/parameters.d.ts +14 -0
- package/dist-esm/src/models/parameters.d.ts.map +1 -0
- package/dist-esm/src/models/parameters.js +116 -0
- package/dist-esm/src/models/parameters.js.map +1 -0
- package/dist-esm/src/operations/index.d.ts +4 -0
- package/dist-esm/src/operations/index.d.ts.map +1 -0
- package/dist-esm/src/operations/index.js +11 -0
- package/dist-esm/src/operations/index.js.map +1 -0
- package/dist-esm/src/operations/operations.d.ts +26 -0
- package/dist-esm/src/operations/operations.d.ts.map +1 -0
- package/dist-esm/src/operations/operations.js +90 -0
- package/dist-esm/src/operations/operations.js.map +1 -0
- package/dist-esm/src/operations/providerInstances.d.ts +88 -0
- package/dist-esm/src/operations/providerInstances.d.ts.map +1 -0
- package/dist-esm/src/operations/providerInstances.js +344 -0
- package/dist-esm/src/operations/providerInstances.js.map +1 -0
- package/dist-esm/src/operations/sapMonitors.d.ts +81 -0
- package/dist-esm/src/operations/sapMonitors.d.ts.map +1 -0
- package/dist-esm/src/operations/sapMonitors.js +346 -0
- package/dist-esm/src/operations/sapMonitors.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts +4 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.js +11 -0
- package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/operations.d.ts +11 -0
- package/dist-esm/src/operationsInterfaces/operations.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/operations.js +9 -0
- package/dist-esm/src/operationsInterfaces/operations.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/providerInstances.d.ts +62 -0
- package/dist-esm/src/operationsInterfaces/providerInstances.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/providerInstances.js +9 -0
- package/dist-esm/src/operationsInterfaces/providerInstances.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/sapMonitors.d.ts +59 -0
- package/dist-esm/src/operationsInterfaces/sapMonitors.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/sapMonitors.js +9 -0
- package/dist-esm/src/operationsInterfaces/sapMonitors.js.map +1 -0
- package/dist-esm/test/sampleTest.d.ts +2 -0
- package/dist-esm/test/sampleTest.d.ts.map +1 -0
- package/dist-esm/test/sampleTest.js +40 -0
- package/dist-esm/test/sampleTest.js.map +1 -0
- package/package.json +65 -31
- package/review/arm-hanaonazure.api.md +260 -0
- package/rollup.config.js +181 -30
- package/src/hanaManagementClient.ts +75 -34
- package/src/index.ts +12 -0
- package/src/lroImpl.ts +34 -0
- package/src/models/index.ts +227 -638
- package/src/models/mappers.ts +138 -367
- package/src/models/parameters.ts +84 -30
- package/src/operations/index.ts +4 -6
- package/src/operations/operations.ts +66 -42
- package/src/operations/providerInstances.ts +477 -0
- package/src/operations/sapMonitors.ts +332 -256
- package/src/operationsInterfaces/index.ts +11 -0
- package/src/operationsInterfaces/operations.ts +22 -0
- package/src/operationsInterfaces/providerInstances.ts +115 -0
- package/src/operationsInterfaces/sapMonitors.ts +113 -0
- package/tsconfig.json +4 -4
- package/types/arm-hanaonazure.d.ts +444 -0
- package/types/tsdoc-metadata.json +11 -0
- package/dist/arm-hanaonazure.js +0 -1702
- package/dist/arm-hanaonazure.js.map +0 -1
- package/dist/arm-hanaonazure.min.js +0 -1
- package/dist/arm-hanaonazure.min.js.map +0 -1
- package/esm/hanaManagementClient.d.ts +0 -21
- package/esm/hanaManagementClient.d.ts.map +0 -1
- package/esm/hanaManagementClient.js +0 -36
- package/esm/hanaManagementClient.js.map +0 -1
- package/esm/hanaManagementClientContext.d.ts +0 -17
- package/esm/hanaManagementClientContext.d.ts.map +0 -1
- package/esm/hanaManagementClientContext.js +0 -57
- package/esm/hanaManagementClientContext.js.map +0 -1
- package/esm/models/hanaInstancesMappers.d.ts +0 -2
- package/esm/models/hanaInstancesMappers.d.ts.map +0 -1
- package/esm/models/hanaInstancesMappers.js +0 -9
- package/esm/models/hanaInstancesMappers.js.map +0 -1
- package/esm/models/index.d.ts +0 -661
- package/esm/models/index.d.ts.map +0 -1
- package/esm/models/index.js +0 -8
- package/esm/models/index.js.map +0 -1
- package/esm/models/mappers.d.ts +0 -21
- package/esm/models/mappers.d.ts.map +0 -1
- package/esm/models/mappers.js +0 -556
- package/esm/models/mappers.js.map +0 -1
- package/esm/models/operationsMappers.d.ts +0 -2
- package/esm/models/operationsMappers.d.ts.map +0 -1
- package/esm/models/operationsMappers.js +0 -9
- package/esm/models/operationsMappers.js.map +0 -1
- package/esm/models/parameters.d.ts +0 -9
- package/esm/models/parameters.d.ts.map +0 -1
- package/esm/models/parameters.js +0 -81
- package/esm/models/parameters.js.map +0 -1
- package/esm/models/sapMonitorsMappers.d.ts +0 -2
- package/esm/models/sapMonitorsMappers.d.ts.map +0 -1
- package/esm/models/sapMonitorsMappers.js +0 -9
- package/esm/models/sapMonitorsMappers.js.map +0 -1
- package/esm/operations/hanaInstances.d.ts +0 -244
- package/esm/operations/hanaInstances.d.ts.map +0 -1
- package/esm/operations/hanaInstances.js +0 -514
- package/esm/operations/hanaInstances.js.map +0 -1
- package/esm/operations/index.d.ts +0 -4
- package/esm/operations/index.d.ts.map +0 -1
- package/esm/operations/index.js +0 -13
- package/esm/operations/index.js.map +0 -1
- package/esm/operations/operations.d.ts +0 -28
- package/esm/operations/operations.d.ts.map +0 -1
- package/esm/operations/operations.js +0 -51
- package/esm/operations/operations.js.map +0 -1
- package/esm/operations/sapMonitors.d.ts +0 -138
- package/esm/operations/sapMonitors.d.ts.map +0 -1
- package/esm/operations/sapMonitors.js +0 -260
- package/esm/operations/sapMonitors.js.map +0 -1
- package/src/hanaManagementClientContext.ts +0 -63
- package/src/models/hanaInstancesMappers.ts +0 -25
- package/src/models/operationsMappers.ts +0 -14
- package/src/models/sapMonitorsMappers.ts +0 -23
- package/src/operations/hanaInstances.ts +0 -718
package/src/models/mappers.ts
CHANGED
|
@@ -1,58 +1,26 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Copyright (c) Microsoft Corporation.
|
|
3
|
-
* Licensed under the MIT License.
|
|
2
|
+
* Copyright (c) Microsoft Corporation.
|
|
3
|
+
* Licensed under the MIT License.
|
|
4
4
|
*
|
|
5
5
|
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
6
6
|
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
|
-
import
|
|
10
|
-
import * as msRest from "@azure/ms-rest-js";
|
|
9
|
+
import * as coreClient from "@azure/core-client";
|
|
11
10
|
|
|
12
|
-
export const
|
|
13
|
-
export const BaseResource = BaseResourceMapper;
|
|
14
|
-
|
|
15
|
-
export const Resource: msRest.CompositeMapper = {
|
|
16
|
-
serializedName: "Resource",
|
|
11
|
+
export const OperationList: coreClient.CompositeMapper = {
|
|
17
12
|
type: {
|
|
18
13
|
name: "Composite",
|
|
19
|
-
className: "
|
|
14
|
+
className: "OperationList",
|
|
20
15
|
modelProperties: {
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
serializedName: "id",
|
|
24
|
-
type: {
|
|
25
|
-
name: "String"
|
|
26
|
-
}
|
|
27
|
-
},
|
|
28
|
-
name: {
|
|
29
|
-
readOnly: true,
|
|
30
|
-
serializedName: "name",
|
|
31
|
-
type: {
|
|
32
|
-
name: "String"
|
|
33
|
-
}
|
|
34
|
-
},
|
|
35
|
-
type: {
|
|
36
|
-
readOnly: true,
|
|
37
|
-
serializedName: "type",
|
|
38
|
-
type: {
|
|
39
|
-
name: "String"
|
|
40
|
-
}
|
|
41
|
-
},
|
|
42
|
-
location: {
|
|
43
|
-
serializedName: "location",
|
|
44
|
-
type: {
|
|
45
|
-
name: "String"
|
|
46
|
-
}
|
|
47
|
-
},
|
|
48
|
-
tags: {
|
|
49
|
-
readOnly: true,
|
|
50
|
-
serializedName: "tags",
|
|
16
|
+
value: {
|
|
17
|
+
serializedName: "value",
|
|
51
18
|
type: {
|
|
52
|
-
name: "
|
|
53
|
-
|
|
19
|
+
name: "Sequence",
|
|
20
|
+
element: {
|
|
54
21
|
type: {
|
|
55
|
-
name: "
|
|
22
|
+
name: "Composite",
|
|
23
|
+
className: "Operation"
|
|
56
24
|
}
|
|
57
25
|
}
|
|
58
26
|
}
|
|
@@ -61,116 +29,65 @@ export const Resource: msRest.CompositeMapper = {
|
|
|
61
29
|
}
|
|
62
30
|
};
|
|
63
31
|
|
|
64
|
-
export const
|
|
65
|
-
serializedName: "HardwareProfile",
|
|
32
|
+
export const Operation: coreClient.CompositeMapper = {
|
|
66
33
|
type: {
|
|
67
34
|
name: "Composite",
|
|
68
|
-
className: "
|
|
69
|
-
modelProperties: {
|
|
70
|
-
hardwareType: {
|
|
71
|
-
readOnly: true,
|
|
72
|
-
serializedName: "hardwareType",
|
|
73
|
-
type: {
|
|
74
|
-
name: "String"
|
|
75
|
-
}
|
|
76
|
-
},
|
|
77
|
-
hanaInstanceSize: {
|
|
78
|
-
readOnly: true,
|
|
79
|
-
serializedName: "hanaInstanceSize",
|
|
80
|
-
type: {
|
|
81
|
-
name: "String"
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
};
|
|
87
|
-
|
|
88
|
-
export const Disk: msRest.CompositeMapper = {
|
|
89
|
-
serializedName: "Disk",
|
|
90
|
-
type: {
|
|
91
|
-
name: "Composite",
|
|
92
|
-
className: "Disk",
|
|
35
|
+
className: "Operation",
|
|
93
36
|
modelProperties: {
|
|
94
37
|
name: {
|
|
95
38
|
serializedName: "name",
|
|
39
|
+
readOnly: true,
|
|
96
40
|
type: {
|
|
97
41
|
name: "String"
|
|
98
42
|
}
|
|
99
43
|
},
|
|
100
|
-
|
|
101
|
-
serializedName: "
|
|
102
|
-
type: {
|
|
103
|
-
name: "Number"
|
|
104
|
-
}
|
|
105
|
-
},
|
|
106
|
-
lun: {
|
|
107
|
-
readOnly: true,
|
|
108
|
-
serializedName: "lun",
|
|
44
|
+
display: {
|
|
45
|
+
serializedName: "display",
|
|
109
46
|
type: {
|
|
110
|
-
name: "
|
|
47
|
+
name: "Composite",
|
|
48
|
+
className: "Display"
|
|
111
49
|
}
|
|
112
50
|
}
|
|
113
51
|
}
|
|
114
52
|
}
|
|
115
53
|
};
|
|
116
54
|
|
|
117
|
-
export const
|
|
118
|
-
serializedName: "StorageProfile",
|
|
55
|
+
export const Display: coreClient.CompositeMapper = {
|
|
119
56
|
type: {
|
|
120
57
|
name: "Composite",
|
|
121
|
-
className: "
|
|
58
|
+
className: "Display",
|
|
122
59
|
modelProperties: {
|
|
123
|
-
|
|
60
|
+
provider: {
|
|
61
|
+
serializedName: "provider",
|
|
124
62
|
readOnly: true,
|
|
125
|
-
serializedName: "nfsIpAddress",
|
|
126
63
|
type: {
|
|
127
64
|
name: "String"
|
|
128
65
|
}
|
|
129
66
|
},
|
|
130
|
-
|
|
131
|
-
serializedName: "
|
|
132
|
-
|
|
133
|
-
name: "Sequence",
|
|
134
|
-
element: {
|
|
135
|
-
type: {
|
|
136
|
-
name: "Composite",
|
|
137
|
-
className: "Disk"
|
|
138
|
-
}
|
|
139
|
-
}
|
|
140
|
-
}
|
|
141
|
-
}
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
};
|
|
145
|
-
|
|
146
|
-
export const OSProfile: msRest.CompositeMapper = {
|
|
147
|
-
serializedName: "OSProfile",
|
|
148
|
-
type: {
|
|
149
|
-
name: "Composite",
|
|
150
|
-
className: "OSProfile",
|
|
151
|
-
modelProperties: {
|
|
152
|
-
computerName: {
|
|
153
|
-
serializedName: "computerName",
|
|
67
|
+
resource: {
|
|
68
|
+
serializedName: "resource",
|
|
69
|
+
readOnly: true,
|
|
154
70
|
type: {
|
|
155
71
|
name: "String"
|
|
156
72
|
}
|
|
157
73
|
},
|
|
158
|
-
|
|
74
|
+
operation: {
|
|
75
|
+
serializedName: "operation",
|
|
159
76
|
readOnly: true,
|
|
160
|
-
serializedName: "osType",
|
|
161
77
|
type: {
|
|
162
78
|
name: "String"
|
|
163
79
|
}
|
|
164
80
|
},
|
|
165
|
-
|
|
81
|
+
description: {
|
|
82
|
+
serializedName: "description",
|
|
166
83
|
readOnly: true,
|
|
167
|
-
serializedName: "version",
|
|
168
84
|
type: {
|
|
169
85
|
name: "String"
|
|
170
86
|
}
|
|
171
87
|
},
|
|
172
|
-
|
|
173
|
-
serializedName: "
|
|
88
|
+
origin: {
|
|
89
|
+
serializedName: "origin",
|
|
90
|
+
readOnly: true,
|
|
174
91
|
type: {
|
|
175
92
|
name: "String"
|
|
176
93
|
}
|
|
@@ -179,43 +96,37 @@ export const OSProfile: msRest.CompositeMapper = {
|
|
|
179
96
|
}
|
|
180
97
|
};
|
|
181
98
|
|
|
182
|
-
export const
|
|
183
|
-
serializedName: "IpAddress",
|
|
99
|
+
export const ErrorResponse: coreClient.CompositeMapper = {
|
|
184
100
|
type: {
|
|
185
101
|
name: "Composite",
|
|
186
|
-
className: "
|
|
102
|
+
className: "ErrorResponse",
|
|
187
103
|
modelProperties: {
|
|
188
|
-
|
|
189
|
-
serializedName: "
|
|
104
|
+
error: {
|
|
105
|
+
serializedName: "error",
|
|
190
106
|
type: {
|
|
191
|
-
name: "
|
|
107
|
+
name: "Composite",
|
|
108
|
+
className: "ErrorResponseError"
|
|
192
109
|
}
|
|
193
110
|
}
|
|
194
111
|
}
|
|
195
112
|
}
|
|
196
113
|
};
|
|
197
114
|
|
|
198
|
-
export const
|
|
199
|
-
serializedName: "NetworkProfile",
|
|
115
|
+
export const ErrorResponseError: coreClient.CompositeMapper = {
|
|
200
116
|
type: {
|
|
201
117
|
name: "Composite",
|
|
202
|
-
className: "
|
|
118
|
+
className: "ErrorResponseError",
|
|
203
119
|
modelProperties: {
|
|
204
|
-
|
|
205
|
-
serializedName: "
|
|
120
|
+
code: {
|
|
121
|
+
serializedName: "code",
|
|
122
|
+
readOnly: true,
|
|
206
123
|
type: {
|
|
207
|
-
name: "
|
|
208
|
-
element: {
|
|
209
|
-
type: {
|
|
210
|
-
name: "Composite",
|
|
211
|
-
className: "IpAddress"
|
|
212
|
-
}
|
|
213
|
-
}
|
|
124
|
+
name: "String"
|
|
214
125
|
}
|
|
215
126
|
},
|
|
216
|
-
|
|
127
|
+
message: {
|
|
128
|
+
serializedName: "message",
|
|
217
129
|
readOnly: true,
|
|
218
|
-
serializedName: "circuitId",
|
|
219
130
|
type: {
|
|
220
131
|
name: "String"
|
|
221
132
|
}
|
|
@@ -224,78 +135,25 @@ export const NetworkProfile: msRest.CompositeMapper = {
|
|
|
224
135
|
}
|
|
225
136
|
};
|
|
226
137
|
|
|
227
|
-
export const
|
|
228
|
-
serializedName: "HanaInstance",
|
|
138
|
+
export const SapMonitorListResult: coreClient.CompositeMapper = {
|
|
229
139
|
type: {
|
|
230
140
|
name: "Composite",
|
|
231
|
-
className: "
|
|
141
|
+
className: "SapMonitorListResult",
|
|
232
142
|
modelProperties: {
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
serializedName: "properties.hardwareProfile",
|
|
236
|
-
type: {
|
|
237
|
-
name: "Composite",
|
|
238
|
-
className: "HardwareProfile"
|
|
239
|
-
}
|
|
240
|
-
},
|
|
241
|
-
storageProfile: {
|
|
242
|
-
serializedName: "properties.storageProfile",
|
|
243
|
-
type: {
|
|
244
|
-
name: "Composite",
|
|
245
|
-
className: "StorageProfile"
|
|
246
|
-
}
|
|
247
|
-
},
|
|
248
|
-
osProfile: {
|
|
249
|
-
serializedName: "properties.osProfile",
|
|
250
|
-
type: {
|
|
251
|
-
name: "Composite",
|
|
252
|
-
className: "OSProfile"
|
|
253
|
-
}
|
|
254
|
-
},
|
|
255
|
-
networkProfile: {
|
|
256
|
-
serializedName: "properties.networkProfile",
|
|
257
|
-
type: {
|
|
258
|
-
name: "Composite",
|
|
259
|
-
className: "NetworkProfile"
|
|
260
|
-
}
|
|
261
|
-
},
|
|
262
|
-
hanaInstanceId: {
|
|
263
|
-
readOnly: true,
|
|
264
|
-
serializedName: "properties.hanaInstanceId",
|
|
265
|
-
type: {
|
|
266
|
-
name: "String"
|
|
267
|
-
}
|
|
268
|
-
},
|
|
269
|
-
powerState: {
|
|
270
|
-
readOnly: true,
|
|
271
|
-
serializedName: "properties.powerState",
|
|
272
|
-
type: {
|
|
273
|
-
name: "String"
|
|
274
|
-
}
|
|
275
|
-
},
|
|
276
|
-
proximityPlacementGroup: {
|
|
277
|
-
readOnly: true,
|
|
278
|
-
serializedName: "properties.proximityPlacementGroup",
|
|
279
|
-
type: {
|
|
280
|
-
name: "String"
|
|
281
|
-
}
|
|
282
|
-
},
|
|
283
|
-
hwRevision: {
|
|
284
|
-
readOnly: true,
|
|
285
|
-
serializedName: "properties.hwRevision",
|
|
286
|
-
type: {
|
|
287
|
-
name: "String"
|
|
288
|
-
}
|
|
289
|
-
},
|
|
290
|
-
partnerNodeId: {
|
|
291
|
-
serializedName: "properties.partnerNodeId",
|
|
143
|
+
value: {
|
|
144
|
+
serializedName: "value",
|
|
292
145
|
type: {
|
|
293
|
-
name: "
|
|
146
|
+
name: "Sequence",
|
|
147
|
+
element: {
|
|
148
|
+
type: {
|
|
149
|
+
name: "Composite",
|
|
150
|
+
className: "SapMonitor"
|
|
151
|
+
}
|
|
152
|
+
}
|
|
294
153
|
}
|
|
295
154
|
},
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
serializedName: "properties.provisioningState",
|
|
155
|
+
nextLink: {
|
|
156
|
+
serializedName: "nextLink",
|
|
299
157
|
type: {
|
|
300
158
|
name: "String"
|
|
301
159
|
}
|
|
@@ -304,43 +162,28 @@ export const HanaInstance: msRest.CompositeMapper = {
|
|
|
304
162
|
}
|
|
305
163
|
};
|
|
306
164
|
|
|
307
|
-
export const
|
|
308
|
-
serializedName: "Display",
|
|
165
|
+
export const Resource: coreClient.CompositeMapper = {
|
|
309
166
|
type: {
|
|
310
167
|
name: "Composite",
|
|
311
|
-
className: "
|
|
168
|
+
className: "Resource",
|
|
312
169
|
modelProperties: {
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
serializedName: "provider",
|
|
316
|
-
type: {
|
|
317
|
-
name: "String"
|
|
318
|
-
}
|
|
319
|
-
},
|
|
320
|
-
resource: {
|
|
321
|
-
readOnly: true,
|
|
322
|
-
serializedName: "resource",
|
|
323
|
-
type: {
|
|
324
|
-
name: "String"
|
|
325
|
-
}
|
|
326
|
-
},
|
|
327
|
-
operation: {
|
|
170
|
+
id: {
|
|
171
|
+
serializedName: "id",
|
|
328
172
|
readOnly: true,
|
|
329
|
-
serializedName: "operation",
|
|
330
173
|
type: {
|
|
331
174
|
name: "String"
|
|
332
175
|
}
|
|
333
176
|
},
|
|
334
|
-
|
|
177
|
+
name: {
|
|
178
|
+
serializedName: "name",
|
|
335
179
|
readOnly: true,
|
|
336
|
-
serializedName: "description",
|
|
337
180
|
type: {
|
|
338
181
|
name: "String"
|
|
339
182
|
}
|
|
340
183
|
},
|
|
341
|
-
|
|
184
|
+
type: {
|
|
185
|
+
serializedName: "type",
|
|
342
186
|
readOnly: true,
|
|
343
|
-
serializedName: "origin",
|
|
344
187
|
type: {
|
|
345
188
|
name: "String"
|
|
346
189
|
}
|
|
@@ -349,44 +192,41 @@ export const Display: msRest.CompositeMapper = {
|
|
|
349
192
|
}
|
|
350
193
|
};
|
|
351
194
|
|
|
352
|
-
export const
|
|
353
|
-
serializedName: "Operation",
|
|
195
|
+
export const Tags: coreClient.CompositeMapper = {
|
|
354
196
|
type: {
|
|
355
197
|
name: "Composite",
|
|
356
|
-
className: "
|
|
198
|
+
className: "Tags",
|
|
357
199
|
modelProperties: {
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
serializedName: "name",
|
|
361
|
-
type: {
|
|
362
|
-
name: "String"
|
|
363
|
-
}
|
|
364
|
-
},
|
|
365
|
-
display: {
|
|
366
|
-
serializedName: "display",
|
|
200
|
+
tags: {
|
|
201
|
+
serializedName: "tags",
|
|
367
202
|
type: {
|
|
368
|
-
name: "
|
|
369
|
-
|
|
203
|
+
name: "Dictionary",
|
|
204
|
+
value: { type: { name: "String" } }
|
|
370
205
|
}
|
|
371
206
|
}
|
|
372
207
|
}
|
|
373
208
|
}
|
|
374
209
|
};
|
|
375
210
|
|
|
376
|
-
export const
|
|
377
|
-
serializedName: "ErrorResponse",
|
|
211
|
+
export const ProviderInstanceListResult: coreClient.CompositeMapper = {
|
|
378
212
|
type: {
|
|
379
213
|
name: "Composite",
|
|
380
|
-
className: "
|
|
214
|
+
className: "ProviderInstanceListResult",
|
|
381
215
|
modelProperties: {
|
|
382
|
-
|
|
383
|
-
serializedName: "
|
|
216
|
+
value: {
|
|
217
|
+
serializedName: "value",
|
|
384
218
|
type: {
|
|
385
|
-
name: "
|
|
219
|
+
name: "Sequence",
|
|
220
|
+
element: {
|
|
221
|
+
type: {
|
|
222
|
+
name: "Composite",
|
|
223
|
+
className: "ProviderInstance"
|
|
224
|
+
}
|
|
225
|
+
}
|
|
386
226
|
}
|
|
387
227
|
},
|
|
388
|
-
|
|
389
|
-
serializedName: "
|
|
228
|
+
nextLink: {
|
|
229
|
+
serializedName: "nextLink",
|
|
390
230
|
type: {
|
|
391
231
|
name: "String"
|
|
392
232
|
}
|
|
@@ -395,197 +235,128 @@ export const ErrorResponse: msRest.CompositeMapper = {
|
|
|
395
235
|
}
|
|
396
236
|
};
|
|
397
237
|
|
|
398
|
-
export const
|
|
399
|
-
serializedName: "Tags",
|
|
238
|
+
export const TrackedResource: coreClient.CompositeMapper = {
|
|
400
239
|
type: {
|
|
401
240
|
name: "Composite",
|
|
402
|
-
className: "
|
|
241
|
+
className: "TrackedResource",
|
|
403
242
|
modelProperties: {
|
|
243
|
+
...Resource.type.modelProperties,
|
|
404
244
|
tags: {
|
|
405
245
|
serializedName: "tags",
|
|
406
246
|
type: {
|
|
407
247
|
name: "Dictionary",
|
|
408
|
-
value: {
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
248
|
+
value: { type: { name: "String" } }
|
|
249
|
+
}
|
|
250
|
+
},
|
|
251
|
+
location: {
|
|
252
|
+
serializedName: "location",
|
|
253
|
+
required: true,
|
|
254
|
+
type: {
|
|
255
|
+
name: "String"
|
|
413
256
|
}
|
|
414
257
|
}
|
|
415
258
|
}
|
|
416
259
|
}
|
|
417
260
|
};
|
|
418
261
|
|
|
419
|
-
export const
|
|
420
|
-
serializedName: "MonitoringDetails",
|
|
262
|
+
export const ProxyResource: coreClient.CompositeMapper = {
|
|
421
263
|
type: {
|
|
422
264
|
name: "Composite",
|
|
423
|
-
className: "
|
|
265
|
+
className: "ProxyResource",
|
|
424
266
|
modelProperties: {
|
|
425
|
-
|
|
426
|
-
serializedName: "hanaSubnet",
|
|
427
|
-
type: {
|
|
428
|
-
name: "String"
|
|
429
|
-
}
|
|
430
|
-
},
|
|
431
|
-
hanaHostname: {
|
|
432
|
-
serializedName: "hanaHostname",
|
|
433
|
-
type: {
|
|
434
|
-
name: "String"
|
|
435
|
-
}
|
|
436
|
-
},
|
|
437
|
-
hanaDbName: {
|
|
438
|
-
serializedName: "hanaDbName",
|
|
439
|
-
type: {
|
|
440
|
-
name: "String"
|
|
441
|
-
}
|
|
442
|
-
},
|
|
443
|
-
hanaDbSqlPort: {
|
|
444
|
-
serializedName: "hanaDbSqlPort",
|
|
445
|
-
type: {
|
|
446
|
-
name: "Number"
|
|
447
|
-
}
|
|
448
|
-
},
|
|
449
|
-
hanaDbUsername: {
|
|
450
|
-
serializedName: "hanaDbUsername",
|
|
451
|
-
type: {
|
|
452
|
-
name: "String"
|
|
453
|
-
}
|
|
454
|
-
},
|
|
455
|
-
hanaDbPassword: {
|
|
456
|
-
serializedName: "hanaDbPassword",
|
|
457
|
-
type: {
|
|
458
|
-
name: "String"
|
|
459
|
-
}
|
|
460
|
-
}
|
|
267
|
+
...Resource.type.modelProperties
|
|
461
268
|
}
|
|
462
269
|
}
|
|
463
270
|
};
|
|
464
271
|
|
|
465
|
-
export const SapMonitor:
|
|
466
|
-
serializedName: "SapMonitor",
|
|
272
|
+
export const SapMonitor: coreClient.CompositeMapper = {
|
|
467
273
|
type: {
|
|
468
274
|
name: "Composite",
|
|
469
275
|
className: "SapMonitor",
|
|
470
276
|
modelProperties: {
|
|
471
|
-
...
|
|
472
|
-
|
|
473
|
-
serializedName: "properties.
|
|
277
|
+
...TrackedResource.type.modelProperties,
|
|
278
|
+
provisioningState: {
|
|
279
|
+
serializedName: "properties.provisioningState",
|
|
280
|
+
readOnly: true,
|
|
474
281
|
type: {
|
|
475
282
|
name: "String"
|
|
476
283
|
}
|
|
477
284
|
},
|
|
478
|
-
|
|
479
|
-
serializedName: "properties.
|
|
285
|
+
managedResourceGroupName: {
|
|
286
|
+
serializedName: "properties.managedResourceGroupName",
|
|
287
|
+
readOnly: true,
|
|
480
288
|
type: {
|
|
481
289
|
name: "String"
|
|
482
290
|
}
|
|
483
291
|
},
|
|
484
|
-
|
|
485
|
-
serializedName: "properties.
|
|
292
|
+
logAnalyticsWorkspaceArmId: {
|
|
293
|
+
serializedName: "properties.logAnalyticsWorkspaceArmId",
|
|
486
294
|
type: {
|
|
487
295
|
name: "String"
|
|
488
296
|
}
|
|
489
297
|
},
|
|
490
|
-
|
|
491
|
-
serializedName: "properties.
|
|
298
|
+
enableCustomerAnalytics: {
|
|
299
|
+
serializedName: "properties.enableCustomerAnalytics",
|
|
492
300
|
type: {
|
|
493
|
-
name: "
|
|
301
|
+
name: "Boolean"
|
|
494
302
|
}
|
|
495
303
|
},
|
|
496
|
-
|
|
497
|
-
serializedName: "properties.
|
|
304
|
+
logAnalyticsWorkspaceId: {
|
|
305
|
+
serializedName: "properties.logAnalyticsWorkspaceId",
|
|
498
306
|
type: {
|
|
499
307
|
name: "String"
|
|
500
308
|
}
|
|
501
309
|
},
|
|
502
|
-
|
|
503
|
-
serializedName: "properties.
|
|
310
|
+
logAnalyticsWorkspaceSharedKey: {
|
|
311
|
+
serializedName: "properties.logAnalyticsWorkspaceSharedKey",
|
|
504
312
|
type: {
|
|
505
313
|
name: "String"
|
|
506
314
|
}
|
|
507
315
|
},
|
|
508
|
-
|
|
316
|
+
sapMonitorCollectorVersion: {
|
|
317
|
+
serializedName: "properties.sapMonitorCollectorVersion",
|
|
509
318
|
readOnly: true,
|
|
510
|
-
serializedName: "properties.provisioningState",
|
|
511
319
|
type: {
|
|
512
320
|
name: "String"
|
|
513
321
|
}
|
|
514
|
-
}
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
};
|
|
518
|
-
|
|
519
|
-
export const OperationList: msRest.CompositeMapper = {
|
|
520
|
-
serializedName: "OperationList",
|
|
521
|
-
type: {
|
|
522
|
-
name: "Composite",
|
|
523
|
-
className: "OperationList",
|
|
524
|
-
modelProperties: {
|
|
525
|
-
value: {
|
|
526
|
-
serializedName: "",
|
|
322
|
+
},
|
|
323
|
+
monitorSubnet: {
|
|
324
|
+
serializedName: "properties.monitorSubnet",
|
|
527
325
|
type: {
|
|
528
|
-
name: "
|
|
529
|
-
element: {
|
|
530
|
-
type: {
|
|
531
|
-
name: "Composite",
|
|
532
|
-
className: "Operation"
|
|
533
|
-
}
|
|
534
|
-
}
|
|
326
|
+
name: "String"
|
|
535
327
|
}
|
|
536
328
|
}
|
|
537
329
|
}
|
|
538
330
|
}
|
|
539
331
|
};
|
|
540
332
|
|
|
541
|
-
export const
|
|
542
|
-
serializedName: "HanaInstancesListResult",
|
|
333
|
+
export const ProviderInstance: coreClient.CompositeMapper = {
|
|
543
334
|
type: {
|
|
544
335
|
name: "Composite",
|
|
545
|
-
className: "
|
|
336
|
+
className: "ProviderInstance",
|
|
546
337
|
modelProperties: {
|
|
547
|
-
|
|
548
|
-
|
|
338
|
+
...ProxyResource.type.modelProperties,
|
|
339
|
+
typePropertiesType: {
|
|
340
|
+
serializedName: "properties.type",
|
|
549
341
|
type: {
|
|
550
|
-
name: "
|
|
551
|
-
element: {
|
|
552
|
-
type: {
|
|
553
|
-
name: "Composite",
|
|
554
|
-
className: "HanaInstance"
|
|
555
|
-
}
|
|
556
|
-
}
|
|
342
|
+
name: "String"
|
|
557
343
|
}
|
|
558
344
|
},
|
|
559
|
-
|
|
560
|
-
serializedName: "
|
|
345
|
+
properties: {
|
|
346
|
+
serializedName: "properties.properties",
|
|
561
347
|
type: {
|
|
562
348
|
name: "String"
|
|
563
349
|
}
|
|
564
|
-
}
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
};
|
|
568
|
-
|
|
569
|
-
export const SapMonitorListResult: msRest.CompositeMapper = {
|
|
570
|
-
serializedName: "SapMonitorListResult",
|
|
571
|
-
type: {
|
|
572
|
-
name: "Composite",
|
|
573
|
-
className: "SapMonitorListResult",
|
|
574
|
-
modelProperties: {
|
|
575
|
-
value: {
|
|
576
|
-
serializedName: "",
|
|
350
|
+
},
|
|
351
|
+
metadata: {
|
|
352
|
+
serializedName: "properties.metadata",
|
|
577
353
|
type: {
|
|
578
|
-
name: "
|
|
579
|
-
element: {
|
|
580
|
-
type: {
|
|
581
|
-
name: "Composite",
|
|
582
|
-
className: "SapMonitor"
|
|
583
|
-
}
|
|
584
|
-
}
|
|
354
|
+
name: "String"
|
|
585
355
|
}
|
|
586
356
|
},
|
|
587
|
-
|
|
588
|
-
serializedName: "
|
|
357
|
+
provisioningState: {
|
|
358
|
+
serializedName: "properties.provisioningState",
|
|
359
|
+
readOnly: true,
|
|
589
360
|
type: {
|
|
590
361
|
name: "String"
|
|
591
362
|
}
|