@azure/arm-changeanalysis 1.1.1 → 2.0.0

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 (132) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/LICENSE +21 -0
  3. package/README.md +69 -81
  4. package/dist/index.js +1099 -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/azureChangeAnalysisManagementClient.d.ts +20 -0
  9. package/dist-esm/src/azureChangeAnalysisManagementClient.d.ts.map +1 -0
  10. package/dist-esm/src/azureChangeAnalysisManagementClient.js +53 -0
  11. package/dist-esm/src/azureChangeAnalysisManagementClient.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/models/index.d.ts +240 -0
  17. package/dist-esm/src/models/index.d.ts.map +1 -0
  18. package/dist-esm/src/models/index.js +22 -0
  19. package/dist-esm/src/models/index.js.map +1 -0
  20. package/dist-esm/src/models/mappers.d.ts +14 -0
  21. package/dist-esm/src/models/mappers.d.ts.map +1 -0
  22. package/{esm → dist-esm/src}/models/mappers.js +172 -228
  23. package/dist-esm/src/models/mappers.js.map +1 -0
  24. package/dist-esm/src/models/parameters.d.ts +12 -0
  25. package/dist-esm/src/models/parameters.d.ts.map +1 -0
  26. package/{esm → dist-esm/src}/models/parameters.js +51 -46
  27. package/dist-esm/src/models/parameters.js.map +1 -0
  28. package/dist-esm/src/operations/changes.d.ts +71 -0
  29. package/dist-esm/src/operations/changes.d.ts.map +1 -0
  30. package/dist-esm/src/operations/changes.js +269 -0
  31. package/dist-esm/src/operations/changes.js.map +1 -0
  32. package/{esm → dist-esm/src}/operations/index.d.ts +0 -0
  33. package/dist-esm/src/operations/index.d.ts.map +1 -0
  34. package/{esm → dist-esm/src}/operations/index.js +1 -2
  35. package/dist-esm/src/operations/index.js.map +1 -0
  36. package/dist-esm/src/operations/operations.d.ts +34 -0
  37. package/dist-esm/src/operations/operations.d.ts.map +1 -0
  38. package/dist-esm/src/operations/operations.js +122 -0
  39. package/dist-esm/src/operations/operations.js.map +1 -0
  40. package/dist-esm/src/operations/resourceChanges.d.ts +43 -0
  41. package/dist-esm/src/operations/resourceChanges.d.ts.map +1 -0
  42. package/dist-esm/src/operations/resourceChanges.js +141 -0
  43. package/dist-esm/src/operations/resourceChanges.js.map +1 -0
  44. package/dist-esm/src/operationsInterfaces/changes.d.ts +23 -0
  45. package/dist-esm/src/operationsInterfaces/changes.d.ts.map +1 -0
  46. package/{esm/models/index.js → dist-esm/src/operationsInterfaces/changes.js} +2 -1
  47. package/dist-esm/src/operationsInterfaces/changes.js.map +1 -0
  48. package/dist-esm/src/operationsInterfaces/index.d.ts +4 -0
  49. package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
  50. package/dist-esm/src/operationsInterfaces/index.js +11 -0
  51. package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
  52. package/dist-esm/src/operationsInterfaces/operations.d.ts +12 -0
  53. package/dist-esm/src/operationsInterfaces/operations.d.ts.map +1 -0
  54. package/dist-esm/src/operationsInterfaces/operations.js +9 -0
  55. package/dist-esm/src/operationsInterfaces/operations.js.map +1 -0
  56. package/dist-esm/src/operationsInterfaces/resourceChanges.d.ts +15 -0
  57. package/dist-esm/src/operationsInterfaces/resourceChanges.d.ts.map +1 -0
  58. package/dist-esm/src/operationsInterfaces/resourceChanges.js +9 -0
  59. package/dist-esm/src/operationsInterfaces/resourceChanges.js.map +1 -0
  60. package/dist-esm/test/sampleTest.d.ts +2 -0
  61. package/dist-esm/test/sampleTest.d.ts.map +1 -0
  62. package/dist-esm/test/sampleTest.js +40 -0
  63. package/dist-esm/test/sampleTest.js.map +1 -0
  64. package/package.json +63 -32
  65. package/review/arm-changeanalysis.api.md +230 -0
  66. package/rollup.config.js +181 -30
  67. package/src/azureChangeAnalysisManagementClient.ts +64 -36
  68. package/src/index.ts +12 -0
  69. package/src/models/index.ts +191 -455
  70. package/src/models/mappers.ts +175 -240
  71. package/src/models/parameters.ts +65 -47
  72. package/src/operations/changes.ts +267 -173
  73. package/src/operations/index.ts +1 -2
  74. package/src/operations/operations.ts +89 -79
  75. package/src/operations/resourceChanges.ts +126 -95
  76. package/src/operationsInterfaces/changes.ts +45 -0
  77. package/src/{models/operationsMappers.ts → operationsInterfaces/index.ts} +3 -8
  78. package/src/operationsInterfaces/operations.ts +26 -0
  79. package/src/operationsInterfaces/resourceChanges.ts +29 -0
  80. package/tsconfig.json +3 -3
  81. package/types/arm-changeanalysis.d.ts +337 -0
  82. package/types/tsdoc-metadata.json +11 -0
  83. package/dist/arm-changeanalysis.js +0 -1107
  84. package/dist/arm-changeanalysis.js.map +0 -1
  85. package/dist/arm-changeanalysis.min.js +0 -1
  86. package/dist/arm-changeanalysis.min.js.map +0 -1
  87. package/esm/azureChangeAnalysisManagementClient.d.ts +0 -26
  88. package/esm/azureChangeAnalysisManagementClient.d.ts.map +0 -1
  89. package/esm/azureChangeAnalysisManagementClient.js +0 -39
  90. package/esm/azureChangeAnalysisManagementClient.js.map +0 -1
  91. package/esm/azureChangeAnalysisManagementClientContext.d.ts +0 -22
  92. package/esm/azureChangeAnalysisManagementClientContext.d.ts.map +0 -1
  93. package/esm/azureChangeAnalysisManagementClientContext.js +0 -60
  94. package/esm/azureChangeAnalysisManagementClientContext.js.map +0 -1
  95. package/esm/models/changesMappers.d.ts +0 -2
  96. package/esm/models/changesMappers.d.ts.map +0 -1
  97. package/esm/models/changesMappers.js +0 -9
  98. package/esm/models/changesMappers.js.map +0 -1
  99. package/esm/models/index.d.ts +0 -505
  100. package/esm/models/index.d.ts.map +0 -1
  101. package/esm/models/index.js.map +0 -1
  102. package/esm/models/mappers.d.ts +0 -18
  103. package/esm/models/mappers.d.ts.map +0 -1
  104. package/esm/models/mappers.js.map +0 -1
  105. package/esm/models/operationsMappers.d.ts +0 -2
  106. package/esm/models/operationsMappers.d.ts.map +0 -1
  107. package/esm/models/operationsMappers.js +0 -9
  108. package/esm/models/operationsMappers.js.map +0 -1
  109. package/esm/models/parameters.d.ts +0 -11
  110. package/esm/models/parameters.d.ts.map +0 -1
  111. package/esm/models/parameters.js.map +0 -1
  112. package/esm/models/resourceChangesMappers.d.ts +0 -2
  113. package/esm/models/resourceChangesMappers.d.ts.map +0 -1
  114. package/esm/models/resourceChangesMappers.js +0 -9
  115. package/esm/models/resourceChangesMappers.js.map +0 -1
  116. package/esm/operations/changes.d.ts +0 -110
  117. package/esm/operations/changes.d.ts.map +0 -1
  118. package/esm/operations/changes.js +0 -160
  119. package/esm/operations/changes.js.map +0 -1
  120. package/esm/operations/index.d.ts.map +0 -1
  121. package/esm/operations/index.js.map +0 -1
  122. package/esm/operations/operations.d.ts +0 -48
  123. package/esm/operations/operations.d.ts.map +0 -1
  124. package/esm/operations/operations.js +0 -81
  125. package/esm/operations/operations.js.map +0 -1
  126. package/esm/operations/resourceChanges.d.ts +0 -63
  127. package/esm/operations/resourceChanges.d.ts.map +0 -1
  128. package/esm/operations/resourceChanges.js +0 -93
  129. package/esm/operations/resourceChanges.js.map +0 -1
  130. package/src/azureChangeAnalysisManagementClientContext.ts +0 -67
  131. package/src/models/changesMappers.ts +0 -22
  132. package/src/models/resourceChangesMappers.ts +0 -22
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/models/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AA2JH,mEAAmE;AACnE,MAAM,CAAN,IAAY,eAIX;AAJD,WAAY,eAAe;IACzB,8BAAW,CAAA;IACX,oCAAiB,CAAA;IACjB,oCAAiB,CAAA;AACnB,CAAC,EAJW,eAAe,KAAf,eAAe,QAI1B;AAaD,8DAA8D;AAC9D,MAAM,CAAN,IAAY,UAIX;AAJD,WAAY,UAAU;IACpB,6BAAe,CAAA;IACf,+BAAiB,CAAA;IACjB,qCAAuB,CAAA;AACzB,CAAC,EAJW,UAAU,KAAV,UAAU,QAIrB"}
@@ -0,0 +1,14 @@
1
+ import * as coreClient from "@azure/core-client";
2
+ export declare const ResourceProviderOperationList: coreClient.CompositeMapper;
3
+ export declare const ResourceProviderOperationDefinition: coreClient.CompositeMapper;
4
+ export declare const ResourceProviderOperationDisplay: coreClient.CompositeMapper;
5
+ export declare const ErrorResponse: coreClient.CompositeMapper;
6
+ export declare const ErrorDetail: coreClient.CompositeMapper;
7
+ export declare const ErrorAdditionalInfo: coreClient.CompositeMapper;
8
+ export declare const ChangeList: coreClient.CompositeMapper;
9
+ export declare const ChangeProperties: coreClient.CompositeMapper;
10
+ export declare const PropertyChange: coreClient.CompositeMapper;
11
+ export declare const Resource: coreClient.CompositeMapper;
12
+ export declare const ProxyResource: coreClient.CompositeMapper;
13
+ export declare const Change: coreClient.CompositeMapper;
14
+ //# sourceMappingURL=mappers.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"mappers.d.ts","sourceRoot":"","sources":["../../../src/models/mappers.ts"],"names":[],"mappings":"AAQA,OAAO,KAAK,UAAU,MAAM,oBAAoB,CAAC;AAEjD,eAAO,MAAM,6BAA6B,EAAE,UAAU,CAAC,eAyBtD,CAAC;AAEF,eAAO,MAAM,mCAAmC,EAAE,UAAU,CAAC,eAoB5D,CAAC;AAEF,eAAO,MAAM,gCAAgC,EAAE,UAAU,CAAC,eA+BzD,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,UAAU,CAAC,eActC,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,UAAU,CAAC,eAsDpC,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,UAAU,CAAC,eAsB5C,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,UAAU,CAAC,eAyBnC,CAAC;AAEF,eAAO,MAAM,gBAAgB,EAAE,UAAU,CAAC,eAgDzC,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,UAAU,CAAC,eA8DvC,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,UAAU,CAAC,eA4BjC,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,UAAU,CAAC,eAQtC,CAAC;AAEF,eAAO,MAAM,MAAM,EAAE,UAAU,CAAC,eAe/B,CAAC"}
@@ -5,12 +5,54 @@
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
- import { __assign } from "tslib";
9
- import { CloudErrorMapper, BaseResourceMapper } from "@azure/ms-rest-azure-js";
10
- export var CloudError = CloudErrorMapper;
11
- export var BaseResource = BaseResourceMapper;
12
- export var ResourceProviderOperationDisplay = {
13
- serializedName: "ResourceProviderOperationDisplay",
8
+ export const ResourceProviderOperationList = {
9
+ type: {
10
+ name: "Composite",
11
+ className: "ResourceProviderOperationList",
12
+ modelProperties: {
13
+ value: {
14
+ serializedName: "value",
15
+ type: {
16
+ name: "Sequence",
17
+ element: {
18
+ type: {
19
+ name: "Composite",
20
+ className: "ResourceProviderOperationDefinition"
21
+ }
22
+ }
23
+ }
24
+ },
25
+ nextLink: {
26
+ serializedName: "nextLink",
27
+ type: {
28
+ name: "String"
29
+ }
30
+ }
31
+ }
32
+ }
33
+ };
34
+ export const ResourceProviderOperationDefinition = {
35
+ type: {
36
+ name: "Composite",
37
+ className: "ResourceProviderOperationDefinition",
38
+ modelProperties: {
39
+ name: {
40
+ serializedName: "name",
41
+ type: {
42
+ name: "String"
43
+ }
44
+ },
45
+ display: {
46
+ serializedName: "display",
47
+ type: {
48
+ name: "Composite",
49
+ className: "ResourceProviderOperationDisplay"
50
+ }
51
+ }
52
+ }
53
+ }
54
+ };
55
+ export const ResourceProviderOperationDisplay = {
14
56
  type: {
15
57
  name: "Composite",
16
58
  className: "ResourceProviderOperationDisplay",
@@ -42,97 +84,126 @@ export var ResourceProviderOperationDisplay = {
42
84
  }
43
85
  }
44
86
  };
45
- export var ResourceProviderOperationDefinition = {
46
- serializedName: "ResourceProviderOperationDefinition",
87
+ export const ErrorResponse = {
47
88
  type: {
48
89
  name: "Composite",
49
- className: "ResourceProviderOperationDefinition",
90
+ className: "ErrorResponse",
50
91
  modelProperties: {
51
- name: {
52
- serializedName: "name",
53
- type: {
54
- name: "String"
55
- }
56
- },
57
- display: {
58
- serializedName: "display",
92
+ error: {
93
+ serializedName: "error",
59
94
  type: {
60
95
  name: "Composite",
61
- className: "ResourceProviderOperationDisplay"
96
+ className: "ErrorDetail"
62
97
  }
63
98
  }
64
99
  }
65
100
  }
66
101
  };
67
- export var PropertyChange = {
68
- serializedName: "PropertyChange",
102
+ export const ErrorDetail = {
69
103
  type: {
70
104
  name: "Composite",
71
- className: "PropertyChange",
105
+ className: "ErrorDetail",
72
106
  modelProperties: {
73
- changeType: {
74
- serializedName: "changeType",
107
+ code: {
108
+ serializedName: "code",
109
+ readOnly: true,
75
110
  type: {
76
111
  name: "String"
77
112
  }
78
113
  },
79
- changeCategory: {
80
- serializedName: "changeCategory",
114
+ message: {
115
+ serializedName: "message",
116
+ readOnly: true,
81
117
  type: {
82
- name: "Enum",
83
- allowedValues: [
84
- "User",
85
- "System"
86
- ]
118
+ name: "String"
87
119
  }
88
120
  },
89
- jsonPath: {
90
- serializedName: "jsonPath",
121
+ target: {
122
+ serializedName: "target",
123
+ readOnly: true,
91
124
  type: {
92
125
  name: "String"
93
126
  }
94
127
  },
95
- displayName: {
96
- serializedName: "displayName",
128
+ details: {
129
+ serializedName: "details",
130
+ readOnly: true,
97
131
  type: {
98
- name: "String"
132
+ name: "Sequence",
133
+ element: {
134
+ type: {
135
+ name: "Composite",
136
+ className: "ErrorDetail"
137
+ }
138
+ }
99
139
  }
100
140
  },
101
- level: {
102
- serializedName: "level",
141
+ additionalInfo: {
142
+ serializedName: "additionalInfo",
143
+ readOnly: true,
103
144
  type: {
104
- name: "String"
145
+ name: "Sequence",
146
+ element: {
147
+ type: {
148
+ name: "Composite",
149
+ className: "ErrorAdditionalInfo"
150
+ }
151
+ }
105
152
  }
106
- },
107
- description: {
108
- serializedName: "description",
153
+ }
154
+ }
155
+ }
156
+ };
157
+ export const ErrorAdditionalInfo = {
158
+ type: {
159
+ name: "Composite",
160
+ className: "ErrorAdditionalInfo",
161
+ modelProperties: {
162
+ type: {
163
+ serializedName: "type",
164
+ readOnly: true,
109
165
  type: {
110
166
  name: "String"
111
167
  }
112
168
  },
113
- oldValue: {
114
- serializedName: "oldValue",
169
+ info: {
170
+ serializedName: "info",
171
+ readOnly: true,
115
172
  type: {
116
- name: "String"
173
+ name: "Dictionary",
174
+ value: { type: { name: "any" } }
117
175
  }
118
- },
119
- newValue: {
120
- serializedName: "newValue",
176
+ }
177
+ }
178
+ }
179
+ };
180
+ export const ChangeList = {
181
+ type: {
182
+ name: "Composite",
183
+ className: "ChangeList",
184
+ modelProperties: {
185
+ value: {
186
+ serializedName: "value",
121
187
  type: {
122
- name: "String"
188
+ name: "Sequence",
189
+ element: {
190
+ type: {
191
+ name: "Composite",
192
+ className: "Change"
193
+ }
194
+ }
123
195
  }
124
196
  },
125
- isDataMasked: {
126
- serializedName: "isDataMasked",
197
+ nextLink: {
198
+ serializedName: "nextLink",
127
199
  type: {
128
- name: "Boolean"
200
+ name: "String"
129
201
  }
130
202
  }
131
203
  }
132
204
  }
133
205
  };
134
- export var ChangeProperties = {
135
- serializedName: "ChangeProperties",
206
+ export const ChangeProperties = {
136
207
  type: {
137
208
  name: "Composite",
138
209
  className: "ChangeProperties",
@@ -181,243 +252,116 @@ export var ChangeProperties = {
181
252
  }
182
253
  }
183
254
  };
184
- export var Resource = {
185
- serializedName: "Resource",
255
+ export const PropertyChange = {
186
256
  type: {
187
257
  name: "Composite",
188
- className: "Resource",
258
+ className: "PropertyChange",
189
259
  modelProperties: {
190
- id: {
191
- readOnly: true,
192
- serializedName: "id",
260
+ changeType: {
261
+ serializedName: "changeType",
193
262
  type: {
194
263
  name: "String"
195
264
  }
196
265
  },
197
- name: {
198
- readOnly: true,
199
- serializedName: "name",
266
+ changeCategory: {
267
+ serializedName: "changeCategory",
200
268
  type: {
201
- name: "String"
269
+ name: "Enum",
270
+ allowedValues: ["User", "System"]
202
271
  }
203
272
  },
204
- type: {
205
- readOnly: true,
206
- serializedName: "type",
273
+ jsonPath: {
274
+ serializedName: "jsonPath",
207
275
  type: {
208
276
  name: "String"
209
277
  }
210
- }
211
- }
212
- }
213
- };
214
- export var ProxyResource = {
215
- serializedName: "ProxyResource",
216
- type: {
217
- name: "Composite",
218
- className: "ProxyResource",
219
- modelProperties: __assign({}, Resource.type.modelProperties)
220
- }
221
- };
222
- export var Change = {
223
- serializedName: "Change",
224
- type: {
225
- name: "Composite",
226
- className: "Change",
227
- modelProperties: __assign(__assign({}, ProxyResource.type.modelProperties), { properties: {
228
- serializedName: "properties",
278
+ },
279
+ displayName: {
280
+ serializedName: "displayName",
229
281
  type: {
230
- name: "Composite",
231
- className: "ChangeProperties"
282
+ name: "String"
232
283
  }
233
- } })
234
- }
235
- };
236
- export var TrackedResource = {
237
- serializedName: "TrackedResource",
238
- type: {
239
- name: "Composite",
240
- className: "TrackedResource",
241
- modelProperties: __assign(__assign({}, Resource.type.modelProperties), { tags: {
242
- serializedName: "tags",
284
+ },
285
+ level: {
286
+ serializedName: "level",
243
287
  type: {
244
- name: "Dictionary",
245
- value: {
246
- type: {
247
- name: "String"
248
- }
249
- }
288
+ name: "String"
250
289
  }
251
- }, location: {
252
- required: true,
253
- serializedName: "location",
290
+ },
291
+ description: {
292
+ serializedName: "description",
254
293
  type: {
255
294
  name: "String"
256
295
  }
257
- } })
258
- }
259
- };
260
- export var AzureEntityResource = {
261
- serializedName: "AzureEntityResource",
262
- type: {
263
- name: "Composite",
264
- className: "AzureEntityResource",
265
- modelProperties: __assign(__assign({}, Resource.type.modelProperties), { etag: {
266
- readOnly: true,
267
- serializedName: "etag",
296
+ },
297
+ oldValue: {
298
+ serializedName: "oldValue",
268
299
  type: {
269
300
  name: "String"
270
301
  }
271
- } })
272
- }
273
- };
274
- export var ErrorAdditionalInfo = {
275
- serializedName: "ErrorAdditionalInfo",
276
- type: {
277
- name: "Composite",
278
- className: "ErrorAdditionalInfo",
279
- modelProperties: {
280
- type: {
281
- readOnly: true,
282
- serializedName: "type",
302
+ },
303
+ newValue: {
304
+ serializedName: "newValue",
283
305
  type: {
284
306
  name: "String"
285
307
  }
286
308
  },
287
- info: {
288
- readOnly: true,
289
- serializedName: "info",
309
+ isDataMasked: {
310
+ serializedName: "isDataMasked",
290
311
  type: {
291
- name: "Object"
312
+ name: "Boolean"
292
313
  }
293
314
  }
294
315
  }
295
316
  }
296
317
  };
297
- export var ErrorDetail = {
298
- serializedName: "ErrorDetail",
318
+ export const Resource = {
299
319
  type: {
300
320
  name: "Composite",
301
- className: "ErrorDetail",
321
+ className: "Resource",
302
322
  modelProperties: {
303
- code: {
323
+ id: {
324
+ serializedName: "id",
304
325
  readOnly: true,
305
- serializedName: "code",
306
326
  type: {
307
327
  name: "String"
308
328
  }
309
329
  },
310
- message: {
330
+ name: {
331
+ serializedName: "name",
311
332
  readOnly: true,
312
- serializedName: "message",
313
333
  type: {
314
334
  name: "String"
315
335
  }
316
336
  },
317
- target: {
337
+ type: {
338
+ serializedName: "type",
318
339
  readOnly: true,
319
- serializedName: "target",
320
340
  type: {
321
341
  name: "String"
322
342
  }
323
- },
324
- details: {
325
- readOnly: true,
326
- serializedName: "details",
327
- type: {
328
- name: "Sequence",
329
- element: {
330
- type: {
331
- name: "Composite",
332
- className: "ErrorDetail"
333
- }
334
- }
335
- }
336
- },
337
- additionalInfo: {
338
- readOnly: true,
339
- serializedName: "additionalInfo",
340
- type: {
341
- name: "Sequence",
342
- element: {
343
- type: {
344
- name: "Composite",
345
- className: "ErrorAdditionalInfo"
346
- }
347
- }
348
- }
349
- }
350
- }
351
- }
352
- };
353
- export var ErrorResponse = {
354
- serializedName: "ErrorResponse",
355
- type: {
356
- name: "Composite",
357
- className: "ErrorResponse",
358
- modelProperties: {
359
- error: {
360
- serializedName: "error",
361
- type: {
362
- name: "Composite",
363
- className: "ErrorDetail"
364
- }
365
343
  }
366
344
  }
367
345
  }
368
346
  };
369
- export var ResourceProviderOperationList = {
370
- serializedName: "ResourceProviderOperationList",
347
+ export const ProxyResource = {
371
348
  type: {
372
349
  name: "Composite",
373
- className: "ResourceProviderOperationList",
374
- modelProperties: {
375
- value: {
376
- serializedName: "",
377
- type: {
378
- name: "Sequence",
379
- element: {
380
- type: {
381
- name: "Composite",
382
- className: "ResourceProviderOperationDefinition"
383
- }
384
- }
385
- }
386
- },
387
- nextLink: {
388
- serializedName: "nextLink",
389
- type: {
390
- name: "String"
391
- }
392
- }
393
- }
350
+ className: "ProxyResource",
351
+ modelProperties: Object.assign({}, Resource.type.modelProperties)
394
352
  }
395
353
  };
396
- export var ChangeList = {
397
- serializedName: "ChangeList",
354
+ export const Change = {
398
355
  type: {
399
356
  name: "Composite",
400
- className: "ChangeList",
401
- modelProperties: {
402
- value: {
403
- serializedName: "",
404
- type: {
405
- name: "Sequence",
406
- element: {
407
- type: {
408
- name: "Composite",
409
- className: "Change"
410
- }
411
- }
412
- }
413
- },
414
- nextLink: {
415
- serializedName: "nextLink",
357
+ className: "Change",
358
+ modelProperties: Object.assign(Object.assign({}, ProxyResource.type.modelProperties), { properties: {
359
+ serializedName: "properties",
416
360
  type: {
417
- name: "String"
361
+ name: "Composite",
362
+ className: "ChangeProperties"
418
363
  }
419
- }
420
- }
364
+ } })
421
365
  }
422
366
  };
423
367
  //# sourceMappingURL=mappers.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"mappers.js","sourceRoot":"","sources":["../../../src/models/mappers.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,12 @@
1
+ import { OperationParameter, OperationURLParameter, OperationQueryParameter } from "@azure/core-client";
2
+ export declare const accept: OperationParameter;
3
+ export declare const $host: OperationURLParameter;
4
+ export declare const apiVersion: OperationQueryParameter;
5
+ export declare const skipToken: OperationQueryParameter;
6
+ export declare const nextLink: OperationURLParameter;
7
+ export declare const resourceId: OperationURLParameter;
8
+ export declare const startTime: OperationQueryParameter;
9
+ export declare const endTime: OperationQueryParameter;
10
+ export declare const subscriptionId: OperationURLParameter;
11
+ export declare const resourceGroupName: OperationURLParameter;
12
+ //# sourceMappingURL=parameters.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"parameters.d.ts","sourceRoot":"","sources":["../../../src/models/parameters.ts"],"names":[],"mappings":"AAQA,OAAO,EACL,kBAAkB,EAClB,qBAAqB,EACrB,uBAAuB,EACxB,MAAM,oBAAoB,CAAC;AAE5B,eAAO,MAAM,MAAM,EAAE,kBAUpB,CAAC;AAEF,eAAO,MAAM,KAAK,EAAE,qBAUnB,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,uBAUxB,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,uBAQvB,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,qBAUtB,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,qBASxB,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,uBASvB,CAAC;AAEF,eAAO,MAAM,OAAO,EAAE,uBASrB,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,qBAY5B,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,qBAa/B,CAAC"}