@azure/arm-servicefabricmesh 0.1.0 → 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 (280) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/LICENSE +21 -0
  3. package/README.md +75 -73
  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 +87 -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 +1603 -0
  125. package/{lib → src}/models/mappers.ts +1315 -1344
  126. package/src/models/parameters.ts +250 -0
  127. package/src/operations/application.ts +418 -0
  128. package/src/operations/codePackage.ts +88 -0
  129. package/src/operations/gateway.ts +419 -0
  130. package/{lib → src}/operations/index.ts +3 -5
  131. package/src/operations/network.ts +418 -0
  132. package/src/operations/operations.ts +137 -0
  133. package/src/operations/secret.ts +417 -0
  134. package/src/operations/secretValueOperations.ts +403 -0
  135. package/src/operations/service.ts +241 -0
  136. package/src/operations/serviceReplica.ts +271 -0
  137. package/src/operations/volume.ts +417 -0
  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 +115 -0
  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 -5353
  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 -27
  250. package/esm/serviceFabricMeshManagementClient.d.ts.map +0 -1
  251. package/esm/serviceFabricMeshManagementClient.js +0 -42
  252. package/esm/serviceFabricMeshManagementClient.js.map +0 -1
  253. package/esm/serviceFabricMeshManagementClientContext.d.ts +0 -16
  254. package/esm/serviceFabricMeshManagementClientContext.d.ts.map +0 -1
  255. package/esm/serviceFabricMeshManagementClientContext.js +0 -56
  256. package/esm/serviceFabricMeshManagementClientContext.js.map +0 -1
  257. package/lib/models/applicationMappers.ts +0 -76
  258. package/lib/models/codePackageMappers.ts +0 -18
  259. package/lib/models/gatewayMappers.ts +0 -76
  260. package/lib/models/index.ts +0 -3097
  261. package/lib/models/networkMappers.ts +0 -76
  262. package/lib/models/operationsMappers.ts +0 -20
  263. package/lib/models/parameters.ts +0 -175
  264. package/lib/models/secretMappers.ts +0 -76
  265. package/lib/models/secretValueOperationsMappers.ts +0 -77
  266. package/lib/models/serviceMappers.ts +0 -76
  267. package/lib/models/serviceReplicaMappers.ts +0 -40
  268. package/lib/models/volumeMappers.ts +0 -76
  269. package/lib/operations/application.ts +0 -427
  270. package/lib/operations/codePackage.ts +0 -104
  271. package/lib/operations/gateway.ts +0 -428
  272. package/lib/operations/network.ts +0 -427
  273. package/lib/operations/operations.ts +0 -125
  274. package/lib/operations/secret.ts +0 -427
  275. package/lib/operations/secretValueOperations.ts +0 -423
  276. package/lib/operations/service.ts +0 -204
  277. package/lib/operations/serviceReplica.ts +0 -214
  278. package/lib/operations/volume.ts +0 -427
  279. package/lib/serviceFabricMeshManagementClient.ts +0 -60
  280. package/lib/serviceFabricMeshManagementClientContext.ts +0 -62
@@ -0,0 +1,44 @@
1
+ import { PagedAsyncIterableIterator } from "@azure/core-paging";
2
+ import { ApplicationResourceDescription, ApplicationListByResourceGroupOptionalParams, ApplicationListBySubscriptionOptionalParams, ApplicationCreateOptionalParams, ApplicationCreateResponse, ApplicationGetOptionalParams, ApplicationGetResponse, ApplicationDeleteOptionalParams } from "../models";
3
+ /** Interface representing a Application. */
4
+ export interface Application {
5
+ /**
6
+ * Gets the information about all application resources in a given resource group. The information
7
+ * include the description and other properties of the Application.
8
+ * @param resourceGroupName Azure resource group name
9
+ * @param options The options parameters.
10
+ */
11
+ listByResourceGroup(resourceGroupName: string, options?: ApplicationListByResourceGroupOptionalParams): PagedAsyncIterableIterator<ApplicationResourceDescription>;
12
+ /**
13
+ * Gets the information about all application resources in a given resource group. The information
14
+ * include the description and other properties of the application.
15
+ * @param options The options parameters.
16
+ */
17
+ listBySubscription(options?: ApplicationListBySubscriptionOptionalParams): PagedAsyncIterableIterator<ApplicationResourceDescription>;
18
+ /**
19
+ * Creates an application resource with the specified name, description and properties. If an
20
+ * application resource with the same name exists, then it is updated with the specified description
21
+ * and properties.
22
+ * @param resourceGroupName Azure resource group name
23
+ * @param applicationResourceName The identity of the application.
24
+ * @param applicationResourceDescription Description for creating a Application resource.
25
+ * @param options The options parameters.
26
+ */
27
+ create(resourceGroupName: string, applicationResourceName: string, applicationResourceDescription: ApplicationResourceDescription, options?: ApplicationCreateOptionalParams): Promise<ApplicationCreateResponse>;
28
+ /**
29
+ * Gets the information about the application resource with the given name. The information include the
30
+ * description and other properties of the application.
31
+ * @param resourceGroupName Azure resource group name
32
+ * @param applicationResourceName The identity of the application.
33
+ * @param options The options parameters.
34
+ */
35
+ get(resourceGroupName: string, applicationResourceName: string, options?: ApplicationGetOptionalParams): Promise<ApplicationGetResponse>;
36
+ /**
37
+ * Deletes the application resource identified by the name.
38
+ * @param resourceGroupName Azure resource group name
39
+ * @param applicationResourceName The identity of the application.
40
+ * @param options The options parameters.
41
+ */
42
+ delete(resourceGroupName: string, applicationResourceName: string, options?: ApplicationDeleteOptionalParams): Promise<void>;
43
+ }
44
+ //# sourceMappingURL=application.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"application.d.ts","sourceRoot":"","sources":["../../../src/operationsInterfaces/application.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,0BAA0B,EAAE,MAAM,oBAAoB,CAAC;AAChE,OAAO,EACL,8BAA8B,EAC9B,4CAA4C,EAC5C,2CAA2C,EAC3C,+BAA+B,EAC/B,yBAAyB,EACzB,4BAA4B,EAC5B,sBAAsB,EACtB,+BAA+B,EAChC,MAAM,WAAW,CAAC;AAGnB,4CAA4C;AAC5C,MAAM,WAAW,WAAW;IAC1B;;;;;OAKG;IACH,mBAAmB,CACjB,iBAAiB,EAAE,MAAM,EACzB,OAAO,CAAC,EAAE,4CAA4C,GACrD,0BAA0B,CAAC,8BAA8B,CAAC,CAAC;IAC9D;;;;OAIG;IACH,kBAAkB,CAChB,OAAO,CAAC,EAAE,2CAA2C,GACpD,0BAA0B,CAAC,8BAA8B,CAAC,CAAC;IAC9D;;;;;;;;OAQG;IACH,MAAM,CACJ,iBAAiB,EAAE,MAAM,EACzB,uBAAuB,EAAE,MAAM,EAC/B,8BAA8B,EAAE,8BAA8B,EAC9D,OAAO,CAAC,EAAE,+BAA+B,GACxC,OAAO,CAAC,yBAAyB,CAAC,CAAC;IACtC;;;;;;OAMG;IACH,GAAG,CACD,iBAAiB,EAAE,MAAM,EACzB,uBAAuB,EAAE,MAAM,EAC/B,OAAO,CAAC,EAAE,4BAA4B,GACrC,OAAO,CAAC,sBAAsB,CAAC,CAAC;IACnC;;;;;OAKG;IACH,MAAM,CACJ,iBAAiB,EAAE,MAAM,EACzB,uBAAuB,EAAE,MAAM,EAC/B,OAAO,CAAC,EAAE,+BAA+B,GACxC,OAAO,CAAC,IAAI,CAAC,CAAC;CAClB"}
@@ -0,0 +1,9 @@
1
+ /*
2
+ * Copyright (c) Microsoft Corporation.
3
+ * Licensed under the MIT License.
4
+ *
5
+ * Code generated by Microsoft (R) AutoRest Code Generator.
6
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
7
+ */
8
+ export {};
9
+ //# sourceMappingURL=application.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"application.js","sourceRoot":"","sources":["../../../src/operationsInterfaces/application.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG"}
@@ -0,0 +1,15 @@
1
+ import { CodePackageGetContainerLogsOptionalParams, CodePackageGetContainerLogsResponse } from "../models";
2
+ /** Interface representing a CodePackage. */
3
+ export interface CodePackage {
4
+ /**
5
+ * Gets the logs for the container of the specified code package of the service replica.
6
+ * @param resourceGroupName Azure resource group name
7
+ * @param applicationResourceName The identity of the application.
8
+ * @param serviceResourceName The identity of the service.
9
+ * @param replicaName Service Fabric replica name.
10
+ * @param codePackageName The name of code package of the service.
11
+ * @param options The options parameters.
12
+ */
13
+ getContainerLogs(resourceGroupName: string, applicationResourceName: string, serviceResourceName: string, replicaName: string, codePackageName: string, options?: CodePackageGetContainerLogsOptionalParams): Promise<CodePackageGetContainerLogsResponse>;
14
+ }
15
+ //# sourceMappingURL=codePackage.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"codePackage.d.ts","sourceRoot":"","sources":["../../../src/operationsInterfaces/codePackage.ts"],"names":[],"mappings":"AAQA,OAAO,EACL,yCAAyC,EACzC,mCAAmC,EACpC,MAAM,WAAW,CAAC;AAEnB,4CAA4C;AAC5C,MAAM,WAAW,WAAW;IAC1B;;;;;;;;OAQG;IACH,gBAAgB,CACd,iBAAiB,EAAE,MAAM,EACzB,uBAAuB,EAAE,MAAM,EAC/B,mBAAmB,EAAE,MAAM,EAC3B,WAAW,EAAE,MAAM,EACnB,eAAe,EAAE,MAAM,EACvB,OAAO,CAAC,EAAE,yCAAyC,GAClD,OAAO,CAAC,mCAAmC,CAAC,CAAC;CACjD"}
@@ -0,0 +1,9 @@
1
+ /*
2
+ * Copyright (c) Microsoft Corporation.
3
+ * Licensed under the MIT License.
4
+ *
5
+ * Code generated by Microsoft (R) AutoRest Code Generator.
6
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
7
+ */
8
+ export {};
9
+ //# sourceMappingURL=codePackage.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"codePackage.js","sourceRoot":"","sources":["../../../src/operationsInterfaces/codePackage.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG"}
@@ -0,0 +1,45 @@
1
+ import { PagedAsyncIterableIterator } from "@azure/core-paging";
2
+ import { GatewayResourceDescription, GatewayListByResourceGroupOptionalParams, GatewayListBySubscriptionOptionalParams, GatewayCreateOptionalParams, GatewayCreateResponse, GatewayGetOptionalParams, GatewayGetResponse, GatewayDeleteOptionalParams } from "../models";
3
+ /** Interface representing a Gateway. */
4
+ export interface Gateway {
5
+ /**
6
+ * Gets the information about all gateway resources in a given resource group. The information include
7
+ * the description and other properties of the Gateway.
8
+ * @param resourceGroupName Azure resource group name
9
+ * @param options The options parameters.
10
+ */
11
+ listByResourceGroup(resourceGroupName: string, options?: GatewayListByResourceGroupOptionalParams): PagedAsyncIterableIterator<GatewayResourceDescription>;
12
+ /**
13
+ * Gets the information about all gateway resources in a given resource group. The information include
14
+ * the description and other properties of the gateway.
15
+ * @param options The options parameters.
16
+ */
17
+ listBySubscription(options?: GatewayListBySubscriptionOptionalParams): PagedAsyncIterableIterator<GatewayResourceDescription>;
18
+ /**
19
+ * Creates a gateway resource with the specified name, description and properties. If a gateway
20
+ * resource with the same name exists, then it is updated with the specified description and
21
+ * properties. Use gateway resources to create a gateway for public connectivity for services within
22
+ * your application.
23
+ * @param resourceGroupName Azure resource group name
24
+ * @param gatewayResourceName The identity of the gateway.
25
+ * @param gatewayResourceDescription Description for creating a Gateway resource.
26
+ * @param options The options parameters.
27
+ */
28
+ create(resourceGroupName: string, gatewayResourceName: string, gatewayResourceDescription: GatewayResourceDescription, options?: GatewayCreateOptionalParams): Promise<GatewayCreateResponse>;
29
+ /**
30
+ * Gets the information about the gateway resource with the given name. The information include the
31
+ * description and other properties of the gateway.
32
+ * @param resourceGroupName Azure resource group name
33
+ * @param gatewayResourceName The identity of the gateway.
34
+ * @param options The options parameters.
35
+ */
36
+ get(resourceGroupName: string, gatewayResourceName: string, options?: GatewayGetOptionalParams): Promise<GatewayGetResponse>;
37
+ /**
38
+ * Deletes the gateway resource identified by the name.
39
+ * @param resourceGroupName Azure resource group name
40
+ * @param gatewayResourceName The identity of the gateway.
41
+ * @param options The options parameters.
42
+ */
43
+ delete(resourceGroupName: string, gatewayResourceName: string, options?: GatewayDeleteOptionalParams): Promise<void>;
44
+ }
45
+ //# sourceMappingURL=gateway.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"gateway.d.ts","sourceRoot":"","sources":["../../../src/operationsInterfaces/gateway.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,0BAA0B,EAAE,MAAM,oBAAoB,CAAC;AAChE,OAAO,EACL,0BAA0B,EAC1B,wCAAwC,EACxC,uCAAuC,EACvC,2BAA2B,EAC3B,qBAAqB,EACrB,wBAAwB,EACxB,kBAAkB,EAClB,2BAA2B,EAC5B,MAAM,WAAW,CAAC;AAGnB,wCAAwC;AACxC,MAAM,WAAW,OAAO;IACtB;;;;;OAKG;IACH,mBAAmB,CACjB,iBAAiB,EAAE,MAAM,EACzB,OAAO,CAAC,EAAE,wCAAwC,GACjD,0BAA0B,CAAC,0BAA0B,CAAC,CAAC;IAC1D;;;;OAIG;IACH,kBAAkB,CAChB,OAAO,CAAC,EAAE,uCAAuC,GAChD,0BAA0B,CAAC,0BAA0B,CAAC,CAAC;IAC1D;;;;;;;;;OASG;IACH,MAAM,CACJ,iBAAiB,EAAE,MAAM,EACzB,mBAAmB,EAAE,MAAM,EAC3B,0BAA0B,EAAE,0BAA0B,EACtD,OAAO,CAAC,EAAE,2BAA2B,GACpC,OAAO,CAAC,qBAAqB,CAAC,CAAC;IAClC;;;;;;OAMG;IACH,GAAG,CACD,iBAAiB,EAAE,MAAM,EACzB,mBAAmB,EAAE,MAAM,EAC3B,OAAO,CAAC,EAAE,wBAAwB,GACjC,OAAO,CAAC,kBAAkB,CAAC,CAAC;IAC/B;;;;;OAKG;IACH,MAAM,CACJ,iBAAiB,EAAE,MAAM,EACzB,mBAAmB,EAAE,MAAM,EAC3B,OAAO,CAAC,EAAE,2BAA2B,GACpC,OAAO,CAAC,IAAI,CAAC,CAAC;CAClB"}
@@ -0,0 +1,9 @@
1
+ /*
2
+ * Copyright (c) Microsoft Corporation.
3
+ * Licensed under the MIT License.
4
+ *
5
+ * Code generated by Microsoft (R) AutoRest Code Generator.
6
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
7
+ */
8
+ export {};
9
+ //# sourceMappingURL=gateway.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"gateway.js","sourceRoot":"","sources":["../../../src/operationsInterfaces/gateway.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG"}
@@ -0,0 +1,11 @@
1
+ export * from "./operations";
2
+ export * from "./secret";
3
+ export * from "./secretValueOperations";
4
+ export * from "./volume";
5
+ export * from "./network";
6
+ export * from "./gateway";
7
+ export * from "./application";
8
+ export * from "./service";
9
+ export * from "./serviceReplica";
10
+ export * from "./codePackage";
11
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/operationsInterfaces/index.ts"],"names":[],"mappings":"AAQA,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"}
@@ -0,0 +1,18 @@
1
+ /*
2
+ * Copyright (c) Microsoft Corporation.
3
+ * Licensed under the MIT License.
4
+ *
5
+ * Code generated by Microsoft (R) AutoRest Code Generator.
6
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
7
+ */
8
+ export * from "./operations";
9
+ export * from "./secret";
10
+ export * from "./secretValueOperations";
11
+ export * from "./volume";
12
+ export * from "./network";
13
+ export * from "./gateway";
14
+ export * from "./application";
15
+ export * from "./service";
16
+ export * from "./serviceReplica";
17
+ export * from "./codePackage";
18
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/operationsInterfaces/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;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"}
@@ -0,0 +1,44 @@
1
+ import { PagedAsyncIterableIterator } from "@azure/core-paging";
2
+ import { NetworkResourceDescription, NetworkListByResourceGroupOptionalParams, NetworkListBySubscriptionOptionalParams, NetworkCreateOptionalParams, NetworkCreateResponse, NetworkGetOptionalParams, NetworkGetResponse, NetworkDeleteOptionalParams } from "../models";
3
+ /** Interface representing a Network. */
4
+ export interface Network {
5
+ /**
6
+ * Gets the information about all network resources in a given resource group. The information include
7
+ * the description and other properties of the Network.
8
+ * @param resourceGroupName Azure resource group name
9
+ * @param options The options parameters.
10
+ */
11
+ listByResourceGroup(resourceGroupName: string, options?: NetworkListByResourceGroupOptionalParams): PagedAsyncIterableIterator<NetworkResourceDescription>;
12
+ /**
13
+ * Gets the information about all network resources in a given resource group. The information include
14
+ * the description and other properties of the network.
15
+ * @param options The options parameters.
16
+ */
17
+ listBySubscription(options?: NetworkListBySubscriptionOptionalParams): PagedAsyncIterableIterator<NetworkResourceDescription>;
18
+ /**
19
+ * Creates a network resource with the specified name, description and properties. If a network
20
+ * resource with the same name exists, then it is updated with the specified description and
21
+ * properties.
22
+ * @param resourceGroupName Azure resource group name
23
+ * @param networkResourceName The identity of the network.
24
+ * @param networkResourceDescription Description for creating a Network resource.
25
+ * @param options The options parameters.
26
+ */
27
+ create(resourceGroupName: string, networkResourceName: string, networkResourceDescription: NetworkResourceDescription, options?: NetworkCreateOptionalParams): Promise<NetworkCreateResponse>;
28
+ /**
29
+ * Gets the information about the network resource with the given name. The information include the
30
+ * description and other properties of the network.
31
+ * @param resourceGroupName Azure resource group name
32
+ * @param networkResourceName The identity of the network.
33
+ * @param options The options parameters.
34
+ */
35
+ get(resourceGroupName: string, networkResourceName: string, options?: NetworkGetOptionalParams): Promise<NetworkGetResponse>;
36
+ /**
37
+ * Deletes the network resource identified by the name.
38
+ * @param resourceGroupName Azure resource group name
39
+ * @param networkResourceName The identity of the network.
40
+ * @param options The options parameters.
41
+ */
42
+ delete(resourceGroupName: string, networkResourceName: string, options?: NetworkDeleteOptionalParams): Promise<void>;
43
+ }
44
+ //# sourceMappingURL=network.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"network.d.ts","sourceRoot":"","sources":["../../../src/operationsInterfaces/network.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,0BAA0B,EAAE,MAAM,oBAAoB,CAAC;AAChE,OAAO,EACL,0BAA0B,EAC1B,wCAAwC,EACxC,uCAAuC,EACvC,2BAA2B,EAC3B,qBAAqB,EACrB,wBAAwB,EACxB,kBAAkB,EAClB,2BAA2B,EAC5B,MAAM,WAAW,CAAC;AAGnB,wCAAwC;AACxC,MAAM,WAAW,OAAO;IACtB;;;;;OAKG;IACH,mBAAmB,CACjB,iBAAiB,EAAE,MAAM,EACzB,OAAO,CAAC,EAAE,wCAAwC,GACjD,0BAA0B,CAAC,0BAA0B,CAAC,CAAC;IAC1D;;;;OAIG;IACH,kBAAkB,CAChB,OAAO,CAAC,EAAE,uCAAuC,GAChD,0BAA0B,CAAC,0BAA0B,CAAC,CAAC;IAC1D;;;;;;;;OAQG;IACH,MAAM,CACJ,iBAAiB,EAAE,MAAM,EACzB,mBAAmB,EAAE,MAAM,EAC3B,0BAA0B,EAAE,0BAA0B,EACtD,OAAO,CAAC,EAAE,2BAA2B,GACpC,OAAO,CAAC,qBAAqB,CAAC,CAAC;IAClC;;;;;;OAMG;IACH,GAAG,CACD,iBAAiB,EAAE,MAAM,EACzB,mBAAmB,EAAE,MAAM,EAC3B,OAAO,CAAC,EAAE,wBAAwB,GACjC,OAAO,CAAC,kBAAkB,CAAC,CAAC;IAC/B;;;;;OAKG;IACH,MAAM,CACJ,iBAAiB,EAAE,MAAM,EACzB,mBAAmB,EAAE,MAAM,EAC3B,OAAO,CAAC,EAAE,2BAA2B,GACpC,OAAO,CAAC,IAAI,CAAC,CAAC;CAClB"}
@@ -0,0 +1,9 @@
1
+ /*
2
+ * Copyright (c) Microsoft Corporation.
3
+ * Licensed under the MIT License.
4
+ *
5
+ * Code generated by Microsoft (R) AutoRest Code Generator.
6
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
7
+ */
8
+ export {};
9
+ //# sourceMappingURL=network.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"network.js","sourceRoot":"","sources":["../../../src/operationsInterfaces/network.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG"}
@@ -0,0 +1,11 @@
1
+ import { PagedAsyncIterableIterator } from "@azure/core-paging";
2
+ import { OperationResult, OperationsListOptionalParams } from "../models";
3
+ /** Interface representing a Operations. */
4
+ export interface Operations {
5
+ /**
6
+ * Lists all the available operations provided by Service Fabric SeaBreeze resource provider.
7
+ * @param options The options parameters.
8
+ */
9
+ list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<OperationResult>;
10
+ }
11
+ //# sourceMappingURL=operations.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"operations.d.ts","sourceRoot":"","sources":["../../../src/operationsInterfaces/operations.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,0BAA0B,EAAE,MAAM,oBAAoB,CAAC;AAChE,OAAO,EAAE,eAAe,EAAE,4BAA4B,EAAE,MAAM,WAAW,CAAC;AAG1E,2CAA2C;AAC3C,MAAM,WAAW,UAAU;IACzB;;;OAGG;IACH,IAAI,CACF,OAAO,CAAC,EAAE,4BAA4B,GACrC,0BAA0B,CAAC,eAAe,CAAC,CAAC;CAChD"}
@@ -0,0 +1,9 @@
1
+ /*
2
+ * Copyright (c) Microsoft Corporation.
3
+ * Licensed under the MIT License.
4
+ *
5
+ * Code generated by Microsoft (R) AutoRest Code Generator.
6
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
7
+ */
8
+ export {};
9
+ //# sourceMappingURL=operations.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"operations.js","sourceRoot":"","sources":["../../../src/operationsInterfaces/operations.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG"}
@@ -0,0 +1,43 @@
1
+ import { PagedAsyncIterableIterator } from "@azure/core-paging";
2
+ import { SecretResourceDescription, SecretListByResourceGroupOptionalParams, SecretListBySubscriptionOptionalParams, SecretCreateOptionalParams, SecretCreateResponse, SecretGetOptionalParams, SecretGetResponse, SecretDeleteOptionalParams } from "../models";
3
+ /** Interface representing a Secret. */
4
+ export interface Secret {
5
+ /**
6
+ * Gets the information about all secret resources in a given resource group. The information include
7
+ * the description and other properties of the Secret.
8
+ * @param resourceGroupName Azure resource group name
9
+ * @param options The options parameters.
10
+ */
11
+ listByResourceGroup(resourceGroupName: string, options?: SecretListByResourceGroupOptionalParams): PagedAsyncIterableIterator<SecretResourceDescription>;
12
+ /**
13
+ * Gets the information about all secret resources in a given resource group. The information include
14
+ * the description and other properties of the secret.
15
+ * @param options The options parameters.
16
+ */
17
+ listBySubscription(options?: SecretListBySubscriptionOptionalParams): PagedAsyncIterableIterator<SecretResourceDescription>;
18
+ /**
19
+ * Creates a secret resource with the specified name, description and properties. If a secret resource
20
+ * with the same name exists, then it is updated with the specified description and properties.
21
+ * @param resourceGroupName Azure resource group name
22
+ * @param secretResourceName The name of the secret resource.
23
+ * @param secretResourceDescription Description for creating a secret resource.
24
+ * @param options The options parameters.
25
+ */
26
+ create(resourceGroupName: string, secretResourceName: string, secretResourceDescription: SecretResourceDescription, options?: SecretCreateOptionalParams): Promise<SecretCreateResponse>;
27
+ /**
28
+ * Gets the information about the secret resource with the given name. The information include the
29
+ * description and other properties of the secret.
30
+ * @param resourceGroupName Azure resource group name
31
+ * @param secretResourceName The name of the secret resource.
32
+ * @param options The options parameters.
33
+ */
34
+ get(resourceGroupName: string, secretResourceName: string, options?: SecretGetOptionalParams): Promise<SecretGetResponse>;
35
+ /**
36
+ * Deletes the secret resource identified by the name.
37
+ * @param resourceGroupName Azure resource group name
38
+ * @param secretResourceName The name of the secret resource.
39
+ * @param options The options parameters.
40
+ */
41
+ delete(resourceGroupName: string, secretResourceName: string, options?: SecretDeleteOptionalParams): Promise<void>;
42
+ }
43
+ //# sourceMappingURL=secret.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"secret.d.ts","sourceRoot":"","sources":["../../../src/operationsInterfaces/secret.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,0BAA0B,EAAE,MAAM,oBAAoB,CAAC;AAChE,OAAO,EACL,yBAAyB,EACzB,uCAAuC,EACvC,sCAAsC,EACtC,0BAA0B,EAC1B,oBAAoB,EACpB,uBAAuB,EACvB,iBAAiB,EACjB,0BAA0B,EAC3B,MAAM,WAAW,CAAC;AAGnB,uCAAuC;AACvC,MAAM,WAAW,MAAM;IACrB;;;;;OAKG;IACH,mBAAmB,CACjB,iBAAiB,EAAE,MAAM,EACzB,OAAO,CAAC,EAAE,uCAAuC,GAChD,0BAA0B,CAAC,yBAAyB,CAAC,CAAC;IACzD;;;;OAIG;IACH,kBAAkB,CAChB,OAAO,CAAC,EAAE,sCAAsC,GAC/C,0BAA0B,CAAC,yBAAyB,CAAC,CAAC;IACzD;;;;;;;OAOG;IACH,MAAM,CACJ,iBAAiB,EAAE,MAAM,EACzB,kBAAkB,EAAE,MAAM,EAC1B,yBAAyB,EAAE,yBAAyB,EACpD,OAAO,CAAC,EAAE,0BAA0B,GACnC,OAAO,CAAC,oBAAoB,CAAC,CAAC;IACjC;;;;;;OAMG;IACH,GAAG,CACD,iBAAiB,EAAE,MAAM,EACzB,kBAAkB,EAAE,MAAM,EAC1B,OAAO,CAAC,EAAE,uBAAuB,GAChC,OAAO,CAAC,iBAAiB,CAAC,CAAC;IAC9B;;;;;OAKG;IACH,MAAM,CACJ,iBAAiB,EAAE,MAAM,EACzB,kBAAkB,EAAE,MAAM,EAC1B,OAAO,CAAC,EAAE,0BAA0B,GACnC,OAAO,CAAC,IAAI,CAAC,CAAC;CAClB"}
@@ -0,0 +1,9 @@
1
+ /*
2
+ * Copyright (c) Microsoft Corporation.
3
+ * Licensed under the MIT License.
4
+ *
5
+ * Code generated by Microsoft (R) AutoRest Code Generator.
6
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
7
+ */
8
+ export {};
9
+ //# sourceMappingURL=secret.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"secret.js","sourceRoot":"","sources":["../../../src/operationsInterfaces/secret.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG"}
@@ -0,0 +1,55 @@
1
+ import { PagedAsyncIterableIterator } from "@azure/core-paging";
2
+ import { SecretValueResourceDescription, SecretValueListOptionalParams, SecretValueCreateOptionalParams, SecretValueCreateResponse, SecretValueGetOptionalParams, SecretValueGetResponse, SecretValueDeleteOptionalParams, SecretValueListValueOptionalParams, SecretValueListValueResponse } from "../models";
3
+ /** Interface representing a SecretValueOperations. */
4
+ export interface SecretValueOperations {
5
+ /**
6
+ * Gets information about all secret value resources of the specified secret resource. The information
7
+ * includes the names of the secret value resources, but not the actual values.
8
+ * @param resourceGroupName Azure resource group name
9
+ * @param secretResourceName The name of the secret resource.
10
+ * @param options The options parameters.
11
+ */
12
+ list(resourceGroupName: string, secretResourceName: string, options?: SecretValueListOptionalParams): PagedAsyncIterableIterator<SecretValueResourceDescription>;
13
+ /**
14
+ * Creates a new value of the specified secret resource. The name of the value is typically the version
15
+ * identifier. Once created the value cannot be changed.
16
+ * @param resourceGroupName Azure resource group name
17
+ * @param secretResourceName The name of the secret resource.
18
+ * @param secretValueResourceName The name of the secret resource value which is typically the version
19
+ * identifier for the value.
20
+ * @param secretValueResourceDescription Description for creating a value of a secret resource.
21
+ * @param options The options parameters.
22
+ */
23
+ create(resourceGroupName: string, secretResourceName: string, secretValueResourceName: string, secretValueResourceDescription: SecretValueResourceDescription, options?: SecretValueCreateOptionalParams): Promise<SecretValueCreateResponse>;
24
+ /**
25
+ * Get the information about the specified named secret value resources. The information does not
26
+ * include the actual value of the secret.
27
+ * @param resourceGroupName Azure resource group name
28
+ * @param secretResourceName The name of the secret resource.
29
+ * @param secretValueResourceName The name of the secret resource value which is typically the version
30
+ * identifier for the value.
31
+ * @param options The options parameters.
32
+ */
33
+ get(resourceGroupName: string, secretResourceName: string, secretValueResourceName: string, options?: SecretValueGetOptionalParams): Promise<SecretValueGetResponse>;
34
+ /**
35
+ * Deletes the secret value resource identified by the name. The name of the resource is typically the
36
+ * version associated with that value. Deletion will fail if the specified value is in use.
37
+ * @param resourceGroupName Azure resource group name
38
+ * @param secretResourceName The name of the secret resource.
39
+ * @param secretValueResourceName The name of the secret resource value which is typically the version
40
+ * identifier for the value.
41
+ * @param options The options parameters.
42
+ */
43
+ delete(resourceGroupName: string, secretResourceName: string, secretValueResourceName: string, options?: SecretValueDeleteOptionalParams): Promise<void>;
44
+ /**
45
+ * Lists the decrypted value of the specified named value of the secret resource. This is a privileged
46
+ * operation.
47
+ * @param resourceGroupName Azure resource group name
48
+ * @param secretResourceName The name of the secret resource.
49
+ * @param secretValueResourceName The name of the secret resource value which is typically the version
50
+ * identifier for the value.
51
+ * @param options The options parameters.
52
+ */
53
+ listValue(resourceGroupName: string, secretResourceName: string, secretValueResourceName: string, options?: SecretValueListValueOptionalParams): Promise<SecretValueListValueResponse>;
54
+ }
55
+ //# sourceMappingURL=secretValueOperations.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"secretValueOperations.d.ts","sourceRoot":"","sources":["../../../src/operationsInterfaces/secretValueOperations.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,0BAA0B,EAAE,MAAM,oBAAoB,CAAC;AAChE,OAAO,EACL,8BAA8B,EAC9B,6BAA6B,EAC7B,+BAA+B,EAC/B,yBAAyB,EACzB,4BAA4B,EAC5B,sBAAsB,EACtB,+BAA+B,EAC/B,kCAAkC,EAClC,4BAA4B,EAC7B,MAAM,WAAW,CAAC;AAGnB,sDAAsD;AACtD,MAAM,WAAW,qBAAqB;IACpC;;;;;;OAMG;IACH,IAAI,CACF,iBAAiB,EAAE,MAAM,EACzB,kBAAkB,EAAE,MAAM,EAC1B,OAAO,CAAC,EAAE,6BAA6B,GACtC,0BAA0B,CAAC,8BAA8B,CAAC,CAAC;IAC9D;;;;;;;;;OASG;IACH,MAAM,CACJ,iBAAiB,EAAE,MAAM,EACzB,kBAAkB,EAAE,MAAM,EAC1B,uBAAuB,EAAE,MAAM,EAC/B,8BAA8B,EAAE,8BAA8B,EAC9D,OAAO,CAAC,EAAE,+BAA+B,GACxC,OAAO,CAAC,yBAAyB,CAAC,CAAC;IACtC;;;;;;;;OAQG;IACH,GAAG,CACD,iBAAiB,EAAE,MAAM,EACzB,kBAAkB,EAAE,MAAM,EAC1B,uBAAuB,EAAE,MAAM,EAC/B,OAAO,CAAC,EAAE,4BAA4B,GACrC,OAAO,CAAC,sBAAsB,CAAC,CAAC;IACnC;;;;;;;;OAQG;IACH,MAAM,CACJ,iBAAiB,EAAE,MAAM,EACzB,kBAAkB,EAAE,MAAM,EAC1B,uBAAuB,EAAE,MAAM,EAC/B,OAAO,CAAC,EAAE,+BAA+B,GACxC,OAAO,CAAC,IAAI,CAAC,CAAC;IACjB;;;;;;;;OAQG;IACH,SAAS,CACP,iBAAiB,EAAE,MAAM,EACzB,kBAAkB,EAAE,MAAM,EAC1B,uBAAuB,EAAE,MAAM,EAC/B,OAAO,CAAC,EAAE,kCAAkC,GAC3C,OAAO,CAAC,4BAA4B,CAAC,CAAC;CAC1C"}
@@ -0,0 +1,9 @@
1
+ /*
2
+ * Copyright (c) Microsoft Corporation.
3
+ * Licensed under the MIT License.
4
+ *
5
+ * Code generated by Microsoft (R) AutoRest Code Generator.
6
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
7
+ */
8
+ export {};
9
+ //# sourceMappingURL=secretValueOperations.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"secretValueOperations.js","sourceRoot":"","sources":["../../../src/operationsInterfaces/secretValueOperations.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG"}
@@ -0,0 +1,23 @@
1
+ import { PagedAsyncIterableIterator } from "@azure/core-paging";
2
+ import { ServiceResourceDescription, ServiceListOptionalParams, ServiceGetOptionalParams, ServiceGetResponse } from "../models";
3
+ /** Interface representing a Service. */
4
+ export interface Service {
5
+ /**
6
+ * Gets the information about all services of an application resource. The information include the
7
+ * description and other properties of the Service.
8
+ * @param resourceGroupName Azure resource group name
9
+ * @param applicationResourceName The identity of the application.
10
+ * @param options The options parameters.
11
+ */
12
+ list(resourceGroupName: string, applicationResourceName: string, options?: ServiceListOptionalParams): PagedAsyncIterableIterator<ServiceResourceDescription>;
13
+ /**
14
+ * Gets the information about the service resource with the given name. The information include the
15
+ * description and other properties of the service.
16
+ * @param resourceGroupName Azure resource group name
17
+ * @param applicationResourceName The identity of the application.
18
+ * @param serviceResourceName The identity of the service.
19
+ * @param options The options parameters.
20
+ */
21
+ get(resourceGroupName: string, applicationResourceName: string, serviceResourceName: string, options?: ServiceGetOptionalParams): Promise<ServiceGetResponse>;
22
+ }
23
+ //# sourceMappingURL=service.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"service.d.ts","sourceRoot":"","sources":["../../../src/operationsInterfaces/service.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,0BAA0B,EAAE,MAAM,oBAAoB,CAAC;AAChE,OAAO,EACL,0BAA0B,EAC1B,yBAAyB,EACzB,wBAAwB,EACxB,kBAAkB,EACnB,MAAM,WAAW,CAAC;AAGnB,wCAAwC;AACxC,MAAM,WAAW,OAAO;IACtB;;;;;;OAMG;IACH,IAAI,CACF,iBAAiB,EAAE,MAAM,EACzB,uBAAuB,EAAE,MAAM,EAC/B,OAAO,CAAC,EAAE,yBAAyB,GAClC,0BAA0B,CAAC,0BAA0B,CAAC,CAAC;IAC1D;;;;;;;OAOG;IACH,GAAG,CACD,iBAAiB,EAAE,MAAM,EACzB,uBAAuB,EAAE,MAAM,EAC/B,mBAAmB,EAAE,MAAM,EAC3B,OAAO,CAAC,EAAE,wBAAwB,GACjC,OAAO,CAAC,kBAAkB,CAAC,CAAC;CAChC"}
@@ -0,0 +1,9 @@
1
+ /*
2
+ * Copyright (c) Microsoft Corporation.
3
+ * Licensed under the MIT License.
4
+ *
5
+ * Code generated by Microsoft (R) AutoRest Code Generator.
6
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
7
+ */
8
+ export {};
9
+ //# sourceMappingURL=service.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"service.js","sourceRoot":"","sources":["../../../src/operationsInterfaces/service.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG"}
@@ -0,0 +1,25 @@
1
+ import { PagedAsyncIterableIterator } from "@azure/core-paging";
2
+ import { ServiceReplicaDescription, ServiceReplicaListOptionalParams, ServiceReplicaGetOptionalParams, ServiceReplicaGetResponse } from "../models";
3
+ /** Interface representing a ServiceReplica. */
4
+ export interface ServiceReplica {
5
+ /**
6
+ * Gets the information about all replicas of a given service of an application. The information
7
+ * includes the runtime properties of the replica instance.
8
+ * @param resourceGroupName Azure resource group name
9
+ * @param applicationResourceName The identity of the application.
10
+ * @param serviceResourceName The identity of the service.
11
+ * @param options The options parameters.
12
+ */
13
+ list(resourceGroupName: string, applicationResourceName: string, serviceResourceName: string, options?: ServiceReplicaListOptionalParams): PagedAsyncIterableIterator<ServiceReplicaDescription>;
14
+ /**
15
+ * Gets the information about the service replica with the given name. The information include the
16
+ * description and other properties of the service replica.
17
+ * @param resourceGroupName Azure resource group name
18
+ * @param applicationResourceName The identity of the application.
19
+ * @param serviceResourceName The identity of the service.
20
+ * @param replicaName Service Fabric replica name.
21
+ * @param options The options parameters.
22
+ */
23
+ get(resourceGroupName: string, applicationResourceName: string, serviceResourceName: string, replicaName: string, options?: ServiceReplicaGetOptionalParams): Promise<ServiceReplicaGetResponse>;
24
+ }
25
+ //# sourceMappingURL=serviceReplica.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"serviceReplica.d.ts","sourceRoot":"","sources":["../../../src/operationsInterfaces/serviceReplica.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,0BAA0B,EAAE,MAAM,oBAAoB,CAAC;AAChE,OAAO,EACL,yBAAyB,EACzB,gCAAgC,EAChC,+BAA+B,EAC/B,yBAAyB,EAC1B,MAAM,WAAW,CAAC;AAGnB,+CAA+C;AAC/C,MAAM,WAAW,cAAc;IAC7B;;;;;;;OAOG;IACH,IAAI,CACF,iBAAiB,EAAE,MAAM,EACzB,uBAAuB,EAAE,MAAM,EAC/B,mBAAmB,EAAE,MAAM,EAC3B,OAAO,CAAC,EAAE,gCAAgC,GACzC,0BAA0B,CAAC,yBAAyB,CAAC,CAAC;IACzD;;;;;;;;OAQG;IACH,GAAG,CACD,iBAAiB,EAAE,MAAM,EACzB,uBAAuB,EAAE,MAAM,EAC/B,mBAAmB,EAAE,MAAM,EAC3B,WAAW,EAAE,MAAM,EACnB,OAAO,CAAC,EAAE,+BAA+B,GACxC,OAAO,CAAC,yBAAyB,CAAC,CAAC;CACvC"}
@@ -0,0 +1,9 @@
1
+ /*
2
+ * Copyright (c) Microsoft Corporation.
3
+ * Licensed under the MIT License.
4
+ *
5
+ * Code generated by Microsoft (R) AutoRest Code Generator.
6
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
7
+ */
8
+ export {};
9
+ //# sourceMappingURL=serviceReplica.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"serviceReplica.js","sourceRoot":"","sources":["../../../src/operationsInterfaces/serviceReplica.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG"}
@@ -0,0 +1,43 @@
1
+ import { PagedAsyncIterableIterator } from "@azure/core-paging";
2
+ import { VolumeResourceDescription, VolumeListByResourceGroupOptionalParams, VolumeListBySubscriptionOptionalParams, VolumeCreateOptionalParams, VolumeCreateResponse, VolumeGetOptionalParams, VolumeGetResponse, VolumeDeleteOptionalParams } from "../models";
3
+ /** Interface representing a Volume. */
4
+ export interface Volume {
5
+ /**
6
+ * Gets the information about all volume resources in a given resource group. The information include
7
+ * the description and other properties of the Volume.
8
+ * @param resourceGroupName Azure resource group name
9
+ * @param options The options parameters.
10
+ */
11
+ listByResourceGroup(resourceGroupName: string, options?: VolumeListByResourceGroupOptionalParams): PagedAsyncIterableIterator<VolumeResourceDescription>;
12
+ /**
13
+ * Gets the information about all volume resources in a given resource group. The information include
14
+ * the description and other properties of the volume.
15
+ * @param options The options parameters.
16
+ */
17
+ listBySubscription(options?: VolumeListBySubscriptionOptionalParams): PagedAsyncIterableIterator<VolumeResourceDescription>;
18
+ /**
19
+ * Creates a volume resource with the specified name, description and properties. If a volume resource
20
+ * with the same name exists, then it is updated with the specified description and properties.
21
+ * @param resourceGroupName Azure resource group name
22
+ * @param volumeResourceName The identity of the volume.
23
+ * @param volumeResourceDescription Description for creating a Volume resource.
24
+ * @param options The options parameters.
25
+ */
26
+ create(resourceGroupName: string, volumeResourceName: string, volumeResourceDescription: VolumeResourceDescription, options?: VolumeCreateOptionalParams): Promise<VolumeCreateResponse>;
27
+ /**
28
+ * Gets the information about the volume resource with the given name. The information include the
29
+ * description and other properties of the volume.
30
+ * @param resourceGroupName Azure resource group name
31
+ * @param volumeResourceName The identity of the volume.
32
+ * @param options The options parameters.
33
+ */
34
+ get(resourceGroupName: string, volumeResourceName: string, options?: VolumeGetOptionalParams): Promise<VolumeGetResponse>;
35
+ /**
36
+ * Deletes the volume resource identified by the name.
37
+ * @param resourceGroupName Azure resource group name
38
+ * @param volumeResourceName The identity of the volume.
39
+ * @param options The options parameters.
40
+ */
41
+ delete(resourceGroupName: string, volumeResourceName: string, options?: VolumeDeleteOptionalParams): Promise<void>;
42
+ }
43
+ //# sourceMappingURL=volume.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"volume.d.ts","sourceRoot":"","sources":["../../../src/operationsInterfaces/volume.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,0BAA0B,EAAE,MAAM,oBAAoB,CAAC;AAChE,OAAO,EACL,yBAAyB,EACzB,uCAAuC,EACvC,sCAAsC,EACtC,0BAA0B,EAC1B,oBAAoB,EACpB,uBAAuB,EACvB,iBAAiB,EACjB,0BAA0B,EAC3B,MAAM,WAAW,CAAC;AAGnB,uCAAuC;AACvC,MAAM,WAAW,MAAM;IACrB;;;;;OAKG;IACH,mBAAmB,CACjB,iBAAiB,EAAE,MAAM,EACzB,OAAO,CAAC,EAAE,uCAAuC,GAChD,0BAA0B,CAAC,yBAAyB,CAAC,CAAC;IACzD;;;;OAIG;IACH,kBAAkB,CAChB,OAAO,CAAC,EAAE,sCAAsC,GAC/C,0BAA0B,CAAC,yBAAyB,CAAC,CAAC;IACzD;;;;;;;OAOG;IACH,MAAM,CACJ,iBAAiB,EAAE,MAAM,EACzB,kBAAkB,EAAE,MAAM,EAC1B,yBAAyB,EAAE,yBAAyB,EACpD,OAAO,CAAC,EAAE,0BAA0B,GACnC,OAAO,CAAC,oBAAoB,CAAC,CAAC;IACjC;;;;;;OAMG;IACH,GAAG,CACD,iBAAiB,EAAE,MAAM,EACzB,kBAAkB,EAAE,MAAM,EAC1B,OAAO,CAAC,EAAE,uBAAuB,GAChC,OAAO,CAAC,iBAAiB,CAAC,CAAC;IAC9B;;;;;OAKG;IACH,MAAM,CACJ,iBAAiB,EAAE,MAAM,EACzB,kBAAkB,EAAE,MAAM,EAC1B,OAAO,CAAC,EAAE,0BAA0B,GACnC,OAAO,CAAC,IAAI,CAAC,CAAC;CAClB"}
@@ -0,0 +1,9 @@
1
+ /*
2
+ * Copyright (c) Microsoft Corporation.
3
+ * Licensed under the MIT License.
4
+ *
5
+ * Code generated by Microsoft (R) AutoRest Code Generator.
6
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
7
+ */
8
+ export {};
9
+ //# sourceMappingURL=volume.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"volume.js","sourceRoot":"","sources":["../../../src/operationsInterfaces/volume.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG"}