@azure/arm-trustedsigning 1.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 (315) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/LICENSE +21 -0
  3. package/README.md +100 -0
  4. package/dist/browser/api/certificateProfiles/index.d.ts +32 -0
  5. package/dist/browser/api/certificateProfiles/index.d.ts.map +1 -0
  6. package/dist/browser/api/certificateProfiles/index.js +331 -0
  7. package/dist/browser/api/certificateProfiles/index.js.map +1 -0
  8. package/dist/browser/api/codeSigningAccounts/index.d.ts +40 -0
  9. package/dist/browser/api/codeSigningAccounts/index.d.ts.map +1 -0
  10. package/dist/browser/api/codeSigningAccounts/index.js +325 -0
  11. package/dist/browser/api/codeSigningAccounts/index.js.map +1 -0
  12. package/dist/browser/api/codeSigningContext.d.ts +12 -0
  13. package/dist/browser/api/codeSigningContext.d.ts.map +1 -0
  14. package/dist/browser/api/codeSigningContext.js +32 -0
  15. package/dist/browser/api/codeSigningContext.js.map +1 -0
  16. package/dist/browser/api/index.d.ts +2 -0
  17. package/dist/browser/api/index.d.ts.map +1 -0
  18. package/dist/browser/api/index.js +4 -0
  19. package/dist/browser/api/index.js.map +1 -0
  20. package/dist/browser/api/operations/index.d.ts +10 -0
  21. package/dist/browser/api/operations/index.d.ts.map +1 -0
  22. package/dist/browser/api/operations/index.js +40 -0
  23. package/dist/browser/api/operations/index.js.map +1 -0
  24. package/dist/browser/classic/certificateProfiles/index.d.ts +32 -0
  25. package/dist/browser/classic/certificateProfiles/index.d.ts.map +1 -0
  26. package/dist/browser/classic/certificateProfiles/index.js +16 -0
  27. package/dist/browser/classic/certificateProfiles/index.js.map +1 -0
  28. package/dist/browser/classic/codeSigningAccounts/index.d.ts +38 -0
  29. package/dist/browser/classic/codeSigningAccounts/index.d.ts.map +1 -0
  30. package/dist/browser/classic/codeSigningAccounts/index.js +18 -0
  31. package/dist/browser/classic/codeSigningAccounts/index.js.map +1 -0
  32. package/dist/browser/classic/index.d.ts +4 -0
  33. package/dist/browser/classic/index.d.ts.map +1 -0
  34. package/dist/browser/classic/index.js +4 -0
  35. package/dist/browser/classic/index.js.map +1 -0
  36. package/dist/browser/classic/operations/index.d.ts +14 -0
  37. package/dist/browser/classic/operations/index.d.ts.map +1 -0
  38. package/dist/browser/classic/operations/index.js +12 -0
  39. package/dist/browser/classic/operations/index.js.map +1 -0
  40. package/dist/browser/codeSigningClient.d.ts +21 -0
  41. package/dist/browser/codeSigningClient.d.ts.map +1 -0
  42. package/dist/browser/codeSigningClient.js +22 -0
  43. package/dist/browser/codeSigningClient.js.map +1 -0
  44. package/dist/browser/helpers/serializerHelpers.d.ts +3 -0
  45. package/dist/browser/helpers/serializerHelpers.d.ts.map +1 -0
  46. package/dist/browser/helpers/serializerHelpers.js +24 -0
  47. package/dist/browser/helpers/serializerHelpers.js.map +1 -0
  48. package/dist/browser/index.d.ts +7 -0
  49. package/dist/browser/index.d.ts.map +1 -0
  50. package/dist/browser/index.js +6 -0
  51. package/dist/browser/index.js.map +1 -0
  52. package/dist/browser/logger.d.ts +2 -0
  53. package/dist/browser/logger.d.ts.map +1 -0
  54. package/dist/browser/logger.js +5 -0
  55. package/dist/browser/logger.js.map +1 -0
  56. package/dist/browser/models/index.d.ts +3 -0
  57. package/dist/browser/models/index.d.ts.map +1 -0
  58. package/dist/browser/models/index.js +4 -0
  59. package/dist/browser/models/index.js.map +1 -0
  60. package/dist/browser/models/models.d.ts +426 -0
  61. package/dist/browser/models/models.d.ts.map +1 -0
  62. package/dist/browser/models/models.js +184 -0
  63. package/dist/browser/models/models.js.map +1 -0
  64. package/dist/browser/models/options.d.ts +51 -0
  65. package/dist/browser/models/options.d.ts.map +1 -0
  66. package/dist/browser/models/options.js +4 -0
  67. package/dist/browser/models/options.js.map +1 -0
  68. package/dist/browser/package.json +3 -0
  69. package/dist/browser/restorePollerHelpers.d.ts +21 -0
  70. package/dist/browser/restorePollerHelpers.d.ts.map +1 -0
  71. package/dist/browser/restorePollerHelpers.js +104 -0
  72. package/dist/browser/restorePollerHelpers.js.map +1 -0
  73. package/dist/browser/static-helpers/pagingHelpers.d.ts +72 -0
  74. package/dist/browser/static-helpers/pagingHelpers.d.ts.map +1 -0
  75. package/dist/browser/static-helpers/pagingHelpers.js +137 -0
  76. package/dist/browser/static-helpers/pagingHelpers.js.map +1 -0
  77. package/dist/browser/static-helpers/pollingHelpers.d.ts +30 -0
  78. package/dist/browser/static-helpers/pollingHelpers.d.ts.map +1 -0
  79. package/dist/browser/static-helpers/pollingHelpers.js +76 -0
  80. package/dist/browser/static-helpers/pollingHelpers.js.map +1 -0
  81. package/dist/commonjs/api/certificateProfiles/index.d.ts +32 -0
  82. package/dist/commonjs/api/certificateProfiles/index.d.ts.map +1 -0
  83. package/dist/commonjs/api/certificateProfiles/index.js +348 -0
  84. package/dist/commonjs/api/certificateProfiles/index.js.map +1 -0
  85. package/dist/commonjs/api/codeSigningAccounts/index.d.ts +40 -0
  86. package/dist/commonjs/api/codeSigningAccounts/index.d.ts.map +1 -0
  87. package/dist/commonjs/api/codeSigningAccounts/index.js +348 -0
  88. package/dist/commonjs/api/codeSigningAccounts/index.js.map +1 -0
  89. package/dist/commonjs/api/codeSigningContext.d.ts +12 -0
  90. package/dist/commonjs/api/codeSigningContext.d.ts.map +1 -0
  91. package/dist/commonjs/api/codeSigningContext.js +35 -0
  92. package/dist/commonjs/api/codeSigningContext.js.map +1 -0
  93. package/dist/commonjs/api/index.d.ts +2 -0
  94. package/dist/commonjs/api/index.d.ts.map +1 -0
  95. package/dist/commonjs/api/index.js +8 -0
  96. package/dist/commonjs/api/index.js.map +1 -0
  97. package/dist/commonjs/api/operations/index.d.ts +10 -0
  98. package/dist/commonjs/api/operations/index.d.ts.map +1 -0
  99. package/dist/commonjs/api/operations/index.js +45 -0
  100. package/dist/commonjs/api/operations/index.js.map +1 -0
  101. package/dist/commonjs/classic/certificateProfiles/index.d.ts +32 -0
  102. package/dist/commonjs/classic/certificateProfiles/index.d.ts.map +1 -0
  103. package/dist/commonjs/classic/certificateProfiles/index.js +20 -0
  104. package/dist/commonjs/classic/certificateProfiles/index.js.map +1 -0
  105. package/dist/commonjs/classic/codeSigningAccounts/index.d.ts +38 -0
  106. package/dist/commonjs/classic/codeSigningAccounts/index.d.ts.map +1 -0
  107. package/dist/commonjs/classic/codeSigningAccounts/index.js +22 -0
  108. package/dist/commonjs/classic/codeSigningAccounts/index.js.map +1 -0
  109. package/dist/commonjs/classic/index.d.ts +4 -0
  110. package/dist/commonjs/classic/index.d.ts.map +1 -0
  111. package/dist/commonjs/classic/index.js +5 -0
  112. package/dist/commonjs/classic/index.js.map +1 -0
  113. package/dist/commonjs/classic/operations/index.d.ts +14 -0
  114. package/dist/commonjs/classic/operations/index.d.ts.map +1 -0
  115. package/dist/commonjs/classic/operations/index.js +16 -0
  116. package/dist/commonjs/classic/operations/index.js.map +1 -0
  117. package/dist/commonjs/codeSigningClient.d.ts +21 -0
  118. package/dist/commonjs/codeSigningClient.d.ts.map +1 -0
  119. package/dist/commonjs/codeSigningClient.js +26 -0
  120. package/dist/commonjs/codeSigningClient.js.map +1 -0
  121. package/dist/commonjs/helpers/serializerHelpers.d.ts +3 -0
  122. package/dist/commonjs/helpers/serializerHelpers.d.ts.map +1 -0
  123. package/dist/commonjs/helpers/serializerHelpers.js +27 -0
  124. package/dist/commonjs/helpers/serializerHelpers.js.map +1 -0
  125. package/dist/commonjs/index.d.ts +7 -0
  126. package/dist/commonjs/index.d.ts.map +1 -0
  127. package/dist/commonjs/index.js +21 -0
  128. package/dist/commonjs/index.js.map +1 -0
  129. package/dist/commonjs/logger.d.ts +2 -0
  130. package/dist/commonjs/logger.d.ts.map +1 -0
  131. package/dist/commonjs/logger.js +8 -0
  132. package/dist/commonjs/logger.js.map +1 -0
  133. package/dist/commonjs/models/index.d.ts +3 -0
  134. package/dist/commonjs/models/index.d.ts.map +1 -0
  135. package/dist/commonjs/models/index.js +17 -0
  136. package/dist/commonjs/models/index.js.map +1 -0
  137. package/dist/commonjs/models/models.d.ts +426 -0
  138. package/dist/commonjs/models/models.d.ts.map +1 -0
  139. package/dist/commonjs/models/models.js +199 -0
  140. package/dist/commonjs/models/models.js.map +1 -0
  141. package/dist/commonjs/models/options.d.ts +51 -0
  142. package/dist/commonjs/models/options.d.ts.map +1 -0
  143. package/dist/commonjs/models/options.js +5 -0
  144. package/dist/commonjs/models/options.js.map +1 -0
  145. package/dist/commonjs/package.json +3 -0
  146. package/dist/commonjs/restorePollerHelpers.d.ts +21 -0
  147. package/dist/commonjs/restorePollerHelpers.d.ts.map +1 -0
  148. package/dist/commonjs/restorePollerHelpers.js +107 -0
  149. package/dist/commonjs/restorePollerHelpers.js.map +1 -0
  150. package/dist/commonjs/static-helpers/pagingHelpers.d.ts +72 -0
  151. package/dist/commonjs/static-helpers/pagingHelpers.d.ts.map +1 -0
  152. package/dist/commonjs/static-helpers/pagingHelpers.js +140 -0
  153. package/dist/commonjs/static-helpers/pagingHelpers.js.map +1 -0
  154. package/dist/commonjs/static-helpers/pollingHelpers.d.ts +30 -0
  155. package/dist/commonjs/static-helpers/pollingHelpers.d.ts.map +1 -0
  156. package/dist/commonjs/static-helpers/pollingHelpers.js +79 -0
  157. package/dist/commonjs/static-helpers/pollingHelpers.js.map +1 -0
  158. package/dist/commonjs/tsdoc-metadata.json +11 -0
  159. package/dist/esm/api/certificateProfiles/index.d.ts +32 -0
  160. package/dist/esm/api/certificateProfiles/index.d.ts.map +1 -0
  161. package/dist/esm/api/certificateProfiles/index.js +331 -0
  162. package/dist/esm/api/certificateProfiles/index.js.map +1 -0
  163. package/dist/esm/api/codeSigningAccounts/index.d.ts +40 -0
  164. package/dist/esm/api/codeSigningAccounts/index.d.ts.map +1 -0
  165. package/dist/esm/api/codeSigningAccounts/index.js +325 -0
  166. package/dist/esm/api/codeSigningAccounts/index.js.map +1 -0
  167. package/dist/esm/api/codeSigningContext.d.ts +12 -0
  168. package/dist/esm/api/codeSigningContext.d.ts.map +1 -0
  169. package/dist/esm/api/codeSigningContext.js +32 -0
  170. package/dist/esm/api/codeSigningContext.js.map +1 -0
  171. package/dist/esm/api/index.d.ts +2 -0
  172. package/dist/esm/api/index.d.ts.map +1 -0
  173. package/dist/esm/api/index.js +4 -0
  174. package/dist/esm/api/index.js.map +1 -0
  175. package/dist/esm/api/operations/index.d.ts +10 -0
  176. package/dist/esm/api/operations/index.d.ts.map +1 -0
  177. package/dist/esm/api/operations/index.js +40 -0
  178. package/dist/esm/api/operations/index.js.map +1 -0
  179. package/dist/esm/classic/certificateProfiles/index.d.ts +32 -0
  180. package/dist/esm/classic/certificateProfiles/index.d.ts.map +1 -0
  181. package/dist/esm/classic/certificateProfiles/index.js +16 -0
  182. package/dist/esm/classic/certificateProfiles/index.js.map +1 -0
  183. package/dist/esm/classic/codeSigningAccounts/index.d.ts +38 -0
  184. package/dist/esm/classic/codeSigningAccounts/index.d.ts.map +1 -0
  185. package/dist/esm/classic/codeSigningAccounts/index.js +18 -0
  186. package/dist/esm/classic/codeSigningAccounts/index.js.map +1 -0
  187. package/dist/esm/classic/index.d.ts +4 -0
  188. package/dist/esm/classic/index.d.ts.map +1 -0
  189. package/dist/esm/classic/index.js +4 -0
  190. package/dist/esm/classic/index.js.map +1 -0
  191. package/dist/esm/classic/operations/index.d.ts +14 -0
  192. package/dist/esm/classic/operations/index.d.ts.map +1 -0
  193. package/dist/esm/classic/operations/index.js +12 -0
  194. package/dist/esm/classic/operations/index.js.map +1 -0
  195. package/dist/esm/codeSigningClient.d.ts +21 -0
  196. package/dist/esm/codeSigningClient.d.ts.map +1 -0
  197. package/dist/esm/codeSigningClient.js +22 -0
  198. package/dist/esm/codeSigningClient.js.map +1 -0
  199. package/dist/esm/helpers/serializerHelpers.d.ts +3 -0
  200. package/dist/esm/helpers/serializerHelpers.d.ts.map +1 -0
  201. package/dist/esm/helpers/serializerHelpers.js +24 -0
  202. package/dist/esm/helpers/serializerHelpers.js.map +1 -0
  203. package/dist/esm/index.d.ts +7 -0
  204. package/dist/esm/index.d.ts.map +1 -0
  205. package/dist/esm/index.js +6 -0
  206. package/dist/esm/index.js.map +1 -0
  207. package/dist/esm/logger.d.ts +2 -0
  208. package/dist/esm/logger.d.ts.map +1 -0
  209. package/dist/esm/logger.js +5 -0
  210. package/dist/esm/logger.js.map +1 -0
  211. package/dist/esm/models/index.d.ts +3 -0
  212. package/dist/esm/models/index.d.ts.map +1 -0
  213. package/dist/esm/models/index.js +4 -0
  214. package/dist/esm/models/index.js.map +1 -0
  215. package/dist/esm/models/models.d.ts +426 -0
  216. package/dist/esm/models/models.d.ts.map +1 -0
  217. package/dist/esm/models/models.js +184 -0
  218. package/dist/esm/models/models.js.map +1 -0
  219. package/dist/esm/models/options.d.ts +51 -0
  220. package/dist/esm/models/options.d.ts.map +1 -0
  221. package/dist/esm/models/options.js +4 -0
  222. package/dist/esm/models/options.js.map +1 -0
  223. package/dist/esm/package.json +3 -0
  224. package/dist/esm/restorePollerHelpers.d.ts +21 -0
  225. package/dist/esm/restorePollerHelpers.d.ts.map +1 -0
  226. package/dist/esm/restorePollerHelpers.js +104 -0
  227. package/dist/esm/restorePollerHelpers.js.map +1 -0
  228. package/dist/esm/static-helpers/pagingHelpers.d.ts +72 -0
  229. package/dist/esm/static-helpers/pagingHelpers.d.ts.map +1 -0
  230. package/dist/esm/static-helpers/pagingHelpers.js +137 -0
  231. package/dist/esm/static-helpers/pagingHelpers.js.map +1 -0
  232. package/dist/esm/static-helpers/pollingHelpers.d.ts +30 -0
  233. package/dist/esm/static-helpers/pollingHelpers.d.ts.map +1 -0
  234. package/dist/esm/static-helpers/pollingHelpers.js +76 -0
  235. package/dist/esm/static-helpers/pollingHelpers.js.map +1 -0
  236. package/dist/react-native/api/certificateProfiles/index.d.ts +32 -0
  237. package/dist/react-native/api/certificateProfiles/index.d.ts.map +1 -0
  238. package/dist/react-native/api/certificateProfiles/index.js +331 -0
  239. package/dist/react-native/api/certificateProfiles/index.js.map +1 -0
  240. package/dist/react-native/api/codeSigningAccounts/index.d.ts +40 -0
  241. package/dist/react-native/api/codeSigningAccounts/index.d.ts.map +1 -0
  242. package/dist/react-native/api/codeSigningAccounts/index.js +325 -0
  243. package/dist/react-native/api/codeSigningAccounts/index.js.map +1 -0
  244. package/dist/react-native/api/codeSigningContext.d.ts +12 -0
  245. package/dist/react-native/api/codeSigningContext.d.ts.map +1 -0
  246. package/dist/react-native/api/codeSigningContext.js +32 -0
  247. package/dist/react-native/api/codeSigningContext.js.map +1 -0
  248. package/dist/react-native/api/index.d.ts +2 -0
  249. package/dist/react-native/api/index.d.ts.map +1 -0
  250. package/dist/react-native/api/index.js +4 -0
  251. package/dist/react-native/api/index.js.map +1 -0
  252. package/dist/react-native/api/operations/index.d.ts +10 -0
  253. package/dist/react-native/api/operations/index.d.ts.map +1 -0
  254. package/dist/react-native/api/operations/index.js +40 -0
  255. package/dist/react-native/api/operations/index.js.map +1 -0
  256. package/dist/react-native/classic/certificateProfiles/index.d.ts +32 -0
  257. package/dist/react-native/classic/certificateProfiles/index.d.ts.map +1 -0
  258. package/dist/react-native/classic/certificateProfiles/index.js +16 -0
  259. package/dist/react-native/classic/certificateProfiles/index.js.map +1 -0
  260. package/dist/react-native/classic/codeSigningAccounts/index.d.ts +38 -0
  261. package/dist/react-native/classic/codeSigningAccounts/index.d.ts.map +1 -0
  262. package/dist/react-native/classic/codeSigningAccounts/index.js +18 -0
  263. package/dist/react-native/classic/codeSigningAccounts/index.js.map +1 -0
  264. package/dist/react-native/classic/index.d.ts +4 -0
  265. package/dist/react-native/classic/index.d.ts.map +1 -0
  266. package/dist/react-native/classic/index.js +4 -0
  267. package/dist/react-native/classic/index.js.map +1 -0
  268. package/dist/react-native/classic/operations/index.d.ts +14 -0
  269. package/dist/react-native/classic/operations/index.d.ts.map +1 -0
  270. package/dist/react-native/classic/operations/index.js +12 -0
  271. package/dist/react-native/classic/operations/index.js.map +1 -0
  272. package/dist/react-native/codeSigningClient.d.ts +21 -0
  273. package/dist/react-native/codeSigningClient.d.ts.map +1 -0
  274. package/dist/react-native/codeSigningClient.js +22 -0
  275. package/dist/react-native/codeSigningClient.js.map +1 -0
  276. package/dist/react-native/helpers/serializerHelpers.d.ts +3 -0
  277. package/dist/react-native/helpers/serializerHelpers.d.ts.map +1 -0
  278. package/dist/react-native/helpers/serializerHelpers.js +24 -0
  279. package/dist/react-native/helpers/serializerHelpers.js.map +1 -0
  280. package/dist/react-native/index.d.ts +7 -0
  281. package/dist/react-native/index.d.ts.map +1 -0
  282. package/dist/react-native/index.js +6 -0
  283. package/dist/react-native/index.js.map +1 -0
  284. package/dist/react-native/logger.d.ts +2 -0
  285. package/dist/react-native/logger.d.ts.map +1 -0
  286. package/dist/react-native/logger.js +5 -0
  287. package/dist/react-native/logger.js.map +1 -0
  288. package/dist/react-native/models/index.d.ts +3 -0
  289. package/dist/react-native/models/index.d.ts.map +1 -0
  290. package/dist/react-native/models/index.js +4 -0
  291. package/dist/react-native/models/index.js.map +1 -0
  292. package/dist/react-native/models/models.d.ts +426 -0
  293. package/dist/react-native/models/models.d.ts.map +1 -0
  294. package/dist/react-native/models/models.js +184 -0
  295. package/dist/react-native/models/models.js.map +1 -0
  296. package/dist/react-native/models/options.d.ts +51 -0
  297. package/dist/react-native/models/options.d.ts.map +1 -0
  298. package/dist/react-native/models/options.js +4 -0
  299. package/dist/react-native/models/options.js.map +1 -0
  300. package/dist/react-native/package.json +3 -0
  301. package/dist/react-native/restorePollerHelpers.d.ts +21 -0
  302. package/dist/react-native/restorePollerHelpers.d.ts.map +1 -0
  303. package/dist/react-native/restorePollerHelpers.js +104 -0
  304. package/dist/react-native/restorePollerHelpers.js.map +1 -0
  305. package/dist/react-native/static-helpers/pagingHelpers.d.ts +72 -0
  306. package/dist/react-native/static-helpers/pagingHelpers.d.ts.map +1 -0
  307. package/dist/react-native/static-helpers/pagingHelpers.js +137 -0
  308. package/dist/react-native/static-helpers/pagingHelpers.js.map +1 -0
  309. package/dist/react-native/static-helpers/pollingHelpers.d.ts +30 -0
  310. package/dist/react-native/static-helpers/pollingHelpers.d.ts.map +1 -0
  311. package/dist/react-native/static-helpers/pollingHelpers.js +76 -0
  312. package/dist/react-native/static-helpers/pollingHelpers.js.map +1 -0
  313. package/package.json +170 -0
  314. package/review/arm-trustedsigning-models.api.md +313 -0
  315. package/review/arm-trustedsigning.api.md +386 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,7 @@
1
+ # Release History
2
+
3
+ ## 1.0.0-beta.1 (2024-09-29)
4
+
5
+ ### Features Added
6
+
7
+ Initial release of the Azure TrustedSigning package
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2024 Microsoft
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,100 @@
1
+ # Azure CodeSigningManagement client library for JavaScript
2
+
3
+ This package contains an isomorphic SDK (runs both in Node.js and in browsers) for Azure CodeSigningManagement client.
4
+
5
+ Code Signing resource provider api.
6
+
7
+ [Package (NPM)](https://www.npmjs.com/package/@azure/arm-trustedsigning) |
8
+ [API reference documentation](https://docs.microsoft.com/javascript/api/@azure/arm-trustedsigning?view=azure-node-preview) |
9
+
10
+ ## Getting started
11
+
12
+ ### Currently supported environments
13
+
14
+ - [LTS versions of Node.js](https://github.com/nodejs/release#release-schedule)
15
+ - Latest versions of Safari, Chrome, Edge and Firefox.
16
+
17
+ See our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details.
18
+
19
+ ### Prerequisites
20
+
21
+ - An [Azure subscription][azure_sub].
22
+
23
+ ### Install the `@azure/arm-trustedsigning` package
24
+
25
+ Install the Azure CodeSigningManagement client library for JavaScript with `npm`:
26
+
27
+ ```bash
28
+ npm install @azure/arm-trustedsigning
29
+ ```
30
+
31
+ ### Create and authenticate a `CodeSigningClient`
32
+
33
+ To create a client object to access the Azure CodeSigningManagement API, you will need the `endpoint` of your Azure CodeSigningManagement resource and a `credential`. The Azure CodeSigningManagement client can use Azure Active Directory credentials to authenticate.
34
+ You can find the endpoint for your Azure CodeSigningManagement resource in the [Azure Portal][azure_portal].
35
+
36
+ You can authenticate with Azure Active Directory using a credential from the [@azure/identity][azure_identity] library or [an existing AAD Token](https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/identity/identity/samples/AzureIdentityExamples.md#authenticating-with-a-pre-fetched-access-token).
37
+
38
+ To use the [DefaultAzureCredential][defaultazurecredential] provider shown below, or other credential providers provided with the Azure SDK, please install the `@azure/identity` package:
39
+
40
+ ```bash
41
+ npm install @azure/identity
42
+ ```
43
+
44
+ You will also need to **register a new AAD application and grant access to Azure CodeSigningManagement** by assigning the suitable role to your service principal (note: roles such as `"Owner"` will not grant the necessary permissions).
45
+ Set the values of the client ID, tenant ID, and client secret of the AAD application as environment variables: `AZURE_CLIENT_ID`, `AZURE_TENANT_ID`, `AZURE_CLIENT_SECRET`.
46
+
47
+ For more information about how to create an Azure AD Application check out [this guide](https://docs.microsoft.com/azure/active-directory/develop/howto-create-service-principal-portal).
48
+
49
+ ```javascript
50
+ const { CodeSigningClient } = require("@azure/arm-trustedsigning");
51
+ const { DefaultAzureCredential } = require("@azure/identity");
52
+ // For client-side applications running in the browser, use InteractiveBrowserCredential instead of DefaultAzureCredential. See https://aka.ms/azsdk/js/identity/examples for more details.
53
+
54
+ const subscriptionId = "00000000-0000-0000-0000-000000000000";
55
+ const client = new CodeSigningClient(new DefaultAzureCredential(), subscriptionId);
56
+
57
+ // For client-side applications running in the browser, use this code instead:
58
+ // const credential = new InteractiveBrowserCredential({
59
+ // tenantId: "<YOUR_TENANT_ID>",
60
+ // clientId: "<YOUR_CLIENT_ID>"
61
+ // });
62
+ // const client = new CodeSigningClient(credential, subscriptionId);
63
+ ```
64
+
65
+
66
+ ### JavaScript Bundle
67
+ To use this client library in the browser, first you need to use a bundler. For details on how to do this, please refer to our [bundling documentation](https://aka.ms/AzureSDKBundling).
68
+
69
+ ## Key concepts
70
+
71
+ ### CodeSigningClient
72
+
73
+ `CodeSigningClient` is the primary interface for developers using the Azure CodeSigningManagement client library. Explore the methods on this client object to understand the different features of the Azure CodeSigningManagement service that you can access.
74
+
75
+ ## Troubleshooting
76
+
77
+ ### Logging
78
+
79
+ Enabling logging may help uncover useful information about failures. In order to see a log of HTTP requests and responses, set the `AZURE_LOG_LEVEL` environment variable to `info`. Alternatively, logging can be enabled at runtime by calling `setLogLevel` in the `@azure/logger`:
80
+
81
+ ```javascript
82
+ const { setLogLevel } = require("@azure/logger");
83
+ setLogLevel("info");
84
+ ```
85
+
86
+ For more detailed instructions on how to enable logs, you can look at the [@azure/logger package docs](https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/core/logger).
87
+
88
+
89
+ ## Contributing
90
+
91
+ If you'd like to contribute to this library, please read the [contributing guide](https://github.com/Azure/azure-sdk-for-js/blob/main/CONTRIBUTING.md) to learn more about how to build and test the code.
92
+
93
+ ## Related projects
94
+
95
+ - [Microsoft Azure SDK for JavaScript](https://github.com/Azure/azure-sdk-for-js)
96
+
97
+ [azure_sub]: https://azure.microsoft.com/free/
98
+ [azure_portal]: https://portal.azure.com
99
+ [azure_identity]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/identity/identity
100
+ [defaultazurecredential]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/identity/identity#defaultazurecredential
@@ -0,0 +1,32 @@
1
+ import { CertificateProfile, RevokeCertificate, _CertificateProfileListResult } from "../../models/models.js";
2
+ import { CodeSigningContext as Client } from "../index.js";
3
+ import { StreamableMethod, PathUncheckedResponse } from "@azure-rest/core-client";
4
+ import { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js";
5
+ import { PollerLike, OperationState } from "@azure/core-lro";
6
+ import { CertificateProfilesGetOptionalParams, CertificateProfilesCreateOptionalParams, CertificateProfilesDeleteOptionalParams, CertificateProfilesListByCodeSigningAccountOptionalParams, CertificateProfilesRevokeCertificateOptionalParams } from "../../models/options.js";
7
+ export declare function _getSend(context: Client, subscriptionId: string, resourceGroupName: string, accountName: string, profileName: string, options?: CertificateProfilesGetOptionalParams): StreamableMethod;
8
+ export declare function _getDeserialize(result: PathUncheckedResponse): Promise<CertificateProfile>;
9
+ /** Get details of a certificate profile. */
10
+ export declare function get(context: Client, subscriptionId: string, resourceGroupName: string, accountName: string, profileName: string, options?: CertificateProfilesGetOptionalParams): Promise<CertificateProfile>;
11
+ export declare function _createSend(context: Client, subscriptionId: string, resourceGroupName: string, accountName: string, profileName: string, resource: CertificateProfile, options?: CertificateProfilesCreateOptionalParams): StreamableMethod;
12
+ export declare function _createDeserialize(result: PathUncheckedResponse): Promise<CertificateProfile>;
13
+ /** Create a certificate profile. */
14
+ export declare function create(context: Client, subscriptionId: string, resourceGroupName: string, accountName: string, profileName: string, resource: CertificateProfile, options?: CertificateProfilesCreateOptionalParams): PollerLike<OperationState<CertificateProfile>, CertificateProfile>;
15
+ export declare function _$deleteSend(context: Client, subscriptionId: string, resourceGroupName: string, accountName: string, profileName: string, options?: CertificateProfilesDeleteOptionalParams): StreamableMethod;
16
+ export declare function _$deleteDeserialize(result: PathUncheckedResponse): Promise<void>;
17
+ /** Delete a certificate profile. */
18
+ /**
19
+ * @fixme delete is a reserved word that cannot be used as an operation name.
20
+ * Please add @clientName("clientName") or @clientName("<JS-Specific-Name>", "javascript")
21
+ * to the operation to override the generated name.
22
+ */
23
+ export declare function $delete(context: Client, subscriptionId: string, resourceGroupName: string, accountName: string, profileName: string, options?: CertificateProfilesDeleteOptionalParams): PollerLike<OperationState<void>, void>;
24
+ export declare function _listByCodeSigningAccountSend(context: Client, subscriptionId: string, resourceGroupName: string, accountName: string, options?: CertificateProfilesListByCodeSigningAccountOptionalParams): StreamableMethod;
25
+ export declare function _listByCodeSigningAccountDeserialize(result: PathUncheckedResponse): Promise<_CertificateProfileListResult>;
26
+ /** List certificate profiles under a trusted signing account. */
27
+ export declare function listByCodeSigningAccount(context: Client, subscriptionId: string, resourceGroupName: string, accountName: string, options?: CertificateProfilesListByCodeSigningAccountOptionalParams): PagedAsyncIterableIterator<CertificateProfile>;
28
+ export declare function _revokeCertificateSend(context: Client, subscriptionId: string, resourceGroupName: string, accountName: string, profileName: string, body: RevokeCertificate, options?: CertificateProfilesRevokeCertificateOptionalParams): StreamableMethod;
29
+ export declare function _revokeCertificateDeserialize(result: PathUncheckedResponse): Promise<void>;
30
+ /** Revoke a certificate under a certificate profile. */
31
+ export declare function revokeCertificate(context: Client, subscriptionId: string, resourceGroupName: string, accountName: string, profileName: string, body: RevokeCertificate, options?: CertificateProfilesRevokeCertificateOptionalParams): Promise<void>;
32
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/api/certificateProfiles/index.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,331 @@
1
+ // Copyright (c) Microsoft Corporation.
2
+ // Licensed under the MIT License.
3
+ import { certificateProfilePropertiesSerializer, } from "../../models/models.js";
4
+ import { operationOptionsToRequestParameters, createRestError, } from "@azure-rest/core-client";
5
+ import { buildPagedAsyncIterator, } from "../../static-helpers/pagingHelpers.js";
6
+ import { getLongRunningPoller } from "../../static-helpers/pollingHelpers.js";
7
+ export function _getSend(context, subscriptionId, resourceGroupName, accountName, profileName, options = { requestOptions: {} }) {
8
+ return context
9
+ .path("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.CodeSigning/codeSigningAccounts/{accountName}/certificateProfiles/{profileName}", subscriptionId, resourceGroupName, accountName, profileName)
10
+ .get(Object.assign({}, operationOptionsToRequestParameters(options)));
11
+ }
12
+ export async function _getDeserialize(result) {
13
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2, _3, _4;
14
+ const expectedStatuses = ["200"];
15
+ if (!expectedStatuses.includes(result.status)) {
16
+ throw createRestError(result);
17
+ }
18
+ return {
19
+ id: result.body["id"],
20
+ name: result.body["name"],
21
+ type: result.body["type"],
22
+ systemData: !result.body.systemData
23
+ ? undefined
24
+ : {
25
+ createdBy: (_a = result.body.systemData) === null || _a === void 0 ? void 0 : _a["createdBy"],
26
+ createdByType: (_b = result.body.systemData) === null || _b === void 0 ? void 0 : _b["createdByType"],
27
+ createdAt: ((_c = result.body.systemData) === null || _c === void 0 ? void 0 : _c["createdAt"]) !== undefined
28
+ ? new Date((_d = result.body.systemData) === null || _d === void 0 ? void 0 : _d["createdAt"])
29
+ : undefined,
30
+ lastModifiedBy: (_e = result.body.systemData) === null || _e === void 0 ? void 0 : _e["lastModifiedBy"],
31
+ lastModifiedByType: (_f = result.body.systemData) === null || _f === void 0 ? void 0 : _f["lastModifiedByType"],
32
+ lastModifiedAt: ((_g = result.body.systemData) === null || _g === void 0 ? void 0 : _g["lastModifiedAt"]) !== undefined
33
+ ? new Date((_h = result.body.systemData) === null || _h === void 0 ? void 0 : _h["lastModifiedAt"])
34
+ : undefined,
35
+ },
36
+ properties: !result.body.properties
37
+ ? undefined
38
+ : {
39
+ profileType: (_j = result.body.properties) === null || _j === void 0 ? void 0 : _j["profileType"],
40
+ commonName: (_k = result.body.properties) === null || _k === void 0 ? void 0 : _k["commonName"],
41
+ organization: (_l = result.body.properties) === null || _l === void 0 ? void 0 : _l["organization"],
42
+ organizationUnit: (_m = result.body.properties) === null || _m === void 0 ? void 0 : _m["organizationUnit"],
43
+ streetAddress: (_o = result.body.properties) === null || _o === void 0 ? void 0 : _o["streetAddress"],
44
+ includeStreetAddress: (_p = result.body.properties) === null || _p === void 0 ? void 0 : _p["includeStreetAddress"],
45
+ city: (_q = result.body.properties) === null || _q === void 0 ? void 0 : _q["city"],
46
+ includeCity: (_r = result.body.properties) === null || _r === void 0 ? void 0 : _r["includeCity"],
47
+ state: (_s = result.body.properties) === null || _s === void 0 ? void 0 : _s["state"],
48
+ includeState: (_t = result.body.properties) === null || _t === void 0 ? void 0 : _t["includeState"],
49
+ country: (_u = result.body.properties) === null || _u === void 0 ? void 0 : _u["country"],
50
+ includeCountry: (_v = result.body.properties) === null || _v === void 0 ? void 0 : _v["includeCountry"],
51
+ postalCode: (_w = result.body.properties) === null || _w === void 0 ? void 0 : _w["postalCode"],
52
+ includePostalCode: (_x = result.body.properties) === null || _x === void 0 ? void 0 : _x["includePostalCode"],
53
+ enhancedKeyUsage: (_y = result.body.properties) === null || _y === void 0 ? void 0 : _y["enhancedKeyUsage"],
54
+ identityValidationId: (_z = result.body.properties) === null || _z === void 0 ? void 0 : _z["identityValidationId"],
55
+ provisioningState: (_0 = result.body.properties) === null || _0 === void 0 ? void 0 : _0["provisioningState"],
56
+ status: (_1 = result.body.properties) === null || _1 === void 0 ? void 0 : _1["status"],
57
+ certificates: ((_2 = result.body.properties) === null || _2 === void 0 ? void 0 : _2["certificates"]) === undefined
58
+ ? (_3 = result.body.properties) === null || _3 === void 0 ? void 0 : _3["certificates"]
59
+ : (_4 = result.body.properties) === null || _4 === void 0 ? void 0 : _4["certificates"].map((p) => {
60
+ var _a, _b, _c, _d, _e, _f, _g, _h;
61
+ return {
62
+ serialNumber: p["serialNumber"],
63
+ subjectName: p["subjectName"],
64
+ thumbprint: p["thumbprint"],
65
+ createdDate: p["createdDate"],
66
+ expiryDate: p["expiryDate"],
67
+ status: p["status"],
68
+ revocation: !p.revocation
69
+ ? undefined
70
+ : {
71
+ requestedAt: ((_a = p.revocation) === null || _a === void 0 ? void 0 : _a["requestedAt"]) !== undefined
72
+ ? new Date((_b = p.revocation) === null || _b === void 0 ? void 0 : _b["requestedAt"])
73
+ : undefined,
74
+ effectiveAt: ((_c = p.revocation) === null || _c === void 0 ? void 0 : _c["effectiveAt"]) !== undefined
75
+ ? new Date((_d = p.revocation) === null || _d === void 0 ? void 0 : _d["effectiveAt"])
76
+ : undefined,
77
+ reason: (_e = p.revocation) === null || _e === void 0 ? void 0 : _e["reason"],
78
+ remarks: (_f = p.revocation) === null || _f === void 0 ? void 0 : _f["remarks"],
79
+ status: (_g = p.revocation) === null || _g === void 0 ? void 0 : _g["status"],
80
+ failureReason: (_h = p.revocation) === null || _h === void 0 ? void 0 : _h["failureReason"],
81
+ },
82
+ };
83
+ }),
84
+ },
85
+ };
86
+ }
87
+ /** Get details of a certificate profile. */
88
+ export async function get(context, subscriptionId, resourceGroupName, accountName, profileName, options = { requestOptions: {} }) {
89
+ const result = await _getSend(context, subscriptionId, resourceGroupName, accountName, profileName, options);
90
+ return _getDeserialize(result);
91
+ }
92
+ export function _createSend(context, subscriptionId, resourceGroupName, accountName, profileName, resource, options = { requestOptions: {} }) {
93
+ return context
94
+ .path("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.CodeSigning/codeSigningAccounts/{accountName}/certificateProfiles/{profileName}", subscriptionId, resourceGroupName, accountName, profileName)
95
+ .put(Object.assign(Object.assign({}, operationOptionsToRequestParameters(options)), { body: {
96
+ properties: !resource.properties
97
+ ? resource.properties
98
+ : certificateProfilePropertiesSerializer(resource.properties),
99
+ } }));
100
+ }
101
+ export async function _createDeserialize(result) {
102
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2, _3, _4;
103
+ const expectedStatuses = ["200", "201"];
104
+ if (!expectedStatuses.includes(result.status)) {
105
+ throw createRestError(result);
106
+ }
107
+ return {
108
+ id: result.body["id"],
109
+ name: result.body["name"],
110
+ type: result.body["type"],
111
+ systemData: !result.body.systemData
112
+ ? undefined
113
+ : {
114
+ createdBy: (_a = result.body.systemData) === null || _a === void 0 ? void 0 : _a["createdBy"],
115
+ createdByType: (_b = result.body.systemData) === null || _b === void 0 ? void 0 : _b["createdByType"],
116
+ createdAt: ((_c = result.body.systemData) === null || _c === void 0 ? void 0 : _c["createdAt"]) !== undefined
117
+ ? new Date((_d = result.body.systemData) === null || _d === void 0 ? void 0 : _d["createdAt"])
118
+ : undefined,
119
+ lastModifiedBy: (_e = result.body.systemData) === null || _e === void 0 ? void 0 : _e["lastModifiedBy"],
120
+ lastModifiedByType: (_f = result.body.systemData) === null || _f === void 0 ? void 0 : _f["lastModifiedByType"],
121
+ lastModifiedAt: ((_g = result.body.systemData) === null || _g === void 0 ? void 0 : _g["lastModifiedAt"]) !== undefined
122
+ ? new Date((_h = result.body.systemData) === null || _h === void 0 ? void 0 : _h["lastModifiedAt"])
123
+ : undefined,
124
+ },
125
+ properties: !result.body.properties
126
+ ? undefined
127
+ : {
128
+ profileType: (_j = result.body.properties) === null || _j === void 0 ? void 0 : _j["profileType"],
129
+ commonName: (_k = result.body.properties) === null || _k === void 0 ? void 0 : _k["commonName"],
130
+ organization: (_l = result.body.properties) === null || _l === void 0 ? void 0 : _l["organization"],
131
+ organizationUnit: (_m = result.body.properties) === null || _m === void 0 ? void 0 : _m["organizationUnit"],
132
+ streetAddress: (_o = result.body.properties) === null || _o === void 0 ? void 0 : _o["streetAddress"],
133
+ includeStreetAddress: (_p = result.body.properties) === null || _p === void 0 ? void 0 : _p["includeStreetAddress"],
134
+ city: (_q = result.body.properties) === null || _q === void 0 ? void 0 : _q["city"],
135
+ includeCity: (_r = result.body.properties) === null || _r === void 0 ? void 0 : _r["includeCity"],
136
+ state: (_s = result.body.properties) === null || _s === void 0 ? void 0 : _s["state"],
137
+ includeState: (_t = result.body.properties) === null || _t === void 0 ? void 0 : _t["includeState"],
138
+ country: (_u = result.body.properties) === null || _u === void 0 ? void 0 : _u["country"],
139
+ includeCountry: (_v = result.body.properties) === null || _v === void 0 ? void 0 : _v["includeCountry"],
140
+ postalCode: (_w = result.body.properties) === null || _w === void 0 ? void 0 : _w["postalCode"],
141
+ includePostalCode: (_x = result.body.properties) === null || _x === void 0 ? void 0 : _x["includePostalCode"],
142
+ enhancedKeyUsage: (_y = result.body.properties) === null || _y === void 0 ? void 0 : _y["enhancedKeyUsage"],
143
+ identityValidationId: (_z = result.body.properties) === null || _z === void 0 ? void 0 : _z["identityValidationId"],
144
+ provisioningState: (_0 = result.body.properties) === null || _0 === void 0 ? void 0 : _0["provisioningState"],
145
+ status: (_1 = result.body.properties) === null || _1 === void 0 ? void 0 : _1["status"],
146
+ certificates: ((_2 = result.body.properties) === null || _2 === void 0 ? void 0 : _2["certificates"]) === undefined
147
+ ? (_3 = result.body.properties) === null || _3 === void 0 ? void 0 : _3["certificates"]
148
+ : (_4 = result.body.properties) === null || _4 === void 0 ? void 0 : _4["certificates"].map((p) => {
149
+ var _a, _b, _c, _d, _e, _f, _g, _h;
150
+ return {
151
+ serialNumber: p["serialNumber"],
152
+ subjectName: p["subjectName"],
153
+ thumbprint: p["thumbprint"],
154
+ createdDate: p["createdDate"],
155
+ expiryDate: p["expiryDate"],
156
+ status: p["status"],
157
+ revocation: !p.revocation
158
+ ? undefined
159
+ : {
160
+ requestedAt: ((_a = p.revocation) === null || _a === void 0 ? void 0 : _a["requestedAt"]) !== undefined
161
+ ? new Date((_b = p.revocation) === null || _b === void 0 ? void 0 : _b["requestedAt"])
162
+ : undefined,
163
+ effectiveAt: ((_c = p.revocation) === null || _c === void 0 ? void 0 : _c["effectiveAt"]) !== undefined
164
+ ? new Date((_d = p.revocation) === null || _d === void 0 ? void 0 : _d["effectiveAt"])
165
+ : undefined,
166
+ reason: (_e = p.revocation) === null || _e === void 0 ? void 0 : _e["reason"],
167
+ remarks: (_f = p.revocation) === null || _f === void 0 ? void 0 : _f["remarks"],
168
+ status: (_g = p.revocation) === null || _g === void 0 ? void 0 : _g["status"],
169
+ failureReason: (_h = p.revocation) === null || _h === void 0 ? void 0 : _h["failureReason"],
170
+ },
171
+ };
172
+ }),
173
+ },
174
+ };
175
+ }
176
+ /** Create a certificate profile. */
177
+ export function create(context, subscriptionId, resourceGroupName, accountName, profileName, resource, options = { requestOptions: {} }) {
178
+ return getLongRunningPoller(context, _createDeserialize, ["200", "201"], {
179
+ updateIntervalInMs: options === null || options === void 0 ? void 0 : options.updateIntervalInMs,
180
+ abortSignal: options === null || options === void 0 ? void 0 : options.abortSignal,
181
+ getInitialResponse: () => _createSend(context, subscriptionId, resourceGroupName, accountName, profileName, resource, options),
182
+ resourceLocationConfig: "azure-async-operation",
183
+ });
184
+ }
185
+ export function _$deleteSend(context, subscriptionId, resourceGroupName, accountName, profileName, options = { requestOptions: {} }) {
186
+ return context
187
+ .path("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.CodeSigning/codeSigningAccounts/{accountName}/certificateProfiles/{profileName}", subscriptionId, resourceGroupName, accountName, profileName)
188
+ .delete(Object.assign({}, operationOptionsToRequestParameters(options)));
189
+ }
190
+ export async function _$deleteDeserialize(result) {
191
+ const expectedStatuses = ["202", "204", "200"];
192
+ if (!expectedStatuses.includes(result.status)) {
193
+ throw createRestError(result);
194
+ }
195
+ return;
196
+ }
197
+ /** Delete a certificate profile. */
198
+ /**
199
+ * @fixme delete is a reserved word that cannot be used as an operation name.
200
+ * Please add @clientName("clientName") or @clientName("<JS-Specific-Name>", "javascript")
201
+ * to the operation to override the generated name.
202
+ */
203
+ export function $delete(context, subscriptionId, resourceGroupName, accountName, profileName, options = { requestOptions: {} }) {
204
+ return getLongRunningPoller(context, _$deleteDeserialize, ["202", "204", "200"], {
205
+ updateIntervalInMs: options === null || options === void 0 ? void 0 : options.updateIntervalInMs,
206
+ abortSignal: options === null || options === void 0 ? void 0 : options.abortSignal,
207
+ getInitialResponse: () => _$deleteSend(context, subscriptionId, resourceGroupName, accountName, profileName, options),
208
+ resourceLocationConfig: "location",
209
+ });
210
+ }
211
+ export function _listByCodeSigningAccountSend(context, subscriptionId, resourceGroupName, accountName, options = {
212
+ requestOptions: {},
213
+ }) {
214
+ return context
215
+ .path("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.CodeSigning/codeSigningAccounts/{accountName}/certificateProfiles", subscriptionId, resourceGroupName, accountName)
216
+ .get(Object.assign({}, operationOptionsToRequestParameters(options)));
217
+ }
218
+ export async function _listByCodeSigningAccountDeserialize(result) {
219
+ const expectedStatuses = ["200"];
220
+ if (!expectedStatuses.includes(result.status)) {
221
+ throw createRestError(result);
222
+ }
223
+ return {
224
+ value: result.body["value"].map((p) => {
225
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2, _3, _4;
226
+ return {
227
+ id: p["id"],
228
+ name: p["name"],
229
+ type: p["type"],
230
+ systemData: !p.systemData
231
+ ? undefined
232
+ : {
233
+ createdBy: (_a = p.systemData) === null || _a === void 0 ? void 0 : _a["createdBy"],
234
+ createdByType: (_b = p.systemData) === null || _b === void 0 ? void 0 : _b["createdByType"],
235
+ createdAt: ((_c = p.systemData) === null || _c === void 0 ? void 0 : _c["createdAt"]) !== undefined
236
+ ? new Date((_d = p.systemData) === null || _d === void 0 ? void 0 : _d["createdAt"])
237
+ : undefined,
238
+ lastModifiedBy: (_e = p.systemData) === null || _e === void 0 ? void 0 : _e["lastModifiedBy"],
239
+ lastModifiedByType: (_f = p.systemData) === null || _f === void 0 ? void 0 : _f["lastModifiedByType"],
240
+ lastModifiedAt: ((_g = p.systemData) === null || _g === void 0 ? void 0 : _g["lastModifiedAt"]) !== undefined
241
+ ? new Date((_h = p.systemData) === null || _h === void 0 ? void 0 : _h["lastModifiedAt"])
242
+ : undefined,
243
+ },
244
+ properties: !p.properties
245
+ ? undefined
246
+ : {
247
+ profileType: (_j = p.properties) === null || _j === void 0 ? void 0 : _j["profileType"],
248
+ commonName: (_k = p.properties) === null || _k === void 0 ? void 0 : _k["commonName"],
249
+ organization: (_l = p.properties) === null || _l === void 0 ? void 0 : _l["organization"],
250
+ organizationUnit: (_m = p.properties) === null || _m === void 0 ? void 0 : _m["organizationUnit"],
251
+ streetAddress: (_o = p.properties) === null || _o === void 0 ? void 0 : _o["streetAddress"],
252
+ includeStreetAddress: (_p = p.properties) === null || _p === void 0 ? void 0 : _p["includeStreetAddress"],
253
+ city: (_q = p.properties) === null || _q === void 0 ? void 0 : _q["city"],
254
+ includeCity: (_r = p.properties) === null || _r === void 0 ? void 0 : _r["includeCity"],
255
+ state: (_s = p.properties) === null || _s === void 0 ? void 0 : _s["state"],
256
+ includeState: (_t = p.properties) === null || _t === void 0 ? void 0 : _t["includeState"],
257
+ country: (_u = p.properties) === null || _u === void 0 ? void 0 : _u["country"],
258
+ includeCountry: (_v = p.properties) === null || _v === void 0 ? void 0 : _v["includeCountry"],
259
+ postalCode: (_w = p.properties) === null || _w === void 0 ? void 0 : _w["postalCode"],
260
+ includePostalCode: (_x = p.properties) === null || _x === void 0 ? void 0 : _x["includePostalCode"],
261
+ enhancedKeyUsage: (_y = p.properties) === null || _y === void 0 ? void 0 : _y["enhancedKeyUsage"],
262
+ identityValidationId: (_z = p.properties) === null || _z === void 0 ? void 0 : _z["identityValidationId"],
263
+ provisioningState: (_0 = p.properties) === null || _0 === void 0 ? void 0 : _0["provisioningState"],
264
+ status: (_1 = p.properties) === null || _1 === void 0 ? void 0 : _1["status"],
265
+ certificates: ((_2 = p.properties) === null || _2 === void 0 ? void 0 : _2["certificates"]) === undefined
266
+ ? (_3 = p.properties) === null || _3 === void 0 ? void 0 : _3["certificates"]
267
+ : (_4 = p.properties) === null || _4 === void 0 ? void 0 : _4["certificates"].map((p) => {
268
+ var _a, _b, _c, _d, _e, _f, _g, _h;
269
+ return {
270
+ serialNumber: p["serialNumber"],
271
+ subjectName: p["subjectName"],
272
+ thumbprint: p["thumbprint"],
273
+ createdDate: p["createdDate"],
274
+ expiryDate: p["expiryDate"],
275
+ status: p["status"],
276
+ revocation: !p.revocation
277
+ ? undefined
278
+ : {
279
+ requestedAt: ((_a = p.revocation) === null || _a === void 0 ? void 0 : _a["requestedAt"]) !== undefined
280
+ ? new Date((_b = p.revocation) === null || _b === void 0 ? void 0 : _b["requestedAt"])
281
+ : undefined,
282
+ effectiveAt: ((_c = p.revocation) === null || _c === void 0 ? void 0 : _c["effectiveAt"]) !== undefined
283
+ ? new Date((_d = p.revocation) === null || _d === void 0 ? void 0 : _d["effectiveAt"])
284
+ : undefined,
285
+ reason: (_e = p.revocation) === null || _e === void 0 ? void 0 : _e["reason"],
286
+ remarks: (_f = p.revocation) === null || _f === void 0 ? void 0 : _f["remarks"],
287
+ status: (_g = p.revocation) === null || _g === void 0 ? void 0 : _g["status"],
288
+ failureReason: (_h = p.revocation) === null || _h === void 0 ? void 0 : _h["failureReason"],
289
+ },
290
+ };
291
+ }),
292
+ },
293
+ };
294
+ }),
295
+ nextLink: result.body["nextLink"],
296
+ };
297
+ }
298
+ /** List certificate profiles under a trusted signing account. */
299
+ export function listByCodeSigningAccount(context, subscriptionId, resourceGroupName, accountName, options = {
300
+ requestOptions: {},
301
+ }) {
302
+ return buildPagedAsyncIterator(context, () => _listByCodeSigningAccountSend(context, subscriptionId, resourceGroupName, accountName, options), _listByCodeSigningAccountDeserialize, ["200"], { itemName: "value", nextLinkName: "nextLink" });
303
+ }
304
+ export function _revokeCertificateSend(context, subscriptionId, resourceGroupName, accountName, profileName, body, options = {
305
+ requestOptions: {},
306
+ }) {
307
+ return context
308
+ .path("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.CodeSigning/codeSigningAccounts/{accountName}/certificateProfiles/{profileName}/revokeCertificate", subscriptionId, resourceGroupName, accountName, profileName)
309
+ .post(Object.assign(Object.assign({}, operationOptionsToRequestParameters(options)), { body: {
310
+ serialNumber: body["serialNumber"],
311
+ thumbprint: body["thumbprint"],
312
+ effectiveAt: body["effectiveAt"].toISOString(),
313
+ reason: body["reason"],
314
+ remarks: body["remarks"],
315
+ } }));
316
+ }
317
+ export async function _revokeCertificateDeserialize(result) {
318
+ const expectedStatuses = ["204"];
319
+ if (!expectedStatuses.includes(result.status)) {
320
+ throw createRestError(result);
321
+ }
322
+ return;
323
+ }
324
+ /** Revoke a certificate under a certificate profile. */
325
+ export async function revokeCertificate(context, subscriptionId, resourceGroupName, accountName, profileName, body, options = {
326
+ requestOptions: {},
327
+ }) {
328
+ const result = await _revokeCertificateSend(context, subscriptionId, resourceGroupName, accountName, profileName, body, options);
329
+ return _revokeCertificateDeserialize(result);
330
+ }
331
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/api/certificateProfiles/index.ts"],"names":[],"mappings":"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","sourcesContent":["// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n\nimport {\n certificateProfilePropertiesSerializer,\n CertificateProfile,\n RevokeCertificate,\n _CertificateProfileListResult,\n} from \"../../models/models.js\";\nimport { CodeSigningContext as Client } from \"../index.js\";\nimport {\n StreamableMethod,\n operationOptionsToRequestParameters,\n PathUncheckedResponse,\n createRestError,\n} from \"@azure-rest/core-client\";\nimport {\n PagedAsyncIterableIterator,\n buildPagedAsyncIterator,\n} from \"../../static-helpers/pagingHelpers.js\";\nimport { getLongRunningPoller } from \"../../static-helpers/pollingHelpers.js\";\nimport { PollerLike, OperationState } from \"@azure/core-lro\";\nimport {\n CertificateProfilesGetOptionalParams,\n CertificateProfilesCreateOptionalParams,\n CertificateProfilesDeleteOptionalParams,\n CertificateProfilesListByCodeSigningAccountOptionalParams,\n CertificateProfilesRevokeCertificateOptionalParams,\n} from \"../../models/options.js\";\n\nexport function _getSend(\n context: Client,\n subscriptionId: string,\n resourceGroupName: string,\n accountName: string,\n profileName: string,\n options: CertificateProfilesGetOptionalParams = { requestOptions: {} },\n): StreamableMethod {\n return context\n .path(\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.CodeSigning/codeSigningAccounts/{accountName}/certificateProfiles/{profileName}\",\n subscriptionId,\n resourceGroupName,\n accountName,\n profileName,\n )\n .get({ ...operationOptionsToRequestParameters(options) });\n}\n\nexport async function _getDeserialize(result: PathUncheckedResponse): Promise<CertificateProfile> {\n const expectedStatuses = [\"200\"];\n if (!expectedStatuses.includes(result.status)) {\n throw createRestError(result);\n }\n\n return {\n id: result.body[\"id\"],\n name: result.body[\"name\"],\n type: result.body[\"type\"],\n systemData: !result.body.systemData\n ? undefined\n : {\n createdBy: result.body.systemData?.[\"createdBy\"],\n createdByType: result.body.systemData?.[\"createdByType\"],\n createdAt:\n result.body.systemData?.[\"createdAt\"] !== undefined\n ? new Date(result.body.systemData?.[\"createdAt\"])\n : undefined,\n lastModifiedBy: result.body.systemData?.[\"lastModifiedBy\"],\n lastModifiedByType: result.body.systemData?.[\"lastModifiedByType\"],\n lastModifiedAt:\n result.body.systemData?.[\"lastModifiedAt\"] !== undefined\n ? new Date(result.body.systemData?.[\"lastModifiedAt\"])\n : undefined,\n },\n properties: !result.body.properties\n ? undefined\n : {\n profileType: result.body.properties?.[\"profileType\"],\n commonName: result.body.properties?.[\"commonName\"],\n organization: result.body.properties?.[\"organization\"],\n organizationUnit: result.body.properties?.[\"organizationUnit\"],\n streetAddress: result.body.properties?.[\"streetAddress\"],\n includeStreetAddress: result.body.properties?.[\"includeStreetAddress\"],\n city: result.body.properties?.[\"city\"],\n includeCity: result.body.properties?.[\"includeCity\"],\n state: result.body.properties?.[\"state\"],\n includeState: result.body.properties?.[\"includeState\"],\n country: result.body.properties?.[\"country\"],\n includeCountry: result.body.properties?.[\"includeCountry\"],\n postalCode: result.body.properties?.[\"postalCode\"],\n includePostalCode: result.body.properties?.[\"includePostalCode\"],\n enhancedKeyUsage: result.body.properties?.[\"enhancedKeyUsage\"],\n identityValidationId: result.body.properties?.[\"identityValidationId\"],\n provisioningState: result.body.properties?.[\"provisioningState\"],\n status: result.body.properties?.[\"status\"],\n certificates:\n result.body.properties?.[\"certificates\"] === undefined\n ? result.body.properties?.[\"certificates\"]\n : result.body.properties?.[\"certificates\"].map((p: any) => {\n return {\n serialNumber: p[\"serialNumber\"],\n subjectName: p[\"subjectName\"],\n thumbprint: p[\"thumbprint\"],\n createdDate: p[\"createdDate\"],\n expiryDate: p[\"expiryDate\"],\n status: p[\"status\"],\n revocation: !p.revocation\n ? undefined\n : {\n requestedAt:\n p.revocation?.[\"requestedAt\"] !== undefined\n ? new Date(p.revocation?.[\"requestedAt\"])\n : undefined,\n effectiveAt:\n p.revocation?.[\"effectiveAt\"] !== undefined\n ? new Date(p.revocation?.[\"effectiveAt\"])\n : undefined,\n reason: p.revocation?.[\"reason\"],\n remarks: p.revocation?.[\"remarks\"],\n status: p.revocation?.[\"status\"],\n failureReason: p.revocation?.[\"failureReason\"],\n },\n };\n }),\n },\n };\n}\n\n/** Get details of a certificate profile. */\nexport async function get(\n context: Client,\n subscriptionId: string,\n resourceGroupName: string,\n accountName: string,\n profileName: string,\n options: CertificateProfilesGetOptionalParams = { requestOptions: {} },\n): Promise<CertificateProfile> {\n const result = await _getSend(\n context,\n subscriptionId,\n resourceGroupName,\n accountName,\n profileName,\n options,\n );\n return _getDeserialize(result);\n}\n\nexport function _createSend(\n context: Client,\n subscriptionId: string,\n resourceGroupName: string,\n accountName: string,\n profileName: string,\n resource: CertificateProfile,\n options: CertificateProfilesCreateOptionalParams = { requestOptions: {} },\n): StreamableMethod {\n return context\n .path(\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.CodeSigning/codeSigningAccounts/{accountName}/certificateProfiles/{profileName}\",\n subscriptionId,\n resourceGroupName,\n accountName,\n profileName,\n )\n .put({\n ...operationOptionsToRequestParameters(options),\n body: {\n properties: !resource.properties\n ? resource.properties\n : certificateProfilePropertiesSerializer(resource.properties),\n },\n });\n}\n\nexport async function _createDeserialize(\n result: PathUncheckedResponse,\n): Promise<CertificateProfile> {\n const expectedStatuses = [\"200\", \"201\"];\n if (!expectedStatuses.includes(result.status)) {\n throw createRestError(result);\n }\n\n return {\n id: result.body[\"id\"],\n name: result.body[\"name\"],\n type: result.body[\"type\"],\n systemData: !result.body.systemData\n ? undefined\n : {\n createdBy: result.body.systemData?.[\"createdBy\"],\n createdByType: result.body.systemData?.[\"createdByType\"],\n createdAt:\n result.body.systemData?.[\"createdAt\"] !== undefined\n ? new Date(result.body.systemData?.[\"createdAt\"])\n : undefined,\n lastModifiedBy: result.body.systemData?.[\"lastModifiedBy\"],\n lastModifiedByType: result.body.systemData?.[\"lastModifiedByType\"],\n lastModifiedAt:\n result.body.systemData?.[\"lastModifiedAt\"] !== undefined\n ? new Date(result.body.systemData?.[\"lastModifiedAt\"])\n : undefined,\n },\n properties: !result.body.properties\n ? undefined\n : {\n profileType: result.body.properties?.[\"profileType\"],\n commonName: result.body.properties?.[\"commonName\"],\n organization: result.body.properties?.[\"organization\"],\n organizationUnit: result.body.properties?.[\"organizationUnit\"],\n streetAddress: result.body.properties?.[\"streetAddress\"],\n includeStreetAddress: result.body.properties?.[\"includeStreetAddress\"],\n city: result.body.properties?.[\"city\"],\n includeCity: result.body.properties?.[\"includeCity\"],\n state: result.body.properties?.[\"state\"],\n includeState: result.body.properties?.[\"includeState\"],\n country: result.body.properties?.[\"country\"],\n includeCountry: result.body.properties?.[\"includeCountry\"],\n postalCode: result.body.properties?.[\"postalCode\"],\n includePostalCode: result.body.properties?.[\"includePostalCode\"],\n enhancedKeyUsage: result.body.properties?.[\"enhancedKeyUsage\"],\n identityValidationId: result.body.properties?.[\"identityValidationId\"],\n provisioningState: result.body.properties?.[\"provisioningState\"],\n status: result.body.properties?.[\"status\"],\n certificates:\n result.body.properties?.[\"certificates\"] === undefined\n ? result.body.properties?.[\"certificates\"]\n : result.body.properties?.[\"certificates\"].map((p: any) => {\n return {\n serialNumber: p[\"serialNumber\"],\n subjectName: p[\"subjectName\"],\n thumbprint: p[\"thumbprint\"],\n createdDate: p[\"createdDate\"],\n expiryDate: p[\"expiryDate\"],\n status: p[\"status\"],\n revocation: !p.revocation\n ? undefined\n : {\n requestedAt:\n p.revocation?.[\"requestedAt\"] !== undefined\n ? new Date(p.revocation?.[\"requestedAt\"])\n : undefined,\n effectiveAt:\n p.revocation?.[\"effectiveAt\"] !== undefined\n ? new Date(p.revocation?.[\"effectiveAt\"])\n : undefined,\n reason: p.revocation?.[\"reason\"],\n remarks: p.revocation?.[\"remarks\"],\n status: p.revocation?.[\"status\"],\n failureReason: p.revocation?.[\"failureReason\"],\n },\n };\n }),\n },\n };\n}\n\n/** Create a certificate profile. */\nexport function create(\n context: Client,\n subscriptionId: string,\n resourceGroupName: string,\n accountName: string,\n profileName: string,\n resource: CertificateProfile,\n options: CertificateProfilesCreateOptionalParams = { requestOptions: {} },\n): PollerLike<OperationState<CertificateProfile>, CertificateProfile> {\n return getLongRunningPoller(context, _createDeserialize, [\"200\", \"201\"], {\n updateIntervalInMs: options?.updateIntervalInMs,\n abortSignal: options?.abortSignal,\n getInitialResponse: () =>\n _createSend(\n context,\n subscriptionId,\n resourceGroupName,\n accountName,\n profileName,\n resource,\n options,\n ),\n resourceLocationConfig: \"azure-async-operation\",\n }) as PollerLike<OperationState<CertificateProfile>, CertificateProfile>;\n}\n\nexport function _$deleteSend(\n context: Client,\n subscriptionId: string,\n resourceGroupName: string,\n accountName: string,\n profileName: string,\n options: CertificateProfilesDeleteOptionalParams = { requestOptions: {} },\n): StreamableMethod {\n return context\n .path(\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.CodeSigning/codeSigningAccounts/{accountName}/certificateProfiles/{profileName}\",\n subscriptionId,\n resourceGroupName,\n accountName,\n profileName,\n )\n .delete({ ...operationOptionsToRequestParameters(options) });\n}\n\nexport async function _$deleteDeserialize(result: PathUncheckedResponse): Promise<void> {\n const expectedStatuses = [\"202\", \"204\", \"200\"];\n if (!expectedStatuses.includes(result.status)) {\n throw createRestError(result);\n }\n\n return;\n}\n\n/** Delete a certificate profile. */\n/**\n * @fixme delete is a reserved word that cannot be used as an operation name.\n * Please add @clientName(\"clientName\") or @clientName(\"<JS-Specific-Name>\", \"javascript\")\n * to the operation to override the generated name.\n */\nexport function $delete(\n context: Client,\n subscriptionId: string,\n resourceGroupName: string,\n accountName: string,\n profileName: string,\n options: CertificateProfilesDeleteOptionalParams = { requestOptions: {} },\n): PollerLike<OperationState<void>, void> {\n return getLongRunningPoller(context, _$deleteDeserialize, [\"202\", \"204\", \"200\"], {\n updateIntervalInMs: options?.updateIntervalInMs,\n abortSignal: options?.abortSignal,\n getInitialResponse: () =>\n _$deleteSend(context, subscriptionId, resourceGroupName, accountName, profileName, options),\n resourceLocationConfig: \"location\",\n }) as PollerLike<OperationState<void>, void>;\n}\n\nexport function _listByCodeSigningAccountSend(\n context: Client,\n subscriptionId: string,\n resourceGroupName: string,\n accountName: string,\n options: CertificateProfilesListByCodeSigningAccountOptionalParams = {\n requestOptions: {},\n },\n): StreamableMethod {\n return context\n .path(\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.CodeSigning/codeSigningAccounts/{accountName}/certificateProfiles\",\n subscriptionId,\n resourceGroupName,\n accountName,\n )\n .get({ ...operationOptionsToRequestParameters(options) });\n}\n\nexport async function _listByCodeSigningAccountDeserialize(\n result: PathUncheckedResponse,\n): Promise<_CertificateProfileListResult> {\n const expectedStatuses = [\"200\"];\n if (!expectedStatuses.includes(result.status)) {\n throw createRestError(result);\n }\n\n return {\n value: result.body[\"value\"].map((p: any) => {\n return {\n id: p[\"id\"],\n name: p[\"name\"],\n type: p[\"type\"],\n systemData: !p.systemData\n ? undefined\n : {\n createdBy: p.systemData?.[\"createdBy\"],\n createdByType: p.systemData?.[\"createdByType\"],\n createdAt:\n p.systemData?.[\"createdAt\"] !== undefined\n ? new Date(p.systemData?.[\"createdAt\"])\n : undefined,\n lastModifiedBy: p.systemData?.[\"lastModifiedBy\"],\n lastModifiedByType: p.systemData?.[\"lastModifiedByType\"],\n lastModifiedAt:\n p.systemData?.[\"lastModifiedAt\"] !== undefined\n ? new Date(p.systemData?.[\"lastModifiedAt\"])\n : undefined,\n },\n properties: !p.properties\n ? undefined\n : {\n profileType: p.properties?.[\"profileType\"],\n commonName: p.properties?.[\"commonName\"],\n organization: p.properties?.[\"organization\"],\n organizationUnit: p.properties?.[\"organizationUnit\"],\n streetAddress: p.properties?.[\"streetAddress\"],\n includeStreetAddress: p.properties?.[\"includeStreetAddress\"],\n city: p.properties?.[\"city\"],\n includeCity: p.properties?.[\"includeCity\"],\n state: p.properties?.[\"state\"],\n includeState: p.properties?.[\"includeState\"],\n country: p.properties?.[\"country\"],\n includeCountry: p.properties?.[\"includeCountry\"],\n postalCode: p.properties?.[\"postalCode\"],\n includePostalCode: p.properties?.[\"includePostalCode\"],\n enhancedKeyUsage: p.properties?.[\"enhancedKeyUsage\"],\n identityValidationId: p.properties?.[\"identityValidationId\"],\n provisioningState: p.properties?.[\"provisioningState\"],\n status: p.properties?.[\"status\"],\n certificates:\n p.properties?.[\"certificates\"] === undefined\n ? p.properties?.[\"certificates\"]\n : p.properties?.[\"certificates\"].map((p: any) => {\n return {\n serialNumber: p[\"serialNumber\"],\n subjectName: p[\"subjectName\"],\n thumbprint: p[\"thumbprint\"],\n createdDate: p[\"createdDate\"],\n expiryDate: p[\"expiryDate\"],\n status: p[\"status\"],\n revocation: !p.revocation\n ? undefined\n : {\n requestedAt:\n p.revocation?.[\"requestedAt\"] !== undefined\n ? new Date(p.revocation?.[\"requestedAt\"])\n : undefined,\n effectiveAt:\n p.revocation?.[\"effectiveAt\"] !== undefined\n ? new Date(p.revocation?.[\"effectiveAt\"])\n : undefined,\n reason: p.revocation?.[\"reason\"],\n remarks: p.revocation?.[\"remarks\"],\n status: p.revocation?.[\"status\"],\n failureReason: p.revocation?.[\"failureReason\"],\n },\n };\n }),\n },\n };\n }),\n nextLink: result.body[\"nextLink\"],\n };\n}\n\n/** List certificate profiles under a trusted signing account. */\nexport function listByCodeSigningAccount(\n context: Client,\n subscriptionId: string,\n resourceGroupName: string,\n accountName: string,\n options: CertificateProfilesListByCodeSigningAccountOptionalParams = {\n requestOptions: {},\n },\n): PagedAsyncIterableIterator<CertificateProfile> {\n return buildPagedAsyncIterator(\n context,\n () =>\n _listByCodeSigningAccountSend(\n context,\n subscriptionId,\n resourceGroupName,\n accountName,\n options,\n ),\n _listByCodeSigningAccountDeserialize,\n [\"200\"],\n { itemName: \"value\", nextLinkName: \"nextLink\" },\n );\n}\n\nexport function _revokeCertificateSend(\n context: Client,\n subscriptionId: string,\n resourceGroupName: string,\n accountName: string,\n profileName: string,\n body: RevokeCertificate,\n options: CertificateProfilesRevokeCertificateOptionalParams = {\n requestOptions: {},\n },\n): StreamableMethod {\n return context\n .path(\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.CodeSigning/codeSigningAccounts/{accountName}/certificateProfiles/{profileName}/revokeCertificate\",\n subscriptionId,\n resourceGroupName,\n accountName,\n profileName,\n )\n .post({\n ...operationOptionsToRequestParameters(options),\n body: {\n serialNumber: body[\"serialNumber\"],\n thumbprint: body[\"thumbprint\"],\n effectiveAt: body[\"effectiveAt\"].toISOString(),\n reason: body[\"reason\"],\n remarks: body[\"remarks\"],\n },\n });\n}\n\nexport async function _revokeCertificateDeserialize(result: PathUncheckedResponse): Promise<void> {\n const expectedStatuses = [\"204\"];\n if (!expectedStatuses.includes(result.status)) {\n throw createRestError(result);\n }\n\n return;\n}\n\n/** Revoke a certificate under a certificate profile. */\nexport async function revokeCertificate(\n context: Client,\n subscriptionId: string,\n resourceGroupName: string,\n accountName: string,\n profileName: string,\n body: RevokeCertificate,\n options: CertificateProfilesRevokeCertificateOptionalParams = {\n requestOptions: {},\n },\n): Promise<void> {\n const result = await _revokeCertificateSend(\n context,\n subscriptionId,\n resourceGroupName,\n accountName,\n profileName,\n body,\n options,\n );\n return _revokeCertificateDeserialize(result);\n}\n"]}