@azure/arm-deviceprovisioningservices 3.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 (69) hide show
  1. package/LICENSE.txt +21 -0
  2. package/README.md +106 -0
  3. package/dist/arm-deviceprovisioningservices.js +2869 -0
  4. package/dist/arm-deviceprovisioningservices.js.map +1 -0
  5. package/dist/arm-deviceprovisioningservices.min.js +1 -0
  6. package/dist/arm-deviceprovisioningservices.min.js.map +1 -0
  7. package/esm/iotDpsClient.d.ts +26 -0
  8. package/esm/iotDpsClient.d.ts.map +1 -0
  9. package/esm/iotDpsClient.js +39 -0
  10. package/esm/iotDpsClient.js.map +1 -0
  11. package/esm/iotDpsClientContext.d.ts +22 -0
  12. package/esm/iotDpsClientContext.d.ts.map +1 -0
  13. package/esm/iotDpsClientContext.js +60 -0
  14. package/esm/iotDpsClientContext.js.map +1 -0
  15. package/esm/models/dpsCertificateMappers.d.ts +2 -0
  16. package/esm/models/dpsCertificateMappers.d.ts.map +1 -0
  17. package/esm/models/dpsCertificateMappers.js +9 -0
  18. package/esm/models/dpsCertificateMappers.js.map +1 -0
  19. package/esm/models/index.d.ts +1433 -0
  20. package/esm/models/index.d.ts.map +1 -0
  21. package/esm/models/index.js +8 -0
  22. package/esm/models/index.js.map +1 -0
  23. package/esm/models/iotDpsResourceMappers.d.ts +2 -0
  24. package/esm/models/iotDpsResourceMappers.d.ts.map +1 -0
  25. package/esm/models/iotDpsResourceMappers.js +9 -0
  26. package/esm/models/iotDpsResourceMappers.js.map +1 -0
  27. package/esm/models/mappers.d.ts +38 -0
  28. package/esm/models/mappers.d.ts.map +1 -0
  29. package/esm/models/mappers.js +1141 -0
  30. package/esm/models/mappers.js.map +1 -0
  31. package/esm/models/operationsMappers.d.ts +2 -0
  32. package/esm/models/operationsMappers.d.ts.map +1 -0
  33. package/esm/models/operationsMappers.js +9 -0
  34. package/esm/models/operationsMappers.js.map +1 -0
  35. package/esm/models/parameters.d.ts +26 -0
  36. package/esm/models/parameters.d.ts.map +1 -0
  37. package/esm/models/parameters.js +272 -0
  38. package/esm/models/parameters.js.map +1 -0
  39. package/esm/operations/dpsCertificate.d.ts +188 -0
  40. package/esm/operations/dpsCertificate.d.ts.map +1 -0
  41. package/esm/operations/dpsCertificate.js +264 -0
  42. package/esm/operations/dpsCertificate.js.map +1 -0
  43. package/esm/operations/index.d.ts +4 -0
  44. package/esm/operations/index.d.ts.map +1 -0
  45. package/esm/operations/index.js +12 -0
  46. package/esm/operations/index.js.map +1 -0
  47. package/esm/operations/iotDpsResource.d.ts +473 -0
  48. package/esm/operations/iotDpsResource.d.ts.map +1 -0
  49. package/esm/operations/iotDpsResource.js +834 -0
  50. package/esm/operations/iotDpsResource.js.map +1 -0
  51. package/esm/operations/operations.d.ts +46 -0
  52. package/esm/operations/operations.d.ts.map +1 -0
  53. package/esm/operations/operations.js +79 -0
  54. package/esm/operations/operations.js.map +1 -0
  55. package/package.json +59 -0
  56. package/rollup.config.js +37 -0
  57. package/src/iotDpsClient.ts +51 -0
  58. package/src/iotDpsClientContext.ts +67 -0
  59. package/src/models/dpsCertificateMappers.ts +30 -0
  60. package/src/models/index.ts +1549 -0
  61. package/src/models/iotDpsResourceMappers.ts +40 -0
  62. package/src/models/mappers.ts +1181 -0
  63. package/src/models/operationsMappers.ts +14 -0
  64. package/src/models/parameters.ts +274 -0
  65. package/src/operations/dpsCertificate.ts +477 -0
  66. package/src/operations/index.ts +12 -0
  67. package/src/operations/iotDpsResource.ts +1310 -0
  68. package/src/operations/operations.ts +125 -0
  69. package/tsconfig.json +19 -0
@@ -0,0 +1,473 @@
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
+ * List private link resources for the given provisioning service
230
+ * @summary List private link resources
231
+ * @param resourceGroupName The name of the resource group that contains the provisioning service.
232
+ * @param resourceName The name of the provisioning service.
233
+ * @param [options] The optional parameters
234
+ * @returns Promise<Models.IotDpsResourceListPrivateLinkResourcesResponse>
235
+ */
236
+ listPrivateLinkResources(resourceGroupName: string, resourceName: string, options?: msRest.RequestOptionsBase): Promise<Models.IotDpsResourceListPrivateLinkResourcesResponse>;
237
+ /**
238
+ * @param resourceGroupName The name of the resource group that contains the provisioning service.
239
+ * @param resourceName The name of the provisioning service.
240
+ * @param callback The callback
241
+ */
242
+ listPrivateLinkResources(resourceGroupName: string, resourceName: string, callback: msRest.ServiceCallback<Models.PrivateLinkResources>): void;
243
+ /**
244
+ * @param resourceGroupName The name of the resource group that contains the provisioning service.
245
+ * @param resourceName The name of the provisioning service.
246
+ * @param options The optional parameters
247
+ * @param callback The callback
248
+ */
249
+ listPrivateLinkResources(resourceGroupName: string, resourceName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.PrivateLinkResources>): void;
250
+ /**
251
+ * Get the specified private link resource for the given provisioning service
252
+ * @summary Get the specified private link resource
253
+ * @param resourceGroupName The name of the resource group that contains the provisioning service.
254
+ * @param resourceName The name of the provisioning service.
255
+ * @param groupId The name of the private link resource
256
+ * @param [options] The optional parameters
257
+ * @returns Promise<Models.IotDpsResourceGetPrivateLinkResourcesResponse>
258
+ */
259
+ getPrivateLinkResources(resourceGroupName: string, resourceName: string, groupId: string, options?: msRest.RequestOptionsBase): Promise<Models.IotDpsResourceGetPrivateLinkResourcesResponse>;
260
+ /**
261
+ * @param resourceGroupName The name of the resource group that contains the provisioning service.
262
+ * @param resourceName The name of the provisioning service.
263
+ * @param groupId The name of the private link resource
264
+ * @param callback The callback
265
+ */
266
+ getPrivateLinkResources(resourceGroupName: string, resourceName: string, groupId: string, callback: msRest.ServiceCallback<Models.GroupIdInformation>): void;
267
+ /**
268
+ * @param resourceGroupName The name of the resource group that contains the provisioning service.
269
+ * @param resourceName The name of the provisioning service.
270
+ * @param groupId The name of the private link resource
271
+ * @param options The optional parameters
272
+ * @param callback The callback
273
+ */
274
+ getPrivateLinkResources(resourceGroupName: string, resourceName: string, groupId: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.GroupIdInformation>): void;
275
+ /**
276
+ * List private endpoint connection properties
277
+ * @summary List private endpoint connections
278
+ * @param resourceGroupName The name of the resource group that contains the provisioning service.
279
+ * @param resourceName The name of the provisioning service.
280
+ * @param [options] The optional parameters
281
+ * @returns Promise<Models.IotDpsResourceListPrivateEndpointConnectionsResponse>
282
+ */
283
+ listPrivateEndpointConnections(resourceGroupName: string, resourceName: string, options?: msRest.RequestOptionsBase): Promise<Models.IotDpsResourceListPrivateEndpointConnectionsResponse>;
284
+ /**
285
+ * @param resourceGroupName The name of the resource group that contains the provisioning service.
286
+ * @param resourceName The name of the provisioning service.
287
+ * @param callback The callback
288
+ */
289
+ listPrivateEndpointConnections(resourceGroupName: string, resourceName: string, callback: msRest.ServiceCallback<Models.PrivateEndpointConnection[]>): void;
290
+ /**
291
+ * @param resourceGroupName The name of the resource group that contains the provisioning service.
292
+ * @param resourceName The name of the provisioning service.
293
+ * @param options The optional parameters
294
+ * @param callback The callback
295
+ */
296
+ listPrivateEndpointConnections(resourceGroupName: string, resourceName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.PrivateEndpointConnection[]>): void;
297
+ /**
298
+ * Get private endpoint connection properties
299
+ * @summary Get private endpoint connection
300
+ * @param resourceGroupName The name of the resource group that contains the provisioning service.
301
+ * @param resourceName The name of the provisioning service.
302
+ * @param privateEndpointConnectionName The name of the private endpoint connection
303
+ * @param [options] The optional parameters
304
+ * @returns Promise<Models.IotDpsResourceGetPrivateEndpointConnectionResponse>
305
+ */
306
+ getPrivateEndpointConnection(resourceGroupName: string, resourceName: string, privateEndpointConnectionName: string, options?: msRest.RequestOptionsBase): Promise<Models.IotDpsResourceGetPrivateEndpointConnectionResponse>;
307
+ /**
308
+ * @param resourceGroupName The name of the resource group that contains the provisioning service.
309
+ * @param resourceName The name of the provisioning service.
310
+ * @param privateEndpointConnectionName The name of the private endpoint connection
311
+ * @param callback The callback
312
+ */
313
+ getPrivateEndpointConnection(resourceGroupName: string, resourceName: string, privateEndpointConnectionName: string, callback: msRest.ServiceCallback<Models.PrivateEndpointConnection>): void;
314
+ /**
315
+ * @param resourceGroupName The name of the resource group that contains the provisioning service.
316
+ * @param resourceName The name of the provisioning service.
317
+ * @param privateEndpointConnectionName The name of the private endpoint connection
318
+ * @param options The optional parameters
319
+ * @param callback The callback
320
+ */
321
+ getPrivateEndpointConnection(resourceGroupName: string, resourceName: string, privateEndpointConnectionName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.PrivateEndpointConnection>): void;
322
+ /**
323
+ * Create or update the status of a private endpoint connection with the specified name
324
+ * @summary Create or update private endpoint connection
325
+ * @param resourceGroupName The name of the resource group that contains the provisioning service.
326
+ * @param resourceName The name of the provisioning service.
327
+ * @param privateEndpointConnectionName The name of the private endpoint connection
328
+ * @param privateEndpointConnection The private endpoint connection with updated properties
329
+ * @param [options] The optional parameters
330
+ * @returns Promise<Models.IotDpsResourceCreateOrUpdatePrivateEndpointConnectionResponse>
331
+ */
332
+ createOrUpdatePrivateEndpointConnection(resourceGroupName: string, resourceName: string, privateEndpointConnectionName: string, privateEndpointConnection: Models.PrivateEndpointConnection, options?: msRest.RequestOptionsBase): Promise<Models.IotDpsResourceCreateOrUpdatePrivateEndpointConnectionResponse>;
333
+ /**
334
+ * Delete private endpoint connection with the specified name
335
+ * @summary Delete private endpoint connection
336
+ * @param resourceGroupName The name of the resource group that contains the provisioning service.
337
+ * @param resourceName The name of the provisioning service.
338
+ * @param privateEndpointConnectionName The name of the private endpoint connection
339
+ * @param [options] The optional parameters
340
+ * @returns Promise<Models.IotDpsResourceDeletePrivateEndpointConnectionResponse>
341
+ */
342
+ deletePrivateEndpointConnection(resourceGroupName: string, resourceName: string, privateEndpointConnectionName: string, options?: msRest.RequestOptionsBase): Promise<Models.IotDpsResourceDeletePrivateEndpointConnectionResponse>;
343
+ /**
344
+ * Create or update the metadata of the provisioning service. The usual pattern to modify a
345
+ * property is to retrieve the provisioning service metadata and security metadata, and then
346
+ * combine them with the modified values in a new body to update the provisioning service.
347
+ * @summary Create or update the metadata of the provisioning service.
348
+ * @param resourceGroupName Resource group identifier.
349
+ * @param provisioningServiceName Name of provisioning service to create or update.
350
+ * @param iotDpsDescription Description of the provisioning service to create or update.
351
+ * @param [options] The optional parameters
352
+ * @returns Promise<msRestAzure.LROPoller>
353
+ */
354
+ beginCreateOrUpdate(resourceGroupName: string, provisioningServiceName: string, iotDpsDescription: Models.ProvisioningServiceDescription, options?: msRest.RequestOptionsBase): Promise<msRestAzure.LROPoller>;
355
+ /**
356
+ * Update an existing provisioning service's tags. to update other fields use the CreateOrUpdate
357
+ * method
358
+ * @summary Update an existing provisioning service's tags.
359
+ * @param resourceGroupName Resource group identifier.
360
+ * @param provisioningServiceName Name of provisioning service to create or update.
361
+ * @param provisioningServiceTags Updated tag information to set into the provisioning service
362
+ * instance.
363
+ * @param [options] The optional parameters
364
+ * @returns Promise<msRestAzure.LROPoller>
365
+ */
366
+ beginUpdate(resourceGroupName: string, provisioningServiceName: string, provisioningServiceTags: Models.TagsResource, options?: msRest.RequestOptionsBase): Promise<msRestAzure.LROPoller>;
367
+ /**
368
+ * Deletes the Provisioning Service.
369
+ * @summary Delete the Provisioning Service
370
+ * @param provisioningServiceName Name of provisioning service to delete.
371
+ * @param resourceGroupName Resource group identifier.
372
+ * @param [options] The optional parameters
373
+ * @returns Promise<msRestAzure.LROPoller>
374
+ */
375
+ beginDeleteMethod(provisioningServiceName: string, resourceGroupName: string, options?: msRest.RequestOptionsBase): Promise<msRestAzure.LROPoller>;
376
+ /**
377
+ * Create or update the status of a private endpoint connection with the specified name
378
+ * @summary Create or update private endpoint connection
379
+ * @param resourceGroupName The name of the resource group that contains the provisioning service.
380
+ * @param resourceName The name of the provisioning service.
381
+ * @param privateEndpointConnectionName The name of the private endpoint connection
382
+ * @param privateEndpointConnection The private endpoint connection with updated properties
383
+ * @param [options] The optional parameters
384
+ * @returns Promise<msRestAzure.LROPoller>
385
+ */
386
+ beginCreateOrUpdatePrivateEndpointConnection(resourceGroupName: string, resourceName: string, privateEndpointConnectionName: string, privateEndpointConnection: Models.PrivateEndpointConnection, options?: msRest.RequestOptionsBase): Promise<msRestAzure.LROPoller>;
387
+ /**
388
+ * Delete private endpoint connection with the specified name
389
+ * @summary Delete private endpoint connection
390
+ * @param resourceGroupName The name of the resource group that contains the provisioning service.
391
+ * @param resourceName The name of the provisioning service.
392
+ * @param privateEndpointConnectionName The name of the private endpoint connection
393
+ * @param [options] The optional parameters
394
+ * @returns Promise<msRestAzure.LROPoller>
395
+ */
396
+ beginDeletePrivateEndpointConnection(resourceGroupName: string, resourceName: string, privateEndpointConnectionName: string, options?: msRest.RequestOptionsBase): Promise<msRestAzure.LROPoller>;
397
+ /**
398
+ * List all the provisioning services for a given subscription id.
399
+ * @summary Get all the provisioning services in a subscription.
400
+ * @param nextPageLink The NextLink from the previous successful call to List operation.
401
+ * @param [options] The optional parameters
402
+ * @returns Promise<Models.IotDpsResourceListBySubscriptionNextResponse>
403
+ */
404
+ listBySubscriptionNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.IotDpsResourceListBySubscriptionNextResponse>;
405
+ /**
406
+ * @param nextPageLink The NextLink from the previous successful call to List operation.
407
+ * @param callback The callback
408
+ */
409
+ listBySubscriptionNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.ProvisioningServiceDescriptionListResult>): void;
410
+ /**
411
+ * @param nextPageLink The NextLink from the previous successful call to List operation.
412
+ * @param options The optional parameters
413
+ * @param callback The callback
414
+ */
415
+ listBySubscriptionNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.ProvisioningServiceDescriptionListResult>): void;
416
+ /**
417
+ * Get a list of all provisioning services in the given resource group.
418
+ * @param nextPageLink The NextLink from the previous successful call to List operation.
419
+ * @param [options] The optional parameters
420
+ * @returns Promise<Models.IotDpsResourceListByResourceGroupNextResponse>
421
+ */
422
+ listByResourceGroupNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.IotDpsResourceListByResourceGroupNextResponse>;
423
+ /**
424
+ * @param nextPageLink The NextLink from the previous successful call to List operation.
425
+ * @param callback The callback
426
+ */
427
+ listByResourceGroupNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.ProvisioningServiceDescriptionListResult>): void;
428
+ /**
429
+ * @param nextPageLink The NextLink from the previous successful call to List operation.
430
+ * @param options The optional parameters
431
+ * @param callback The callback
432
+ */
433
+ listByResourceGroupNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.ProvisioningServiceDescriptionListResult>): void;
434
+ /**
435
+ * Gets the list of valid SKUs and tiers for a provisioning service.
436
+ * @summary Get the list of valid SKUs for a provisioning service.
437
+ * @param nextPageLink The NextLink from the previous successful call to List operation.
438
+ * @param [options] The optional parameters
439
+ * @returns Promise<Models.IotDpsResourceListValidSkusNextResponse>
440
+ */
441
+ listValidSkusNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.IotDpsResourceListValidSkusNextResponse>;
442
+ /**
443
+ * @param nextPageLink The NextLink from the previous successful call to List operation.
444
+ * @param callback The callback
445
+ */
446
+ listValidSkusNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.IotDpsSkuDefinitionListResult>): void;
447
+ /**
448
+ * @param nextPageLink The NextLink from the previous successful call to List operation.
449
+ * @param options The optional parameters
450
+ * @param callback The callback
451
+ */
452
+ listValidSkusNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.IotDpsSkuDefinitionListResult>): void;
453
+ /**
454
+ * List the primary and secondary keys for a provisioning service.
455
+ * @summary Get the security metadata for a provisioning service.
456
+ * @param nextPageLink The NextLink from the previous successful call to List operation.
457
+ * @param [options] The optional parameters
458
+ * @returns Promise<Models.IotDpsResourceListKeysNextResponse>
459
+ */
460
+ listKeysNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.IotDpsResourceListKeysNextResponse>;
461
+ /**
462
+ * @param nextPageLink The NextLink from the previous successful call to List operation.
463
+ * @param callback The callback
464
+ */
465
+ listKeysNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.SharedAccessSignatureAuthorizationRuleListResult>): void;
466
+ /**
467
+ * @param nextPageLink The NextLink from the previous successful call to List operation.
468
+ * @param options The optional parameters
469
+ * @param callback The callback
470
+ */
471
+ listKeysNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.SharedAccessSignatureAuthorizationRuleListResult>): void;
472
+ }
473
+ //# sourceMappingURL=iotDpsResource.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"iotDpsResource.d.ts","sourceRoot":"","sources":["../../src/operations/iotDpsResource.ts"],"names":[],"mappings":"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"}