@azure/arm-deviceprovisioningservices 2.1.0 → 4.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 (147) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/LICENSE +21 -0
  3. package/LICENSE.txt +21 -21
  4. package/README.md +98 -96
  5. package/dist/index.js +3108 -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/index.d.ts +5 -0
  10. package/dist-esm/src/index.d.ts.map +1 -0
  11. package/dist-esm/src/index.js +12 -0
  12. package/dist-esm/src/index.js.map +1 -0
  13. package/dist-esm/src/iotDpsClient.d.ts +20 -0
  14. package/dist-esm/src/iotDpsClient.d.ts.map +1 -0
  15. package/dist-esm/src/iotDpsClient.js +53 -0
  16. package/dist-esm/src/iotDpsClient.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 +825 -0
  22. package/dist-esm/src/models/index.d.ts.map +1 -0
  23. package/dist-esm/src/models/index.js +72 -0
  24. package/dist-esm/src/models/index.js.map +1 -0
  25. package/dist-esm/src/models/mappers.d.ts +36 -0
  26. package/dist-esm/src/models/mappers.d.ts.map +1 -0
  27. package/{esm → dist-esm/src}/models/mappers.js +565 -322
  28. package/dist-esm/src/models/mappers.js.map +1 -0
  29. package/dist-esm/src/models/parameters.d.ts +34 -0
  30. package/dist-esm/src/models/parameters.d.ts.map +1 -0
  31. package/dist-esm/src/models/parameters.js +293 -0
  32. package/dist-esm/src/models/parameters.js.map +1 -0
  33. package/dist-esm/src/operations/dpsCertificate.d.ts +70 -0
  34. package/dist-esm/src/operations/dpsCertificate.d.ts.map +1 -0
  35. package/dist-esm/src/operations/dpsCertificate.js +289 -0
  36. package/dist-esm/src/operations/dpsCertificate.js.map +1 -0
  37. package/{esm → dist-esm/src}/operations/index.d.ts +0 -0
  38. package/dist-esm/src/operations/index.d.ts.map +1 -0
  39. package/{esm → dist-esm/src}/operations/index.js +3 -5
  40. package/dist-esm/src/operations/index.js.map +1 -0
  41. package/dist-esm/src/operations/iotDpsResource.d.ts +253 -0
  42. package/dist-esm/src/operations/iotDpsResource.d.ts.map +1 -0
  43. package/dist-esm/src/operations/iotDpsResource.js +1154 -0
  44. package/dist-esm/src/operations/iotDpsResource.js.map +1 -0
  45. package/dist-esm/src/operations/operations.d.ts +32 -0
  46. package/dist-esm/src/operations/operations.d.ts.map +1 -0
  47. package/dist-esm/src/operations/operations.js +120 -0
  48. package/dist-esm/src/operations/operations.js.map +1 -0
  49. package/dist-esm/src/operationsInterfaces/dpsCertificate.d.ts +62 -0
  50. package/dist-esm/src/operationsInterfaces/dpsCertificate.d.ts.map +1 -0
  51. package/dist-esm/src/operationsInterfaces/dpsCertificate.js +9 -0
  52. package/dist-esm/src/operationsInterfaces/dpsCertificate.js.map +1 -0
  53. package/dist-esm/src/operationsInterfaces/index.d.ts +4 -0
  54. package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
  55. package/dist-esm/src/operationsInterfaces/index.js +11 -0
  56. package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
  57. package/dist-esm/src/operationsInterfaces/iotDpsResource.d.ts +183 -0
  58. package/dist-esm/src/operationsInterfaces/iotDpsResource.d.ts.map +1 -0
  59. package/dist-esm/src/operationsInterfaces/iotDpsResource.js +9 -0
  60. package/dist-esm/src/operationsInterfaces/iotDpsResource.js.map +1 -0
  61. package/dist-esm/src/operationsInterfaces/operations.d.ts +11 -0
  62. package/dist-esm/src/operationsInterfaces/operations.d.ts.map +1 -0
  63. package/dist-esm/src/operationsInterfaces/operations.js +9 -0
  64. package/dist-esm/src/operationsInterfaces/operations.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 +70 -34
  70. package/review/arm-deviceprovisioningservices.api.md +690 -0
  71. package/rollup.config.js +184 -27
  72. package/src/index.ts +12 -0
  73. package/src/iotDpsClient.ts +87 -0
  74. package/src/lroImpl.ts +34 -0
  75. package/src/models/index.ts +946 -0
  76. package/{lib → src}/models/mappers.ts +576 -323
  77. package/src/models/parameters.ts +337 -0
  78. package/src/operations/dpsCertificate.ts +374 -0
  79. package/{lib → src}/operations/index.ts +3 -5
  80. package/src/operations/iotDpsResource.ts +1595 -0
  81. package/src/operations/operations.ts +137 -0
  82. package/src/operationsInterfaces/dpsCertificate.ts +118 -0
  83. package/src/operationsInterfaces/index.ts +11 -0
  84. package/src/operationsInterfaces/iotDpsResource.ts +351 -0
  85. package/src/operationsInterfaces/operations.ts +22 -0
  86. package/tsconfig.json +4 -4
  87. package/types/arm-deviceprovisioningservices.d.ts +1205 -0
  88. package/types/tsdoc-metadata.json +11 -0
  89. package/dist/arm-deviceprovisioningservices.js +0 -2251
  90. package/dist/arm-deviceprovisioningservices.js.map +0 -1
  91. package/dist/arm-deviceprovisioningservices.min.js +0 -1
  92. package/dist/arm-deviceprovisioningservices.min.js.map +0 -1
  93. package/esm/iotDpsClient.d.ts +0 -20
  94. package/esm/iotDpsClient.d.ts.map +0 -1
  95. package/esm/iotDpsClient.js +0 -35
  96. package/esm/iotDpsClient.js.map +0 -1
  97. package/esm/iotDpsClientContext.d.ts +0 -16
  98. package/esm/iotDpsClientContext.d.ts.map +0 -1
  99. package/esm/iotDpsClientContext.js +0 -56
  100. package/esm/iotDpsClientContext.js.map +0 -1
  101. package/esm/models/dpsCertificateMappers.d.ts +0 -2
  102. package/esm/models/dpsCertificateMappers.d.ts.map +0 -1
  103. package/esm/models/dpsCertificateMappers.js +0 -11
  104. package/esm/models/dpsCertificateMappers.js.map +0 -1
  105. package/esm/models/index.d.ts +0 -1273
  106. package/esm/models/index.d.ts.map +0 -1
  107. package/esm/models/index.js +0 -10
  108. package/esm/models/index.js.map +0 -1
  109. package/esm/models/iotDpsResourceMappers.d.ts +0 -2
  110. package/esm/models/iotDpsResourceMappers.d.ts.map +0 -1
  111. package/esm/models/iotDpsResourceMappers.js +0 -11
  112. package/esm/models/iotDpsResourceMappers.js.map +0 -1
  113. package/esm/models/mappers.d.ts +0 -30
  114. package/esm/models/mappers.d.ts.map +0 -1
  115. package/esm/models/mappers.js.map +0 -1
  116. package/esm/models/operationsMappers.d.ts +0 -2
  117. package/esm/models/operationsMappers.d.ts.map +0 -1
  118. package/esm/models/operationsMappers.js +0 -11
  119. package/esm/models/operationsMappers.js.map +0 -1
  120. package/esm/models/parameters.d.ts +0 -23
  121. package/esm/models/parameters.d.ts.map +0 -1
  122. package/esm/models/parameters.js +0 -243
  123. package/esm/models/parameters.js.map +0 -1
  124. package/esm/operations/dpsCertificate.d.ts +0 -188
  125. package/esm/operations/dpsCertificate.d.ts.map +0 -1
  126. package/esm/operations/dpsCertificate.js +0 -265
  127. package/esm/operations/dpsCertificate.js.map +0 -1
  128. package/esm/operations/index.d.ts.map +0 -1
  129. package/esm/operations/index.js.map +0 -1
  130. package/esm/operations/iotDpsResource.d.ts +0 -337
  131. package/esm/operations/iotDpsResource.d.ts.map +0 -1
  132. package/esm/operations/iotDpsResource.js +0 -560
  133. package/esm/operations/iotDpsResource.js.map +0 -1
  134. package/esm/operations/operations.d.ts +0 -46
  135. package/esm/operations/operations.d.ts.map +0 -1
  136. package/esm/operations/operations.js +0 -77
  137. package/esm/operations/operations.js.map +0 -1
  138. package/lib/iotDpsClient.ts +0 -46
  139. package/lib/iotDpsClientContext.ts +0 -62
  140. package/lib/models/dpsCertificateMappers.ts +0 -28
  141. package/lib/models/index.ts +0 -1342
  142. package/lib/models/iotDpsResourceMappers.ts +0 -35
  143. package/lib/models/operationsMappers.ts +0 -17
  144. package/lib/models/parameters.ts +0 -245
  145. package/lib/operations/dpsCertificate.ts +0 -478
  146. package/lib/operations/iotDpsResource.ts +0 -907
  147. package/lib/operations/operations.ts +0 -123
@@ -1,560 +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
- import * as tslib_1 from "tslib";
11
- import * as msRest from "@azure/ms-rest-js";
12
- import * as Mappers from "../models/iotDpsResourceMappers";
13
- import * as Parameters from "../models/parameters";
14
- /** Class representing a IotDpsResource. */
15
- var IotDpsResource = /** @class */ (function () {
16
- /**
17
- * Create a IotDpsResource.
18
- * @param {IotDpsClientContext} client Reference to the service client.
19
- */
20
- function IotDpsResource(client) {
21
- this.client = client;
22
- }
23
- IotDpsResource.prototype.get = function (provisioningServiceName, resourceGroupName, options, callback) {
24
- return this.client.sendOperationRequest({
25
- provisioningServiceName: provisioningServiceName,
26
- resourceGroupName: resourceGroupName,
27
- options: options
28
- }, getOperationSpec, callback);
29
- };
30
- /**
31
- * Create or update the metadata of the provisioning service. The usual pattern to modify a
32
- * property is to retrieve the provisioning service metadata and security metadata, and then
33
- * combine them with the modified values in a new body to update the provisioning service.
34
- * @summary Create or update the metadata of the provisioning service.
35
- * @param resourceGroupName Resource group identifier.
36
- * @param provisioningServiceName Name of provisioning service to create or update.
37
- * @param iotDpsDescription Description of the provisioning service to create or update.
38
- * @param [options] The optional parameters
39
- * @returns Promise<Models.IotDpsResourceCreateOrUpdateResponse>
40
- */
41
- IotDpsResource.prototype.createOrUpdate = function (resourceGroupName, provisioningServiceName, iotDpsDescription, options) {
42
- return this.beginCreateOrUpdate(resourceGroupName, provisioningServiceName, iotDpsDescription, options)
43
- .then(function (lroPoller) { return lroPoller.pollUntilFinished(); });
44
- };
45
- /**
46
- * Update an existing provisioning service's tags. to update other fields use the CreateOrUpdate
47
- * method
48
- * @summary Update an existing provisioning service's tags.
49
- * @param resourceGroupName Resource group identifier.
50
- * @param provisioningServiceName Name of provisioning service to create or update.
51
- * @param provisioningServiceTags Updated tag information to set into the provisioning service
52
- * instance.
53
- * @param [options] The optional parameters
54
- * @returns Promise<Models.IotDpsResourceUpdateResponse>
55
- */
56
- IotDpsResource.prototype.update = function (resourceGroupName, provisioningServiceName, provisioningServiceTags, options) {
57
- return this.beginUpdate(resourceGroupName, provisioningServiceName, provisioningServiceTags, options)
58
- .then(function (lroPoller) { return lroPoller.pollUntilFinished(); });
59
- };
60
- /**
61
- * Deletes the Provisioning Service.
62
- * @summary Delete the Provisioning Service
63
- * @param provisioningServiceName Name of provisioning service to delete.
64
- * @param resourceGroupName Resource group identifier.
65
- * @param [options] The optional parameters
66
- * @returns Promise<msRest.RestResponse>
67
- */
68
- IotDpsResource.prototype.deleteMethod = function (provisioningServiceName, resourceGroupName, options) {
69
- return this.beginDeleteMethod(provisioningServiceName, resourceGroupName, options)
70
- .then(function (lroPoller) { return lroPoller.pollUntilFinished(); });
71
- };
72
- IotDpsResource.prototype.listBySubscription = function (options, callback) {
73
- return this.client.sendOperationRequest({
74
- options: options
75
- }, listBySubscriptionOperationSpec, callback);
76
- };
77
- IotDpsResource.prototype.listByResourceGroup = function (resourceGroupName, options, callback) {
78
- return this.client.sendOperationRequest({
79
- resourceGroupName: resourceGroupName,
80
- options: options
81
- }, listByResourceGroupOperationSpec, callback);
82
- };
83
- IotDpsResource.prototype.getOperationResult = function (operationId, resourceGroupName, provisioningServiceName, asyncinfo, options, callback) {
84
- return this.client.sendOperationRequest({
85
- operationId: operationId,
86
- resourceGroupName: resourceGroupName,
87
- provisioningServiceName: provisioningServiceName,
88
- asyncinfo: asyncinfo,
89
- options: options
90
- }, getOperationResultOperationSpec, callback);
91
- };
92
- IotDpsResource.prototype.listValidSkus = function (provisioningServiceName, resourceGroupName, options, callback) {
93
- return this.client.sendOperationRequest({
94
- provisioningServiceName: provisioningServiceName,
95
- resourceGroupName: resourceGroupName,
96
- options: options
97
- }, listValidSkusOperationSpec, callback);
98
- };
99
- IotDpsResource.prototype.checkProvisioningServiceNameAvailability = function (argumentsParameter, options, callback) {
100
- return this.client.sendOperationRequest({
101
- argumentsParameter: argumentsParameter,
102
- options: options
103
- }, checkProvisioningServiceNameAvailabilityOperationSpec, callback);
104
- };
105
- IotDpsResource.prototype.listKeys = function (provisioningServiceName, resourceGroupName, options, callback) {
106
- return this.client.sendOperationRequest({
107
- provisioningServiceName: provisioningServiceName,
108
- resourceGroupName: resourceGroupName,
109
- options: options
110
- }, listKeysOperationSpec, callback);
111
- };
112
- IotDpsResource.prototype.listKeysForKeyName = function (provisioningServiceName, keyName, resourceGroupName, options, callback) {
113
- return this.client.sendOperationRequest({
114
- provisioningServiceName: provisioningServiceName,
115
- keyName: keyName,
116
- resourceGroupName: resourceGroupName,
117
- options: options
118
- }, listKeysForKeyNameOperationSpec, callback);
119
- };
120
- /**
121
- * Create or update the metadata of the provisioning service. The usual pattern to modify a
122
- * property is to retrieve the provisioning service metadata and security metadata, and then
123
- * combine them with the modified values in a new body to update the provisioning service.
124
- * @summary Create or update the metadata of the provisioning service.
125
- * @param resourceGroupName Resource group identifier.
126
- * @param provisioningServiceName Name of provisioning service to create or update.
127
- * @param iotDpsDescription Description of the provisioning service to create or update.
128
- * @param [options] The optional parameters
129
- * @returns Promise<msRestAzure.LROPoller>
130
- */
131
- IotDpsResource.prototype.beginCreateOrUpdate = function (resourceGroupName, provisioningServiceName, iotDpsDescription, options) {
132
- return this.client.sendLRORequest({
133
- resourceGroupName: resourceGroupName,
134
- provisioningServiceName: provisioningServiceName,
135
- iotDpsDescription: iotDpsDescription,
136
- options: options
137
- }, beginCreateOrUpdateOperationSpec, options);
138
- };
139
- /**
140
- * Update an existing provisioning service's tags. to update other fields use the CreateOrUpdate
141
- * method
142
- * @summary Update an existing provisioning service's tags.
143
- * @param resourceGroupName Resource group identifier.
144
- * @param provisioningServiceName Name of provisioning service to create or update.
145
- * @param provisioningServiceTags Updated tag information to set into the provisioning service
146
- * instance.
147
- * @param [options] The optional parameters
148
- * @returns Promise<msRestAzure.LROPoller>
149
- */
150
- IotDpsResource.prototype.beginUpdate = function (resourceGroupName, provisioningServiceName, provisioningServiceTags, options) {
151
- return this.client.sendLRORequest({
152
- resourceGroupName: resourceGroupName,
153
- provisioningServiceName: provisioningServiceName,
154
- provisioningServiceTags: provisioningServiceTags,
155
- options: options
156
- }, beginUpdateOperationSpec, options);
157
- };
158
- /**
159
- * Deletes the Provisioning Service.
160
- * @summary Delete the Provisioning Service
161
- * @param provisioningServiceName Name of provisioning service to delete.
162
- * @param resourceGroupName Resource group identifier.
163
- * @param [options] The optional parameters
164
- * @returns Promise<msRestAzure.LROPoller>
165
- */
166
- IotDpsResource.prototype.beginDeleteMethod = function (provisioningServiceName, resourceGroupName, options) {
167
- return this.client.sendLRORequest({
168
- provisioningServiceName: provisioningServiceName,
169
- resourceGroupName: resourceGroupName,
170
- options: options
171
- }, beginDeleteMethodOperationSpec, options);
172
- };
173
- IotDpsResource.prototype.listBySubscriptionNext = function (nextPageLink, options, callback) {
174
- return this.client.sendOperationRequest({
175
- nextPageLink: nextPageLink,
176
- options: options
177
- }, listBySubscriptionNextOperationSpec, callback);
178
- };
179
- IotDpsResource.prototype.listByResourceGroupNext = function (nextPageLink, options, callback) {
180
- return this.client.sendOperationRequest({
181
- nextPageLink: nextPageLink,
182
- options: options
183
- }, listByResourceGroupNextOperationSpec, callback);
184
- };
185
- IotDpsResource.prototype.listValidSkusNext = function (nextPageLink, options, callback) {
186
- return this.client.sendOperationRequest({
187
- nextPageLink: nextPageLink,
188
- options: options
189
- }, listValidSkusNextOperationSpec, callback);
190
- };
191
- IotDpsResource.prototype.listKeysNext = function (nextPageLink, options, callback) {
192
- return this.client.sendOperationRequest({
193
- nextPageLink: nextPageLink,
194
- options: options
195
- }, listKeysNextOperationSpec, callback);
196
- };
197
- return IotDpsResource;
198
- }());
199
- export { IotDpsResource };
200
- // Operation Specifications
201
- var serializer = new msRest.Serializer(Mappers);
202
- var getOperationSpec = {
203
- httpMethod: "GET",
204
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Devices/provisioningServices/{provisioningServiceName}",
205
- urlParameters: [
206
- Parameters.provisioningServiceName,
207
- Parameters.subscriptionId,
208
- Parameters.resourceGroupName
209
- ],
210
- queryParameters: [
211
- Parameters.apiVersion
212
- ],
213
- headerParameters: [
214
- Parameters.acceptLanguage
215
- ],
216
- responses: {
217
- 200: {
218
- bodyMapper: Mappers.ProvisioningServiceDescription
219
- },
220
- default: {
221
- bodyMapper: Mappers.ErrorDetails
222
- }
223
- },
224
- serializer: serializer
225
- };
226
- var listBySubscriptionOperationSpec = {
227
- httpMethod: "GET",
228
- path: "subscriptions/{subscriptionId}/providers/Microsoft.Devices/provisioningServices",
229
- urlParameters: [
230
- Parameters.subscriptionId
231
- ],
232
- queryParameters: [
233
- Parameters.apiVersion
234
- ],
235
- headerParameters: [
236
- Parameters.acceptLanguage
237
- ],
238
- responses: {
239
- 200: {
240
- bodyMapper: Mappers.ProvisioningServiceDescriptionListResult
241
- },
242
- default: {
243
- bodyMapper: Mappers.ErrorDetails
244
- }
245
- },
246
- serializer: serializer
247
- };
248
- var listByResourceGroupOperationSpec = {
249
- httpMethod: "GET",
250
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Devices/provisioningServices",
251
- urlParameters: [
252
- Parameters.subscriptionId,
253
- Parameters.resourceGroupName
254
- ],
255
- queryParameters: [
256
- Parameters.apiVersion
257
- ],
258
- headerParameters: [
259
- Parameters.acceptLanguage
260
- ],
261
- responses: {
262
- 200: {
263
- bodyMapper: Mappers.ProvisioningServiceDescriptionListResult
264
- },
265
- default: {
266
- bodyMapper: Mappers.ErrorDetails
267
- }
268
- },
269
- serializer: serializer
270
- };
271
- var getOperationResultOperationSpec = {
272
- httpMethod: "GET",
273
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Devices/provisioningServices/{provisioningServiceName}/operationresults/{operationId}",
274
- urlParameters: [
275
- Parameters.operationId,
276
- Parameters.subscriptionId,
277
- Parameters.resourceGroupName,
278
- Parameters.provisioningServiceName
279
- ],
280
- queryParameters: [
281
- Parameters.asyncinfo,
282
- Parameters.apiVersion
283
- ],
284
- headerParameters: [
285
- Parameters.acceptLanguage
286
- ],
287
- responses: {
288
- 200: {
289
- bodyMapper: Mappers.AsyncOperationResult
290
- },
291
- default: {
292
- bodyMapper: Mappers.ErrorDetails
293
- }
294
- },
295
- serializer: serializer
296
- };
297
- var listValidSkusOperationSpec = {
298
- httpMethod: "GET",
299
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Devices/provisioningServices/{provisioningServiceName}/skus",
300
- urlParameters: [
301
- Parameters.provisioningServiceName,
302
- Parameters.subscriptionId,
303
- Parameters.resourceGroupName
304
- ],
305
- queryParameters: [
306
- Parameters.apiVersion
307
- ],
308
- headerParameters: [
309
- Parameters.acceptLanguage
310
- ],
311
- responses: {
312
- 200: {
313
- bodyMapper: Mappers.IotDpsSkuDefinitionListResult
314
- },
315
- default: {
316
- bodyMapper: Mappers.ErrorDetails
317
- }
318
- },
319
- serializer: serializer
320
- };
321
- var checkProvisioningServiceNameAvailabilityOperationSpec = {
322
- httpMethod: "POST",
323
- path: "subscriptions/{subscriptionId}/providers/Microsoft.Devices/checkProvisioningServiceNameAvailability",
324
- urlParameters: [
325
- Parameters.subscriptionId
326
- ],
327
- queryParameters: [
328
- Parameters.apiVersion
329
- ],
330
- headerParameters: [
331
- Parameters.acceptLanguage
332
- ],
333
- requestBody: {
334
- parameterPath: "argumentsParameter",
335
- mapper: tslib_1.__assign({}, Mappers.OperationInputs, { required: true })
336
- },
337
- responses: {
338
- 200: {
339
- bodyMapper: Mappers.NameAvailabilityInfo
340
- },
341
- default: {
342
- bodyMapper: Mappers.ErrorDetails
343
- }
344
- },
345
- serializer: serializer
346
- };
347
- var listKeysOperationSpec = {
348
- httpMethod: "POST",
349
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Devices/provisioningServices/{provisioningServiceName}/listkeys",
350
- urlParameters: [
351
- Parameters.provisioningServiceName,
352
- Parameters.subscriptionId,
353
- Parameters.resourceGroupName
354
- ],
355
- queryParameters: [
356
- Parameters.apiVersion
357
- ],
358
- headerParameters: [
359
- Parameters.acceptLanguage
360
- ],
361
- responses: {
362
- 200: {
363
- bodyMapper: Mappers.SharedAccessSignatureAuthorizationRuleListResult
364
- },
365
- default: {
366
- bodyMapper: Mappers.ErrorDetails
367
- }
368
- },
369
- serializer: serializer
370
- };
371
- var listKeysForKeyNameOperationSpec = {
372
- httpMethod: "POST",
373
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Devices/provisioningServices/{provisioningServiceName}/keys/{keyName}/listkeys",
374
- urlParameters: [
375
- Parameters.provisioningServiceName,
376
- Parameters.keyName,
377
- Parameters.subscriptionId,
378
- Parameters.resourceGroupName
379
- ],
380
- queryParameters: [
381
- Parameters.apiVersion
382
- ],
383
- headerParameters: [
384
- Parameters.acceptLanguage
385
- ],
386
- responses: {
387
- 200: {
388
- bodyMapper: Mappers.SharedAccessSignatureAuthorizationRuleAccessRightsDescription
389
- },
390
- default: {
391
- bodyMapper: Mappers.ErrorDetails
392
- }
393
- },
394
- serializer: serializer
395
- };
396
- var beginCreateOrUpdateOperationSpec = {
397
- httpMethod: "PUT",
398
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Devices/provisioningServices/{provisioningServiceName}",
399
- urlParameters: [
400
- Parameters.subscriptionId,
401
- Parameters.resourceGroupName,
402
- Parameters.provisioningServiceName
403
- ],
404
- queryParameters: [
405
- Parameters.apiVersion
406
- ],
407
- headerParameters: [
408
- Parameters.acceptLanguage
409
- ],
410
- requestBody: {
411
- parameterPath: "iotDpsDescription",
412
- mapper: tslib_1.__assign({}, Mappers.ProvisioningServiceDescription, { required: true })
413
- },
414
- responses: {
415
- 200: {
416
- bodyMapper: Mappers.ProvisioningServiceDescription
417
- },
418
- 201: {
419
- bodyMapper: Mappers.ProvisioningServiceDescription
420
- },
421
- default: {
422
- bodyMapper: Mappers.ErrorDetails
423
- }
424
- },
425
- serializer: serializer
426
- };
427
- var beginUpdateOperationSpec = {
428
- httpMethod: "PATCH",
429
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Devices/provisioningServices/{provisioningServiceName}",
430
- urlParameters: [
431
- Parameters.subscriptionId,
432
- Parameters.resourceGroupName,
433
- Parameters.provisioningServiceName
434
- ],
435
- queryParameters: [
436
- Parameters.apiVersion
437
- ],
438
- headerParameters: [
439
- Parameters.acceptLanguage
440
- ],
441
- requestBody: {
442
- parameterPath: "provisioningServiceTags",
443
- mapper: tslib_1.__assign({}, Mappers.TagsResource, { required: true })
444
- },
445
- responses: {
446
- 200: {
447
- bodyMapper: Mappers.ProvisioningServiceDescription
448
- },
449
- default: {
450
- bodyMapper: Mappers.CloudError
451
- }
452
- },
453
- serializer: serializer
454
- };
455
- var beginDeleteMethodOperationSpec = {
456
- httpMethod: "DELETE",
457
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Devices/provisioningServices/{provisioningServiceName}",
458
- urlParameters: [
459
- Parameters.provisioningServiceName,
460
- Parameters.subscriptionId,
461
- Parameters.resourceGroupName
462
- ],
463
- queryParameters: [
464
- Parameters.apiVersion
465
- ],
466
- headerParameters: [
467
- Parameters.acceptLanguage
468
- ],
469
- responses: {
470
- 200: {},
471
- 202: {},
472
- 204: {},
473
- 404: {},
474
- default: {
475
- bodyMapper: Mappers.ErrorDetails
476
- }
477
- },
478
- serializer: serializer
479
- };
480
- var listBySubscriptionNextOperationSpec = {
481
- httpMethod: "GET",
482
- baseUrl: "https://management.azure.com",
483
- path: "{nextLink}",
484
- urlParameters: [
485
- Parameters.nextPageLink
486
- ],
487
- headerParameters: [
488
- Parameters.acceptLanguage
489
- ],
490
- responses: {
491
- 200: {
492
- bodyMapper: Mappers.ProvisioningServiceDescriptionListResult
493
- },
494
- default: {
495
- bodyMapper: Mappers.ErrorDetails
496
- }
497
- },
498
- serializer: serializer
499
- };
500
- var listByResourceGroupNextOperationSpec = {
501
- httpMethod: "GET",
502
- baseUrl: "https://management.azure.com",
503
- path: "{nextLink}",
504
- urlParameters: [
505
- Parameters.nextPageLink
506
- ],
507
- headerParameters: [
508
- Parameters.acceptLanguage
509
- ],
510
- responses: {
511
- 200: {
512
- bodyMapper: Mappers.ProvisioningServiceDescriptionListResult
513
- },
514
- default: {
515
- bodyMapper: Mappers.ErrorDetails
516
- }
517
- },
518
- serializer: serializer
519
- };
520
- var listValidSkusNextOperationSpec = {
521
- httpMethod: "GET",
522
- baseUrl: "https://management.azure.com",
523
- path: "{nextLink}",
524
- urlParameters: [
525
- Parameters.nextPageLink
526
- ],
527
- headerParameters: [
528
- Parameters.acceptLanguage
529
- ],
530
- responses: {
531
- 200: {
532
- bodyMapper: Mappers.IotDpsSkuDefinitionListResult
533
- },
534
- default: {
535
- bodyMapper: Mappers.ErrorDetails
536
- }
537
- },
538
- serializer: serializer
539
- };
540
- var listKeysNextOperationSpec = {
541
- httpMethod: "POST",
542
- baseUrl: "https://management.azure.com",
543
- path: "{nextLink}",
544
- urlParameters: [
545
- Parameters.nextPageLink
546
- ],
547
- headerParameters: [
548
- Parameters.acceptLanguage
549
- ],
550
- responses: {
551
- 200: {
552
- bodyMapper: Mappers.SharedAccessSignatureAuthorizationRuleListResult
553
- },
554
- default: {
555
- bodyMapper: Mappers.ErrorDetails
556
- }
557
- },
558
- serializer: serializer
559
- };
560
- //# sourceMappingURL=iotDpsResource.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"iotDpsResource.js","sourceRoot":"","sources":["../../lib/operations/iotDpsResource.ts"],"names":[],"mappings":"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"}
@@ -1,46 +0,0 @@
1
- import * as msRest from "@azure/ms-rest-js";
2
- import * as Models from "../models";
3
- import { IotDpsClientContext } from "../iotDpsClientContext";
4
- /** Class representing a Operations. */
5
- export declare class Operations {
6
- private readonly client;
7
- /**
8
- * Create a Operations.
9
- * @param {IotDpsClientContext} client Reference to the service client.
10
- */
11
- constructor(client: IotDpsClientContext);
12
- /**
13
- * Lists all of the available Microsoft.Devices REST API operations.
14
- * @param [options] The optional parameters
15
- * @returns Promise<Models.OperationsListResponse>
16
- */
17
- list(options?: msRest.RequestOptionsBase): Promise<Models.OperationsListResponse>;
18
- /**
19
- * @param callback The callback
20
- */
21
- list(callback: msRest.ServiceCallback<Models.OperationListResult>): void;
22
- /**
23
- * @param options The optional parameters
24
- * @param callback The callback
25
- */
26
- list(options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.OperationListResult>): void;
27
- /**
28
- * Lists all of the available Microsoft.Devices REST API operations.
29
- * @param nextPageLink The NextLink from the previous successful call to List operation.
30
- * @param [options] The optional parameters
31
- * @returns Promise<Models.OperationsListNextResponse>
32
- */
33
- listNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.OperationsListNextResponse>;
34
- /**
35
- * @param nextPageLink The NextLink from the previous successful call to List operation.
36
- * @param callback The callback
37
- */
38
- listNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.OperationListResult>): void;
39
- /**
40
- * @param nextPageLink The NextLink from the previous successful call to List operation.
41
- * @param options The optional parameters
42
- * @param callback The callback
43
- */
44
- listNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.OperationListResult>): void;
45
- }
46
- //# sourceMappingURL=operations.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"operations.d.ts","sourceRoot":"","sources":["../../lib/operations/operations.ts"],"names":[],"mappings":"AAUA,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAC5C,OAAO,KAAK,MAAM,MAAM,WAAW,CAAC;AAGpC,OAAO,EAAE,mBAAmB,EAAE,MAAM,wBAAwB,CAAC;AAE7D,uCAAuC;AACvC,qBAAa,UAAU;IACrB,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAsB;IAE7C;;;OAGG;gBACS,MAAM,EAAE,mBAAmB;IAIvC;;;;OAIG;IACH,IAAI,CAAC,OAAO,CAAC,EAAE,MAAM,CAAC,kBAAkB,GAAG,OAAO,CAAC,MAAM,CAAC,sBAAsB,CAAC;IACjF;;OAEG;IACH,IAAI,CAAC,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,mBAAmB,CAAC,GAAG,IAAI;IACxE;;;OAGG;IACH,IAAI,CAAC,OAAO,EAAE,MAAM,CAAC,kBAAkB,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,mBAAmB,CAAC,GAAG,IAAI;IAU5G;;;;;OAKG;IACH,QAAQ,CAAC,YAAY,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,kBAAkB,GAAG,OAAO,CAAC,MAAM,CAAC,0BAA0B,CAAC;IAC/G;;;OAGG;IACH,QAAQ,CAAC,YAAY,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,mBAAmB,CAAC,GAAG,IAAI;IAClG;;;;OAIG;IACH,QAAQ,CAAC,YAAY,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,CAAC,kBAAkB,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,mBAAmB,CAAC,GAAG,IAAI;CAUvI"}