@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,265 +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/dpsCertificateMappers";
13
- import * as Parameters from "../models/parameters";
14
- /** Class representing a DpsCertificate. */
15
- var DpsCertificate = /** @class */ (function () {
16
- /**
17
- * Create a DpsCertificate.
18
- * @param {IotDpsClientContext} client Reference to the service client.
19
- */
20
- function DpsCertificate(client) {
21
- this.client = client;
22
- }
23
- DpsCertificate.prototype.get = function (certificateName, resourceGroupName, provisioningServiceName, options, callback) {
24
- return this.client.sendOperationRequest({
25
- certificateName: certificateName,
26
- resourceGroupName: resourceGroupName,
27
- provisioningServiceName: provisioningServiceName,
28
- options: options
29
- }, getOperationSpec, callback);
30
- };
31
- DpsCertificate.prototype.createOrUpdate = function (resourceGroupName, provisioningServiceName, certificateName, certificateDescription, options, callback) {
32
- return this.client.sendOperationRequest({
33
- resourceGroupName: resourceGroupName,
34
- provisioningServiceName: provisioningServiceName,
35
- certificateName: certificateName,
36
- certificateDescription: certificateDescription,
37
- options: options
38
- }, createOrUpdateOperationSpec, callback);
39
- };
40
- DpsCertificate.prototype.deleteMethod = function (resourceGroupName, ifMatch, provisioningServiceName, certificateName, options, callback) {
41
- return this.client.sendOperationRequest({
42
- resourceGroupName: resourceGroupName,
43
- ifMatch: ifMatch,
44
- provisioningServiceName: provisioningServiceName,
45
- certificateName: certificateName,
46
- options: options
47
- }, deleteMethodOperationSpec, callback);
48
- };
49
- DpsCertificate.prototype.list = function (resourceGroupName, provisioningServiceName, options, callback) {
50
- return this.client.sendOperationRequest({
51
- resourceGroupName: resourceGroupName,
52
- provisioningServiceName: provisioningServiceName,
53
- options: options
54
- }, listOperationSpec, callback);
55
- };
56
- DpsCertificate.prototype.generateVerificationCode = function (certificateName, ifMatch, resourceGroupName, provisioningServiceName, options, callback) {
57
- return this.client.sendOperationRequest({
58
- certificateName: certificateName,
59
- ifMatch: ifMatch,
60
- resourceGroupName: resourceGroupName,
61
- provisioningServiceName: provisioningServiceName,
62
- options: options
63
- }, generateVerificationCodeOperationSpec, callback);
64
- };
65
- DpsCertificate.prototype.verifyCertificate = function (certificateName, ifMatch, request, resourceGroupName, provisioningServiceName, options, callback) {
66
- return this.client.sendOperationRequest({
67
- certificateName: certificateName,
68
- ifMatch: ifMatch,
69
- request: request,
70
- resourceGroupName: resourceGroupName,
71
- provisioningServiceName: provisioningServiceName,
72
- options: options
73
- }, verifyCertificateOperationSpec, callback);
74
- };
75
- return DpsCertificate;
76
- }());
77
- export { DpsCertificate };
78
- // Operation Specifications
79
- var serializer = new msRest.Serializer(Mappers);
80
- var getOperationSpec = {
81
- httpMethod: "GET",
82
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Devices/provisioningServices/{provisioningServiceName}/certificates/{certificateName}",
83
- urlParameters: [
84
- Parameters.certificateName0,
85
- Parameters.subscriptionId,
86
- Parameters.resourceGroupName,
87
- Parameters.provisioningServiceName
88
- ],
89
- queryParameters: [
90
- Parameters.apiVersion
91
- ],
92
- headerParameters: [
93
- Parameters.ifMatch0,
94
- Parameters.acceptLanguage
95
- ],
96
- responses: {
97
- 200: {
98
- bodyMapper: Mappers.CertificateResponse
99
- },
100
- default: {
101
- bodyMapper: Mappers.ErrorDetails
102
- }
103
- },
104
- serializer: serializer
105
- };
106
- var createOrUpdateOperationSpec = {
107
- httpMethod: "PUT",
108
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Devices/provisioningServices/{provisioningServiceName}/certificates/{certificateName}",
109
- urlParameters: [
110
- Parameters.subscriptionId,
111
- Parameters.resourceGroupName,
112
- Parameters.provisioningServiceName,
113
- Parameters.certificateName1
114
- ],
115
- queryParameters: [
116
- Parameters.apiVersion
117
- ],
118
- headerParameters: [
119
- Parameters.ifMatch0,
120
- Parameters.acceptLanguage
121
- ],
122
- requestBody: {
123
- parameterPath: "certificateDescription",
124
- mapper: tslib_1.__assign({}, Mappers.CertificateBodyDescription, { required: true })
125
- },
126
- responses: {
127
- 200: {
128
- bodyMapper: Mappers.CertificateResponse
129
- },
130
- default: {
131
- bodyMapper: Mappers.ErrorDetails
132
- }
133
- },
134
- serializer: serializer
135
- };
136
- var deleteMethodOperationSpec = {
137
- httpMethod: "DELETE",
138
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Devices/provisioningServices/{provisioningServiceName}/certificates/{certificateName}",
139
- urlParameters: [
140
- Parameters.subscriptionId,
141
- Parameters.resourceGroupName,
142
- Parameters.provisioningServiceName,
143
- Parameters.certificateName0
144
- ],
145
- queryParameters: [
146
- Parameters.certificatename,
147
- Parameters.certificaterawBytes,
148
- Parameters.certificateisVerified,
149
- Parameters.certificatepurpose,
150
- Parameters.certificatecreated,
151
- Parameters.certificatelastUpdated,
152
- Parameters.certificatehasPrivateKey,
153
- Parameters.certificatenonce,
154
- Parameters.apiVersion
155
- ],
156
- headerParameters: [
157
- Parameters.ifMatch1,
158
- Parameters.acceptLanguage
159
- ],
160
- responses: {
161
- 200: {},
162
- 204: {},
163
- default: {
164
- bodyMapper: Mappers.ErrorDetails
165
- }
166
- },
167
- serializer: serializer
168
- };
169
- var listOperationSpec = {
170
- httpMethod: "GET",
171
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Devices/provisioningServices/{provisioningServiceName}/certificates",
172
- urlParameters: [
173
- Parameters.subscriptionId,
174
- Parameters.resourceGroupName,
175
- Parameters.provisioningServiceName
176
- ],
177
- queryParameters: [
178
- Parameters.apiVersion
179
- ],
180
- headerParameters: [
181
- Parameters.acceptLanguage
182
- ],
183
- responses: {
184
- 200: {
185
- bodyMapper: Mappers.CertificateListDescription
186
- },
187
- default: {
188
- bodyMapper: Mappers.ErrorDetails
189
- }
190
- },
191
- serializer: serializer
192
- };
193
- var generateVerificationCodeOperationSpec = {
194
- httpMethod: "POST",
195
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Devices/provisioningServices/{provisioningServiceName}/certificates/{certificateName}/generateVerificationCode",
196
- urlParameters: [
197
- Parameters.certificateName0,
198
- Parameters.subscriptionId,
199
- Parameters.resourceGroupName,
200
- Parameters.provisioningServiceName
201
- ],
202
- queryParameters: [
203
- Parameters.certificatename,
204
- Parameters.certificaterawBytes,
205
- Parameters.certificateisVerified,
206
- Parameters.certificatepurpose,
207
- Parameters.certificatecreated,
208
- Parameters.certificatelastUpdated,
209
- Parameters.certificatehasPrivateKey,
210
- Parameters.certificatenonce,
211
- Parameters.apiVersion
212
- ],
213
- headerParameters: [
214
- Parameters.ifMatch1,
215
- Parameters.acceptLanguage
216
- ],
217
- responses: {
218
- 200: {
219
- bodyMapper: Mappers.VerificationCodeResponse
220
- },
221
- default: {
222
- bodyMapper: Mappers.ErrorDetails
223
- }
224
- },
225
- serializer: serializer
226
- };
227
- var verifyCertificateOperationSpec = {
228
- httpMethod: "POST",
229
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Devices/provisioningServices/{provisioningServiceName}/certificates/{certificateName}/verify",
230
- urlParameters: [
231
- Parameters.certificateName0,
232
- Parameters.subscriptionId,
233
- Parameters.resourceGroupName,
234
- Parameters.provisioningServiceName
235
- ],
236
- queryParameters: [
237
- Parameters.certificatename,
238
- Parameters.certificaterawBytes,
239
- Parameters.certificateisVerified,
240
- Parameters.certificatepurpose,
241
- Parameters.certificatecreated,
242
- Parameters.certificatelastUpdated,
243
- Parameters.certificatehasPrivateKey,
244
- Parameters.certificatenonce,
245
- Parameters.apiVersion
246
- ],
247
- headerParameters: [
248
- Parameters.ifMatch1,
249
- Parameters.acceptLanguage
250
- ],
251
- requestBody: {
252
- parameterPath: "request",
253
- mapper: tslib_1.__assign({}, Mappers.VerificationCodeRequest, { required: true })
254
- },
255
- responses: {
256
- 200: {
257
- bodyMapper: Mappers.CertificateResponse
258
- },
259
- default: {
260
- bodyMapper: Mappers.ErrorDetails
261
- }
262
- },
263
- serializer: serializer
264
- };
265
- //# sourceMappingURL=dpsCertificate.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"dpsCertificate.js","sourceRoot":"","sources":["../../lib/operations/dpsCertificate.ts"],"names":[],"mappings":"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"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../lib/operations/index.ts"],"names":[],"mappings":"AAUA,cAAc,cAAc,CAAC;AAC7B,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../lib/operations/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,cAAc,cAAc,CAAC;AAC7B,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC"}
@@ -1,337 +0,0 @@
1
- import * as msRest from "@azure/ms-rest-js";
2
- import * as msRestAzure from "@azure/ms-rest-azure-js";
3
- import * as Models from "../models";
4
- import { IotDpsClientContext } from "../iotDpsClientContext";
5
- /** Class representing a IotDpsResource. */
6
- export declare class IotDpsResource {
7
- private readonly client;
8
- /**
9
- * Create a IotDpsResource.
10
- * @param {IotDpsClientContext} client Reference to the service client.
11
- */
12
- constructor(client: IotDpsClientContext);
13
- /**
14
- * Get the metadata of the provisioning service without SAS keys.
15
- * @summary Get the non-security related metadata of the provisioning service.
16
- * @param provisioningServiceName Name of the provisioning service to retrieve.
17
- * @param resourceGroupName Resource group name.
18
- * @param [options] The optional parameters
19
- * @returns Promise<Models.IotDpsResourceGetResponse>
20
- */
21
- get(provisioningServiceName: string, resourceGroupName: string, options?: msRest.RequestOptionsBase): Promise<Models.IotDpsResourceGetResponse>;
22
- /**
23
- * @param provisioningServiceName Name of the provisioning service to retrieve.
24
- * @param resourceGroupName Resource group name.
25
- * @param callback The callback
26
- */
27
- get(provisioningServiceName: string, resourceGroupName: string, callback: msRest.ServiceCallback<Models.ProvisioningServiceDescription>): void;
28
- /**
29
- * @param provisioningServiceName Name of the provisioning service to retrieve.
30
- * @param resourceGroupName Resource group name.
31
- * @param options The optional parameters
32
- * @param callback The callback
33
- */
34
- get(provisioningServiceName: string, resourceGroupName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.ProvisioningServiceDescription>): void;
35
- /**
36
- * Create or update the metadata of the provisioning service. The usual pattern to modify a
37
- * property is to retrieve the provisioning service metadata and security metadata, and then
38
- * combine them with the modified values in a new body to update the provisioning service.
39
- * @summary Create or update the metadata of the provisioning service.
40
- * @param resourceGroupName Resource group identifier.
41
- * @param provisioningServiceName Name of provisioning service to create or update.
42
- * @param iotDpsDescription Description of the provisioning service to create or update.
43
- * @param [options] The optional parameters
44
- * @returns Promise<Models.IotDpsResourceCreateOrUpdateResponse>
45
- */
46
- createOrUpdate(resourceGroupName: string, provisioningServiceName: string, iotDpsDescription: Models.ProvisioningServiceDescription, options?: msRest.RequestOptionsBase): Promise<Models.IotDpsResourceCreateOrUpdateResponse>;
47
- /**
48
- * Update an existing provisioning service's tags. to update other fields use the CreateOrUpdate
49
- * method
50
- * @summary Update an existing provisioning service's tags.
51
- * @param resourceGroupName Resource group identifier.
52
- * @param provisioningServiceName Name of provisioning service to create or update.
53
- * @param provisioningServiceTags Updated tag information to set into the provisioning service
54
- * instance.
55
- * @param [options] The optional parameters
56
- * @returns Promise<Models.IotDpsResourceUpdateResponse>
57
- */
58
- update(resourceGroupName: string, provisioningServiceName: string, provisioningServiceTags: Models.TagsResource, options?: msRest.RequestOptionsBase): Promise<Models.IotDpsResourceUpdateResponse>;
59
- /**
60
- * Deletes the Provisioning Service.
61
- * @summary Delete the Provisioning Service
62
- * @param provisioningServiceName Name of provisioning service to delete.
63
- * @param resourceGroupName Resource group identifier.
64
- * @param [options] The optional parameters
65
- * @returns Promise<msRest.RestResponse>
66
- */
67
- deleteMethod(provisioningServiceName: string, resourceGroupName: string, options?: msRest.RequestOptionsBase): Promise<msRest.RestResponse>;
68
- /**
69
- * List all the provisioning services for a given subscription id.
70
- * @summary Get all the provisioning services in a subscription.
71
- * @param [options] The optional parameters
72
- * @returns Promise<Models.IotDpsResourceListBySubscriptionResponse>
73
- */
74
- listBySubscription(options?: msRest.RequestOptionsBase): Promise<Models.IotDpsResourceListBySubscriptionResponse>;
75
- /**
76
- * @param callback The callback
77
- */
78
- listBySubscription(callback: msRest.ServiceCallback<Models.ProvisioningServiceDescriptionListResult>): void;
79
- /**
80
- * @param options The optional parameters
81
- * @param callback The callback
82
- */
83
- listBySubscription(options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.ProvisioningServiceDescriptionListResult>): void;
84
- /**
85
- * Get a list of all provisioning services in the given resource group.
86
- * @param resourceGroupName Resource group identifier.
87
- * @param [options] The optional parameters
88
- * @returns Promise<Models.IotDpsResourceListByResourceGroupResponse>
89
- */
90
- listByResourceGroup(resourceGroupName: string, options?: msRest.RequestOptionsBase): Promise<Models.IotDpsResourceListByResourceGroupResponse>;
91
- /**
92
- * @param resourceGroupName Resource group identifier.
93
- * @param callback The callback
94
- */
95
- listByResourceGroup(resourceGroupName: string, callback: msRest.ServiceCallback<Models.ProvisioningServiceDescriptionListResult>): void;
96
- /**
97
- * @param resourceGroupName Resource group identifier.
98
- * @param options The optional parameters
99
- * @param callback The callback
100
- */
101
- listByResourceGroup(resourceGroupName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.ProvisioningServiceDescriptionListResult>): void;
102
- /**
103
- * Gets the status of a long running operation, such as create, update or delete a provisioning
104
- * service.
105
- * @param operationId Operation id corresponding to long running operation. Use this to poll for
106
- * the status.
107
- * @param resourceGroupName Resource group identifier.
108
- * @param provisioningServiceName Name of provisioning service that the operation is running on.
109
- * @param asyncinfo Async header used to poll on the status of the operation, obtained while
110
- * creating the long running operation.
111
- * @param [options] The optional parameters
112
- * @returns Promise<Models.IotDpsResourceGetOperationResultResponse>
113
- */
114
- getOperationResult(operationId: string, resourceGroupName: string, provisioningServiceName: string, asyncinfo: string, options?: msRest.RequestOptionsBase): Promise<Models.IotDpsResourceGetOperationResultResponse>;
115
- /**
116
- * @param operationId Operation id corresponding to long running operation. Use this to poll for
117
- * the status.
118
- * @param resourceGroupName Resource group identifier.
119
- * @param provisioningServiceName Name of provisioning service that the operation is running on.
120
- * @param asyncinfo Async header used to poll on the status of the operation, obtained while
121
- * creating the long running operation.
122
- * @param callback The callback
123
- */
124
- getOperationResult(operationId: string, resourceGroupName: string, provisioningServiceName: string, asyncinfo: string, callback: msRest.ServiceCallback<Models.AsyncOperationResult>): void;
125
- /**
126
- * @param operationId Operation id corresponding to long running operation. Use this to poll for
127
- * the status.
128
- * @param resourceGroupName Resource group identifier.
129
- * @param provisioningServiceName Name of provisioning service that the operation is running on.
130
- * @param asyncinfo Async header used to poll on the status of the operation, obtained while
131
- * creating the long running operation.
132
- * @param options The optional parameters
133
- * @param callback The callback
134
- */
135
- getOperationResult(operationId: string, resourceGroupName: string, provisioningServiceName: string, asyncinfo: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.AsyncOperationResult>): void;
136
- /**
137
- * Gets the list of valid SKUs and tiers for a provisioning service.
138
- * @summary Get the list of valid SKUs for a provisioning service.
139
- * @param provisioningServiceName Name of provisioning service.
140
- * @param resourceGroupName Name of resource group.
141
- * @param [options] The optional parameters
142
- * @returns Promise<Models.IotDpsResourceListValidSkusResponse>
143
- */
144
- listValidSkus(provisioningServiceName: string, resourceGroupName: string, options?: msRest.RequestOptionsBase): Promise<Models.IotDpsResourceListValidSkusResponse>;
145
- /**
146
- * @param provisioningServiceName Name of provisioning service.
147
- * @param resourceGroupName Name of resource group.
148
- * @param callback The callback
149
- */
150
- listValidSkus(provisioningServiceName: string, resourceGroupName: string, callback: msRest.ServiceCallback<Models.IotDpsSkuDefinitionListResult>): void;
151
- /**
152
- * @param provisioningServiceName Name of provisioning service.
153
- * @param resourceGroupName Name of resource group.
154
- * @param options The optional parameters
155
- * @param callback The callback
156
- */
157
- listValidSkus(provisioningServiceName: string, resourceGroupName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.IotDpsSkuDefinitionListResult>): void;
158
- /**
159
- * Check if a provisioning service name is available. This will validate if the name is
160
- * syntactically valid and if the name is usable
161
- * @summary Check if a provisioning service name is available.
162
- * @param argumentsParameter Set the name parameter in the OperationInputs structure to the name of
163
- * the provisioning service to check.
164
- * @param [options] The optional parameters
165
- * @returns Promise<Models.IotDpsResourceCheckProvisioningServiceNameAvailabilityResponse>
166
- */
167
- checkProvisioningServiceNameAvailability(argumentsParameter: Models.OperationInputs, options?: msRest.RequestOptionsBase): Promise<Models.IotDpsResourceCheckProvisioningServiceNameAvailabilityResponse>;
168
- /**
169
- * @param argumentsParameter Set the name parameter in the OperationInputs structure to the name of
170
- * the provisioning service to check.
171
- * @param callback The callback
172
- */
173
- checkProvisioningServiceNameAvailability(argumentsParameter: Models.OperationInputs, callback: msRest.ServiceCallback<Models.NameAvailabilityInfo>): void;
174
- /**
175
- * @param argumentsParameter Set the name parameter in the OperationInputs structure to the name of
176
- * the provisioning service to check.
177
- * @param options The optional parameters
178
- * @param callback The callback
179
- */
180
- checkProvisioningServiceNameAvailability(argumentsParameter: Models.OperationInputs, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.NameAvailabilityInfo>): void;
181
- /**
182
- * List the primary and secondary keys for a provisioning service.
183
- * @summary Get the security metadata for a provisioning service.
184
- * @param provisioningServiceName The provisioning service name to get the shared access keys for.
185
- * @param resourceGroupName resource group name
186
- * @param [options] The optional parameters
187
- * @returns Promise<Models.IotDpsResourceListKeysResponse>
188
- */
189
- listKeys(provisioningServiceName: string, resourceGroupName: string, options?: msRest.RequestOptionsBase): Promise<Models.IotDpsResourceListKeysResponse>;
190
- /**
191
- * @param provisioningServiceName The provisioning service name to get the shared access keys for.
192
- * @param resourceGroupName resource group name
193
- * @param callback The callback
194
- */
195
- listKeys(provisioningServiceName: string, resourceGroupName: string, callback: msRest.ServiceCallback<Models.SharedAccessSignatureAuthorizationRuleListResult>): void;
196
- /**
197
- * @param provisioningServiceName The provisioning service name to get the shared access keys for.
198
- * @param resourceGroupName resource group name
199
- * @param options The optional parameters
200
- * @param callback The callback
201
- */
202
- listKeys(provisioningServiceName: string, resourceGroupName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.SharedAccessSignatureAuthorizationRuleListResult>): void;
203
- /**
204
- * List primary and secondary keys for a specific key name
205
- * @summary Get a shared access policy by name from a provisioning service.
206
- * @param provisioningServiceName Name of the provisioning service.
207
- * @param keyName Logical key name to get key-values for.
208
- * @param resourceGroupName The name of the resource group that contains the provisioning service.
209
- * @param [options] The optional parameters
210
- * @returns Promise<Models.IotDpsResourceListKeysForKeyNameResponse>
211
- */
212
- listKeysForKeyName(provisioningServiceName: string, keyName: string, resourceGroupName: string, options?: msRest.RequestOptionsBase): Promise<Models.IotDpsResourceListKeysForKeyNameResponse>;
213
- /**
214
- * @param provisioningServiceName Name of the provisioning service.
215
- * @param keyName Logical key name to get key-values for.
216
- * @param resourceGroupName The name of the resource group that contains the provisioning service.
217
- * @param callback The callback
218
- */
219
- listKeysForKeyName(provisioningServiceName: string, keyName: string, resourceGroupName: string, callback: msRest.ServiceCallback<Models.SharedAccessSignatureAuthorizationRuleAccessRightsDescription>): void;
220
- /**
221
- * @param provisioningServiceName Name of the provisioning service.
222
- * @param keyName Logical key name to get key-values for.
223
- * @param resourceGroupName The name of the resource group that contains the provisioning service.
224
- * @param options The optional parameters
225
- * @param callback The callback
226
- */
227
- listKeysForKeyName(provisioningServiceName: string, keyName: string, resourceGroupName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.SharedAccessSignatureAuthorizationRuleAccessRightsDescription>): void;
228
- /**
229
- * Create or update the metadata of the provisioning service. The usual pattern to modify a
230
- * property is to retrieve the provisioning service metadata and security metadata, and then
231
- * combine them with the modified values in a new body to update the provisioning service.
232
- * @summary Create or update the metadata of the provisioning service.
233
- * @param resourceGroupName Resource group identifier.
234
- * @param provisioningServiceName Name of provisioning service to create or update.
235
- * @param iotDpsDescription Description of the provisioning service to create or update.
236
- * @param [options] The optional parameters
237
- * @returns Promise<msRestAzure.LROPoller>
238
- */
239
- beginCreateOrUpdate(resourceGroupName: string, provisioningServiceName: string, iotDpsDescription: Models.ProvisioningServiceDescription, options?: msRest.RequestOptionsBase): Promise<msRestAzure.LROPoller>;
240
- /**
241
- * Update an existing provisioning service's tags. to update other fields use the CreateOrUpdate
242
- * method
243
- * @summary Update an existing provisioning service's tags.
244
- * @param resourceGroupName Resource group identifier.
245
- * @param provisioningServiceName Name of provisioning service to create or update.
246
- * @param provisioningServiceTags Updated tag information to set into the provisioning service
247
- * instance.
248
- * @param [options] The optional parameters
249
- * @returns Promise<msRestAzure.LROPoller>
250
- */
251
- beginUpdate(resourceGroupName: string, provisioningServiceName: string, provisioningServiceTags: Models.TagsResource, options?: msRest.RequestOptionsBase): Promise<msRestAzure.LROPoller>;
252
- /**
253
- * Deletes the Provisioning Service.
254
- * @summary Delete the Provisioning Service
255
- * @param provisioningServiceName Name of provisioning service to delete.
256
- * @param resourceGroupName Resource group identifier.
257
- * @param [options] The optional parameters
258
- * @returns Promise<msRestAzure.LROPoller>
259
- */
260
- beginDeleteMethod(provisioningServiceName: string, resourceGroupName: string, options?: msRest.RequestOptionsBase): Promise<msRestAzure.LROPoller>;
261
- /**
262
- * List all the provisioning services for a given subscription id.
263
- * @summary Get all the provisioning services in a subscription.
264
- * @param nextPageLink The NextLink from the previous successful call to List operation.
265
- * @param [options] The optional parameters
266
- * @returns Promise<Models.IotDpsResourceListBySubscriptionNextResponse>
267
- */
268
- listBySubscriptionNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.IotDpsResourceListBySubscriptionNextResponse>;
269
- /**
270
- * @param nextPageLink The NextLink from the previous successful call to List operation.
271
- * @param callback The callback
272
- */
273
- listBySubscriptionNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.ProvisioningServiceDescriptionListResult>): void;
274
- /**
275
- * @param nextPageLink The NextLink from the previous successful call to List operation.
276
- * @param options The optional parameters
277
- * @param callback The callback
278
- */
279
- listBySubscriptionNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.ProvisioningServiceDescriptionListResult>): void;
280
- /**
281
- * Get a list of all provisioning services in the given resource group.
282
- * @param nextPageLink The NextLink from the previous successful call to List operation.
283
- * @param [options] The optional parameters
284
- * @returns Promise<Models.IotDpsResourceListByResourceGroupNextResponse>
285
- */
286
- listByResourceGroupNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.IotDpsResourceListByResourceGroupNextResponse>;
287
- /**
288
- * @param nextPageLink The NextLink from the previous successful call to List operation.
289
- * @param callback The callback
290
- */
291
- listByResourceGroupNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.ProvisioningServiceDescriptionListResult>): void;
292
- /**
293
- * @param nextPageLink The NextLink from the previous successful call to List operation.
294
- * @param options The optional parameters
295
- * @param callback The callback
296
- */
297
- listByResourceGroupNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.ProvisioningServiceDescriptionListResult>): void;
298
- /**
299
- * Gets the list of valid SKUs and tiers for a provisioning service.
300
- * @summary Get the list of valid SKUs for a provisioning service.
301
- * @param nextPageLink The NextLink from the previous successful call to List operation.
302
- * @param [options] The optional parameters
303
- * @returns Promise<Models.IotDpsResourceListValidSkusNextResponse>
304
- */
305
- listValidSkusNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.IotDpsResourceListValidSkusNextResponse>;
306
- /**
307
- * @param nextPageLink The NextLink from the previous successful call to List operation.
308
- * @param callback The callback
309
- */
310
- listValidSkusNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.IotDpsSkuDefinitionListResult>): void;
311
- /**
312
- * @param nextPageLink The NextLink from the previous successful call to List operation.
313
- * @param options The optional parameters
314
- * @param callback The callback
315
- */
316
- listValidSkusNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.IotDpsSkuDefinitionListResult>): void;
317
- /**
318
- * List the primary and secondary keys for a provisioning service.
319
- * @summary Get the security metadata for a provisioning service.
320
- * @param nextPageLink The NextLink from the previous successful call to List operation.
321
- * @param [options] The optional parameters
322
- * @returns Promise<Models.IotDpsResourceListKeysNextResponse>
323
- */
324
- listKeysNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.IotDpsResourceListKeysNextResponse>;
325
- /**
326
- * @param nextPageLink The NextLink from the previous successful call to List operation.
327
- * @param callback The callback
328
- */
329
- listKeysNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.SharedAccessSignatureAuthorizationRuleListResult>): void;
330
- /**
331
- * @param nextPageLink The NextLink from the previous successful call to List operation.
332
- * @param options The optional parameters
333
- * @param callback The callback
334
- */
335
- listKeysNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.SharedAccessSignatureAuthorizationRuleListResult>): void;
336
- }
337
- //# sourceMappingURL=iotDpsResource.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"iotDpsResource.d.ts","sourceRoot":"","sources":["../../lib/operations/iotDpsResource.ts"],"names":[],"mappings":"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"}