@azure/arm-servicefabricmesh 2.2.1 → 3.0.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (267) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/LICENSE +21 -0
  3. package/README.md +69 -80
  4. package/dist/index.js +5478 -0
  5. package/dist/index.js.map +1 -0
  6. package/dist/index.min.js +1 -0
  7. package/dist/index.min.js.map +1 -0
  8. package/dist-esm/src/index.d.ts +5 -0
  9. package/dist-esm/src/index.d.ts.map +1 -0
  10. package/dist-esm/src/index.js +12 -0
  11. package/dist-esm/src/index.js.map +1 -0
  12. package/dist-esm/src/models/index.d.ts +1366 -0
  13. package/dist-esm/src/models/index.d.ts.map +1 -0
  14. package/dist-esm/src/models/index.js +121 -0
  15. package/dist-esm/src/models/index.js.map +1 -0
  16. package/dist-esm/src/models/mappers.d.ts +105 -0
  17. package/dist-esm/src/models/mappers.d.ts.map +1 -0
  18. package/{esm → dist-esm/src}/models/mappers.js +1264 -1320
  19. package/dist-esm/src/models/mappers.js.map +1 -0
  20. package/dist-esm/src/models/parameters.d.ts +25 -0
  21. package/dist-esm/src/models/parameters.d.ts.map +1 -0
  22. package/{esm → dist-esm/src}/models/parameters.js +104 -62
  23. package/dist-esm/src/models/parameters.js.map +1 -0
  24. package/dist-esm/src/operations/application.d.ts +82 -0
  25. package/dist-esm/src/operations/application.d.ts.map +1 -0
  26. package/dist-esm/src/operations/application.js +340 -0
  27. package/dist-esm/src/operations/application.js.map +1 -0
  28. package/dist-esm/src/operations/codePackage.d.ts +23 -0
  29. package/dist-esm/src/operations/codePackage.d.ts.map +1 -0
  30. package/dist-esm/src/operations/codePackage.js +66 -0
  31. package/dist-esm/src/operations/codePackage.js.map +1 -0
  32. package/dist-esm/src/operations/gateway.d.ts +83 -0
  33. package/dist-esm/src/operations/gateway.d.ts.map +1 -0
  34. package/dist-esm/src/operations/gateway.js +341 -0
  35. package/dist-esm/src/operations/gateway.js.map +1 -0
  36. package/{esm → dist-esm/src}/operations/index.d.ts +0 -0
  37. package/dist-esm/src/operations/index.d.ts.map +1 -0
  38. package/{esm → dist-esm/src}/operations/index.js +3 -5
  39. package/dist-esm/src/operations/index.js.map +1 -0
  40. package/dist-esm/src/operations/network.d.ts +82 -0
  41. package/dist-esm/src/operations/network.d.ts.map +1 -0
  42. package/dist-esm/src/operations/network.js +340 -0
  43. package/dist-esm/src/operations/network.js.map +1 -0
  44. package/dist-esm/src/operations/operations.d.ts +32 -0
  45. package/dist-esm/src/operations/operations.d.ts.map +1 -0
  46. package/dist-esm/src/operations/operations.js +120 -0
  47. package/dist-esm/src/operations/operations.js.map +1 -0
  48. package/dist-esm/src/operations/secret.d.ts +81 -0
  49. package/dist-esm/src/operations/secret.d.ts.map +1 -0
  50. package/dist-esm/src/operations/secret.js +339 -0
  51. package/dist-esm/src/operations/secret.js.map +1 -0
  52. package/dist-esm/src/operations/secretValueOperations.d.ts +81 -0
  53. package/dist-esm/src/operations/secretValueOperations.d.ts.map +1 -0
  54. package/dist-esm/src/operations/secretValueOperations.js +303 -0
  55. package/dist-esm/src/operations/secretValueOperations.js.map +1 -0
  56. package/dist-esm/src/operations/service.d.ts +49 -0
  57. package/dist-esm/src/operations/service.d.ts.map +1 -0
  58. package/dist-esm/src/operations/service.js +177 -0
  59. package/dist-esm/src/operations/service.js.map +1 -0
  60. package/dist-esm/src/operations/serviceReplica.d.ts +53 -0
  61. package/dist-esm/src/operations/serviceReplica.d.ts.map +1 -0
  62. package/dist-esm/src/operations/serviceReplica.js +196 -0
  63. package/dist-esm/src/operations/serviceReplica.js.map +1 -0
  64. package/dist-esm/src/operations/volume.d.ts +81 -0
  65. package/dist-esm/src/operations/volume.d.ts.map +1 -0
  66. package/dist-esm/src/operations/volume.js +339 -0
  67. package/dist-esm/src/operations/volume.js.map +1 -0
  68. package/dist-esm/src/operationsInterfaces/application.d.ts +44 -0
  69. package/dist-esm/src/operationsInterfaces/application.d.ts.map +1 -0
  70. package/dist-esm/src/operationsInterfaces/application.js +9 -0
  71. package/dist-esm/src/operationsInterfaces/application.js.map +1 -0
  72. package/dist-esm/src/operationsInterfaces/codePackage.d.ts +15 -0
  73. package/dist-esm/src/operationsInterfaces/codePackage.d.ts.map +1 -0
  74. package/dist-esm/src/operationsInterfaces/codePackage.js +9 -0
  75. package/dist-esm/src/operationsInterfaces/codePackage.js.map +1 -0
  76. package/dist-esm/src/operationsInterfaces/gateway.d.ts +45 -0
  77. package/dist-esm/src/operationsInterfaces/gateway.d.ts.map +1 -0
  78. package/dist-esm/src/operationsInterfaces/gateway.js +9 -0
  79. package/dist-esm/src/operationsInterfaces/gateway.js.map +1 -0
  80. package/dist-esm/src/operationsInterfaces/index.d.ts +11 -0
  81. package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
  82. package/dist-esm/src/operationsInterfaces/index.js +18 -0
  83. package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
  84. package/dist-esm/src/operationsInterfaces/network.d.ts +44 -0
  85. package/dist-esm/src/operationsInterfaces/network.d.ts.map +1 -0
  86. package/dist-esm/src/operationsInterfaces/network.js +9 -0
  87. package/dist-esm/src/operationsInterfaces/network.js.map +1 -0
  88. package/dist-esm/src/operationsInterfaces/operations.d.ts +11 -0
  89. package/dist-esm/src/operationsInterfaces/operations.d.ts.map +1 -0
  90. package/dist-esm/src/operationsInterfaces/operations.js +9 -0
  91. package/dist-esm/src/operationsInterfaces/operations.js.map +1 -0
  92. package/dist-esm/src/operationsInterfaces/secret.d.ts +43 -0
  93. package/dist-esm/src/operationsInterfaces/secret.d.ts.map +1 -0
  94. package/dist-esm/src/operationsInterfaces/secret.js +9 -0
  95. package/dist-esm/src/operationsInterfaces/secret.js.map +1 -0
  96. package/dist-esm/src/operationsInterfaces/secretValueOperations.d.ts +55 -0
  97. package/dist-esm/src/operationsInterfaces/secretValueOperations.d.ts.map +1 -0
  98. package/dist-esm/src/operationsInterfaces/secretValueOperations.js +9 -0
  99. package/dist-esm/src/operationsInterfaces/secretValueOperations.js.map +1 -0
  100. package/dist-esm/src/operationsInterfaces/service.d.ts +23 -0
  101. package/dist-esm/src/operationsInterfaces/service.d.ts.map +1 -0
  102. package/dist-esm/src/operationsInterfaces/service.js +9 -0
  103. package/dist-esm/src/operationsInterfaces/service.js.map +1 -0
  104. package/dist-esm/src/operationsInterfaces/serviceReplica.d.ts +25 -0
  105. package/dist-esm/src/operationsInterfaces/serviceReplica.d.ts.map +1 -0
  106. package/dist-esm/src/operationsInterfaces/serviceReplica.js +9 -0
  107. package/dist-esm/src/operationsInterfaces/serviceReplica.js.map +1 -0
  108. package/dist-esm/src/operationsInterfaces/volume.d.ts +43 -0
  109. package/dist-esm/src/operationsInterfaces/volume.d.ts.map +1 -0
  110. package/dist-esm/src/operationsInterfaces/volume.js +9 -0
  111. package/dist-esm/src/operationsInterfaces/volume.js.map +1 -0
  112. package/dist-esm/src/serviceFabricMeshManagementClient.d.ts +27 -0
  113. package/dist-esm/src/serviceFabricMeshManagementClient.d.ts.map +1 -0
  114. package/dist-esm/src/serviceFabricMeshManagementClient.js +60 -0
  115. package/dist-esm/src/serviceFabricMeshManagementClient.js.map +1 -0
  116. package/dist-esm/test/sampleTest.d.ts +2 -0
  117. package/dist-esm/test/sampleTest.d.ts.map +1 -0
  118. package/dist-esm/test/sampleTest.js +40 -0
  119. package/dist-esm/test/sampleTest.js.map +1 -0
  120. package/package.json +85 -26
  121. package/review/arm-servicefabricmesh.api.md +1210 -0
  122. package/rollup.config.js +184 -27
  123. package/src/index.ts +12 -0
  124. package/src/models/index.ts +1281 -2775
  125. package/src/models/mappers.ts +1315 -1344
  126. package/src/models/parameters.ts +138 -63
  127. package/src/operations/application.ts +260 -269
  128. package/src/operations/codePackage.ts +44 -60
  129. package/src/operations/gateway.ts +263 -272
  130. package/src/operations/index.ts +3 -5
  131. package/src/operations/network.ts +262 -271
  132. package/src/operations/operations.ts +87 -75
  133. package/src/operations/secret.ts +261 -271
  134. package/src/operations/secretValueOperations.ts +239 -259
  135. package/src/operations/service.ts +161 -124
  136. package/src/operations/serviceReplica.ts +177 -120
  137. package/src/operations/volume.ts +261 -271
  138. package/src/operationsInterfaces/application.ts +80 -0
  139. package/src/operationsInterfaces/codePackage.ts +33 -0
  140. package/src/operationsInterfaces/gateway.ts +81 -0
  141. package/src/operationsInterfaces/index.ts +18 -0
  142. package/src/operationsInterfaces/network.ts +80 -0
  143. package/src/operationsInterfaces/operations.ts +22 -0
  144. package/src/operationsInterfaces/secret.ts +79 -0
  145. package/src/operationsInterfaces/secretValueOperations.ts +99 -0
  146. package/src/operationsInterfaces/service.ts +46 -0
  147. package/src/operationsInterfaces/serviceReplica.ts +50 -0
  148. package/src/operationsInterfaces/volume.ts +79 -0
  149. package/src/serviceFabricMeshManagementClient.ts +102 -53
  150. package/tsconfig.json +20 -7
  151. package/types/arm-servicefabricmesh.d.ts +1940 -0
  152. package/types/tsdoc-metadata.json +11 -0
  153. package/dist/arm-servicefabricmesh.js +0 -5363
  154. package/dist/arm-servicefabricmesh.js.map +0 -1
  155. package/dist/arm-servicefabricmesh.min.js +0 -1
  156. package/dist/arm-servicefabricmesh.min.js.map +0 -1
  157. package/esm/models/applicationMappers.d.ts +0 -2
  158. package/esm/models/applicationMappers.d.ts.map +0 -1
  159. package/esm/models/applicationMappers.js +0 -11
  160. package/esm/models/applicationMappers.js.map +0 -1
  161. package/esm/models/codePackageMappers.d.ts +0 -2
  162. package/esm/models/codePackageMappers.d.ts.map +0 -1
  163. package/esm/models/codePackageMappers.js +0 -11
  164. package/esm/models/codePackageMappers.js.map +0 -1
  165. package/esm/models/gatewayMappers.d.ts +0 -2
  166. package/esm/models/gatewayMappers.d.ts.map +0 -1
  167. package/esm/models/gatewayMappers.js +0 -11
  168. package/esm/models/gatewayMappers.js.map +0 -1
  169. package/esm/models/index.d.ts +0 -2938
  170. package/esm/models/index.d.ts.map +0 -1
  171. package/esm/models/index.js +0 -10
  172. package/esm/models/index.js.map +0 -1
  173. package/esm/models/mappers.d.ts +0 -102
  174. package/esm/models/mappers.d.ts.map +0 -1
  175. package/esm/models/mappers.js.map +0 -1
  176. package/esm/models/networkMappers.d.ts +0 -2
  177. package/esm/models/networkMappers.d.ts.map +0 -1
  178. package/esm/models/networkMappers.js +0 -11
  179. package/esm/models/networkMappers.js.map +0 -1
  180. package/esm/models/operationsMappers.d.ts +0 -2
  181. package/esm/models/operationsMappers.d.ts.map +0 -1
  182. package/esm/models/operationsMappers.js +0 -11
  183. package/esm/models/operationsMappers.js.map +0 -1
  184. package/esm/models/parameters.d.ts +0 -17
  185. package/esm/models/parameters.d.ts.map +0 -1
  186. package/esm/models/parameters.js.map +0 -1
  187. package/esm/models/secretMappers.d.ts +0 -2
  188. package/esm/models/secretMappers.d.ts.map +0 -1
  189. package/esm/models/secretMappers.js +0 -11
  190. package/esm/models/secretMappers.js.map +0 -1
  191. package/esm/models/secretValueOperationsMappers.d.ts +0 -2
  192. package/esm/models/secretValueOperationsMappers.d.ts.map +0 -1
  193. package/esm/models/secretValueOperationsMappers.js +0 -11
  194. package/esm/models/secretValueOperationsMappers.js.map +0 -1
  195. package/esm/models/serviceMappers.d.ts +0 -2
  196. package/esm/models/serviceMappers.d.ts.map +0 -1
  197. package/esm/models/serviceMappers.js +0 -11
  198. package/esm/models/serviceMappers.js.map +0 -1
  199. package/esm/models/serviceReplicaMappers.d.ts +0 -2
  200. package/esm/models/serviceReplicaMappers.d.ts.map +0 -1
  201. package/esm/models/serviceReplicaMappers.js +0 -11
  202. package/esm/models/serviceReplicaMappers.js.map +0 -1
  203. package/esm/models/volumeMappers.d.ts +0 -2
  204. package/esm/models/volumeMappers.d.ts.map +0 -1
  205. package/esm/models/volumeMappers.js +0 -11
  206. package/esm/models/volumeMappers.js.map +0 -1
  207. package/esm/operations/application.d.ts +0 -162
  208. package/esm/operations/application.d.ts.map +0 -1
  209. package/esm/operations/application.js +0 -238
  210. package/esm/operations/application.js.map +0 -1
  211. package/esm/operations/codePackage.d.ts +0 -44
  212. package/esm/operations/codePackage.d.ts.map +0 -1
  213. package/esm/operations/codePackage.js +0 -65
  214. package/esm/operations/codePackage.js.map +0 -1
  215. package/esm/operations/gateway.d.ts +0 -163
  216. package/esm/operations/gateway.d.ts.map +0 -1
  217. package/esm/operations/gateway.js +0 -238
  218. package/esm/operations/gateway.js.map +0 -1
  219. package/esm/operations/index.d.ts.map +0 -1
  220. package/esm/operations/index.js.map +0 -1
  221. package/esm/operations/network.d.ts +0 -162
  222. package/esm/operations/network.d.ts.map +0 -1
  223. package/esm/operations/network.js +0 -238
  224. package/esm/operations/network.js.map +0 -1
  225. package/esm/operations/operations.d.ts +0 -48
  226. package/esm/operations/operations.d.ts.map +0 -1
  227. package/esm/operations/operations.js +0 -77
  228. package/esm/operations/operations.js.map +0 -1
  229. package/esm/operations/secret.d.ts +0 -162
  230. package/esm/operations/secret.d.ts.map +0 -1
  231. package/esm/operations/secret.js +0 -238
  232. package/esm/operations/secret.js.map +0 -1
  233. package/esm/operations/secretValueOperations.d.ts +0 -175
  234. package/esm/operations/secretValueOperations.d.ts.map +0 -1
  235. package/esm/operations/secretValueOperations.js +0 -226
  236. package/esm/operations/secretValueOperations.js.map +0 -1
  237. package/esm/operations/service.d.ts +0 -82
  238. package/esm/operations/service.d.ts.map +0 -1
  239. package/esm/operations/service.js +0 -117
  240. package/esm/operations/service.js.map +0 -1
  241. package/esm/operations/serviceReplica.d.ts +0 -88
  242. package/esm/operations/serviceReplica.d.ts.map +0 -1
  243. package/esm/operations/serviceReplica.js +0 -121
  244. package/esm/operations/serviceReplica.js.map +0 -1
  245. package/esm/operations/volume.d.ts +0 -162
  246. package/esm/operations/volume.d.ts.map +0 -1
  247. package/esm/operations/volume.js +0 -238
  248. package/esm/operations/volume.js.map +0 -1
  249. package/esm/serviceFabricMeshManagementClient.d.ts +0 -33
  250. package/esm/serviceFabricMeshManagementClient.d.ts.map +0 -1
  251. package/esm/serviceFabricMeshManagementClient.js +0 -47
  252. package/esm/serviceFabricMeshManagementClient.js.map +0 -1
  253. package/esm/serviceFabricMeshManagementClientContext.d.ts +0 -22
  254. package/esm/serviceFabricMeshManagementClientContext.d.ts.map +0 -1
  255. package/esm/serviceFabricMeshManagementClientContext.js +0 -61
  256. package/esm/serviceFabricMeshManagementClientContext.js.map +0 -1
  257. package/src/models/applicationMappers.ts +0 -76
  258. package/src/models/codePackageMappers.ts +0 -18
  259. package/src/models/gatewayMappers.ts +0 -76
  260. package/src/models/networkMappers.ts +0 -76
  261. package/src/models/operationsMappers.ts +0 -20
  262. package/src/models/secretMappers.ts +0 -76
  263. package/src/models/secretValueOperationsMappers.ts +0 -77
  264. package/src/models/serviceMappers.ts +0 -76
  265. package/src/models/serviceReplicaMappers.ts +0 -40
  266. package/src/models/volumeMappers.ts +0 -76
  267. package/src/serviceFabricMeshManagementClientContext.ts +0 -68
@@ -1,163 +0,0 @@
1
- import * as msRest from "@azure/ms-rest-js";
2
- import * as Models from "../models";
3
- import { ServiceFabricMeshManagementClientContext } from "../serviceFabricMeshManagementClientContext";
4
- /** Class representing a Gateway. */
5
- export declare class Gateway {
6
- private readonly client;
7
- /**
8
- * Create a Gateway.
9
- * @param {ServiceFabricMeshManagementClientContext} client Reference to the service client.
10
- */
11
- constructor(client: ServiceFabricMeshManagementClientContext);
12
- /**
13
- * Creates a gateway resource with the specified name, description and properties. If a gateway
14
- * resource with the same name exists, then it is updated with the specified description and
15
- * properties. Use gateway resources to create a gateway for public connectivity for services
16
- * within your application.
17
- * @summary Creates or updates a gateway resource.
18
- * @param resourceGroupName Azure resource group name
19
- * @param gatewayResourceName The identity of the gateway.
20
- * @param gatewayResourceDescription Description for creating a Gateway resource.
21
- * @param [options] The optional parameters
22
- * @returns Promise<Models.GatewayCreateResponse>
23
- */
24
- create(resourceGroupName: string, gatewayResourceName: string, gatewayResourceDescription: Models.GatewayResourceDescription, options?: msRest.RequestOptionsBase): Promise<Models.GatewayCreateResponse>;
25
- /**
26
- * @param resourceGroupName Azure resource group name
27
- * @param gatewayResourceName The identity of the gateway.
28
- * @param gatewayResourceDescription Description for creating a Gateway resource.
29
- * @param callback The callback
30
- */
31
- create(resourceGroupName: string, gatewayResourceName: string, gatewayResourceDescription: Models.GatewayResourceDescription, callback: msRest.ServiceCallback<Models.GatewayResourceDescription>): void;
32
- /**
33
- * @param resourceGroupName Azure resource group name
34
- * @param gatewayResourceName The identity of the gateway.
35
- * @param gatewayResourceDescription Description for creating a Gateway resource.
36
- * @param options The optional parameters
37
- * @param callback The callback
38
- */
39
- create(resourceGroupName: string, gatewayResourceName: string, gatewayResourceDescription: Models.GatewayResourceDescription, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.GatewayResourceDescription>): void;
40
- /**
41
- * Gets the information about the gateway resource with the given name. The information include the
42
- * description and other properties of the gateway.
43
- * @summary Gets the gateway resource with the given name.
44
- * @param resourceGroupName Azure resource group name
45
- * @param gatewayResourceName The identity of the gateway.
46
- * @param [options] The optional parameters
47
- * @returns Promise<Models.GatewayGetResponse>
48
- */
49
- get(resourceGroupName: string, gatewayResourceName: string, options?: msRest.RequestOptionsBase): Promise<Models.GatewayGetResponse>;
50
- /**
51
- * @param resourceGroupName Azure resource group name
52
- * @param gatewayResourceName The identity of the gateway.
53
- * @param callback The callback
54
- */
55
- get(resourceGroupName: string, gatewayResourceName: string, callback: msRest.ServiceCallback<Models.GatewayResourceDescription>): void;
56
- /**
57
- * @param resourceGroupName Azure resource group name
58
- * @param gatewayResourceName The identity of the gateway.
59
- * @param options The optional parameters
60
- * @param callback The callback
61
- */
62
- get(resourceGroupName: string, gatewayResourceName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.GatewayResourceDescription>): void;
63
- /**
64
- * Deletes the gateway resource identified by the name.
65
- * @summary Deletes the gateway resource.
66
- * @param resourceGroupName Azure resource group name
67
- * @param gatewayResourceName The identity of the gateway.
68
- * @param [options] The optional parameters
69
- * @returns Promise<msRest.RestResponse>
70
- */
71
- deleteMethod(resourceGroupName: string, gatewayResourceName: string, options?: msRest.RequestOptionsBase): Promise<msRest.RestResponse>;
72
- /**
73
- * @param resourceGroupName Azure resource group name
74
- * @param gatewayResourceName The identity of the gateway.
75
- * @param callback The callback
76
- */
77
- deleteMethod(resourceGroupName: string, gatewayResourceName: string, callback: msRest.ServiceCallback<void>): void;
78
- /**
79
- * @param resourceGroupName Azure resource group name
80
- * @param gatewayResourceName The identity of the gateway.
81
- * @param options The optional parameters
82
- * @param callback The callback
83
- */
84
- deleteMethod(resourceGroupName: string, gatewayResourceName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<void>): void;
85
- /**
86
- * Gets the information about all gateway resources in a given resource group. The information
87
- * include the description and other properties of the Gateway.
88
- * @summary Gets all the gateway resources in a given resource group.
89
- * @param resourceGroupName Azure resource group name
90
- * @param [options] The optional parameters
91
- * @returns Promise<Models.GatewayListByResourceGroupResponse>
92
- */
93
- listByResourceGroup(resourceGroupName: string, options?: msRest.RequestOptionsBase): Promise<Models.GatewayListByResourceGroupResponse>;
94
- /**
95
- * @param resourceGroupName Azure resource group name
96
- * @param callback The callback
97
- */
98
- listByResourceGroup(resourceGroupName: string, callback: msRest.ServiceCallback<Models.GatewayResourceDescriptionList>): void;
99
- /**
100
- * @param resourceGroupName Azure resource group name
101
- * @param options The optional parameters
102
- * @param callback The callback
103
- */
104
- listByResourceGroup(resourceGroupName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.GatewayResourceDescriptionList>): void;
105
- /**
106
- * Gets the information about all gateway resources in a given resource group. The information
107
- * include the description and other properties of the gateway.
108
- * @summary Gets all the gateway resources in a given subscription.
109
- * @param [options] The optional parameters
110
- * @returns Promise<Models.GatewayListBySubscriptionResponse>
111
- */
112
- listBySubscription(options?: msRest.RequestOptionsBase): Promise<Models.GatewayListBySubscriptionResponse>;
113
- /**
114
- * @param callback The callback
115
- */
116
- listBySubscription(callback: msRest.ServiceCallback<Models.GatewayResourceDescriptionList>): void;
117
- /**
118
- * @param options The optional parameters
119
- * @param callback The callback
120
- */
121
- listBySubscription(options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.GatewayResourceDescriptionList>): void;
122
- /**
123
- * Gets the information about all gateway resources in a given resource group. The information
124
- * include the description and other properties of the Gateway.
125
- * @summary Gets all the gateway resources in a given resource group.
126
- * @param nextPageLink The NextLink from the previous successful call to List operation.
127
- * @param [options] The optional parameters
128
- * @returns Promise<Models.GatewayListByResourceGroupNextResponse>
129
- */
130
- listByResourceGroupNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.GatewayListByResourceGroupNextResponse>;
131
- /**
132
- * @param nextPageLink The NextLink from the previous successful call to List operation.
133
- * @param callback The callback
134
- */
135
- listByResourceGroupNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.GatewayResourceDescriptionList>): void;
136
- /**
137
- * @param nextPageLink The NextLink from the previous successful call to List operation.
138
- * @param options The optional parameters
139
- * @param callback The callback
140
- */
141
- listByResourceGroupNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.GatewayResourceDescriptionList>): void;
142
- /**
143
- * Gets the information about all gateway resources in a given resource group. The information
144
- * include the description and other properties of the gateway.
145
- * @summary Gets all the gateway resources in a given subscription.
146
- * @param nextPageLink The NextLink from the previous successful call to List operation.
147
- * @param [options] The optional parameters
148
- * @returns Promise<Models.GatewayListBySubscriptionNextResponse>
149
- */
150
- listBySubscriptionNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.GatewayListBySubscriptionNextResponse>;
151
- /**
152
- * @param nextPageLink The NextLink from the previous successful call to List operation.
153
- * @param callback The callback
154
- */
155
- listBySubscriptionNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.GatewayResourceDescriptionList>): void;
156
- /**
157
- * @param nextPageLink The NextLink from the previous successful call to List operation.
158
- * @param options The optional parameters
159
- * @param callback The callback
160
- */
161
- listBySubscriptionNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.GatewayResourceDescriptionList>): void;
162
- }
163
- //# sourceMappingURL=gateway.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"gateway.d.ts","sourceRoot":"","sources":["../../src/operations/gateway.ts"],"names":[],"mappings":"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"}
@@ -1,238 +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 { __assign } from "tslib";
11
- import * as msRest from "@azure/ms-rest-js";
12
- import * as Mappers from "../models/gatewayMappers";
13
- import * as Parameters from "../models/parameters";
14
- /** Class representing a Gateway. */
15
- var Gateway = /** @class */ (function () {
16
- /**
17
- * Create a Gateway.
18
- * @param {ServiceFabricMeshManagementClientContext} client Reference to the service client.
19
- */
20
- function Gateway(client) {
21
- this.client = client;
22
- }
23
- Gateway.prototype.create = function (resourceGroupName, gatewayResourceName, gatewayResourceDescription, options, callback) {
24
- return this.client.sendOperationRequest({
25
- resourceGroupName: resourceGroupName,
26
- gatewayResourceName: gatewayResourceName,
27
- gatewayResourceDescription: gatewayResourceDescription,
28
- options: options
29
- }, createOperationSpec, callback);
30
- };
31
- Gateway.prototype.get = function (resourceGroupName, gatewayResourceName, options, callback) {
32
- return this.client.sendOperationRequest({
33
- resourceGroupName: resourceGroupName,
34
- gatewayResourceName: gatewayResourceName,
35
- options: options
36
- }, getOperationSpec, callback);
37
- };
38
- Gateway.prototype.deleteMethod = function (resourceGroupName, gatewayResourceName, options, callback) {
39
- return this.client.sendOperationRequest({
40
- resourceGroupName: resourceGroupName,
41
- gatewayResourceName: gatewayResourceName,
42
- options: options
43
- }, deleteMethodOperationSpec, callback);
44
- };
45
- Gateway.prototype.listByResourceGroup = function (resourceGroupName, options, callback) {
46
- return this.client.sendOperationRequest({
47
- resourceGroupName: resourceGroupName,
48
- options: options
49
- }, listByResourceGroupOperationSpec, callback);
50
- };
51
- Gateway.prototype.listBySubscription = function (options, callback) {
52
- return this.client.sendOperationRequest({
53
- options: options
54
- }, listBySubscriptionOperationSpec, callback);
55
- };
56
- Gateway.prototype.listByResourceGroupNext = function (nextPageLink, options, callback) {
57
- return this.client.sendOperationRequest({
58
- nextPageLink: nextPageLink,
59
- options: options
60
- }, listByResourceGroupNextOperationSpec, callback);
61
- };
62
- Gateway.prototype.listBySubscriptionNext = function (nextPageLink, options, callback) {
63
- return this.client.sendOperationRequest({
64
- nextPageLink: nextPageLink,
65
- options: options
66
- }, listBySubscriptionNextOperationSpec, callback);
67
- };
68
- return Gateway;
69
- }());
70
- export { Gateway };
71
- // Operation Specifications
72
- var serializer = new msRest.Serializer(Mappers);
73
- var createOperationSpec = {
74
- httpMethod: "PUT",
75
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabricMesh/gateways/{gatewayResourceName}",
76
- urlParameters: [
77
- Parameters.subscriptionId,
78
- Parameters.resourceGroupName,
79
- Parameters.gatewayResourceName
80
- ],
81
- queryParameters: [
82
- Parameters.apiVersion
83
- ],
84
- headerParameters: [
85
- Parameters.acceptLanguage
86
- ],
87
- requestBody: {
88
- parameterPath: "gatewayResourceDescription",
89
- mapper: __assign(__assign({}, Mappers.GatewayResourceDescription), { required: true })
90
- },
91
- responses: {
92
- 200: {
93
- bodyMapper: Mappers.GatewayResourceDescription
94
- },
95
- 201: {
96
- bodyMapper: Mappers.GatewayResourceDescription
97
- },
98
- 202: {},
99
- default: {
100
- bodyMapper: Mappers.ErrorModel
101
- }
102
- },
103
- serializer: serializer
104
- };
105
- var getOperationSpec = {
106
- httpMethod: "GET",
107
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabricMesh/gateways/{gatewayResourceName}",
108
- urlParameters: [
109
- Parameters.subscriptionId,
110
- Parameters.resourceGroupName,
111
- Parameters.gatewayResourceName
112
- ],
113
- queryParameters: [
114
- Parameters.apiVersion
115
- ],
116
- headerParameters: [
117
- Parameters.acceptLanguage
118
- ],
119
- responses: {
120
- 200: {
121
- bodyMapper: Mappers.GatewayResourceDescription
122
- },
123
- default: {
124
- bodyMapper: Mappers.ErrorModel
125
- }
126
- },
127
- serializer: serializer
128
- };
129
- var deleteMethodOperationSpec = {
130
- httpMethod: "DELETE",
131
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabricMesh/gateways/{gatewayResourceName}",
132
- urlParameters: [
133
- Parameters.subscriptionId,
134
- Parameters.resourceGroupName,
135
- Parameters.gatewayResourceName
136
- ],
137
- queryParameters: [
138
- Parameters.apiVersion
139
- ],
140
- headerParameters: [
141
- Parameters.acceptLanguage
142
- ],
143
- responses: {
144
- 200: {},
145
- 202: {},
146
- 204: {},
147
- default: {
148
- bodyMapper: Mappers.ErrorModel
149
- }
150
- },
151
- serializer: serializer
152
- };
153
- var listByResourceGroupOperationSpec = {
154
- httpMethod: "GET",
155
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabricMesh/gateways",
156
- urlParameters: [
157
- Parameters.subscriptionId,
158
- Parameters.resourceGroupName
159
- ],
160
- queryParameters: [
161
- Parameters.apiVersion
162
- ],
163
- headerParameters: [
164
- Parameters.acceptLanguage
165
- ],
166
- responses: {
167
- 200: {
168
- bodyMapper: Mappers.GatewayResourceDescriptionList
169
- },
170
- default: {
171
- bodyMapper: Mappers.ErrorModel
172
- }
173
- },
174
- serializer: serializer
175
- };
176
- var listBySubscriptionOperationSpec = {
177
- httpMethod: "GET",
178
- path: "subscriptions/{subscriptionId}/providers/Microsoft.ServiceFabricMesh/gateways",
179
- urlParameters: [
180
- Parameters.subscriptionId
181
- ],
182
- queryParameters: [
183
- Parameters.apiVersion
184
- ],
185
- headerParameters: [
186
- Parameters.acceptLanguage
187
- ],
188
- responses: {
189
- 200: {
190
- bodyMapper: Mappers.GatewayResourceDescriptionList
191
- },
192
- default: {
193
- bodyMapper: Mappers.ErrorModel
194
- }
195
- },
196
- serializer: serializer
197
- };
198
- var listByResourceGroupNextOperationSpec = {
199
- httpMethod: "GET",
200
- baseUrl: "https://management.azure.com",
201
- path: "{nextLink}",
202
- urlParameters: [
203
- Parameters.nextPageLink
204
- ],
205
- headerParameters: [
206
- Parameters.acceptLanguage
207
- ],
208
- responses: {
209
- 200: {
210
- bodyMapper: Mappers.GatewayResourceDescriptionList
211
- },
212
- default: {
213
- bodyMapper: Mappers.ErrorModel
214
- }
215
- },
216
- serializer: serializer
217
- };
218
- var listBySubscriptionNextOperationSpec = {
219
- httpMethod: "GET",
220
- baseUrl: "https://management.azure.com",
221
- path: "{nextLink}",
222
- urlParameters: [
223
- Parameters.nextPageLink
224
- ],
225
- headerParameters: [
226
- Parameters.acceptLanguage
227
- ],
228
- responses: {
229
- 200: {
230
- bodyMapper: Mappers.GatewayResourceDescriptionList
231
- },
232
- default: {
233
- bodyMapper: Mappers.ErrorModel
234
- }
235
- },
236
- serializer: serializer
237
- };
238
- //# sourceMappingURL=gateway.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"gateway.js","sourceRoot":"","sources":["../../src/operations/gateway.ts"],"names":[],"mappings":"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"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/operations/index.ts"],"names":[],"mappings":"AAUA,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,yBAAyB,CAAC;AACxC,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,eAAe,CAAC;AAC9B,cAAc,WAAW,CAAC;AAC1B,cAAc,kBAAkB,CAAC;AACjC,cAAc,eAAe,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/operations/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,yBAAyB,CAAC;AACxC,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,eAAe,CAAC;AAC9B,cAAc,WAAW,CAAC;AAC1B,cAAc,kBAAkB,CAAC;AACjC,cAAc,eAAe,CAAC"}
@@ -1,162 +0,0 @@
1
- import * as msRest from "@azure/ms-rest-js";
2
- import * as Models from "../models";
3
- import { ServiceFabricMeshManagementClientContext } from "../serviceFabricMeshManagementClientContext";
4
- /** Class representing a Network. */
5
- export declare class Network {
6
- private readonly client;
7
- /**
8
- * Create a Network.
9
- * @param {ServiceFabricMeshManagementClientContext} client Reference to the service client.
10
- */
11
- constructor(client: ServiceFabricMeshManagementClientContext);
12
- /**
13
- * Creates a network resource with the specified name, description and properties. If a network
14
- * resource with the same name exists, then it is updated with the specified description and
15
- * properties.
16
- * @summary Creates or updates a network resource.
17
- * @param resourceGroupName Azure resource group name
18
- * @param networkResourceName The identity of the network.
19
- * @param networkResourceDescription Description for creating a Network resource.
20
- * @param [options] The optional parameters
21
- * @returns Promise<Models.NetworkCreateResponse>
22
- */
23
- create(resourceGroupName: string, networkResourceName: string, networkResourceDescription: Models.NetworkResourceDescription, options?: msRest.RequestOptionsBase): Promise<Models.NetworkCreateResponse>;
24
- /**
25
- * @param resourceGroupName Azure resource group name
26
- * @param networkResourceName The identity of the network.
27
- * @param networkResourceDescription Description for creating a Network resource.
28
- * @param callback The callback
29
- */
30
- create(resourceGroupName: string, networkResourceName: string, networkResourceDescription: Models.NetworkResourceDescription, callback: msRest.ServiceCallback<Models.NetworkResourceDescription>): void;
31
- /**
32
- * @param resourceGroupName Azure resource group name
33
- * @param networkResourceName The identity of the network.
34
- * @param networkResourceDescription Description for creating a Network resource.
35
- * @param options The optional parameters
36
- * @param callback The callback
37
- */
38
- create(resourceGroupName: string, networkResourceName: string, networkResourceDescription: Models.NetworkResourceDescription, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.NetworkResourceDescription>): void;
39
- /**
40
- * Gets the information about the network resource with the given name. The information include the
41
- * description and other properties of the network.
42
- * @summary Gets the network resource with the given name.
43
- * @param resourceGroupName Azure resource group name
44
- * @param networkResourceName The identity of the network.
45
- * @param [options] The optional parameters
46
- * @returns Promise<Models.NetworkGetResponse>
47
- */
48
- get(resourceGroupName: string, networkResourceName: string, options?: msRest.RequestOptionsBase): Promise<Models.NetworkGetResponse>;
49
- /**
50
- * @param resourceGroupName Azure resource group name
51
- * @param networkResourceName The identity of the network.
52
- * @param callback The callback
53
- */
54
- get(resourceGroupName: string, networkResourceName: string, callback: msRest.ServiceCallback<Models.NetworkResourceDescription>): void;
55
- /**
56
- * @param resourceGroupName Azure resource group name
57
- * @param networkResourceName The identity of the network.
58
- * @param options The optional parameters
59
- * @param callback The callback
60
- */
61
- get(resourceGroupName: string, networkResourceName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.NetworkResourceDescription>): void;
62
- /**
63
- * Deletes the network resource identified by the name.
64
- * @summary Deletes the network resource.
65
- * @param resourceGroupName Azure resource group name
66
- * @param networkResourceName The identity of the network.
67
- * @param [options] The optional parameters
68
- * @returns Promise<msRest.RestResponse>
69
- */
70
- deleteMethod(resourceGroupName: string, networkResourceName: string, options?: msRest.RequestOptionsBase): Promise<msRest.RestResponse>;
71
- /**
72
- * @param resourceGroupName Azure resource group name
73
- * @param networkResourceName The identity of the network.
74
- * @param callback The callback
75
- */
76
- deleteMethod(resourceGroupName: string, networkResourceName: string, callback: msRest.ServiceCallback<void>): void;
77
- /**
78
- * @param resourceGroupName Azure resource group name
79
- * @param networkResourceName The identity of the network.
80
- * @param options The optional parameters
81
- * @param callback The callback
82
- */
83
- deleteMethod(resourceGroupName: string, networkResourceName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<void>): void;
84
- /**
85
- * Gets the information about all network resources in a given resource group. The information
86
- * include the description and other properties of the Network.
87
- * @summary Gets all the network resources in a given resource group.
88
- * @param resourceGroupName Azure resource group name
89
- * @param [options] The optional parameters
90
- * @returns Promise<Models.NetworkListByResourceGroupResponse>
91
- */
92
- listByResourceGroup(resourceGroupName: string, options?: msRest.RequestOptionsBase): Promise<Models.NetworkListByResourceGroupResponse>;
93
- /**
94
- * @param resourceGroupName Azure resource group name
95
- * @param callback The callback
96
- */
97
- listByResourceGroup(resourceGroupName: string, callback: msRest.ServiceCallback<Models.NetworkResourceDescriptionList>): void;
98
- /**
99
- * @param resourceGroupName Azure resource group name
100
- * @param options The optional parameters
101
- * @param callback The callback
102
- */
103
- listByResourceGroup(resourceGroupName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.NetworkResourceDescriptionList>): void;
104
- /**
105
- * Gets the information about all network resources in a given resource group. The information
106
- * include the description and other properties of the network.
107
- * @summary Gets all the network resources in a given subscription.
108
- * @param [options] The optional parameters
109
- * @returns Promise<Models.NetworkListBySubscriptionResponse>
110
- */
111
- listBySubscription(options?: msRest.RequestOptionsBase): Promise<Models.NetworkListBySubscriptionResponse>;
112
- /**
113
- * @param callback The callback
114
- */
115
- listBySubscription(callback: msRest.ServiceCallback<Models.NetworkResourceDescriptionList>): void;
116
- /**
117
- * @param options The optional parameters
118
- * @param callback The callback
119
- */
120
- listBySubscription(options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.NetworkResourceDescriptionList>): void;
121
- /**
122
- * Gets the information about all network resources in a given resource group. The information
123
- * include the description and other properties of the Network.
124
- * @summary Gets all the network resources in a given resource group.
125
- * @param nextPageLink The NextLink from the previous successful call to List operation.
126
- * @param [options] The optional parameters
127
- * @returns Promise<Models.NetworkListByResourceGroupNextResponse>
128
- */
129
- listByResourceGroupNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.NetworkListByResourceGroupNextResponse>;
130
- /**
131
- * @param nextPageLink The NextLink from the previous successful call to List operation.
132
- * @param callback The callback
133
- */
134
- listByResourceGroupNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.NetworkResourceDescriptionList>): void;
135
- /**
136
- * @param nextPageLink The NextLink from the previous successful call to List operation.
137
- * @param options The optional parameters
138
- * @param callback The callback
139
- */
140
- listByResourceGroupNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.NetworkResourceDescriptionList>): void;
141
- /**
142
- * Gets the information about all network resources in a given resource group. The information
143
- * include the description and other properties of the network.
144
- * @summary Gets all the network resources in a given subscription.
145
- * @param nextPageLink The NextLink from the previous successful call to List operation.
146
- * @param [options] The optional parameters
147
- * @returns Promise<Models.NetworkListBySubscriptionNextResponse>
148
- */
149
- listBySubscriptionNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.NetworkListBySubscriptionNextResponse>;
150
- /**
151
- * @param nextPageLink The NextLink from the previous successful call to List operation.
152
- * @param callback The callback
153
- */
154
- listBySubscriptionNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.NetworkResourceDescriptionList>): void;
155
- /**
156
- * @param nextPageLink The NextLink from the previous successful call to List operation.
157
- * @param options The optional parameters
158
- * @param callback The callback
159
- */
160
- listBySubscriptionNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.NetworkResourceDescriptionList>): void;
161
- }
162
- //# sourceMappingURL=network.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"network.d.ts","sourceRoot":"","sources":["../../src/operations/network.ts"],"names":[],"mappings":"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"}